diff --git a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs index ba087718583..092a0071fb7 100644 --- a/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs +++ b/Content.Client/Access/UI/AccessOverriderWindow.xaml.cs @@ -88,8 +88,9 @@ public void UpdateState(IPrototypeManager protoManager, AccessOverriderBoundUser button.Disabled = !interfaceEnabled; if (interfaceEnabled) { - button.Pressed = state.TargetAccessReaderIdAccessList?.Contains(accessName) ?? false; - button.Disabled = (!state.AllowedModifyAccessList?.Contains(accessName)) ?? true; + // Explicit cast because Rider gives a false error otherwise. + button.Pressed = state.TargetAccessReaderIdAccessList?.Contains((ProtoId) accessName) ?? false; + button.Disabled = (!state.AllowedModifyAccessList?.Contains((ProtoId) accessName)) ?? true; } } } diff --git a/Content.Client/Administration/UI/AdminMenuWindow.xaml b/Content.Client/Administration/UI/AdminMenuWindow.xaml index d3d3df02d93..311d67b826c 100644 --- a/Content.Client/Administration/UI/AdminMenuWindow.xaml +++ b/Content.Client/Administration/UI/AdminMenuWindow.xaml @@ -6,8 +6,7 @@ xmlns:tabs="clr-namespace:Content.Client.Administration.UI.Tabs" xmlns:playerTab="clr-namespace:Content.Client.Administration.UI.Tabs.PlayerTab" xmlns:objectsTab="clr-namespace:Content.Client.Administration.UI.Tabs.ObjectsTab" - xmlns:panic="clr-namespace:Content.Client.Administration.UI.Tabs.PanicBunkerTab" - xmlns:baby="clr-namespace:Content.Client.Administration.UI.Tabs.BabyJailTab"> + xmlns:panic="clr-namespace:Content.Client.Administration.UI.Tabs.PanicBunkerTab"> @@ -15,7 +14,6 @@ - diff --git a/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs b/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs index d5c43e2a500..73fcb4f5e50 100644 --- a/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs +++ b/Content.Client/Administration/UI/AdminMenuWindow.xaml.cs @@ -21,10 +21,6 @@ public AdminMenuWindow() MasterTabContainer.SetTabTitle((int) TabIndex.Round, Loc.GetString("admin-menu-round-tab")); MasterTabContainer.SetTabTitle((int) TabIndex.Server, Loc.GetString("admin-menu-server-tab")); MasterTabContainer.SetTabTitle((int) TabIndex.PanicBunker, Loc.GetString("admin-menu-panic-bunker-tab")); - /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - MasterTabContainer.SetTabTitle((int) TabIndex.BabyJail, Loc.GetString("admin-menu-baby-jail-tab")); MasterTabContainer.SetTabTitle((int) TabIndex.Players, Loc.GetString("admin-menu-players-tab")); MasterTabContainer.SetTabTitle((int) TabIndex.Objects, Loc.GetString("admin-menu-objects-tab")); MasterTabContainer.OnTabChanged += OnTabChanged; @@ -52,7 +48,6 @@ private enum TabIndex Round, Server, PanicBunker, - BabyJail, Players, Objects, } diff --git a/Content.Client/Administration/UI/PermissionsEui.cs b/Content.Client/Administration/UI/PermissionsEui.cs index 4cddf8887ee..fe1237d4c90 100644 --- a/Content.Client/Administration/UI/PermissionsEui.cs +++ b/Content.Client/Administration/UI/PermissionsEui.cs @@ -130,6 +130,7 @@ private void SaveAdminPressed(EditAdminWindow popup) } var title = string.IsNullOrWhiteSpace(popup.TitleEdit.Text) ? null : popup.TitleEdit.Text; + var suspended = popup.SuspendedCheckbox.Pressed; if (popup.SourceData is { } src) { @@ -139,7 +140,8 @@ private void SaveAdminPressed(EditAdminWindow popup) Title = title, PosFlags = pos, NegFlags = neg, - RankId = rank + RankId = rank, + Suspended = suspended, }); } else @@ -152,7 +154,8 @@ private void SaveAdminPressed(EditAdminWindow popup) Title = title, PosFlags = pos, NegFlags = neg, - RankId = rank + RankId = rank, + Suspended = suspended, }); } @@ -171,7 +174,7 @@ private void SaveAdminRankPressed(EditAdminRankWindow popup) { Id = src, Flags = flags, - Name = name + Name = name, }); } else @@ -351,6 +354,7 @@ private sealed class EditAdminWindow : DefaultWindow public readonly OptionButton RankButton; public readonly Button SaveButton; public readonly Button? RemoveButton; + public readonly CheckBox SuspendedCheckbox; public readonly Dictionary FlagButtons = new(); @@ -381,6 +385,12 @@ public EditAdminWindow(PermissionsEui ui, PermissionsEuiState.AdminData? data) RankButton = new OptionButton(); SaveButton = new Button { Text = Loc.GetString("permissions-eui-edit-admin-window-save-button"), HorizontalAlignment = HAlignment.Right }; + SuspendedCheckbox = new CheckBox + { + Text = Loc.GetString("permissions-eui-edit-admin-window-suspended"), + Pressed = data?.Suspended ?? false, + }; + RankButton.AddItem(Loc.GetString("permissions-eui-edit-admin-window-no-rank-button"), NoRank); foreach (var (rId, rank) in ui._ranks) { @@ -488,7 +498,8 @@ public EditAdminWindow(PermissionsEui ui, PermissionsEuiState.AdminData? data) { nameControl, TitleEdit, - RankButton + RankButton, + SuspendedCheckbox, } }, permGrid diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml deleted file mode 100644 index b8034faf52a..00000000000 --- a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml +++ /dev/null @@ -1,6 +0,0 @@ - - - diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs deleted file mode 100644 index 9e1d53818f2..00000000000 --- a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailStatusWindow.xaml.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Content.Client.Message; -using Content.Client.UserInterface.Controls; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface.CustomControls; -using Robust.Client.UserInterface.XAML; - -namespace Content.Client.Administration.UI.Tabs.BabyJailTab; - -/* - * TODO: Remove me once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - -[GenerateTypedNameReferences] -public sealed partial class BabyJailStatusWindow : FancyWindow -{ - public BabyJailStatusWindow() - { - RobustXamlLoader.Load(this); - MessageLabel.SetMarkup(Loc.GetString("admin-ui-baby-jail-is-enabled")); - } -} diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml deleted file mode 100644 index dd770c2be53..00000000000 --- a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - diff --git a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs b/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs deleted file mode 100644 index aa9d6ced951..00000000000 --- a/Content.Client/Administration/UI/Tabs/BabyJailTab/BabyJailTab.xaml.cs +++ /dev/null @@ -1,75 +0,0 @@ -using Content.Shared.Administration.Events; -using Robust.Client.AutoGenerated; -using Robust.Client.UserInterface; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Console; - -/* - * TODO: Remove me once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - -namespace Content.Client.Administration.UI.Tabs.BabyJailTab; - -[GenerateTypedNameReferences] -public sealed partial class BabyJailTab : Control -{ - [Dependency] private readonly IConsoleHost _console = default!; - - private string _maxAccountAge; - private string _maxOverallMinutes; - - public BabyJailTab() - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - - MaxAccountAge.OnTextEntered += args => SendMaxAccountAge(args.Text); - MaxAccountAge.OnFocusExit += args => SendMaxAccountAge(args.Text); - _maxAccountAge = MaxAccountAge.Text; - - MaxOverallMinutes.OnTextEntered += args => SendMaxOverallMinutes(args.Text); - MaxOverallMinutes.OnFocusExit += args => SendMaxOverallMinutes(args.Text); - _maxOverallMinutes = MaxOverallMinutes.Text; - } - - private void SendMaxAccountAge(string text) - { - if (string.IsNullOrWhiteSpace(text) || - text == _maxAccountAge || - !int.TryParse(text, out var minutes)) - { - return; - } - - _console.ExecuteCommand($"babyjail_max_account_age {minutes}"); - } - - private void SendMaxOverallMinutes(string text) - { - if (string.IsNullOrWhiteSpace(text) || - text == _maxOverallMinutes || - !int.TryParse(text, out var minutes)) - { - return; - } - - _console.ExecuteCommand($"babyjail_max_overall_minutes {minutes}"); - } - - public void UpdateStatus(BabyJailStatus status) - { - EnabledButton.Pressed = status.Enabled; - EnabledButton.Text = Loc.GetString(status.Enabled - ? "admin-ui-baby-jail-enabled" - : "admin-ui-baby-jail-disabled" - ); - EnabledButton.ModulateSelfOverride = status.Enabled ? Color.Red : null; - ShowReasonButton.Pressed = status.ShowReason; - - MaxAccountAge.Text = status.MaxAccountAgeMinutes.ToString(); - _maxAccountAge = MaxAccountAge.Text; - - MaxOverallMinutes.Text = status.MaxOverallMinutes.ToString(); - _maxOverallMinutes = MaxOverallMinutes.Text; - } -} diff --git a/Content.Client/Program.cs b/Content.Client/Program.cs index f48c1e73c31..0404e825cff 100644 --- a/Content.Client/Program.cs +++ b/Content.Client/Program.cs @@ -4,6 +4,7 @@ namespace Content.Client { internal static class Program { + [STAThread] public static void Main(string[] args) { ContentStart.Start(args); diff --git a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs index d36a91c3733..392a1a96de2 100644 --- a/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs +++ b/Content.Client/UserInterface/Systems/Admin/AdminUIController.cs @@ -3,7 +3,6 @@ using Content.Client.Administration.UI; using Content.Client.Administration.UI.Tabs.ObjectsTab; using Content.Client.Administration.UI.Tabs.PanicBunkerTab; -using Content.Client.Administration.UI.Tabs.BabyJailTab; using Content.Client.Administration.UI.Tabs.PlayerTab; using Content.Client.Gameplay; using Content.Client.Lobby; @@ -38,13 +37,11 @@ public sealed class AdminUIController : UIController, private AdminMenuWindow? _window; private MenuButton? AdminButton => UIManager.GetActiveUIWidgetOrNull()?.AdminButton; private PanicBunkerStatus? _panicBunker; - private BabyJailStatus? _babyJail; public override void Initialize() { base.Initialize(); SubscribeNetworkEvent(OnPanicBunkerUpdated); - SubscribeNetworkEvent(OnBabyJailUpdated); } private void OnPanicBunkerUpdated(PanicBunkerChangedEvent msg, EntitySessionEventArgs args) @@ -59,18 +56,6 @@ private void OnPanicBunkerUpdated(PanicBunkerChangedEvent msg, EntitySessionEven } } - private void OnBabyJailUpdated(BabyJailChangedEvent msg, EntitySessionEventArgs args) - { - var showDialog = _babyJail == null && msg.Status.Enabled; - _babyJail = msg.Status; - _window?.BabyJailControl.UpdateStatus(msg.Status); - - if (showDialog) - { - UIManager.CreateWindow().OpenCentered(); - } - } - public void OnStateEntered(GameplayState state) { EnsureWindow(); @@ -116,13 +101,6 @@ private void EnsureWindow() if (_panicBunker != null) _window.PanicBunkerControl.UpdateStatus(_panicBunker); - /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - - if (_babyJail != null) - _window.BabyJailControl.UpdateStatus(_babyJail); - _window.PlayerTabControl.OnEntryKeyBindDown += PlayerTabEntryKeyBindDown; _window.ObjectsTabControl.OnEntryKeyBindDown += ObjectsTabEntryKeyBindDown; _window.OnOpen += OnWindowOpen; diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index f31bd3f52c7..6dfff808050 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -54,7 +54,7 @@ public sealed class PostMapInitTest "CorvaxMaus", "CorvaxIshimura", "CorvaxPaper", - "CorvaxCuteInstallation", + "CorvaxCute", "CorvaxPilgrim", "CorvaxSplit", "CorvaxTerra", @@ -105,6 +105,7 @@ public sealed class PostMapInitTest "Gate", "Amber", "Loop", + "Plasma", "Elkridge" }; diff --git a/Content.Packaging/ClientPackaging.cs b/Content.Packaging/ClientPackaging.cs index 4651164d7f0..2301d478d2b 100644 --- a/Content.Packaging/ClientPackaging.cs +++ b/Content.Packaging/ClientPackaging.cs @@ -80,7 +80,13 @@ public static async Task WriteResources( var graph = new RobustClientAssetGraph(); pass.Dependencies.Add(new AssetPassDependency(graph.Output.Name)); - AssetGraph.CalculateGraph(graph.AllPasses.Append(pass).ToArray(), logger); + var dropSvgPass = new AssetPassFilterDrop(f => f.Path.EndsWith(".svg")) + { + Name = "DropSvgPass", + }; + dropSvgPass.AddDependency(graph.Input).AddBefore(graph.PresetPasses); + + AssetGraph.CalculateGraph([pass, dropSvgPass, ..graph.AllPasses], logger); var inputPass = graph.Input; @@ -97,7 +103,7 @@ await RobustSharedPackaging.WriteContentAssemblies( assemblies, // Corvax-Secrets cancel: cancel); - await WriteClientResources(contentDir, pass, cancel); // Corvax-Secrets: Support content resource ignore to ignore server-only prototypes + await WriteClientResources(contentDir, inputPass, cancel); // Corvax-Secrets: Support content resource ignore to ignore server-only prototypes inputPass.InjectFinished(); } diff --git a/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.Designer.cs b/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.Designer.cs new file mode 100644 index 00000000000..364ded06d01 --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.Designer.cs @@ -0,0 +1,2084 @@ +// +using System; +using System.Net; +using System.Text.Json; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; +using NpgsqlTypes; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + [DbContext(typeof(PostgresServerDbContext))] + [Migration("20241223235939_AdminStatus")] + partial class AdminStatus + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "8.0.0") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("boolean") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("boolean") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminId") + .HasColumnType("uuid") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("boolean") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("integer") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("smallint") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("text") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("integer") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Message") + .HasAnnotation("Npgsql:TsVectorConfig", "english"); + + NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("integer") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_messages_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("boolean") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("boolean") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_notes_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("boolean") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_rank_flag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminRankId") + .HasColumnType("integer") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("admin_watchlists_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("CreatedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("uuid") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("boolean") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("uuid") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("character varying(4096)") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("antag_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("assigned_user_id_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("ban_template_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("interval") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("text") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("smallint") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("timestamp with time zone") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("real") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("job_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("JobName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("integer") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("play_time_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("PlayerId") + .HasColumnType("uuid") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("interval") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("text") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("player_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("FirstSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("inet") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", null, t => + { + t.HasCheckConstraint("LastSeenAddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= last_seen_address"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("preference_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("integer") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Age") + .HasColumnType("integer") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("text") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("text") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("integer") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("integer") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("text") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("text") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("integer") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("integer") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("text") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_loadout_group_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("profile_role_loadout_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("text") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("round_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ServerId") + .HasColumnType("integer") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("timestamp with time zone") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Name") + .IsRequired() + .HasColumnType("text") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("boolean") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("integer") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("integer") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_ban_hit_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("integer") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Address") + .HasColumnType("inet") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("uuid") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("boolean") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("timestamp with time zone") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("uuid") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("uuid") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("interval") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("text") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("integer") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("integer") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("AddressNotIPv6MappedIPv4", "NOT inet '::ffff:0.0.0.0/96' >>= address"); + + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("role_unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("unban_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("BanId") + .HasColumnType("integer") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("timestamp with time zone") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("uuid") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("trait_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ProfileId") + .HasColumnType("integer") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("text") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasColumnName("uploaded_resource_log_id"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("Data") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("timestamp with time zone") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("text") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("uuid") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("integer") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("integer") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("integer") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("integer") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group~"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loa~"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("integer") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("integer") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("bytea") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("integer") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.cs b/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.cs new file mode 100644 index 00000000000..8444cead4ef --- /dev/null +++ b/Content.Server.Database/Migrations/Postgres/20241223235939_AdminStatus.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Postgres +{ + /// + public partial class AdminStatus : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "deadminned", + table: "admin", + type: "boolean", + nullable: false, + defaultValue: false); + + migrationBuilder.AddColumn( + name: "suspended", + table: "admin", + type: "boolean", + nullable: false, + defaultValue: false); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "deadminned", + table: "admin"); + + migrationBuilder.DropColumn( + name: "suspended", + table: "admin"); + } + } +} diff --git a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs index e38a8981ab4..fc74c0f7029 100644 --- a/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Postgres/PostgresServerDbContextModelSnapshot.cs @@ -36,6 +36,14 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("integer") .HasColumnName("admin_rank_id"); + b.Property("Deadminned") + .HasColumnType("boolean") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("boolean") + .HasColumnName("suspended"); + b.Property("Title") .HasColumnType("text") .HasColumnName("title"); diff --git a/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.Designer.cs b/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.Designer.cs new file mode 100644 index 00000000000..3f5f556ca1b --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.Designer.cs @@ -0,0 +1,2007 @@ +// +using System; +using Content.Server.Database; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + [DbContext(typeof(SqliteServerDbContext))] + [Migration("20241223235932_AdminStatus")] + partial class AdminStatus + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "8.0.0"); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Deadminned") + .HasColumnType("INTEGER") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("INTEGER") + .HasColumnName("suspended"); + + b.Property("Title") + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("UserId") + .HasName("PK_admin"); + + b.HasIndex("AdminRankId") + .HasDatabaseName("IX_admin_admin_rank_id"); + + b.ToTable("admin", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_flag_id"); + + b.Property("AdminId") + .HasColumnType("TEXT") + .HasColumnName("admin_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.Property("Negative") + .HasColumnType("INTEGER") + .HasColumnName("negative"); + + b.HasKey("Id") + .HasName("PK_admin_flag"); + + b.HasIndex("AdminId") + .HasDatabaseName("IX_admin_flag_admin_id"); + + b.HasIndex("Flag", "AdminId") + .IsUnique(); + + b.ToTable("admin_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Id") + .HasColumnType("INTEGER") + .HasColumnName("admin_log_id"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Impact") + .HasColumnType("INTEGER") + .HasColumnName("impact"); + + b.Property("Json") + .IsRequired() + .HasColumnType("jsonb") + .HasColumnName("json"); + + b.Property("Message") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("Type") + .HasColumnType("INTEGER") + .HasColumnName("type"); + + b.HasKey("RoundId", "Id") + .HasName("PK_admin_log"); + + b.HasIndex("Date"); + + b.HasIndex("Type") + .HasDatabaseName("IX_admin_log_type"); + + b.ToTable("admin_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("LogId") + .HasColumnType("INTEGER") + .HasColumnName("log_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.HasKey("RoundId", "LogId", "PlayerUserId") + .HasName("PK_admin_log_player"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_log_player_player_user_id"); + + b.ToTable("admin_log_player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_messages_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("Dismissed") + .HasColumnType("INTEGER") + .HasColumnName("dismissed"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Seen") + .HasColumnType("INTEGER") + .HasColumnName("seen"); + + b.HasKey("Id") + .HasName("PK_admin_messages"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_messages_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_messages_round_id"); + + b.ToTable("admin_messages", null, t => + { + t.HasCheckConstraint("NotDismissedAndSeen", "NOT dismissed OR seen"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_notes_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Secret") + .HasColumnType("INTEGER") + .HasColumnName("secret"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_admin_notes"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_notes_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_notes_round_id"); + + b.ToTable("admin_notes", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_admin_rank"); + + b.ToTable("admin_rank", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_flag_id"); + + b.Property("AdminRankId") + .HasColumnType("INTEGER") + .HasColumnName("admin_rank_id"); + + b.Property("Flag") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flag"); + + b.HasKey("Id") + .HasName("PK_admin_rank_flag"); + + b.HasIndex("AdminRankId"); + + b.HasIndex("Flag", "AdminRankId") + .IsUnique(); + + b.ToTable("admin_rank_flag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("admin_watchlists_id"); + + b.Property("CreatedAt") + .HasColumnType("TEXT") + .HasColumnName("created_at"); + + b.Property("CreatedById") + .HasColumnType("TEXT") + .HasColumnName("created_by_id"); + + b.Property("Deleted") + .HasColumnType("INTEGER") + .HasColumnName("deleted"); + + b.Property("DeletedAt") + .HasColumnType("TEXT") + .HasColumnName("deleted_at"); + + b.Property("DeletedById") + .HasColumnType("TEXT") + .HasColumnName("deleted_by_id"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("LastEditedAt") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("Message") + .IsRequired() + .HasMaxLength(4096) + .HasColumnType("TEXT") + .HasColumnName("message"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.HasKey("Id") + .HasName("PK_admin_watchlists"); + + b.HasIndex("CreatedById"); + + b.HasIndex("DeletedById"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_admin_watchlists_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_admin_watchlists_round_id"); + + b.ToTable("admin_watchlists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("antag_id"); + + b.Property("AntagName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("antag_name"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_antag"); + + b.HasIndex("ProfileId", "AntagName") + .IsUnique(); + + b.ToTable("antag", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.AssignedUserId", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("assigned_user_id_id"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_assigned_user_id"); + + b.HasIndex("UserId") + .IsUnique(); + + b.HasIndex("UserName") + .IsUnique(); + + b.ToTable("assigned_user_id", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.BanTemplate", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("ban_template_id"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("Length") + .HasColumnType("TEXT") + .HasColumnName("length"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.Property("Title") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("title"); + + b.HasKey("Id") + .HasName("PK_ban_template"); + + b.ToTable("ban_template", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Blacklist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_blacklist"); + + b.ToTable("blacklist", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b.Property("Address") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("Denied") + .HasColumnType("INTEGER") + .HasColumnName("denied"); + + b.Property("ServerId") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("server_id"); + + b.Property("Time") + .HasColumnType("TEXT") + .HasColumnName("time"); + + b.Property("Trust") + .HasColumnType("REAL") + .HasColumnName("trust"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("UserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("user_name"); + + b.HasKey("Id") + .HasName("PK_connection_log"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_connection_log_server_id"); + + b.HasIndex("Time"); + + b.HasIndex("UserId"); + + b.ToTable("connection_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("job_id"); + + b.Property("JobName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("job_name"); + + b.Property("Priority") + .HasColumnType("INTEGER") + .HasColumnName("priority"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.HasKey("Id") + .HasName("PK_job"); + + b.HasIndex("ProfileId"); + + b.HasIndex("ProfileId", "JobName") + .IsUnique(); + + b.HasIndex(new[] { "ProfileId" }, "IX_job_one_high_priority") + .IsUnique() + .HasFilter("priority = 3"); + + b.ToTable("job", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.PlayTime", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("play_time_id"); + + b.Property("PlayerId") + .HasColumnType("TEXT") + .HasColumnName("player_id"); + + b.Property("TimeSpent") + .HasColumnType("TEXT") + .HasColumnName("time_spent"); + + b.Property("Tracker") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("tracker"); + + b.HasKey("Id") + .HasName("PK_play_time"); + + b.HasIndex("PlayerId", "Tracker") + .IsUnique(); + + b.ToTable("play_time", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b.Property("FirstSeenTime") + .HasColumnType("TEXT") + .HasColumnName("first_seen_time"); + + b.Property("LastReadRules") + .HasColumnType("TEXT") + .HasColumnName("last_read_rules"); + + b.Property("LastSeenAddress") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_address"); + + b.Property("LastSeenTime") + .HasColumnType("TEXT") + .HasColumnName("last_seen_time"); + + b.Property("LastSeenUserName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("last_seen_user_name"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_player"); + + b.HasAlternateKey("UserId") + .HasName("ak_player_user_id"); + + b.HasIndex("LastSeenUserName"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("player", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("AdminOOCColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("admin_ooc_color"); + + b.Property("SelectedCharacterSlot") + .HasColumnType("INTEGER") + .HasColumnName("selected_character_slot"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_preference"); + + b.HasIndex("UserId") + .IsUnique(); + + b.ToTable("preference", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("Age") + .HasColumnType("INTEGER") + .HasColumnName("age"); + + b.Property("CharacterName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("char_name"); + + b.Property("EyeColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("eye_color"); + + b.Property("FacialHairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_color"); + + b.Property("FacialHairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("facial_hair_name"); + + b.Property("FlavorText") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("flavor_text"); + + b.Property("Gender") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("gender"); + + b.Property("HairColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_color"); + + b.Property("HairName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("hair_name"); + + b.Property("Markings") + .HasColumnType("jsonb") + .HasColumnName("markings"); + + b.Property("PreferenceId") + .HasColumnType("INTEGER") + .HasColumnName("preference_id"); + + b.Property("PreferenceUnavailable") + .HasColumnType("INTEGER") + .HasColumnName("pref_unavailable"); + + b.Property("Sex") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("sex"); + + b.Property("SkinColor") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("skin_color"); + + b.Property("Slot") + .HasColumnType("INTEGER") + .HasColumnName("slot"); + + b.Property("SpawnPriority") + .HasColumnType("INTEGER") + .HasColumnName("spawn_priority"); + + b.Property("Species") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("species"); + + b.HasKey("Id") + .HasName("PK_profile"); + + b.HasIndex("PreferenceId") + .HasDatabaseName("IX_profile_preference_id"); + + b.HasIndex("Slot", "PreferenceId") + .IsUnique(); + + b.ToTable("profile", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_id"); + + b.Property("LoadoutName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("loadout_name"); + + b.Property("ProfileLoadoutGroupId") + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout"); + + b.HasIndex("ProfileLoadoutGroupId"); + + b.ToTable("profile_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_loadout_group_id"); + + b.Property("GroupName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("group_name"); + + b.Property("ProfileRoleLoadoutId") + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.HasKey("Id") + .HasName("PK_profile_loadout_group"); + + b.HasIndex("ProfileRoleLoadoutId"); + + b.ToTable("profile_loadout_group", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("profile_role_loadout_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("RoleName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_name"); + + b.HasKey("Id") + .HasName("PK_profile_role_loadout"); + + b.HasIndex("ProfileId"); + + b.ToTable("profile_role_loadout", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("RoleId") + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.HasKey("PlayerUserId", "RoleId") + .HasName("PK_role_whitelists"); + + b.ToTable("role_whitelists", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("ServerId") + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("StartDate") + .HasColumnType("TEXT") + .HasColumnName("start_date"); + + b.HasKey("Id") + .HasName("PK_round"); + + b.HasIndex("ServerId") + .HasDatabaseName("IX_round_server_id"); + + b.HasIndex("StartDate"); + + b.ToTable("round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_id"); + + b.Property("Name") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("name"); + + b.HasKey("Id") + .HasName("PK_server"); + + b.ToTable("server", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("AutoDelete") + .HasColumnType("INTEGER") + .HasColumnName("auto_delete"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExemptFlags") + .HasColumnType("INTEGER") + .HasColumnName("exempt_flags"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_ban_round_id"); + + b.ToTable("server_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanExemption", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.Property("Flags") + .HasColumnType("INTEGER") + .HasColumnName("flags"); + + b.HasKey("UserId") + .HasName("PK_server_ban_exemption"); + + b.ToTable("server_ban_exemption", null, t => + { + t.HasCheckConstraint("FlagsNotZero", "flags != 0"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_ban_hit_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("ConnectionId") + .HasColumnType("INTEGER") + .HasColumnName("connection_id"); + + b.HasKey("Id") + .HasName("PK_server_ban_hit"); + + b.HasIndex("BanId") + .HasDatabaseName("IX_server_ban_hit_ban_id"); + + b.HasIndex("ConnectionId") + .HasDatabaseName("IX_server_ban_hit_connection_id"); + + b.ToTable("server_ban_hit", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b.Property("Address") + .HasColumnType("TEXT") + .HasColumnName("address"); + + b.Property("BanTime") + .HasColumnType("TEXT") + .HasColumnName("ban_time"); + + b.Property("BanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("banning_admin"); + + b.Property("ExpirationTime") + .HasColumnType("TEXT") + .HasColumnName("expiration_time"); + + b.Property("Hidden") + .HasColumnType("INTEGER") + .HasColumnName("hidden"); + + b.Property("LastEditedAt") + .HasColumnType("TEXT") + .HasColumnName("last_edited_at"); + + b.Property("LastEditedById") + .HasColumnType("TEXT") + .HasColumnName("last_edited_by_id"); + + b.Property("PlayerUserId") + .HasColumnType("TEXT") + .HasColumnName("player_user_id"); + + b.Property("PlaytimeAtNote") + .HasColumnType("TEXT") + .HasColumnName("playtime_at_note"); + + b.Property("Reason") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("reason"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("role_id"); + + b.Property("RoundId") + .HasColumnType("INTEGER") + .HasColumnName("round_id"); + + b.Property("Severity") + .HasColumnType("INTEGER") + .HasColumnName("severity"); + + b.HasKey("Id") + .HasName("PK_server_role_ban"); + + b.HasIndex("Address"); + + b.HasIndex("BanningAdmin"); + + b.HasIndex("LastEditedById"); + + b.HasIndex("PlayerUserId") + .HasDatabaseName("IX_server_role_ban_player_user_id"); + + b.HasIndex("RoundId") + .HasDatabaseName("IX_server_role_ban_round_id"); + + b.ToTable("server_role_ban", null, t => + { + t.HasCheckConstraint("HaveEitherAddressOrUserIdOrHWId", "address IS NOT NULL OR player_user_id IS NOT NULL OR hwid IS NOT NULL"); + }); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("role_unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_role_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_role_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("unban_id"); + + b.Property("BanId") + .HasColumnType("INTEGER") + .HasColumnName("ban_id"); + + b.Property("UnbanTime") + .HasColumnType("TEXT") + .HasColumnName("unban_time"); + + b.Property("UnbanningAdmin") + .HasColumnType("TEXT") + .HasColumnName("unbanning_admin"); + + b.HasKey("Id") + .HasName("PK_server_unban"); + + b.HasIndex("BanId") + .IsUnique(); + + b.ToTable("server_unban", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("trait_id"); + + b.Property("ProfileId") + .HasColumnType("INTEGER") + .HasColumnName("profile_id"); + + b.Property("TraitName") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("trait_name"); + + b.HasKey("Id") + .HasName("PK_trait"); + + b.HasIndex("ProfileId", "TraitName") + .IsUnique(); + + b.ToTable("trait", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasColumnName("uploaded_resource_log_id"); + + b.Property("Data") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("data"); + + b.Property("Date") + .HasColumnType("TEXT") + .HasColumnName("date"); + + b.Property("Path") + .IsRequired() + .HasColumnType("TEXT") + .HasColumnName("path"); + + b.Property("UserId") + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("Id") + .HasName("PK_uploaded_resource_log"); + + b.ToTable("uploaded_resource_log", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Whitelist", b => + { + b.Property("UserId") + .ValueGeneratedOnAdd() + .HasColumnType("TEXT") + .HasColumnName("user_id"); + + b.HasKey("UserId") + .HasName("PK_whitelist"); + + b.ToTable("whitelist", (string)null); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.Property("PlayersId") + .HasColumnType("INTEGER") + .HasColumnName("players_id"); + + b.Property("RoundsId") + .HasColumnType("INTEGER") + .HasColumnName("rounds_id"); + + b.HasKey("PlayersId", "RoundsId") + .HasName("PK_player_round"); + + b.HasIndex("RoundsId") + .HasDatabaseName("IX_player_round_rounds_id"); + + b.ToTable("player_round", (string)null); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.HasOne("Content.Server.Database.AdminRank", "AdminRank") + .WithMany("Admins") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_admin_rank_admin_rank_id"); + + b.Navigation("AdminRank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminFlag", b => + { + b.HasOne("Content.Server.Database.Admin", "Admin") + .WithMany("Flags") + .HasForeignKey("AdminId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_flag_admin_admin_id"); + + b.Navigation("Admin"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany("AdminLogs") + .HasForeignKey("RoundId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_round_round_id"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLogPlayer", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminLogs") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_player_player_user_id"); + + b.HasOne("Content.Server.Database.AdminLog", "Log") + .WithMany("Players") + .HasForeignKey("RoundId", "LogId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_log_player_admin_log_round_id_log_id"); + + b.Navigation("Log"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminMessage", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminMessagesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminMessagesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminMessagesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_messages_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminMessagesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_messages_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_messages_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminNote", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminNotesCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminNotesDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminNotesLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_notes_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminNotesReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_notes_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_notes_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRankFlag", b => + { + b.HasOne("Content.Server.Database.AdminRank", "Rank") + .WithMany("Flags") + .HasForeignKey("AdminRankId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_admin_rank_flag_admin_rank_admin_rank_id"); + + b.Navigation("Rank"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminWatchlist", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminWatchlistsCreated") + .HasForeignKey("CreatedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_created_by_id"); + + b.HasOne("Content.Server.Database.Player", "DeletedBy") + .WithMany("AdminWatchlistsDeleted") + .HasForeignKey("DeletedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_deleted_by_id"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminWatchlistsLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_admin_watchlists_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("AdminWatchlistsReceived") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .HasConstraintName("FK_admin_watchlists_player_player_user_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_admin_watchlists_round_round_id"); + + b.Navigation("CreatedBy"); + + b.Navigation("DeletedBy"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Player"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.Antag", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Antags") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_antag_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("ConnectionLogs") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.SetNull) + .IsRequired() + .HasConstraintName("FK_connection_log_server_server_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ConnectionLogId") + .HasColumnType("INTEGER") + .HasColumnName("connection_log_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ConnectionLogId"); + + b1.ToTable("connection_log"); + + b1.WithOwner() + .HasForeignKey("ConnectionLogId") + .HasConstraintName("FK_connection_log_connection_log_connection_log_id"); + }); + + b.Navigation("HWId"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.Job", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Jobs") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_job_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.OwnsOne("Content.Server.Database.TypedHwid", "LastSeenHWId", b1 => + { + b1.Property("PlayerId") + .HasColumnType("INTEGER") + .HasColumnName("player_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("last_seen_hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("last_seen_hwid_type"); + + b1.HasKey("PlayerId"); + + b1.ToTable("player"); + + b1.WithOwner() + .HasForeignKey("PlayerId") + .HasConstraintName("FK_player_player_player_id"); + }); + + b.Navigation("LastSeenHWId"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.HasOne("Content.Server.Database.Preference", "Preference") + .WithMany("Profiles") + .HasForeignKey("PreferenceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_preference_preference_id"); + + b.Navigation("Preference"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadout", b => + { + b.HasOne("Content.Server.Database.ProfileLoadoutGroup", "ProfileLoadoutGroup") + .WithMany("Loadouts") + .HasForeignKey("ProfileLoadoutGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_profile_loadout_group_profile_loadout_group_id"); + + b.Navigation("ProfileLoadoutGroup"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.HasOne("Content.Server.Database.ProfileRoleLoadout", "ProfileRoleLoadout") + .WithMany("Groups") + .HasForeignKey("ProfileRoleLoadoutId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_loadout_group_profile_role_loadout_profile_role_loadout_id"); + + b.Navigation("ProfileRoleLoadout"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Loadouts") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_profile_role_loadout_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("Content.Server.Database.RoleWhitelist", b => + { + b.HasOne("Content.Server.Database.Player", "Player") + .WithMany("JobWhitelists") + .HasForeignKey("PlayerUserId") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_role_whitelists_player_player_user_id"); + + b.Navigation("Player"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.HasOne("Content.Server.Database.Server", "Server") + .WithMany("Rounds") + .HasForeignKey("ServerId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_round_server_server_id"); + + b.Navigation("Server"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerBanId"); + + b1.ToTable("server_ban"); + + b1.WithOwner() + .HasForeignKey("ServerBanId") + .HasConstraintName("FK_server_ban_server_ban_server_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBanHit", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithMany("BanHits") + .HasForeignKey("BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_server_ban_ban_id"); + + b.HasOne("Content.Server.Database.ConnectionLog", "Connection") + .WithMany("BanHits") + .HasForeignKey("ConnectionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_ban_hit_connection_log_connection_id"); + + b.Navigation("Ban"); + + b.Navigation("Connection"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.HasOne("Content.Server.Database.Player", "CreatedBy") + .WithMany("AdminServerRoleBansCreated") + .HasForeignKey("BanningAdmin") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_banning_admin"); + + b.HasOne("Content.Server.Database.Player", "LastEditedBy") + .WithMany("AdminServerRoleBansLastEdited") + .HasForeignKey("LastEditedById") + .HasPrincipalKey("UserId") + .OnDelete(DeleteBehavior.SetNull) + .HasConstraintName("FK_server_role_ban_player_last_edited_by_id"); + + b.HasOne("Content.Server.Database.Round", "Round") + .WithMany() + .HasForeignKey("RoundId") + .HasConstraintName("FK_server_role_ban_round_round_id"); + + b.OwnsOne("Content.Server.Database.TypedHwid", "HWId", b1 => + { + b1.Property("ServerRoleBanId") + .HasColumnType("INTEGER") + .HasColumnName("server_role_ban_id"); + + b1.Property("Hwid") + .IsRequired() + .HasColumnType("BLOB") + .HasColumnName("hwid"); + + b1.Property("Type") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER") + .HasDefaultValue(0) + .HasColumnName("hwid_type"); + + b1.HasKey("ServerRoleBanId"); + + b1.ToTable("server_role_ban"); + + b1.WithOwner() + .HasForeignKey("ServerRoleBanId") + .HasConstraintName("FK_server_role_ban_server_role_ban_server_role_ban_id"); + }); + + b.Navigation("CreatedBy"); + + b.Navigation("HWId"); + + b.Navigation("LastEditedBy"); + + b.Navigation("Round"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleUnban", b => + { + b.HasOne("Content.Server.Database.ServerRoleBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerRoleUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_role_unban_server_role_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerUnban", b => + { + b.HasOne("Content.Server.Database.ServerBan", "Ban") + .WithOne("Unban") + .HasForeignKey("Content.Server.Database.ServerUnban", "BanId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_server_unban_server_ban_ban_id"); + + b.Navigation("Ban"); + }); + + modelBuilder.Entity("Content.Server.Database.Trait", b => + { + b.HasOne("Content.Server.Database.Profile", "Profile") + .WithMany("Traits") + .HasForeignKey("ProfileId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_trait_profile_profile_id"); + + b.Navigation("Profile"); + }); + + modelBuilder.Entity("PlayerRound", b => + { + b.HasOne("Content.Server.Database.Player", null) + .WithMany() + .HasForeignKey("PlayersId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_player_players_id"); + + b.HasOne("Content.Server.Database.Round", null) + .WithMany() + .HasForeignKey("RoundsId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired() + .HasConstraintName("FK_player_round_round_rounds_id"); + }); + + modelBuilder.Entity("Content.Server.Database.Admin", b => + { + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminLog", b => + { + b.Navigation("Players"); + }); + + modelBuilder.Entity("Content.Server.Database.AdminRank", b => + { + b.Navigation("Admins"); + + b.Navigation("Flags"); + }); + + modelBuilder.Entity("Content.Server.Database.ConnectionLog", b => + { + b.Navigation("BanHits"); + }); + + modelBuilder.Entity("Content.Server.Database.Player", b => + { + b.Navigation("AdminLogs"); + + b.Navigation("AdminMessagesCreated"); + + b.Navigation("AdminMessagesDeleted"); + + b.Navigation("AdminMessagesLastEdited"); + + b.Navigation("AdminMessagesReceived"); + + b.Navigation("AdminNotesCreated"); + + b.Navigation("AdminNotesDeleted"); + + b.Navigation("AdminNotesLastEdited"); + + b.Navigation("AdminNotesReceived"); + + b.Navigation("AdminServerBansCreated"); + + b.Navigation("AdminServerBansLastEdited"); + + b.Navigation("AdminServerRoleBansCreated"); + + b.Navigation("AdminServerRoleBansLastEdited"); + + b.Navigation("AdminWatchlistsCreated"); + + b.Navigation("AdminWatchlistsDeleted"); + + b.Navigation("AdminWatchlistsLastEdited"); + + b.Navigation("AdminWatchlistsReceived"); + + b.Navigation("JobWhitelists"); + }); + + modelBuilder.Entity("Content.Server.Database.Preference", b => + { + b.Navigation("Profiles"); + }); + + modelBuilder.Entity("Content.Server.Database.Profile", b => + { + b.Navigation("Antags"); + + b.Navigation("Jobs"); + + b.Navigation("Loadouts"); + + b.Navigation("Traits"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileLoadoutGroup", b => + { + b.Navigation("Loadouts"); + }); + + modelBuilder.Entity("Content.Server.Database.ProfileRoleLoadout", b => + { + b.Navigation("Groups"); + }); + + modelBuilder.Entity("Content.Server.Database.Round", b => + { + b.Navigation("AdminLogs"); + }); + + modelBuilder.Entity("Content.Server.Database.Server", b => + { + b.Navigation("ConnectionLogs"); + + b.Navigation("Rounds"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerBan", b => + { + b.Navigation("BanHits"); + + b.Navigation("Unban"); + }); + + modelBuilder.Entity("Content.Server.Database.ServerRoleBan", b => + { + b.Navigation("Unban"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.cs b/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.cs new file mode 100644 index 00000000000..ac08aa246ec --- /dev/null +++ b/Content.Server.Database/Migrations/Sqlite/20241223235932_AdminStatus.cs @@ -0,0 +1,40 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Content.Server.Database.Migrations.Sqlite +{ + /// + public partial class AdminStatus : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "deadminned", + table: "admin", + type: "INTEGER", + nullable: false, + defaultValue: false); + + migrationBuilder.AddColumn( + name: "suspended", + table: "admin", + type: "INTEGER", + nullable: false, + defaultValue: false); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "deadminned", + table: "admin"); + + migrationBuilder.DropColumn( + name: "suspended", + table: "admin"); + } + } +} diff --git a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs index c98c329aab7..4d0d97cd482 100644 --- a/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs +++ b/Content.Server.Database/Migrations/Sqlite/SqliteServerDbContextModelSnapshot.cs @@ -28,6 +28,14 @@ protected override void BuildModel(ModelBuilder modelBuilder) .HasColumnType("INTEGER") .HasColumnName("admin_rank_id"); + b.Property("Deadminned") + .HasColumnType("INTEGER") + .HasColumnName("deadminned"); + + b.Property("Suspended") + .HasColumnType("INTEGER") + .HasColumnName("suspended"); + b.Property("Title") .HasColumnType("TEXT") .HasColumnName("title"); diff --git a/Content.Server.Database/Model.cs b/Content.Server.Database/Model.cs index d3db1f6edc6..0f51cf72a67 100644 --- a/Content.Server.Database/Model.cs +++ b/Content.Server.Database/Model.cs @@ -611,6 +611,16 @@ public class Admin [Key] public Guid UserId { get; set; } public string? Title { get; set; } + /// + /// If true, the admin is voluntarily deadminned. They can re-admin at any time. + /// + public bool Deadminned { get; set; } + + /// + /// If true, the admin is suspended by an admin with PERMISSIONS. They will not have in-game permissions. + /// + public bool Suspended { get; set; } + public int? AdminRankId { get; set; } public AdminRank? AdminRank { get; set; } public List Flags { get; set; } = default!; @@ -964,10 +974,10 @@ public enum ConnectionDenyReason : byte Full = 2, Panic = 3, /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - * * If baby jail is removed, please reserve this value for as long as can reasonably be done to prevent causing ambiguity in connection denial reasons. * Reservation by commenting out the value is likely sufficient for this purpose, but may impact projects which depend on SS14 like SS14.Admin. + * + * Edit: It has */ BabyJail = 4, /// Results from rejected connections with external API checking tools diff --git a/Content.Server/Administration/Commands/BabyJailCommand.cs b/Content.Server/Administration/Commands/BabyJailCommand.cs deleted file mode 100644 index 058b67ca528..00000000000 --- a/Content.Server/Administration/Commands/BabyJailCommand.cs +++ /dev/null @@ -1,139 +0,0 @@ -using Content.Shared.Administration; -using Content.Shared.CCVar; -using Robust.Shared.Configuration; -using Robust.Shared.Console; - -/* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - -namespace Content.Server.Administration.Commands; - -[AdminCommand(AdminFlags.Server)] -public sealed class BabyJailCommand : LocalizedCommands -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public override string Command => "babyjail"; - - public override void Execute(IConsoleShell shell, string argStr, string[] args) - { - var toggle = Toggle(CCVars.BabyJailEnabled, shell, args, _cfg); - if (toggle == null) - return; - - shell.WriteLine(Loc.GetString(toggle.Value ? "babyjail-command-enabled" : "babyjail-command-disabled")); - } - - public static bool? Toggle(CVarDef cvar, IConsoleShell shell, string[] args, IConfigurationManager config) - { - if (args.Length > 1) - { - shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); - return null; - } - - var enabled = config.GetCVar(cvar); - - switch (args.Length) - { - case 0: - enabled = !enabled; - break; - case 1 when !bool.TryParse(args[0], out enabled): - shell.WriteError(Loc.GetString("shell-argument-must-be-boolean")); - return null; - } - - config.SetCVar(cvar, enabled); - - return enabled; - } -} - - -[AdminCommand(AdminFlags.Server)] -public sealed class BabyJailShowReasonCommand : LocalizedCommands -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public override string Command => "babyjail_show_reason"; - - public override void Execute(IConsoleShell shell, string argStr, string[] args) - { - var toggle = BabyJailCommand.Toggle(CCVars.BabyJailShowReason, shell, args, _cfg); - if (toggle == null) - return; - - shell.WriteLine(Loc.GetString(toggle.Value - ? "babyjail-command-show-reason-enabled" - : "babyjail-command-show-reason-disabled" - )); - } -} - -[AdminCommand(AdminFlags.Server)] -public sealed class BabyJailMinAccountAgeCommand : LocalizedCommands -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public override string Command => "babyjail_max_account_age"; - - public override void Execute(IConsoleShell shell, string argStr, string[] args) - { - switch (args.Length) - { - case 0: - { - var current = _cfg.GetCVar(CCVars.BabyJailMaxAccountAge); - shell.WriteLine(Loc.GetString("babyjail-command-max-account-age-is", ("minutes", current))); - break; - } - case > 1: - shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); - return; - } - - if (!int.TryParse(args[0], out var minutes)) - { - shell.WriteError(Loc.GetString("shell-argument-must-be-number")); - return; - } - - _cfg.SetCVar(CCVars.BabyJailMaxAccountAge, minutes); - shell.WriteLine(Loc.GetString("babyjail-command-max-account-age-set", ("minutes", minutes))); - } -} - -[AdminCommand(AdminFlags.Server)] -public sealed class BabyJailMinOverallHoursCommand : LocalizedCommands -{ - [Dependency] private readonly IConfigurationManager _cfg = default!; - - public override string Command => "babyjail_max_overall_minutes"; - - public override void Execute(IConsoleShell shell, string argStr, string[] args) - { - switch (args.Length) - { - case 0: - { - var current = _cfg.GetCVar(CCVars.BabyJailMaxOverallMinutes); - shell.WriteLine(Loc.GetString("babyjail-command-max-overall-minutes-is", ("minutes", current))); - break; - } - case > 1: - shell.WriteError(Loc.GetString("shell-need-between-arguments",("lower", 0), ("upper", 1))); - return; - } - - if (!int.TryParse(args[0], out var hours)) - { - shell.WriteError(Loc.GetString("shell-argument-must-be-number")); - return; - } - - _cfg.SetCVar(CCVars.BabyJailMaxOverallMinutes, hours); - shell.WriteLine(Loc.GetString("babyjail-command-overall-minutes-set", ("hours", hours))); - } -} diff --git a/Content.Server/Administration/Managers/AdminManager.cs b/Content.Server/Administration/Managers/AdminManager.cs index 2e2ebd31baa..05dacdc577a 100644 --- a/Content.Server/Administration/Managers/AdminManager.cs +++ b/Content.Server/Administration/Managers/AdminManager.cs @@ -91,14 +91,29 @@ public void DeAdmin(ICommonSession session) _chat.SendAdminAnnouncement(Loc.GetString("admin-manager-self-de-admin-message", ("exAdminName", session.Name))); _chat.DispatchServerMessage(session, Loc.GetString("admin-manager-became-normal-player-message")); - var plyData = session.ContentData()!; - plyData.ExplicitlyDeadminned = true; + UpdateDatabaseDeadminnedState(session, true); reg.Data.Active = false; SendPermsChangedEvent(session); UpdateAdminStatus(session); } + private async void UpdateDatabaseDeadminnedState(ICommonSession player, bool newState) + { + try + { + // NOTE: This function gets called if you deadmin/readmin from a transient admin status. + // (e.g. loginlocal) + // In which case there may not be a database record. + // The DB function handles this scenario fine, but it's worth noting. + await _dbManager.UpdateAdminDeadminnedAsync(player.UserId, newState); + } + catch (Exception e) + { + _sawmill.Error("Failed to save deadmin state to database for {Admin}", player.UserId); + } + } + public void Stealth(ICommonSession session) { if (!_admins.TryGetValue(session, out var reg)) @@ -151,8 +166,7 @@ public void ReAdmin(ICommonSession session) _chat.DispatchServerMessage(session, Loc.GetString("admin-manager-became-admin-message")); - var plyData = session.ContentData()!; - plyData.ExplicitlyDeadminned = false; + UpdateDatabaseDeadminnedState(session, false); reg.Data.Active = true; if (!reg.Data.Stealth) @@ -208,13 +222,13 @@ public async void ReloadAdmin(ICommonSession player) curAdmin.IsSpecialLogin = special; curAdmin.RankId = rankId; curAdmin.Data = aData; - } - if (!player.ContentData()!.ExplicitlyDeadminned) - { - aData.Active = true; + if (curAdmin.Data.Active) + { + aData.Active = true; - _chat.DispatchServerMessage(player, Loc.GetString("admin-manager-admin-permissions-updated-message")); + _chat.DispatchServerMessage(player, Loc.GetString("admin-manager-admin-permissions-updated-message")); + } } if (player.ContentData()!.Stealthed) @@ -381,10 +395,8 @@ private async void LoginAdminMaybe(ICommonSession session) if (session.ContentData()!.Stealthed) reg.Data.Stealth = true; - if (!session.ContentData()!.ExplicitlyDeadminned) + if (reg.Data.Active) { - reg.Data.Active = true; - if (_cfg.GetCVar(CCVars.AdminAnnounceLogin)) { if (reg.Data.Stealth) @@ -430,6 +442,7 @@ private async void LoginAdminMaybe(ICommonSession session) { Title = Loc.GetString("admin-manager-admin-data-host-title"), Flags = AdminFlagsHelper.Everything, + Active = true, }; return (data, null, true); @@ -444,6 +457,12 @@ private async void LoginAdminMaybe(ICommonSession session) return null; } + if (dbData.Suspended) + { + // Suspended admins don't count. + return null; + } + var flags = AdminFlags.None; if (dbData.AdminRank != null) @@ -466,7 +485,8 @@ private async void LoginAdminMaybe(ICommonSession session) var data = new AdminData { - Flags = flags + Flags = flags, + Active = !dbData.Deadminned, }; if (dbData.Title != null && _cfg.GetCVar(CCVars.AdminUseCustomNamesAdminRank)) diff --git a/Content.Server/Administration/Managers/IWatchlistWebhookManager.cs b/Content.Server/Administration/Managers/IWatchlistWebhookManager.cs new file mode 100644 index 00000000000..6be4805365f --- /dev/null +++ b/Content.Server/Administration/Managers/IWatchlistWebhookManager.cs @@ -0,0 +1,23 @@ +using Content.Server.Administration.Notes; +using Content.Server.Database; +using Content.Server.Discord; +using Content.Shared.CCVar; +using Robust.Server; +using Robust.Server.Player; +using Robust.Shared.Enums; +using Robust.Shared.Configuration; +using Robust.Shared.Network; +using Robust.Shared.Player; +using System.Linq; + +namespace Content.Server.Administration.Managers; + +/// +/// This manager sends a webhook notification whenever a player with an active +/// watchlist joins the server. +/// +public interface IWatchlistWebhookManager +{ + void Initialize(); + void Update(); +} diff --git a/Content.Server/Administration/Managers/WatchlistWebhookManager.cs b/Content.Server/Administration/Managers/WatchlistWebhookManager.cs new file mode 100644 index 00000000000..054d45bfd0e --- /dev/null +++ b/Content.Server/Administration/Managers/WatchlistWebhookManager.cs @@ -0,0 +1,143 @@ +using Content.Server.Administration.Notes; +using Content.Server.Database; +using Content.Server.Discord; +using Content.Shared.CCVar; +using Robust.Server; +using Robust.Server.Player; +using Robust.Shared.Enums; +using Robust.Shared.Configuration; +using Robust.Shared.Network; +using Robust.Shared.Player; +using Robust.Shared.Timing; +using System.Linq; +using System.Text; + +namespace Content.Server.Administration.Managers; + +/// +/// This manager sends a Discord webhook notification whenever a player with an active +/// watchlist joins the server. +/// +public sealed class WatchlistWebhookManager : IWatchlistWebhookManager +{ + [Dependency] private readonly IAdminNotesManager _adminNotes = default!; + [Dependency] private readonly IBaseServer _baseServer = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; + [Dependency] private readonly DiscordWebhook _discord = default!; + [Dependency] private readonly IGameTiming _gameTiming = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + private ISawmill _sawmill = default!; + + private string _webhookUrl = default!; + private TimeSpan _bufferTime; + + private List watchlistConnections = new(); + private TimeSpan? _bufferStartTime; + + public void Initialize() + { + _sawmill = Logger.GetSawmill("discord"); + _cfg.OnValueChanged(CCVars.DiscordWatchlistConnectionBufferTime, SetBufferTime, true); + _cfg.OnValueChanged(CCVars.DiscordWatchlistConnectionWebhook, SetWebhookUrl, true); + _playerManager.PlayerStatusChanged += OnPlayerStatusChanged; + } + + private void SetBufferTime(float bufferTimeSeconds) + { + _bufferTime = TimeSpan.FromSeconds(bufferTimeSeconds); + } + + private void SetWebhookUrl(string webhookUrl) + { + _webhookUrl = webhookUrl; + } + + private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) + { + if (e.NewStatus != SessionStatus.Connected) + return; + + var watchlists = await _adminNotes.GetActiveWatchlists(e.Session.UserId); + + if (watchlists.Count == 0) + return; + + watchlistConnections.Add(new WatchlistConnection(e.Session.Name, watchlists)); + + if (_bufferTime > TimeSpan.Zero) + { + if (_bufferStartTime == null) + _bufferStartTime = _gameTiming.RealTime; + } + else + { + SendDiscordMessage(); + } + } + + public void Update() + { + if (_bufferStartTime != null && _gameTiming.RealTime > (_bufferStartTime + _bufferTime)) + { + SendDiscordMessage(); + _bufferStartTime = null; + } + } + + private async void SendDiscordMessage() + { + try + { + if (string.IsNullOrWhiteSpace(_webhookUrl)) + return; + + var webhookData = await _discord.GetWebhook(_webhookUrl); + if (webhookData == null) + return; + + var webhookIdentifier = webhookData.Value.ToIdentifier(); + + var messageBuilder = new StringBuilder(Loc.GetString("discord-watchlist-connection-header", + ("players", watchlistConnections.Count), + ("serverName", _baseServer.ServerName))); + + foreach (var connection in watchlistConnections) + { + messageBuilder.Append('\n'); + + var watchlist = connection.Watchlists.First(); + var expiry = watchlist.ExpirationTime?.ToUnixTimeSeconds(); + messageBuilder.Append(Loc.GetString("discord-watchlist-connection-entry", + ("playerName", connection.PlayerName), + ("message", watchlist.Message), + ("expiry", expiry ?? 0), + ("otherWatchlists", connection.Watchlists.Count - 1))); + } + + var payload = new WebhookPayload { Content = messageBuilder.ToString() }; + + await _discord.CreateMessage(webhookIdentifier, payload); + } + catch (Exception e) + { + _sawmill.Error($"Error while sending discord watchlist connection message:\n{e}"); + } + + // Clear the buffered list regardless of whether the message is sent successfully + // This prevents infinitely buffering connections if we fail to send a message + watchlistConnections.Clear(); + } + + private sealed class WatchlistConnection + { + public string PlayerName; + public List Watchlists; + + public WatchlistConnection(string playerName, List watchlists) + { + PlayerName = playerName; + Watchlists = watchlists; + } + } +} diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 1edb42615f2..88ff739bdc0 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -65,7 +65,6 @@ public sealed class AdminSystem : EntitySystem private readonly HashSet _roundActivePlayers = new(); public readonly PanicBunkerStatus PanicBunker = new(); - public readonly BabyJailStatus BabyJail = new(); public override void Initialize() { @@ -85,16 +84,6 @@ public override void Initialize() Subs.CVar(_config, CCVars.PanicBunkerMinOverallMinutes, OnPanicBunkerMinOverallMinutesChanged, true); Subs.CVar(_config, CCCVars.PanicBunkerDenyVPN, OnPanicBunkerDenyVpnChanged, true); // Corvax-VPNGuard - /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - - // Baby Jail Settings - Subs.CVar(_config, CCVars.BabyJailEnabled, OnBabyJailChanged, true); - Subs.CVar(_config, CCVars.BabyJailShowReason, OnBabyJailShowReasonChanged, true); - Subs.CVar(_config, CCVars.BabyJailMaxAccountAge, OnBabyJailMaxAccountAgeChanged, true); - Subs.CVar(_config, CCVars.BabyJailMaxOverallMinutes, OnBabyJailMaxOverallMinutesChanged, true); - SubscribeLocalEvent(OnIdentityChanged); SubscribeLocalEvent(OnPlayerAttached); SubscribeLocalEvent(OnPlayerDetached); @@ -281,17 +270,6 @@ private void OnPanicBunkerChanged(bool enabled) SendPanicBunkerStatusAll(); } - private void OnBabyJailChanged(bool enabled) - { - BabyJail.Enabled = enabled; - _chat.SendAdminAlert(Loc.GetString(enabled - ? "admin-ui-baby-jail-enabled-admin-alert" - : "admin-ui-baby-jail-disabled-admin-alert" - )); - - SendBabyJailStatusAll(); - } - private void OnPanicBunkerDisableWithAdminsChanged(bool enabled) { PanicBunker.DisableWithAdmins = enabled; @@ -316,36 +294,18 @@ private void OnPanicBunkerShowReasonChanged(bool enabled) SendPanicBunkerStatusAll(); } - private void OnBabyJailShowReasonChanged(bool enabled) - { - BabyJail.ShowReason = enabled; - SendBabyJailStatusAll(); - } - private void OnPanicBunkerMinAccountAgeChanged(int minutes) { PanicBunker.MinAccountAgeMinutes = minutes; SendPanicBunkerStatusAll(); } - private void OnBabyJailMaxAccountAgeChanged(int minutes) - { - BabyJail.MaxAccountAgeMinutes = minutes; - SendBabyJailStatusAll(); - } - private void OnPanicBunkerMinOverallMinutesChanged(int minutes) { PanicBunker.MinOverallMinutes = minutes; SendPanicBunkerStatusAll(); } - private void OnBabyJailMaxOverallMinutesChanged(int minutes) - { - BabyJail.MaxOverallMinutes = minutes; - SendBabyJailStatusAll(); - } - // Corvax-VPNGuard-Start private void OnPanicBunkerDenyVpnChanged(bool deny) { @@ -400,15 +360,6 @@ private void SendPanicBunkerStatusAll() } } - private void SendBabyJailStatusAll() - { - var ev = new BabyJailChangedEvent(BabyJail); - foreach (var admin in _adminManager.AllAdmins) - { - RaiseNetworkEvent(ev, admin); - } - } - /// /// Erases a player from the round. /// This removes them and any trace of them from the round, deleting their diff --git a/Content.Server/Administration/UI/PermissionsEui.cs b/Content.Server/Administration/UI/PermissionsEui.cs index 7c2d2cbaf20..7923740c29b 100644 --- a/Content.Server/Administration/UI/PermissionsEui.cs +++ b/Content.Server/Administration/UI/PermissionsEui.cs @@ -76,7 +76,8 @@ public override EuiStateBase GetNewState() Title = p.a.Title, RankId = p.a.AdminRankId, UserId = new NetUserId(p.a.UserId), - UserName = p.lastUserName + UserName = p.lastUserName, + Suspended = p.a.Suspended, }).ToArray(), AdminRanks = _adminRanks.ToDictionary(a => a.Id, a => new PermissionsEuiState.AdminRankData @@ -255,6 +256,7 @@ private async Task HandleUpdateAdmin(UpdateAdmin ua) admin.Title = ua.Title; admin.AdminRankId = ua.RankId; admin.Flags = GenAdminFlagList(ua.PosFlags, ua.NegFlags); + admin.Suspended = ua.Suspended; await _db.UpdateAdminAsync(admin); @@ -335,7 +337,8 @@ private async Task HandleCreateAdmin(AddAdmin ca) Flags = GenAdminFlagList(ca.PosFlags, ca.NegFlags), AdminRankId = ca.RankId, UserId = userId.UserId, - Title = ca.Title + Title = ca.Title, + Suspended = ca.Suspended, }; await _db.AddAdminAsync(admin); diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 4dcfebfbb90..7891d2e4c50 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -101,9 +101,16 @@ public void AddTemporaryConnectBypass(NetUserId user, TimeSpan duration) time = newTime; } - public void Update() + public async void Update() { - _ipintel.Update(); + try + { + await _ipintel.Update(); + } + catch (Exception e) + { + _sawmill.Error("IPIntel update failed:" + e); + } } /* @@ -303,14 +310,6 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame } } - if (_cfg.GetCVar(CCVars.BabyJailEnabled) && adminData == null) - { - var result = await IsInvalidConnectionDueToBabyJail(userId, e); - - if (result.IsInvalid) - return (ConnectionDenyReason.BabyJail, result.Reason, null); - } - var wasInGame = EntitySystem.TryGet(out var ticker) && ticker.PlayerGameStatuses.TryGetValue(userId, out var status) && status == PlayerGameStatus.JoinedGame; @@ -372,72 +371,6 @@ session.Status is SessionStatus.Connected or SessionStatus.InGame return null; } - private async Task<(bool IsInvalid, string Reason)> IsInvalidConnectionDueToBabyJail(NetUserId userId, NetConnectingArgs e) - { - // If you're whitelisted then bypass this whole thing - if (await _db.GetWhitelistStatusAsync(userId)) - return (false, ""); - - // Initial cvar retrieval - var showReason = _cfg.GetCVar(CCVars.BabyJailShowReason); - var reason = _cfg.GetCVar(CCVars.BabyJailCustomReason); - var maxAccountAgeMinutes = _cfg.GetCVar(CCVars.BabyJailMaxAccountAge); - var maxPlaytimeMinutes = _cfg.GetCVar(CCVars.BabyJailMaxOverallMinutes); - - // Wait some time to lookup data - var record = await _db.GetPlayerRecordByUserId(userId); - - // No player record = new account or the DB is having a skill issue - if (record == null) - return (false, ""); - - var isAccountAgeInvalid = record.FirstSeenTime.CompareTo(DateTimeOffset.UtcNow - TimeSpan.FromMinutes(maxAccountAgeMinutes)) <= 0; - - if (isAccountAgeInvalid) - { - _sawmill.Debug($"Baby jail will deny {userId} for account age {record.FirstSeenTime}"); // Remove on or after 2024-09 - } - - if (isAccountAgeInvalid && showReason) - { - var locAccountReason = reason != string.Empty - ? reason - : Loc.GetString("baby-jail-account-denied-reason", - ("reason", - Loc.GetString( - "baby-jail-account-reason-account", - ("minutes", maxAccountAgeMinutes)))); - - return (true, locAccountReason); - } - - var overallTime = ( await _db.GetPlayTimes(e.UserId)).Find(p => p.Tracker == PlayTimeTrackingShared.TrackerOverall); - var isTotalPlaytimeInvalid = overallTime != null && overallTime.TimeSpent.TotalMinutes >= maxPlaytimeMinutes; - - if (isTotalPlaytimeInvalid) - { - _sawmill.Debug($"Baby jail will deny {userId} for playtime {overallTime!.TimeSpent}"); // Remove on or after 2024-09 - } - - if (isTotalPlaytimeInvalid && showReason) - { - var locPlaytimeReason = reason != string.Empty - ? reason - : Loc.GetString("baby-jail-account-denied-reason", - ("reason", - Loc.GetString( - "baby-jail-account-reason-overall", - ("minutes", maxPlaytimeMinutes)))); - - return (true, locPlaytimeReason); - } - - if (!showReason && isTotalPlaytimeInvalid || isAccountAgeInvalid) - return (true, Loc.GetString("baby-jail-account-denied")); - - return (false, ""); - } - private bool HasTemporaryBypass(NetUserId user) { return _temporaryBypasses.TryGetValue(user, out var time) && time > _gameTiming.RealTime; diff --git a/Content.Server/Connection/IPIntel/IPIntel.cs b/Content.Server/Connection/IPIntel/IPIntel.cs index 033cdb5cd12..51a0b74089d 100644 --- a/Content.Server/Connection/IPIntel/IPIntel.cs +++ b/Content.Server/Connection/IPIntel/IPIntel.cs @@ -38,6 +38,7 @@ public IPIntel(IIPIntelApi api, _sawmill = logManager.GetSawmill("ipintel"); cfg.OnValueChanged(CCVars.GameIPIntelEmail, b => _contactEmail = b, true); + cfg.OnValueChanged(CCVars.GameIPIntelEnabled, b => _enabled = b, true); cfg.OnValueChanged(CCVars.GameIPIntelRejectUnknown, b => _rejectUnknown = b, true); cfg.OnValueChanged(CCVars.GameIPIntelRejectBad, b => _rejectBad = b, true); cfg.OnValueChanged(CCVars.GameIPIntelRejectRateLimited, b => _rejectLimited = b, true); @@ -74,6 +75,7 @@ internal struct Ratelimits // CCVars private string? _contactEmail; + private bool _enabled; private bool _rejectUnknown; private bool _rejectBad; private bool _rejectLimited; @@ -273,12 +275,12 @@ private bool ShouldLiftRateLimit(in Ratelimits ratelimits, TimeSpan liftingTime) return _rejectBad ? (true, Loc.GetString("ipintel-suspicious")) : (false, string.Empty); } - public void Update() + public async Task Update() { - if (_gameTiming.RealTime >= _nextClean) + if (_enabled && _gameTiming.RealTime >= _nextClean) { _nextClean = _gameTiming.RealTime + TimeSpan.FromMinutes(_cleanupMins); - _db.CleanIPIntelCache(_cacheDays); + await _db.CleanIPIntelCache(_cacheDays); } } diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 6b858e899c3..439a552fcbc 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -759,6 +759,20 @@ public async Task UpdateAdminAsync(Admin admin, CancellationToken cancel) existing.Flags = admin.Flags; existing.Title = admin.Title; existing.AdminRankId = admin.AdminRankId; + existing.Deadminned = admin.Deadminned; + existing.Suspended = admin.Suspended; + + await db.DbContext.SaveChangesAsync(cancel); + } + + public async Task UpdateAdminDeadminnedAsync(NetUserId userId, bool deadminned, CancellationToken cancel) + { + await using var db = await GetDb(cancel); + + var adminRecord = db.DbContext.Admin.Where(a => a.UserId == userId); + await adminRecord.ExecuteUpdateAsync( + set => set.SetProperty(p => p.Deadminned, deadminned), + cancellationToken: cancel); await db.DbContext.SaveChangesAsync(cancel); } @@ -1782,8 +1796,11 @@ public async Task CleanIPIntelCache(TimeSpan range) { await using var db = await GetDb(); + // Calculating this here cause otherwise sqlite whines. + var cutoffTime = DateTime.UtcNow.Subtract(range); + await db.DbContext.IPIntelCache - .Where(w => DateTime.UtcNow - w.Time >= range) + .Where(w => w.Time <= cutoffTime) .ExecuteDeleteAsync(); await db.DbContext.SaveChangesAsync(); diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs index 76e74bdb139..9fee2c021bd 100644 --- a/Content.Server/Database/ServerDbManager.cs +++ b/Content.Server/Database/ServerDbManager.cs @@ -217,6 +217,16 @@ Task AddConnectionLogAsync( Task AddAdminAsync(Admin admin, CancellationToken cancel = default); Task UpdateAdminAsync(Admin admin, CancellationToken cancel = default); + /// + /// Update whether an admin has voluntarily deadminned. + /// + /// + /// This does nothing if the player is not an admin. + /// + /// The user ID of the admin. + /// Whether the admin is deadminned or not. + Task UpdateAdminDeadminnedAsync(NetUserId userId, bool deadminned, CancellationToken cancel = default); + Task RemoveAdminRankAsync(int rankId, CancellationToken cancel = default); Task AddAdminRankAsync(AdminRank rank, CancellationToken cancel = default); Task UpdateAdminRankAsync(AdminRank rank, CancellationToken cancel = default); @@ -674,6 +684,12 @@ public Task UpdateAdminAsync(Admin admin, CancellationToken cancel = default) return RunDbCommand(() => _db.UpdateAdminAsync(admin, cancel)); } + public Task UpdateAdminDeadminnedAsync(NetUserId userId, bool deadminned, CancellationToken cancel = default) + { + DbWriteOpsMetric.Inc(); + return RunDbCommand(() => _db.UpdateAdminDeadminnedAsync(userId, deadminned, cancel)); + } + public Task RemoveAdminRankAsync(int rankId, CancellationToken cancel = default) { DbWriteOpsMetric.Inc(); diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs index c849198579e..fac116a2a3e 100644 --- a/Content.Server/Entry/EntryPoint.cs +++ b/Content.Server/Entry/EntryPoint.cs @@ -49,6 +49,7 @@ public sealed class EntryPoint : GameServer private PlayTimeTrackingManager? _playTimeTracking; private IEntitySystemManager? _sysMan; private IServerDbManager? _dbManager; + private IWatchlistWebhookManager _watchlistWebhookManager = default!; private IConnectionManager? _connectionManager; /// @@ -97,6 +98,7 @@ public override void Init() _connectionManager = IoCManager.Resolve(); _sysMan = IoCManager.Resolve(); _dbManager = IoCManager.Resolve(); + _watchlistWebhookManager = IoCManager.Resolve(); logManager.GetSawmill("Storage").Level = LogLevel.Info; logManager.GetSawmill("db.ef").Level = LogLevel.Info; @@ -115,6 +117,7 @@ public override void Init() _voteManager.Initialize(); _updateManager.Initialize(); _playTimeTracking.Initialize(); + _watchlistWebhookManager.Initialize(); IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); } @@ -182,6 +185,7 @@ public override void Update(ModUpdateLevel level, FrameEventArgs frameEventArgs) case ModUpdateLevel.FramePostEngine: _updateManager.Update(); _playTimeTracking?.Update(); + _watchlistWebhookManager.Update(); _connectionManager?.Update(); break; } diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs index d9605c775c1..d78950b1d55 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Evaporation.cs @@ -55,6 +55,8 @@ private void TickEvaporation() Spawn("PuddleSparkle", xformQuery.GetComponent(uid).Coordinates); QueueDel(uid); } + + _solutionContainerSystem.UpdateChemicals(puddle.Solution.Value); } } } diff --git a/Content.Server/GameTicking/GameTicker.StatusShell.cs b/Content.Server/GameTicking/GameTicker.StatusShell.cs index 370248bb730..142870f1026 100644 --- a/Content.Server/GameTicking/GameTicker.StatusShell.cs +++ b/Content.Server/GameTicking/GameTicker.StatusShell.cs @@ -1,3 +1,4 @@ +using System.Linq; using System.Text.Json.Nodes; using Content.Corvax.Interfaces.Server; using Content.Shared.CCVar; @@ -45,6 +46,10 @@ private void GetStatusResponse(JsonNode jObject) var players = IoCManager.Instance?.TryResolveType(out var joinQueueManager) ?? false ? joinQueueManager.ActualPlayersCount : _playerManager.PlayerCount; + + players = _cfg.GetCVar(CCVars.AdminsCountInReportedPlayerCount) + ? players + : players - _adminManager.ActiveAdmins.Count(); // Corvax-Queue-End jObject["name"] = _baseServer.ServerName; @@ -53,12 +58,6 @@ private void GetStatusResponse(JsonNode jObject) jObject["players"] = players; // Corvax-Queue jObject["soft_max_players"] = _cfg.GetCVar(CCVars.SoftMaxPlayers); jObject["panic_bunker"] = _cfg.GetCVar(CCVars.PanicBunkerEnabled); - - /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - - jObject["baby_jail"] = _cfg.GetCVar(CCVars.BabyJailEnabled); jObject["run_level"] = (int) _runLevel; if (preset != null) jObject["preset"] = Loc.GetString(preset.ModeTitle); diff --git a/Content.Server/Implants/SubdermalImplantSystem.cs b/Content.Server/Implants/SubdermalImplantSystem.cs index 0c86e2f6592..9d074cec745 100644 --- a/Content.Server/Implants/SubdermalImplantSystem.cs +++ b/Content.Server/Implants/SubdermalImplantSystem.cs @@ -21,6 +21,7 @@ using System.Numerics; using Content.Shared.Movement.Pulling.Components; using Content.Shared.Movement.Pulling.Systems; +using Content.Server.IdentityManagement; using Content.Shared.Store.Components; using Robust.Shared.Collections; using Robust.Shared.Map.Components; @@ -41,6 +42,7 @@ public sealed class SubdermalImplantSystem : SharedSubdermalImplantSystem [Dependency] private readonly PullingSystem _pullingSystem = default!; [Dependency] private readonly EntityLookupSystem _lookupSystem = default!; [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly IdentitySystem _identity = default!; private EntityQuery _physicsQuery; private HashSet> _targetGrids = []; @@ -211,7 +213,7 @@ private void OnDnaScramblerImplant(EntityUid uid, SubdermalImplantComponent comp { var newProfile = HumanoidCharacterProfile.RandomWithSpecies(humanoid.Species); _humanoidAppearance.LoadProfile(ent, newProfile, humanoid); - _metaData.SetEntityName(ent, newProfile.Name); + _metaData.SetEntityName(ent, newProfile.Name, raiseEvents: false); // raising events would update ID card, station record, etc. if (TryComp(ent, out var dna)) { dna.DNA = _forensicsSystem.GenerateDNA(); @@ -223,6 +225,7 @@ private void OnDnaScramblerImplant(EntityUid uid, SubdermalImplantComponent comp { fingerprint.Fingerprint = _forensicsSystem.GenerateFingerprint(); } + _identity.QueueIdentityUpdate(ent); // manually queue identity update since we don't raise the event _popup.PopupEntity(Loc.GetString("scramble-implant-activated-popup"), ent, ent); } diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs index fbe4fefb542..7c77f1050b9 100644 --- a/Content.Server/IoC/ServerContentIoC.cs +++ b/Content.Server/IoC/ServerContentIoC.cs @@ -75,6 +75,7 @@ public static void Register() IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); + IoCManager.Register(); IoCManager.Register(); } } diff --git a/Content.Server/Speech/Components/MumbleAccentComponent.cs b/Content.Server/Speech/Components/MumbleAccentComponent.cs new file mode 100644 index 00000000000..0681ebab2f8 --- /dev/null +++ b/Content.Server/Speech/Components/MumbleAccentComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server.Speech.Components; + +[RegisterComponent] +public sealed partial class MumbleAccentComponent : Component +{ + +} diff --git a/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs b/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs new file mode 100644 index 00000000000..757f31ad9ea --- /dev/null +++ b/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs @@ -0,0 +1,25 @@ +using Content.Server.Speech.Components; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class MumbleAccentSystem : EntitySystem +{ + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAccentGet); + } + + public string Accentuate(string message, MumbleAccentComponent component) + { + return _replacement.ApplyReplacements(message, "mumble"); + } + + private void OnAccentGet(EntityUid uid, MumbleAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} diff --git a/Content.Shared/Administration/Events/BabyJailChangedEvent.cs b/Content.Shared/Administration/Events/BabyJailChangedEvent.cs deleted file mode 100644 index 56d5ce51626..00000000000 --- a/Content.Shared/Administration/Events/BabyJailChangedEvent.cs +++ /dev/null @@ -1,22 +0,0 @@ -using Robust.Shared.Serialization; - -/* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - -namespace Content.Shared.Administration.Events; - -[Serializable, NetSerializable] -public sealed class BabyJailStatus -{ - public bool Enabled; - public bool ShowReason; - public int MaxAccountAgeMinutes; - public int MaxOverallMinutes; -} - -[Serializable, NetSerializable] -public sealed class BabyJailChangedEvent(BabyJailStatus status) : EntityEventArgs -{ - public BabyJailStatus Status = status; -} diff --git a/Content.Shared/Administration/PermissionsEuiState.cs b/Content.Shared/Administration/PermissionsEuiState.cs index 4aa622f45e3..77fdad5fa7a 100644 --- a/Content.Shared/Administration/PermissionsEuiState.cs +++ b/Content.Shared/Administration/PermissionsEuiState.cs @@ -18,6 +18,7 @@ public struct AdminData public NetUserId UserId; public string? UserName; public string? Title; + public bool Suspended; public AdminFlags PosFlags; public AdminFlags NegFlags; public int? RankId; @@ -41,6 +42,7 @@ public sealed class AddAdmin : EuiMessageBase public AdminFlags PosFlags; public AdminFlags NegFlags; public int? RankId; + public bool Suspended; } [Serializable, NetSerializable] @@ -57,6 +59,7 @@ public sealed class UpdateAdmin : EuiMessageBase public AdminFlags PosFlags; public AdminFlags NegFlags; public int? RankId; + public bool Suspended; } diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs index c422a5a02a1..7754a6cbb8b 100644 --- a/Content.Shared/CCVar/CCVars.Admin.cs +++ b/Content.Shared/CCVar/CCVars.Admin.cs @@ -158,6 +158,13 @@ public sealed partial class CCVars public static readonly CVarDef AdminsCountForMaxPlayers = CVarDef.Create("admin.admins_count_for_max_players", false, CVar.SERVERONLY); + /// + /// Should admins be hidden from the player count reported to the launcher/via api? + /// This is hub advert safe, in case that's a worry. + /// + public static readonly CVarDef AdminsCountInReportedPlayerCount = + CVarDef.Create("admin.admins_count_in_playercount", false, CVar.SERVERONLY); + /// /// Determine if custom rank names are used. /// If it is false, it'd use the actual rank name regardless of the individual's title. diff --git a/Content.Shared/CCVar/CCVars.Discord.cs b/Content.Shared/CCVar/CCVars.Discord.cs index a6c4ada7454..6e4ef532cdc 100644 --- a/Content.Shared/CCVar/CCVars.Discord.cs +++ b/Content.Shared/CCVar/CCVars.Discord.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Configuration; +using Robust.Shared.Configuration; namespace Content.Shared.CCVar; @@ -58,4 +58,18 @@ public sealed partial class CCVars /// public static readonly CVarDef DiscordRoundEndRoleWebhook = CVarDef.Create("discord.round_end_role", string.Empty, CVar.SERVERONLY); + + /// + /// URL of the Discord webhook which will relay watchlist connection notifications. If left empty, disables the webhook. + /// + public static readonly CVarDef DiscordWatchlistConnectionWebhook = + CVarDef.Create("discord.watchlist_connection_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL); + + /// + /// How long to buffer watchlist connections for, in seconds. + /// All connections within this amount of time from the first one will be batched and sent as a single + /// Discord notification. If zero, always sends a separate notification for each connection (not recommended). + /// + public static readonly CVarDef DiscordWatchlistConnectionBufferTime = + CVarDef.Create("discord.watchlist_connection_buffer_time", 5f, CVar.SERVERONLY); } diff --git a/Content.Shared/CCVar/CCVars.Game.cs b/Content.Shared/CCVar/CCVars.Game.cs index e04cf432531..4a6f1118a1d 100644 --- a/Content.Shared/CCVar/CCVars.Game.cs +++ b/Content.Shared/CCVar/CCVars.Game.cs @@ -198,48 +198,6 @@ public static readonly CVarDef public static readonly CVarDef BypassBunkerWhitelist = CVarDef.Create("game.panic_bunker.whitelisted_can_bypass", true, CVar.SERVERONLY); - /* - * TODO: Remove baby jail code once a more mature gateway process is established. This code is only being issued as a stopgap to help with potential tiding in the immediate future. - */ - - /// - /// Whether the baby jail is currently enabled. - /// - public static readonly CVarDef BabyJailEnabled = - CVarDef.Create("game.baby_jail.enabled", false, CVar.NOTIFY | CVar.REPLICATED | CVar.SERVER); - - /// - /// Show reason of disconnect for user or not. - /// - public static readonly CVarDef BabyJailShowReason = - CVarDef.Create("game.baby_jail.show_reason", false, CVar.SERVERONLY); - - /// - /// Maximum age of the account (from server's PoV, so from first-seen date) in minutes that can access baby - /// jailed servers. - /// - public static readonly CVarDef BabyJailMaxAccountAge = - CVarDef.Create("game.baby_jail.max_account_age", 1440, CVar.SERVERONLY); - - /// - /// Maximum overall played time allowed to access baby jailed servers. - /// - public static readonly CVarDef BabyJailMaxOverallMinutes = - CVarDef.Create("game.baby_jail.max_overall_minutes", 120, CVar.SERVERONLY); - - /// - /// A custom message that will be used for connections denied due to the baby jail. - /// If not empty, then will overwrite - /// - public static readonly CVarDef BabyJailCustomReason = - CVarDef.Create("game.baby_jail.custom_reason", string.Empty, CVar.SERVERONLY); - - /// - /// Allow bypassing the baby jail if the user is whitelisted. - /// - public static readonly CVarDef BypassBabyJailWhitelist = - CVarDef.Create("game.baby_jail.whitelisted_can_bypass", true, CVar.SERVERONLY); - /// /// Enable IPIntel for blocking VPN connections from new players. /// diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs index 42e7f721b3e..29443e284a0 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs @@ -75,10 +75,10 @@ public ItemSlot(ItemSlot other) public EntityWhitelist? Blacklist; [DataField] - public SoundSpecifier InsertSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/revolver_magin.ogg"); + public SoundSpecifier? InsertSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/revolver_magin.ogg"); [DataField] - public SoundSpecifier EjectSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagOut/revolver_magout.ogg"); + public SoundSpecifier? EjectSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagOut/revolver_magout.ogg"); /// /// The name of this item slot. This will be shown to the user in the verb menu. diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs index 8a2b895d0c9..ebbfee247c1 100644 --- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs @@ -589,8 +589,8 @@ public IEnumerable GetColliding(EntityUid uid, PhysicsComponent? phys if (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.Comp.CollisionLayer == (int) CollisionGroup.SlipLayer && otherPhysics.Comp.CollisionMask == (int) CollisionGroup.ItemMask) + // Ignore low-passable entities. + if ((otherPhysics.Comp.CollisionMask & (int)CollisionGroup.LowImpassable) == 0) continue; //For when doors need to close over conveyor belts diff --git a/Content.Shared/Players/ContentPlayerData.cs b/Content.Shared/Players/ContentPlayerData.cs index 16b6ace3a1f..edf0228df2e 100644 --- a/Content.Shared/Players/ContentPlayerData.cs +++ b/Content.Shared/Players/ContentPlayerData.cs @@ -32,12 +32,6 @@ public sealed class ContentPlayerData [ViewVariables, Access(typeof(SharedMindSystem), typeof(SharedGameTicker))] public EntityUid? Mind { get; set; } - /// - /// If true, the player is an admin and they explicitly de-adminned mid-game, - /// so they should not regain admin if they reconnect. - /// - public bool ExplicitlyDeadminned { get; set; } - /// /// If true, the admin will not show up in adminwho except to admins with the flag. /// diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 97589cabf3e..b8694a8d672 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -695,5 +695,31 @@ Entries: id: 86 time: '2025-01-12T19:41:26.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/33339 +- author: PJB3005 + changes: + - message: Deadmin status is now synchronized to database, making it persistent + across server restarts and between multiple game servers. + type: Tweak + - message: Admins can now be suspended via the permissions panel. This effectively + removes their admin status without completely deleting their record. + type: Add + id: 87 + time: '2025-01-14T23:46:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34048 +- author: Palladinium + changes: + - message: Added Discord relay notifications when a watchlisted player connects. + type: Add + id: 88 + time: '2025-01-15T00:32:24.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33483 +- author: Myra + changes: + - message: Admins are by default now hidden from the reported player count on the + launcher. + type: Add + id: 89 + time: '2025-01-15T21:10:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34406 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index e69cabe433d..3e4ad511c36 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,144 +1,4 @@ Entries: -- author: EmoGarbage404 - changes: - - message: Firesuits are now worse at keeping in heat and winter clothes make you - get warmer quicker. - type: Tweak - id: 7302 - time: '2024-09-07T05:37:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30662 -- author: Boaz1111 - changes: - - message: The maple wing marking for moths now have a secondary color palette. - type: Tweak - id: 7303 - time: '2024-09-07T05:48:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31691 -- author: lzk228 - changes: - - message: Bottle and syringe names are remade into labels. - type: Tweak - id: 7304 - time: '2024-09-07T05:51:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29956 -- author: Ian321 - changes: - - message: The AgriChem kit now links to the botanical chemicals guidebook. - type: Tweak - - message: The botanical chemicals guidebook has been expanded. - type: Tweak - id: 7305 - time: '2024-09-07T06:23:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31896 -- author: Lank - changes: - - message: The Antimov and Overseer law boards are no longer available roundstart. - type: Remove - id: 7306 - time: '2024-09-07T08:45:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31908 -- author: lzk228 - changes: - - message: Books cannot longer be inserted in crates as paper labels - type: Fix - id: 7307 - time: '2024-09-07T13:22:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31919 -- author: qwerltaz - changes: - - message: Reduced wall closet range. It's now much easier to not close yourself - inside by accident. - type: Tweak - id: 7308 - time: '2024-09-07T23:44:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31933 -- author: Ilya246 - changes: - - message: Reagents that make you flammable no longer extinguish you. - type: Fix - id: 7309 - time: '2024-09-07T23:44:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31930 -- author: LucasTheDrgn - changes: - - message: Restored functionality to the Industrial Reagent Grinder - type: Fix - id: 7310 - time: '2024-09-07T23:47:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31903 -- author: EmoGarbage404 - changes: - - message: Added the biogenerator! Botany can use this machine to create various - materials, chemicals, and food items out of the - type: Add - id: 7311 - time: '2024-09-08T05:34:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30694 -- author: TheShuEd - changes: - - message: Returned Taco microwave recipes (people were sad) - type: Add - - message: added an alternative method of crafting some burgers, through the correct - assembly sequence of modular food. - type: Add - - message: severely cut back on the number of items you can put on burgers, tacos, - or kebabs. This had poor design, and things need to be separately resprited - by adding them on modular food. - type: Tweak - id: 7312 - time: '2024-09-08T06:22:27.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31012 -- author: metalgearsloth - changes: - - message: Fix the FTL bubbles sometimes persisting. - type: Fix - - message: Fix AI eye being able to FTL. - type: Fix - - message: Fix the AI eye being able to be FTL smashed. - type: Fix - id: 7313 - time: '2024-09-08T08:12:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31952 -- author: PopGamer46 - changes: - - message: Fixed being able to craft the justice helmet with a justice helmet - type: Fix - id: 7314 - time: '2024-09-08T10:21:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31957 -- author: Killerqu00 - changes: - - message: Seclite is now restricted to security. - type: Tweak - - message: Handcuffs are now restricted to security and command. - type: Tweak - - message: Trench whistle is now minor contraband. - type: Tweak - id: 7315 - time: '2024-09-08T12:06:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31956 -- author: Psychpsyo - changes: - - message: The random sentience event should now actually happen again. - type: Fix - id: 7316 - time: '2024-09-08T12:10:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31953 -- author: Beck Thompson - changes: - - message: Gold and silver rings now give a small amount of materials when scrapped. - type: Tweak - id: 7317 - time: '2024-09-08T16:10:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31847 -- author: K-Dynamic - changes: - - message: added missing missing resistance values for directional plasma and uranium - windows - type: Fix - id: 7318 - time: '2024-09-08T18:08:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31975 - author: qwerltaz changes: - message: Power cables on the ground are now offset and do not obscure each other @@ -3937,3 +3797,130 @@ id: 7801 time: '2025-01-12T16:38:41.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34394 +- author: SlimSlam + changes: + - message: News Room + type: Add + id: 7802 + time: '2025-01-12T23:32:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34408 +- author: Deerstop + changes: + - message: Improved the readability of the manual valve sprite. + type: Tweak + id: 7803 + time: '2025-01-13T07:07:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34378 +- author: JustinWinningham + changes: + - message: Anomalies no longer block players or APES (or other objects) from passing + through them + type: Tweak + - message: Players can no longer move anomalies with unanchored furniture, closets, + etc. + type: Fix + id: 7804 + time: '2025-01-13T10:06:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34280 +- author: zHonys + changes: + - message: Items with collisions (like mousetraps) won't kept doors form opening + type: Fix + id: 7805 + time: '2025-01-13T10:07:18.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34045 +- author: Coolsurf6 + changes: + - message: The "Jazz" style for the Electric Guitar now uses the correct soundfont. + type: Tweak + id: 7806 + time: '2025-01-13T10:07:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33363 +- author: southbridge-fur + changes: + - message: The Pride-O-Mat vending machine has been ported to upstream. + type: Add + id: 7807 + time: '2025-01-13T18:49:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34412 +- author: Killerqu00 + changes: + - message: Pet carriers can now be crafted. + type: Add + id: 7808 + time: '2025-01-14T22:34:04.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34431 +- author: themias + changes: + - message: Fixed muzzles not working on some characters (e.g. dwarves) + type: Fix + id: 7809 + time: '2025-01-15T00:10:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34419 +- author: ArtisticRoomba + changes: + - message: The station anchor machine board can no longer be printed at the circuit + imprinter. + type: Remove + id: 7810 + time: '2025-01-15T16:26:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34358 +- author: ArtisticRoomba + changes: + - message: Mime PDA item interactions (insertions/ejections of IDs, pens, etc.) + are now silent. + type: Tweak + id: 7811 + time: '2025-01-15T18:03:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34426 +- author: Alpaccalypse + changes: + - message: Smite soda vending machines have been added to the game. + type: Add + id: 7812 + time: '2025-01-15T18:20:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34420 +- author: kosticia + changes: + - message: Bedsheets now can be printed on uniform printer + type: Add + id: 7813 + time: '2025-01-15T19:35:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34034 +- author: TheShuEd + changes: + - message: Christmas anomaly removed + type: Remove + id: 7814 + time: '2025-01-15T20:22:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34053 +- author: Kickguy223 + changes: + - message: Puddles will now correctly evaporate + type: Fix + id: 7815 + time: '2025-01-15T21:21:20.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34303 +- author: themias + changes: + - message: The DNA scrambler implant no longer updates your ID card or station record + type: Fix + id: 7816 + time: '2025-01-15T22:49:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34091 +- author: jbox144 + changes: + - message: Added Plasma Station + type: Add + id: 7817 + time: '2025-01-16T07:02:14.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33991 +- author: jbox144 + changes: + - message: Reduced Plasma's minimum population to 20, maximum population to 60 + type: Tweak + - message: Reduced Plasma's clown jobs from 2 to 1 + type: Tweak + id: 7818 + time: '2025-01-16T08:51:17.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34462 diff --git a/Resources/ConfigPresets/Corvax/athara.toml b/Resources/ConfigPresets/Corvax/athara.toml index 20811559984..ba086387693 100644 --- a/Resources/ConfigPresets/Corvax/athara.toml +++ b/Resources/ConfigPresets/Corvax/athara.toml @@ -5,6 +5,9 @@ maxplayers = 150 soft_max_players = 70 map_rotation = true +[server] +lobby_name = "🛰️ Corvax — Атара 🌌⚡" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/echo.toml b/Resources/ConfigPresets/Corvax/echo.toml index db62bf4fcde..0e480eeab69 100644 --- a/Resources/ConfigPresets/Corvax/echo.toml +++ b/Resources/ConfigPresets/Corvax/echo.toml @@ -5,6 +5,9 @@ maxplayers = 170 soft_max_players = 80 map_rotation = true +[server] +lobby_name = "🛰️ Corvax — Эхо ☄️" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/elysium.toml b/Resources/ConfigPresets/Corvax/elysium.toml index e23af1cc41e..b41f568afce 100644 --- a/Resources/ConfigPresets/Corvax/elysium.toml +++ b/Resources/ConfigPresets/Corvax/elysium.toml @@ -5,6 +5,9 @@ maxplayers = 180 soft_max_players = 100 map_rotation = true +[server] +lobby_name = "️🛰️ Corvax — Элизиум 🌑" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/main.toml b/Resources/ConfigPresets/Corvax/main.toml index 8708a3fdd5d..cdbc3c84674 100644 --- a/Resources/ConfigPresets/Corvax/main.toml +++ b/Resources/ConfigPresets/Corvax/main.toml @@ -8,6 +8,7 @@ peaceful_end = false [server] rules_file = "CorvaxLRPRuleset" +lobby_name = "️🛰️ Corvax — Мейн 🚀⚡" [game.panic_bunker] enabled = true diff --git a/Resources/ConfigPresets/Corvax/nebula.toml b/Resources/ConfigPresets/Corvax/nebula.toml index 49bff4c5d47..ff59f93c79b 100644 --- a/Resources/ConfigPresets/Corvax/nebula.toml +++ b/Resources/ConfigPresets/Corvax/nebula.toml @@ -5,6 +5,9 @@ maxplayers = 130 soft_max_players = 50 map_rotation = true +[server] +lobby_name = "️🛰️ Corvax — Небула ✨" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/nova.toml b/Resources/ConfigPresets/Corvax/nova.toml index fd9d2610f1f..23f179d768d 100644 --- a/Resources/ConfigPresets/Corvax/nova.toml +++ b/Resources/ConfigPresets/Corvax/nova.toml @@ -5,6 +5,9 @@ maxplayers = 120 soft_max_players = 60 map_rotation = false +[server] +lobby_name = "️🛰️ Corvax — Нова 🪐" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/solaris.toml b/Resources/ConfigPresets/Corvax/solaris.toml index ee2e851f8a4..e1ee610af88 100644 --- a/Resources/ConfigPresets/Corvax/solaris.toml +++ b/Resources/ConfigPresets/Corvax/solaris.toml @@ -5,6 +5,9 @@ maxplayers = 160 soft_max_players = 115 map_rotation = true +[server] +lobby_name = "️🛰️ Corvax — Солярис 🌕" + [game.panic_bunker] enabled = true show_reason = true diff --git a/Resources/ConfigPresets/Corvax/wl.toml b/Resources/ConfigPresets/Corvax/wl.toml index 5a6d25546eb..880c6787ac1 100644 --- a/Resources/ConfigPresets/Corvax/wl.toml +++ b/Resources/ConfigPresets/Corvax/wl.toml @@ -7,6 +7,9 @@ map_rotation = true role_timers = false peaceful_end = false +[server] +lobby_name = "️🛰️ Corvax — Вайтлист ☕" + [atmos] space_wind = true diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml index 1b2af866884..3083adcbead 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -12,6 +12,10 @@ panic_bunker.enable_without_admins = true panic_bunker.show_reason = true panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard until you have more playtime." +# IPIntel stuff +ipintel_enabled = true +ipintel_contact_email = "telecommunications@spacestation14.com" + [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" discord = "https://discord.spacestation14.io" @@ -44,6 +48,6 @@ alert.min_players_sharing_connection = 2 max_explosion_range = 5 [status] -privacy_policy_link = "https://account.spacestation14.com/Home/Privacy" +privacy_policy_link = "https://spacestation14.com/about/privacy/#game-server-privacy-policy" privacy_policy_identifier = "wizden" -privacy_policy_version = "2024-12-22" +privacy_policy_version = "2025-01-19" diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml index 84288b8b85e..78732123260 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDenGateway.toml @@ -11,12 +11,6 @@ panic_bunker.enabled = false panic_bunker.disable_with_admins = false panic_bunker.enable_without_admins = false panic_bunker.custom_reason = "" -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 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] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/Locale/en-US/administration/commands/babyjail.ftl b/Resources/Locale/en-US/administration/commands/babyjail.ftl deleted file mode 100644 index 5a9d9490517..00000000000 --- a/Resources/Locale/en-US/administration/commands/babyjail.ftl +++ /dev/null @@ -1,19 +0,0 @@ -cmd-babyjail-desc = Toggles the baby jail, which enables stricter restrictions on who's allowed to join the server. -cmd-babyjail-help = Usage: babyjail -babyjail-command-enabled = Baby jail has been enabled. -babyjail-command-disabled = Baby jail has been disabled. - -cmd-babyjail_show_reason-desc = Toggles whether or not to show connecting clients the reason why the baby jail blocked them from joining. -cmd-babyjail_show_reason-help = Usage: babyjail_show_reason -babyjail-command-show-reason-enabled = The baby jail will now show a reason to users it blocks from connecting. -babyjail-command-show-reason-disabled = The baby jail will no longer show a reason to users it blocks from connecting. - -cmd-babyjail_max_account_age-desc = Gets or sets the maximum account age in minutes that an account can have to be allowed to connect with the baby jail enabled. -cmd-babyjail_max_account_age-help = Usage: babyjail_max_account_age -babyjail-command-max-account-age-is = The maximum account age for the baby jail is {$minutes} minutes. -babyjail-command-max-account-age-set = Set the maximum account age for the baby jail to {$minutes} minutes. - -cmd-babyjail_max_overall_minutes-desc = Gets or sets the maximum overall playtime in minutes that an account can have to be allowed to connect with the baby jail enabled. -cmd-babyjail_max_overall_minutes-help = Usage: babyjail_max_overall_minutes -babyjail-command-max-overall-minutes-is = The maximum overall playtime for the baby jail is {$minutes} minutes. -babyjail-command-max-overall-minutes-set = Set the maximum overall playtime for the baby jail to {$minutes} minutes. diff --git a/Resources/Locale/en-US/administration/ui/permissions-eui.ftl b/Resources/Locale/en-US/administration/ui/permissions-eui.ftl index 60283deb616..228f40f8286 100644 --- a/Resources/Locale/en-US/administration/ui/permissions-eui.ftl +++ b/Resources/Locale/en-US/administration/ui/permissions-eui.ftl @@ -14,6 +14,7 @@ permissions-eui-edit-admin-window-title-edit-placeholder = Custom title, leave b permissions-eui-edit-admin-window-no-rank-button = No rank permissions-eui-edit-admin-rank-window-name-edit-placeholder = Rank name permissions-eui-edit-admin-title-control-text = none +permissions-eui-edit-admin-window-suspended = Suspended? permissions-eui-edit-no-rank-text = none permissions-eui-edit-title-button = Edit permissions-eui-edit-admin-rank-button = Edit diff --git a/Resources/Locale/en-US/advertisements/vending/pride.ftl b/Resources/Locale/en-US/advertisements/vending/pride.ftl new file mode 100644 index 00000000000..042291ba8e6 --- /dev/null +++ b/Resources/Locale/en-US/advertisements/vending/pride.ftl @@ -0,0 +1,7 @@ +advertisement-pride-1 = Be gay do crime! +advertisement-pride-2 = Full of colors! +advertisement-pride-3 = You are valid! +advertisement-pride-4 = The first pride was a riot! +thankyou-pride-1 = Slay! +thankyou-pride-2 = Knock 'em dead! +thankyou-pride-3 = What a glow up! diff --git a/Resources/Locale/en-US/advertisements/vending/smite.ftl b/Resources/Locale/en-US/advertisements/vending/smite.ftl new file mode 100644 index 00000000000..e6214f46274 --- /dev/null +++ b/Resources/Locale/en-US/advertisements/vending/smite.ftl @@ -0,0 +1,12 @@ +advertisement-smite-1 = SMITE! Ban your thirst! +advertisement-smite-2 = An eldritch blast of lemon and lime! +advertisement-smite-3 = Over 1 million drinks sold! +advertisement-smite-4 = SMITE! Roll 2d8 for FLAVOR. +advertisement-smite-5 = SMITE! Let's get that paperwork done! +advertisement-smite-6 = The janitor has it in for you! +advertisement-smite-7 = SMITE! It won't get you hammered. +advertisement-smite-8 = It's lemon-lime time! +thankyou-smite-1 = Smite makes right! +thankyou-smite-2 = You DEFINITELY wanted lemon-lime! +thankyou-smite-3 = The office won't know what hit them. +thankyou-smite-4 = Banish your thirst. diff --git a/Resources/Locale/en-US/discord/watchlist-connections.ftl b/Resources/Locale/en-US/discord/watchlist-connections.ftl new file mode 100644 index 00000000000..72dc971c0af --- /dev/null +++ b/Resources/Locale/en-US/discord/watchlist-connections.ftl @@ -0,0 +1,14 @@ +discord-watchlist-connection-header = + { $players -> + [one] {$players} player on a watchlist has + *[other] {$players} players on a watchlist have + } connected to {$serverName} + +discord-watchlist-connection-entry = - {$playerName} with message "{$message}"{ $expiry -> + [0] {""} + *[other] {" "}(expires ) + }{ $otherWatchlists -> + [0] {""} + [one] {" "}and {$otherWatchlists} other watchlist + *[other] {" "}and {$otherWatchlists} other watchlists + } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl index 99182d8b4df..dac61128765 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl @@ -50,5 +50,5 @@ ent-ActionFireStarter = Ignite .desc = Ignites enemies in a radius around you. ent-ActionToggleEyes = Open/Close eyes .desc = Close your eyes to protect your peepers, or open your eyes to enjoy the pretty lights. -ent-ActionToggleWagging = action-name-toggle-wagging - .desc = action-description-toggle-wagging +ent-ActionToggleWagging = Wagging Tail + .desc = Start or stop wagging your tail. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl index 09cb8c17530..1a654167440 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/boxes/general.ftl @@ -4,6 +4,8 @@ ent-BoxMousetrap = mousetrap box .desc = This box is filled with mousetraps. Try not to get your hand stuck in one. ent-BoxLightbulb = lightbulb box .desc = This box is shaped on the inside so that only light tubes and bulbs fit. +ent-BoxWarmLightbulb = lightbulb box warm + .desc = { ent-BoxLightbulb.desc } ent-BoxLighttube = lighttube box .desc = { ent-BoxLightbulb.desc } ent-BoxLightMixed = mixed lights box diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl index f7a5d9dd898..fb771498e5e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl @@ -32,3 +32,5 @@ ent-CrateParticleDecelerators = particle decelerators crate .desc = A crate containing 3 Particle Decelerators. ent-CrateEngineeringSpaceHeater = space heater crate .desc = Contains a space heater for climate control. +ent-CrateTechBoardRandom = surplus boards + .desc = Surplus boards from somewhere. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index eb06d8ead46..c027edb3d1e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -18,3 +18,5 @@ ent-CrateMaterialCardboard = cardboard crate .desc = 60 pieces of cardboard. ent-CrateMaterialPaper = paper crate .desc = 90 sheets of paper. +ent-CrateMaterialRandom = surplus materials + .desc = Surplus materials from somewhere. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl new file mode 100644 index 00000000000..f8c89484b29 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl @@ -0,0 +1,2 @@ +ent-SpawnerMobBearBiome = space bear spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl index c85a03316a3..51c44587f26 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/mantles.ftl @@ -1,17 +1,17 @@ ent-ClothingNeckMantleCap = captain's mantle - .desc = A comfortable and chique mantle befitting of only the most experienced captain. + .desc = A formal mantle to drape around the shoulders. Others stand on the shoulders of giants. You're the giant they stand on. ent-ClothingNeckMantleCE = chief engineer's mantle - .desc = High visibility, check. RIG system, check. High capacity cell, check. Everything a chief engineer could need in a stylish mantle. + .desc = A bright white and yellow striped mantle. Do not wear around active machinery. ent-ClothingNeckMantleCMO = chief medical officer's mantle - .desc = For a CMO that has been in enough medbays to know that more PPE means less central command dry cleaning visits when the shift is over. + .desc = A light blue shoulder draping for THE medical professional. Contrasts well with blood. ent-ClothingNeckMantleHOP = head of personnel's mantle - .desc = A good HOP knows that paper pushing is only half the job... petting your dog and looking fashionable is the other half. + .desc = A decorative draping of blue and red over your shoulders, signifying your stamping prowess. ent-ClothingNeckMantleHOS = head of security's mantle .desc = A plated mantle that one might wrap around the upper torso. The 'scales' of the garment signify the members of security and how you're carrying them on your shoulders. ent-ClothingNeckMantleHOSShoulder = head of security's shoulder mantle .desc = Shootouts with nukies are just another Tuesday for this HoS. This mantle is a symbol of commitment to the station. ent-ClothingNeckMantleRD = research director's mantle - .desc = For when long days in the office consist of explosives, poisonous gas, murder robots, and a fresh pizza from cargo; this mantle will keep you comfy. + .desc = A terribly comfortable shoulder draping for the discerning scientist of fashion. ent-ClothingNeckMantleQM = quartermaster's mantle .desc = For the master of goods and materials to rule over the department, a befitting mantle to show off superiority! ent-ClothingNeckMantle = mantle diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl index 7f3ab7fb8d6..75b75d9bd7f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/neck/pins.ftl @@ -18,6 +18,8 @@ ent-ClothingNeckNonBinaryPin = non-binary pin .desc = 01100010 01100101 00100000 01100101 01101110 01100010 01111001 00100000 01100100 01101111 00100000 01100011 01110010 01101001 01101101 01100101 ent-ClothingNeckPansexualPin = pansexual pin .desc = Be pan do crime. +ent-ClothingNeckOmnisexualPin = omnisexual pin + .desc = Be omni do crime. ent-ClothingNeckTransPin = transgender pin .desc = Be trans do crime. ent-ClothingNeckAutismPin = autism pin diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl index f0d84b4fc2d..e5aaeab32e9 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpskirts.ftl @@ -65,7 +65,7 @@ ent-ClothingUniformJumpskirtSec = security jumpskirt ent-ClothingUniformJumpskirtWarden = warden's uniform .desc = A formal security suit for officers complete with Nanotrasen belt buckle. ent-ClothingUniformJumpskirtLibrarian = librarian jumpskirt - .desc = A cosy green jumper fit for a curator of books. + .desc = A cosy red jumper fit for a curator of books. ent-ClothingUniformJumpskirtCurator = sensible skirt .desc = It's sensible. Too sensible... ent-ClothingUniformJumpskirtPerformer = performer's jumpskirt diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl index 3ffbc0f3e52..fa5a71da57e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/uniforms/jumpsuits.ftl @@ -22,10 +22,10 @@ ent-ClothingUniformJumpsuitChaplain = chaplain's jumpsuit .desc = It's a black jumpsuit, often worn by religious folk. ent-ClothingUniformJumpsuitCentcomAgent = CentComm agent's jumpsuit .desc = A suit worn by CentComm's legal team. Smells of burnt coffee. -ent-ClothingUniformJumpsuitCentcomOfficial = CentComm official's jumpsuit - .desc = It's a jumpsuit worn by CentComm's officials. -ent-ClothingUniformJumpsuitCentcomOfficer = CentComm officer's jumpsuit - .desc = It's a jumpsuit worn by CentComm Officers. +ent-ClothingUniformJumpsuitCentcomOfficial = CentComm officer's suit + .desc = It's a suit worn by CentComm's highest-tier Commanders. +ent-ClothingUniformJumpsuitCentcomOfficer = CentComm turtleneck suit + .desc = A casual, yet refined green turtleneck, used by CentComm Officials. It has a fragrance of aloe. ent-ClothingUniformJumpsuitChef = chef uniform .desc = Can't cook without this. ent-ClothingUniformJumpsuitChemistry = chemistry jumpsuit @@ -108,8 +108,8 @@ ent-ClothingUniformJumpsuitWarden = warden's uniform .desc = A formal security suit for officers complete with Nanotrasen belt buckle. ent-ClothingUniformOveralls = overalls .desc = Great for working outdoors. -ent-ClothingUniformJumpsuitLibrarian = librarian jumpsuit - .desc = A cosy green jumper fit for a curator of books. +ent-ClothingUniformJumpsuitLibrarian = sensible suit + .desc = It's very... sensible. ent-ClothingUniformJumpsuitCurator = sensible suit .desc = It's sensible. Too sensible... ent-ClothingUniformJumpsuitLawyerRed = red lawyer suit @@ -143,7 +143,7 @@ ent-ClothingUniformJumpsuitTacticool = tacticool jumpsuit ent-ClothingUniformJumpsuitMercenary = mercenary jumpsuit .desc = Clothing for real mercenaries who have gone through fire, water and the jungle of planets flooded with dangerous monsters or targets for which a reward has been assigned. ent-ClothingUniformJumpsuitNinja = ninja jumpsuit - .desc = Comfortable ninja suit, for convenience when relaxing and when you need to practice. + .desc = A nano-enhanced jumpsuit designed for maximum comfort and tacticality. ent-ClothingUniformJumpsuitAtmos = atmospheric technician jumpsuit .desc = I am at work. I can't leave work. Work is breathing. I am testing air quality. ent-ClothingUniformJumpsuitAtmosCasual = atmospheric technician's casual jumpsuit @@ -160,8 +160,8 @@ ent-ClothingUniformJumpsuitMonasticRobeDark = dark monastic robe .desc = It's a dark robe, often worn by religious folk. ent-ClothingUniformJumpsuitMonasticRobeLight = light monastic robe .desc = It's a light robe, often worn by religious folk. -ent-ClothingUniformJumpsuitMusician = musician's tuxedo - .desc = A fancy tuxedo for the musically inclined. Perfect for any lounge act! +ent-ClothingUniformJumpsuitMusician = carpskin suit + .desc = An luxurious suit made with only the finest scales, perfect for any lounge act! ent-ClothingUniformJumpsuitERTChaplain = ERT chaplain uniform .desc = A special suit made for Central Command's elite chaplain corps. ent-ClothingUniformJumpsuitERTEngineer = ERT engineering uniform diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl new file mode 100644 index 00000000000..9bf34c4e555 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl @@ -0,0 +1,8 @@ +ent-LootSpawnerScienceMinor = science supplies spawner + .suffix = Minor, 80% + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerScienceMajor = science supplies spawner + .suffix = Major + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerRoboticsBorgModule = robotics board spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl index 5ceb13402bd..f8a7cb4a3af 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl @@ -10,3 +10,6 @@ ent-MaintenanceWeaponSpawner = Maint Loot Spawner ent-MaintenancePlantSpawner = Maint Loot Spawner .suffix = Plants .desc = { ent-MarkerBase.desc } +ent-MaintenanceInsulsSpawner = Maint Loot Spawner + .suffix = Insuls, safe + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl index 5be0655ad5b..c0737865b73 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl @@ -1,3 +1,6 @@ ent-RandomVending = random vending machine spawner .suffix = Any .desc = { ent-MarkerBase.desc } +ent-RandomVendingClothing = random vending machine spawner + .suffix = Clothing + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index fcd08745cdb..bfa3b12817e 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -108,8 +108,8 @@ ent-MobSpiderAngryBase = { ent-MobSpiderBase } .desc = { ent-MobSpiderBase.desc } ent-MobGiantSpider = tarantula .desc = Widely recognized to be the literal worst thing in existence. -ent-MobGiantSpiderAngry = { ent-MobGiantSpider } - .desc = { ent-MobGiantSpider.desc } +ent-MobGiantSpiderAngry = { ent-MobSpiderAngryBase } + .desc = { ent-MobSpiderAngryBase.desc } ent-MobClownSpider = clown spider .desc = Combines the two most terrifying things in existence, spiders and clowns. ent-MobGiantSpiderWizard = wizard spider diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 08d2cc18caa..083a9458222 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -189,8 +189,8 @@ ent-DrinkIceCreamGlass = { ent-DrinkGlass } ent-IrishBoolGlass = { ent-DrinkGlass } .suffix = irish bool .desc = { ent-DrinkGlass.desc } -ent-DrinkIrishCarBomb = { ent-DrinkGlass } - .suffix = irish car bomb +ent-DrinkIrishSlammer = { ent-DrinkGlass } + .suffix = irish slammer .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCoffeeGlass = { ent-DrinkGlass } .suffix = irish coffee @@ -357,7 +357,7 @@ ent-DrinkTequilaSunriseGlass = { ent-DrinkGlass } .suffix = tequila sunrise .desc = { ent-DrinkGlass.desc } ent-DrinkTheMartinez = { ent-DrinkGlass } - .suffix = The Martinez + .suffix = the martinez .desc = { ent-DrinkGlass.desc } ent-DrinkThreeMileIslandGlass = { ent-DrinkGlass } .suffix = three mile island diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl index e09a1251778..3a10aaa634d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_bottles.ftl @@ -9,53 +9,53 @@ ent-DrinkBottleVisualsAll = { "" } .desc = { "" } ent-DrinkAbsintheBottleFull = Jailbreaker Verte .desc = One sip of this and you just know you're gonna have a good time. -ent-DrinkBlueCuracaoBottleFull = Miss Blue Curacao +ent-DrinkBlueCuracaoBottleFull = Miss Blue Curaçao .desc = A fruity, exceptionally azure drink. Does not allow the imbiber to use the fifth magic. ent-DrinkBottleOfNothingFull = bottle of nothing .desc = A bottle filled with nothing. ent-DrinkChampagneBottleFull = champagne bottle .desc = Only people devoid of imagination can't find an excuse for champagne. ent-DrinkCognacBottleFull = cognac bottle - .desc = A sweet and strongly alchoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time. -ent-DrinkColaBottleFull = space cola bottle - .desc = Cola. In space. -ent-DrinkGrenadineBottleFull = briar rose grenadine syrup bottle + .desc = A sweet and strongly alcoholic drink, made after numerous distillations and years of maturing. You might as well not scream 'SHITCURITY' this time. +ent-DrinkColaBottleFull = Space Cola bottle + .desc = Cola. In spaaace! +ent-DrinkGrenadineBottleFull = Briar Rose grenadine syrup bottle .desc = Sweet and tangy, a bar syrup used to add color or flavor to drinks. ent-DrinkGinBottleFull = Griffeater gin .desc = A bottle of high quality gin, produced in the New London Space Station. -ent-DrinkGildlagerBottleFull = gildlager bottle +ent-DrinkGildlagerBottleFull = Gildlager bottle .desc = 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break. ent-DrinkCoffeeLiqueurBottleFull = coffee liqueur bottle .desc = The great taste of coffee with none of the benifits. -ent-DrinkMelonLiquorBottleFull = emeraldine melon liquor - .desc = A bottle of 46 proof Emeraldine Melon Liquor. Sweet and light. -ent-DrinkPatronBottleFull = wrapp artiste patron bottle - .desc = Silver laced tequilla, served in space night clubs across the galaxy. -ent-DrinkPoisonWinebottleFull = warlock's velvet bottle +ent-DrinkMelonLiquorBottleFull = Emeraldine melon liquor + .desc = A bottle of 46 proof Emeraldine melon liquor. Sweet and light. +ent-DrinkPatronBottleFull = Wrapp Artiste Patrón bottle + .desc = Silver laced tequila, served in space night clubs across the galaxy. +ent-DrinkPoisonWinebottleFull = Warlock's Velvet bottle .desc = What a delightful packaging for a surely high quality wine! The vintage must be amazing! -ent-DrinkRumBottleFull = captain pete's Cuban spiced rum +ent-DrinkRumBottleFull = Captain Pete's Cuban spiced rum .desc = This isn't just rum, oh no. It's practically GRIFF in a bottle. -ent-DrinkSpaceMountainWindBottleFull = space mountain wind bottle - .desc = Blows right through you like a space wind. -ent-DrinkSpaceUpBottleFull = space-up bottle +ent-DrinkSpaceMountainWindBottleFull = Space Solar Wind bottle + .desc = Blows right through you like a solar wind. +ent-DrinkSpaceUpBottleFull = Space-Up bottle .desc = Tastes like a hull breach in your mouth. -ent-DrinkTequilaBottleFull = caccavo guaranteed quality tequila bottle +ent-DrinkTequilaBottleFull = Caccavo Guaranteed Quality tequila bottle .desc = Made from premium petroleum distillates, pure thalidomide and other fine quality ingredients! -ent-DrinkVermouthBottleFull = goldeneye vermouth bottle +ent-DrinkVermouthBottleFull = Goldeneye vermouth bottle .desc = Sweet, sweet dryness! ent-DrinkVodkaBottleFull = vodka bottle .desc = Aah, vodka. Prime choice of drink AND fuel by Russians worldwide. -ent-DrinkWhiskeyBottleFull = uncle git's special reserve +ent-DrinkWhiskeyBottleFull = Uncle Git's Special Reserve .desc = A premium single-malt whiskey, gently matured inside the tunnels of a nuclear shelter. TUNNEL WHISKEY RULES. -ent-DrinkWineBottleFull = doublebearded bearded special wine bottle +ent-DrinkWineBottleFull = Doublebearded Bearded Special wine bottle .desc = A faint aura of unease and asspainery surrounds the bottle. -ent-DrinkBeerBottleFull = beer +ent-DrinkBeerBottleFull = beer bottle .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. -ent-DrinkBeerGrowler = Beer Growler +ent-DrinkBeerGrowler = beer growler .desc = An alcoholic beverage made from malted grains, hops, yeast, and water. XL growler bottle. -ent-DrinkAleBottleFull = Magm-Ale +ent-DrinkAleBottleFull = Magm-Ale bottle .desc = A true dorf's drink of choice. -ent-DrinkAleBottleFullGrowler = Magm-Ale Growler +ent-DrinkAleBottleFullGrowler = Magm-Ale growler .desc = A true dorf's drink of choice. XL growler bottle. ent-DrinkWaterBottleFull = water bottle .desc = Simple clean water of unknown origin. You think that maybe you dont want to know it. @@ -74,7 +74,7 @@ ent-DrinkCreamCartonXL = milk cream XL ent-DrinkSugarJug = sugar jug .desc = Some people put this in their coffee... .suffix = For Drinks, Full -ent-DrinkLemonLimeJug = lemon lime jug +ent-DrinkLemonLimeJug = Smite jug .desc = A dual citrus sensation. ent-DrinkMeadJug = mead jug .desc = Storing mead in a plastic jug should be a crime. @@ -89,14 +89,14 @@ ent-DrinkTeaJug = tea jug ent-DrinkGreenTeaJug = green tea jug .desc = It's like tea... but green! great for settling the stomach. ent-DrinkIcedTeaJug = iced tea jug - .desc = For when the regular tea is too hot for you boohoo. -ent-DrinkDrGibbJug = dr gibb. jug - .desc = Yeah I don't know either... + .desc = For when the regular tea is too hot for you. Boohoo. +ent-DrinkDrGibbJug = Dr. Gibb jug + .desc = 42 different flavours... in a jug! ent-DrinkRootBeerJug = root beer jug .desc = This drink makes Australians giggle. ent-DrinkWaterMelonJuiceJug = watermelon juice jug .desc = May include leftover seeds. -ent-DrinkEnergyDrinkJug = red bool jug - .desc = A jug of Red Bool, with enough caffine to kill a whole station. +ent-DrinkEnergyDrinkJug = Red Bool jug + .desc = A jug of Red Bool, with enough caffeine to kill a whole station. ent-CustomDrinkJug = beverage jug .desc = A jug for storing custom made drinks. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl index 4c33b038945..f2551f792cc 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks_cans.ftl @@ -1,7 +1,7 @@ ent-DrinkCanBaseFull = { ent-BaseItem } .desc = { ent-BaseItem.desc } -ent-DrinkColaCan = space cola - .desc = A refreshing beverage. +ent-DrinkColaCan = Space Cola can + .desc = A sweet, carbonated soft drink. ent-DrinkColaCanEmpty = { ent-DrinkColaCan } .suffix = empty .desc = { ent-DrinkColaCan.desc } @@ -17,31 +17,31 @@ ent-DrinkRootBeerCan = root beer can .desc = Some of that tasty root beer goodness, now in a portable can! ent-DrinkSodaWaterCan = soda water can .desc = Soda water. Why not make a scotch and soda? -ent-DrinkSpaceMountainWindCan = space mountain wind can - .desc = Blows right through you like a space wind. -ent-DrinkSpaceUpCan = space-up can +ent-DrinkSpaceMountainWindCan = Space Solar Wind can + .desc = Blows right through you like a solar wind. +ent-DrinkSpaceUpCan = Space-Up can .desc = Tastes like a hull breach in your mouth. -ent-DrinkSolDryCan = sol dry +ent-DrinkSolDryCan = Sol Dry can .desc = Sweet ginger soda from outer space! -ent-DrinkStarkistCan = starkist can +ent-DrinkStarkistCan = Starkist can .desc = The taste of a star in liquid form. And, a bit of tuna...? ent-DrinkTonicWaterCan = tonic water can .desc = Quinine tastes funny, but at least it'll keep that Space Malaria away. ent-DrinkFourteenLokoCan = Fourteen Loko can .desc = The MBO has advised crew members that consumption of Fourteen Loko may result in seizures, blindness, drunkeness, or even death. Please Drink Responsibly. -ent-DrinkChangelingStingCan = changeling sting can +ent-DrinkChangelingStingCan = Changeling Sting can .desc = You take a tiny sip and feel a burning sensation... ent-DrinkDrGibbCan = Dr. Gibb can .desc = A delicious blend of 42 different flavours. -ent-DrinkNukieCan = blood-red brew can +ent-DrinkNukieCan = Blood-red Brew can .desc = A home-brewed drink made from the crazed minds at the Syndicate. Not recommended by doctors. -ent-DrinkEnergyDrinkCan = red bool energy drink +ent-DrinkEnergyDrinkCan = Red Bool can .desc = A can of Red Bool, with enough caffeine to kill a horse. ent-DrinkCanPack = 6pack .desc = { ent-BaseStorageItem.desc } -ent-DrinkShamblersJuiceCan = shamblers juice can +ent-DrinkShamblersJuiceCan = Shambler's Juice can .desc = ~Shake me up some of that Shambler's Juice!~ -ent-DrinkPwrGameCan = pwr game can +ent-DrinkPwrGameCan = PWR Game can .desc = The only drink with the PWR that true gamers crave. When a gamer talks about gamerfuel, this is what they're literally referring to. ent-DrinkBeerCan = beer can .desc = Small joy, big taste, no worries! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl index 5306b66ebf3..7b3b3277c04 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl @@ -4,3 +4,5 @@ ent-FoodBagel = bagel .desc = { ent-FoodBagelBase.desc } ent-FoodBagelPoppy = poppy seed bagel .desc = A delicious bagel topped with bicaridine-infused poppy seeds. +ent-FoodBagelCotton = cotton bagel + .desc = A delicious bagel made with cotton dough. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl index 5657fd21ffa..a8c813209b4 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl @@ -52,8 +52,12 @@ ent-FoodBreadMeatXenoSlice = xeno meat bread slice .desc = A slice of xeno scum. ent-FoodBreadBaguette = baguette .desc = Bon appétit! +ent-FoodBreadBaguetteCotton = cotton baguette + .desc = Bon azzétit! ent-FoodBreadBaguetteSlice = crostini .desc = Bon ap-petite! +ent-FoodBreadBaguetteCottonSlice = cotton crostini + .desc = Bon az-zetite! ent-FoodBreadButteredToast = buttered toast .desc = Crunchy. ent-FoodBreadFrenchToast = french toast diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl index 78741c6d958..e855542a92a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl @@ -50,6 +50,8 @@ ent-FoodBakedDumplings = dumplings .desc = Average recipe for meat in doughs. ent-FoodBakedChevreChaud = chèvre chaud .desc = A disk of slightly melted chèvre flopped on top of a crostini, and toasted all-round. +ent-FoodBakedChevreChaudCotton = cotton chèvre chaud + .desc = A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. ent-FoodBakedBrownieBatch = brownies .desc = A pan of brownies. ent-FoodBakedBrownie = brownie @@ -63,3 +65,5 @@ ent-FoodOnionRings = onion rings .desc = You can eat it or propose to your loved ones. ent-FoodBakedCroissant = croissant .desc = Buttery, flaky goodness. +ent-FoodBakedCroissantCotton = cotton croissant + .desc = Buttery, flaky, fibery goodness. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl index f7b7583297a..86adc22f0d6 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl @@ -10,6 +10,9 @@ ent-FoodBoxPizza = pizza box ent-FoodBoxPizzaFilled = pizza box .suffix = Filled .desc = { ent-FoodBoxPizza.desc } +ent-FoodBoxPizzaCotton = pizza box + .suffix = Cotton Pizza + .desc = { ent-FoodBoxPizzaFilled.desc } ent-FoodBoxNugget = chicken nuggets .desc = You suddenly have an urge to trade on the intergalactic stock market. ent-FoodBoxDonkpocket = box of donk-pockets diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 3fcd400cb8c..ebb7d371e63 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -44,6 +44,10 @@ ent-FoodDoughTortillaFlat = flattened tortilla dough .desc = A flattened slice of tortilla dough, cook this to get a taco shell. ent-FoodDoughCotton = cotton dough .desc = A piece of fabric dough. +ent-FoodDoughCottonSlice = cotton dough slice + .desc = A slice of cotton dough. +ent-FoodDoughCottonRope = dough rope + .desc = A thin noodle of cotton dough. Can be cooked into a cotton bagel. ent-FoodDoughPastryBaseRaw = raw pastry base .desc = Must be cooked before use. ent-FoodDoughPastryBase = pastry base @@ -82,3 +86,5 @@ ent-FoodCocoaBeans = cocoa beans .desc = You can never have too much chocolate! ent-FoodCroissantRaw = raw croissant .desc = Buttery, flaky goodness waiting to happen. +ent-FoodCroissantRawCotton = raw cotton croissant + .desc = Buttery, flaky, fibery goodness waiting to happen. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl index 6d69594fa39..a1587f59833 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl @@ -1,5 +1,5 @@ ent-HandTeleporter = hand teleporter .desc = A Nanotrasen signature item--only the finest bluespace tech. Instructions: Use once to create a portal which teleports at random. Use again to link it to a portal at your current location. Use again to clear all portals. ent-HandTeleporterAdmeme = interdimensional teleporter - .desc = allows you to open stable portal gates that are not limited by distance + .desc = Allows you to open stable portal gates that are not limited by distance. .suffix = Admeme diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 8fe66096281..2a9bf8df379 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -149,3 +149,6 @@ ent-PiratePDA = pirate PDA .desc = Yargh! ent-SyndiAgentPDA = syndicate agent PDA .desc = For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead! +ent-ChameleonPDA = passenger PDA + .desc = Why isn't it gray? + .suffix = Chameleon diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index 9dabde40017..cb6bd1073e2 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -30,6 +30,9 @@ ent-DefaultStationBeaconSecurity = { ent-DefaultStationBeacon } ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity } .suffix = Brig .desc = { ent-DefaultStationBeaconSecurity.desc } +ent-DefaultStationBeaconBrigMed = { ent-DefaultStationBeaconSecurity } + .suffix = Brig Med + .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity } .suffix = Warden's Office .desc = { ent-DefaultStationBeaconSecurity.desc } @@ -75,6 +78,12 @@ ent-DefaultStationBeaconMorgue = { ent-DefaultStationBeaconMedical } ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical } .suffix = Surgery .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconPsychology = { ent-DefaultStationBeaconMedical } + .suffix = Psychology + .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconClinic = { ent-DefaultStationBeaconMedical } + .suffix = Clinic + .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon } .suffix = Science .desc = { ent-DefaultStationBeacon.desc } @@ -171,12 +180,21 @@ ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI } ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI } .suffix = AI Core .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIUpload = { ent-DefaultStationBeaconAI } + .suffix = AI Upload + .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIPower = { ent-DefaultStationBeaconAI } + .suffix = AI Power + .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon } .suffix = Arrivals .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon } .suffix = Evac .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } + .suffix = Docking Arm + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } .suffix = EVA Storage .desc = { ent-DefaultStationBeacon.desc } @@ -186,6 +204,9 @@ ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon } ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon } .suffix = Library .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconReporter = { ent-DefaultStationBeacon } + .suffix = Reporter + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon } .suffix = Theater .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl index d44a8a2638b..b07dfe51536 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/power/lights.ftl @@ -8,6 +8,8 @@ ent-LedLightBulb = led light bulb .desc = A power efficient light bulb. ent-DimLightBulb = dim light bulb .desc = A dim light bulb for populating the darkness of maintenance. +ent-WarmLightBulb = warm light bulb + .desc = A warm light bulb for a more cozy atmosphere. ent-LightBulbOld = old incandescent light bulb .desc = An aging light bulb. ent-LightBulbBroken = incandescent light bulb diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl index 50b1b2bfda7..87005dd8dd5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl @@ -14,6 +14,9 @@ ent-WeaponTurretNanoTrasen = { ent-BaseWeaponTurret } ent-WeaponTurretHostile = { ent-BaseWeaponTurret } .suffix = Hostile .desc = { ent-BaseWeaponTurret.desc } +ent-WeaponTurretAllHostile = { ent-BaseWeaponTurret } + .suffix = All hostile + .desc = { ent-BaseWeaponTurret.desc } ent-WeaponTurretXeno = xeno turret .desc = Shoots 9mm acid projectiles. .suffix = Xeno diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 6e6d5d9fda8..6a0c63c48f7 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -310,6 +310,9 @@ ent-AirlockMaintTheatreLocked = { ent-AirlockMaintServiceLocked } ent-AirlockMaintKitchenLocked = { ent-AirlockMaintServiceLocked } .suffix = Kitchen, Locked .desc = { ent-AirlockMaintServiceLocked.desc } +ent-AirlockMaintKitchenHydroLocked = { ent-AirlockMaintServiceLocked } + .suffix = Kitchen/Hydroponics, Locked + .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintIntLocked = { ent-AirlockMaint } .suffix = Interior, Locked .desc = { ent-AirlockMaint.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl index 78227e95dc4..824236add9d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/furniture/potted_plants.ftl @@ -51,9 +51,7 @@ ent-PottedPlant23 = { ent-PottedPlantBase } ent-PottedPlant24 = { ent-PottedPlantBase } .desc = { ent-PottedPlantBase.desc } ent-PottedPlantRD = RD's potted plant - .desc = - A gift from the botanical staff, presented after the RD's reassignment. There's a tag on it that says "Y'all come back now, y'hear?" - It doesn't look very healthy... + .desc = A gift from the botanical staff, presented after the RD's reassignment. There's a tag on it that says "Y'all come back now, y'hear?" It doesn't look very healthy... ent-PottedPlant26 = { ent-PottedPlantBase } .desc = Is it just me, or is it blinking? ent-PottedPlant27 = plastic potted plant diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl index c4f3790bfba..834720cfe3c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl @@ -36,6 +36,9 @@ ent-PoweredLEDSmallLight = { ent-PoweredSmallLightEmpty } ent-PoweredDimSmallLight = { ent-PoweredSmallLightEmpty } .suffix = Dim .desc = { ent-PoweredSmallLightEmpty.desc } +ent-PoweredWarmSmallLight = { ent-PoweredSmallLightEmpty } + .suffix = Warm + .desc = { ent-PoweredSmallLightEmpty.desc } ent-PoweredSmallLight = { ent-PoweredSmallLightEmpty } .desc = { ent-PoweredSmallLightEmpty.desc } ent-EmergencyLight = emergency light diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index 92f348b85b0..dae20c321b1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -7,7 +7,7 @@ ent-HolopadUnlimitedRange = quantum entangling holopad ent-HolopadBluespace = bluespace holopad .desc = An experimental floor-mounted device for projecting holographic images via bluespace. .suffix = Unrestricted range -ent-HolopadHologram = { "" } +ent-HolopadHologram = hologram .suffix = DO NOT MAP .desc = { "" } ent-HolopadGeneralTools = { ent-Holopad } @@ -79,6 +79,12 @@ ent-HolopadScienceAnomaly = { ent-Holopad } ent-HolopadScienceArtifact = { ent-Holopad } .suffix = Artifact .desc = { ent-Holopad.desc } +ent-HolopadScienceArtifactNorth = { ent-Holopad } + .suffix = Artifact North + .desc = { ent-Holopad.desc } +ent-HolopadScienceArtifactSouth = { ent-Holopad } + .suffix = Artifact South + .desc = { ent-Holopad.desc } ent-HolopadScienceRobotics = { ent-Holopad } .suffix = Robotics .desc = { ent-Holopad.desc } @@ -118,6 +124,9 @@ ent-HolopadMedicalFront = { ent-Holopad } ent-HolopadMedicalBreakroom = { ent-Holopad } .suffix = Med Breakroom .desc = { ent-Holopad.desc } +ent-HolopadMedicalClinic = { ent-Holopad } + .suffix = Med Clinic + .desc = { ent-Holopad.desc } ent-HolopadCargoFront = { ent-Holopad } .suffix = Cargo Front .desc = { ent-Holopad.desc } @@ -130,6 +139,9 @@ ent-HolopadCargoSalvageBay = { ent-Holopad } ent-HolopadCargoBreakroom = { ent-Holopad } .suffix = Cargo Breakroom .desc = { ent-Holopad.desc } +ent-HolopadCargoMailroom = { ent-Holopad } + .suffix = Cargo Mailroom + .desc = { ent-Holopad.desc } ent-HolopadEngineeringAtmosFront = { ent-Holopad } .suffix = Atmos Front .desc = { ent-Holopad.desc } @@ -160,6 +172,9 @@ ent-HolopadEngineeringAME = { ent-Holopad } ent-HolopadEngineeringPower = { ent-Holopad } .suffix = Power .desc = { ent-Holopad.desc } +ent-HolopadEngineeringMain = { ent-Holopad } + .suffix = Engi Main + .desc = { ent-Holopad.desc } ent-HolopadSecurityFront = { ent-Holopad } .suffix = Sec Front .desc = { ent-Holopad.desc } @@ -196,6 +211,12 @@ ent-HolopadSecurityLockerRoom = { ent-Holopad } ent-HolopadSecurityBrigMed = { ent-Holopad } .suffix = Brig Med .desc = { ent-Holopad.desc } +ent-HolopadSecurityEvacCheckpoint = { ent-Holopad } + .suffix = Sec Evac Checkpoint + .desc = { ent-Holopad.desc } +ent-HolopadSecurityArrivalsCheckpoint = { ent-Holopad } + .suffix = Sec Arrivals Checkpoint + .desc = { ent-Holopad.desc } ent-HolopadServiceJanitor = { ent-Holopad } .suffix = Janitor .desc = { ent-Holopad.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl index c106115d69e..b67c5598c54 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl @@ -40,6 +40,8 @@ ent-VendingMachinePwrGame = Pwr Game Vendor .desc = You want it, we got it. Brought to you in partnership with Vlad's Salads. ent-VendingMachineDrGibb = Dr. Gibb Vendor .desc = Canned explosion of different flavors in this very vendor! +ent-VendingMachineSmite = Smite Vendor + .desc = Popular with the administration. ent-VendingMachineDinnerware = Plasteel Chef's Dinnerware Vendor .desc = A kitchen and restaurant equipment vendor. ent-VendingMachineMagivend = MagiVend @@ -140,6 +142,8 @@ ent-VendingMachineCentDrobe = CentDrobe .desc = A one-of-a-kind vending machine for all your centcomm aesthetic needs! ent-VendingMachineHappyHonk = Happy Honk Dispenser .desc = A happy honk meal box dispenser made by honk! co. +ent-VendingMachinePride = Pride-O-Mat + .desc = A vending machine containing pride. ent-VendingMachineTankDispenserEVA = gas tank dispenser .desc = A vendor for dispensing gas tanks. .suffix = EVA [O2, N2] diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl index d7da2b75952..1277d8093e1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl @@ -18,3 +18,6 @@ ent-GasRecycler = gas recycler .desc = Recycles carbon dioxide and nitrous oxide. Heater and compressor not included. ent-HeatExchanger = radiator .desc = Transfers heat between the pipe and its surroundings. +ent-HeatExchangerBend = { ent-HeatExchanger } + .suffix = Bend + .desc = { ent-HeatExchanger.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 9be2bd0efa0..21ff264da6a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -52,6 +52,8 @@ ent-SignDirectionalSupply = supply sign .desc = A direction sign, pointing to some supplies. ent-SignDirectionalWash = washroom sign .desc = A direction sign, pointing to the way to a washroom. +ent-SignDirectionalEscapePod = escape pods sign + .desc = A direction sign, pointing out the way to an escape pod dock. ent-SignAi = ai sign .desc = A sign, indicating an AI is present. ent-SignAiUpload = ai upload sign diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 86fa382fe20..3699fd52563 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -36,7 +36,7 @@ ent-WallPlastitaniumDiagonalIndestructible = plastitanium wall .suffix = diagonal, indestructible ent-WallReinforced = reinforced wall .desc = { ent-BaseWall.desc } -ent-WallReinforcedRust = reinforced wall +ent-WallReinforcedRust = { ent-WallReinforced } .suffix = rusted .desc = { ent-WallReinforced.desc } ent-WallReinforcedDiagonal = reinforced wall @@ -62,13 +62,13 @@ ent-WallSolid = solid wall ent-WallSolidDiagonal = solid wall .suffix = diagonal .desc = { ent-WallShuttleDiagonal.desc } -ent-WallSolidRust = solid wall +ent-WallSolidRust = { ent-WallSolid } .suffix = rusted .desc = { ent-WallSolid.desc } ent-WallUranium = uranium wall .desc = { ent-BaseWall.desc } ent-WallWood = wood wall - .desc = { ent-BaseWall.desc } + .desc = The traditional greytide defense. ent-WallWeb = web wall .desc = Keeps the spiders in and the greytide out. ent-WallNecropolis = stone wall diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl index a596ff82547..f406630042f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl @@ -30,6 +30,8 @@ ent-UnknownShuttleJoe = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleLambordeere = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } +ent-UnknownShuttleManOWar = { ent-BaseUnknownShuttleRule } + .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleMeatZone = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleMicroshuttle = { ent-BaseUnknownShuttleRule } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/loadouts/dummy_entities.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/loadouts/dummy_entities.ftl new file mode 100644 index 00000000000..70955c7f431 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/loadouts/dummy_entities.ftl @@ -0,0 +1,2 @@ +ent-LoadoutDummyCandles = three candles + .desc = A set of three colorful candles for secret rituals! diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl index e263b3b55ea..0c4795afe81 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/objectives/traitor.ftl @@ -44,5 +44,3 @@ ent-CaptainJetpackStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } ent-CaptainGunStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } -# ent-NukeDiskStealObjective = { ent-BaseCaptainObjective } -# .desc = { ent-BaseCaptainObjective.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl index 46ee653f74a..ed3d8f8e224 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl @@ -4,10 +4,24 @@ ent-BaseMindRoleAntag = { ent-BaseMindRole } .desc = { ent-BaseMindRole.desc } ent-MindRoleObserver = Observer Role .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostMarker = Ghost Role +ent-MindRoleGhostRoleNeutral = Ghost Role + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleFamiliar = Ghost Role (Familiar) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleFreeAgent = Ghost Role (Free Agent) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSilicon = Ghost Role (Silicon) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSiliconAntagonist = Ghost Role (Silicon Antagonist) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSoloAntagonist = Ghost Role (Solo Antagonist) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleTeamAntagonist = Ghost Role (Team Antagonist) .desc = { ent-BaseMindRole.desc } ent-MindRoleJob = Job Role .desc = { ent-BaseMindRole.desc } +ent-MindRoleSiliconBrain = Borg Brain Role + .desc = { ent-BaseMindRole.desc } ent-MindRoleSubvertedSilicon = Subverted Silicon Role .desc = { ent-BaseMindRoleAntag.desc } ent-MindRoleDragon = Dragon Role @@ -30,6 +44,8 @@ ent-MindRoleTraitor = Traitor Role .desc = { ent-BaseMindRoleAntag.desc } ent-MindRoleTraitorSleeper = Sleeper Agent Role .desc = { ent-MindRoleTraitor.desc } +ent-MindRoleTraitorReinforcement = Syndicate Reinforcement Role + .desc = { ent-MindRoleTraitor.desc } ent-MindRoleInitialInfected = Initial Infected Role .desc = { ent-BaseMindRoleAntag.desc } ent-MindRoleZombie = Zombie Role diff --git a/Resources/Locale/ru-RU/accessories/human-hair.ftl b/Resources/Locale/ru-RU/accessories/human-hair.ftl index 9779d23b8ed..d131b1cc4b3 100644 --- a/Resources/Locale/ru-RU/accessories/human-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/human-hair.ftl @@ -146,6 +146,7 @@ marking-HumanHairSidetail2 = Хвостик (Сбоку) 2 marking-HumanHairSidetail3 = Хвостик (Сбоку) 3 marking-HumanHairSidetail4 = Хвостик (Сбоку) 4 marking-HumanHairSpikyponytail = Хвостик (Шипастый) +marking-HumanHairPulato = Pulato marking-HumanHairPoofy = Пышная marking-HumanHairQuiff = Квифф marking-HumanHairShaped = Фигурная diff --git a/Resources/Locale/ru-RU/administration/admin-alerts.ftl b/Resources/Locale/ru-RU/administration/admin-alerts.ftl index fa99a91a670..567bb8cb4c0 100644 --- a/Resources/Locale/ru-RU/administration/admin-alerts.ftl +++ b/Resources/Locale/ru-RU/administration/admin-alerts.ftl @@ -1 +1,3 @@ admin-alert-shared-connection = { $player } имеет общее интернет-соединение с { $otherCount } другим(-и) игроком(-ами): { $otherList } +admin-alert-ipintel-blocked = { $player } was rejected from joining due to their IP having a { TOSTRING($percent, "P0") } confidence of being a VPN/Datacenter. +admin-alert-ipintel-warning = { $player } IP has a { TOSTRING($percent, "P0") } confidence of being a VPN/Datacenter. Please watch them. diff --git a/Resources/Locale/ru-RU/administration/antag.ftl b/Resources/Locale/ru-RU/administration/antag.ftl index bbe8dd94030..b86e1c7e9b8 100644 --- a/Resources/Locale/ru-RU/administration/antag.ftl +++ b/Resources/Locale/ru-RU/administration/antag.ftl @@ -13,3 +13,4 @@ admin-verb-text-make-nuclear-operative = Сделать ядерным опер admin-verb-text-make-pirate = Сделать пиратом admin-verb-text-make-head-rev = Сделать Главой революции admin-verb-text-make-thief = Сделать вором +admin-overlay-antag-classic = ANTAG diff --git a/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl b/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl index eb6dd094d7d..854ec7163b9 100644 --- a/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl +++ b/Resources/Locale/ru-RU/administration/ui/permissions-eui.ftl @@ -13,6 +13,7 @@ permissions-eui-edit-admin-window-title-edit-placeholder = Пользовате permissions-eui-edit-admin-window-no-rank-button = Нет ранга permissions-eui-edit-admin-rank-window-name-edit-placeholder = Название ранга permissions-eui-edit-admin-title-control-text = отсутствует +permissions-eui-edit-admin-window-suspended = Suspended? permissions-eui-edit-no-rank-text = отсутствует permissions-eui-edit-title-button = Редактировать permissions-eui-edit-admin-rank-button = Редактировать diff --git a/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl b/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl index 87e062ce4a5..53593c2a267 100644 --- a/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl +++ b/Resources/Locale/ru-RU/administration/ui/tabs/player-tab.ftl @@ -3,6 +3,7 @@ player-tab-username = Пользователь player-tab-character = Персонаж player-tab-job = Должность player-tab-antagonist = Антагонист +player-tab-roletype = Role Type player-tab-playtime = Игровое время player-tab-show-disconnected = Показать отключившихся player-tab-overlay = Оверлей diff --git a/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl new file mode 100644 index 00000000000..c9627ac0f22 --- /dev/null +++ b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl @@ -0,0 +1,12 @@ +advertisement-gibb-1 = Delicious! +advertisement-gibb-2 = Recommended by at least one doctor! +advertisement-gibb-3 = Over 1 million drinks sold! +advertisement-gibb-4 = Dr. Gibb, what's the worst that could happen? +advertisement-gibb-5 = Dr. Gibb, the flavor explosion! +advertisement-gibb-6 = Trust me, I'm a doctor! +advertisement-gibb-7 = The best sugar infusion in the galaxy! +advertisement-gibb-8 = Space Cola can get Gibbed! +thankyou-gibb-1 = The Dr. is in... your belly! +thankyou-gibb-2 = Prognosis: flavor! +thankyou-gibb-3 = Enjoy the 42 flavors! +thankyou-gibb-4 = Enjoy the syrupy goodness! diff --git a/Resources/Locale/ru-RU/advertisements/vending/pride.ftl b/Resources/Locale/ru-RU/advertisements/vending/pride.ftl new file mode 100644 index 00000000000..5e09ebe28fc --- /dev/null +++ b/Resources/Locale/ru-RU/advertisements/vending/pride.ftl @@ -0,0 +1,7 @@ +advertisement-pride-1 = Be gay do crime! +advertisement-pride-2 = Full of colors! +advertisement-pride-3 = You are valid! +advertisement-pride-4 = The first pride was a riot! +thankyou-pride-1 = Slay! +thankyou-pride-2 = Knock 'em dead! +thankyou-pride-3 = What a glow up! diff --git a/Resources/Locale/ru-RU/advertisements/vending/smite.ftl b/Resources/Locale/ru-RU/advertisements/vending/smite.ftl new file mode 100644 index 00000000000..9231b36ecd2 --- /dev/null +++ b/Resources/Locale/ru-RU/advertisements/vending/smite.ftl @@ -0,0 +1,12 @@ +advertisement-smite-1 = SMITE! Ban your thirst! +advertisement-smite-2 = An eldritch blast of lemon and lime! +advertisement-smite-3 = Over 1 million drinks sold! +advertisement-smite-4 = SMITE! Roll 2d8 for FLAVOR. +advertisement-smite-5 = SMITE! Let's get that paperwork done! +advertisement-smite-6 = The janitor has it in for you! +advertisement-smite-7 = SMITE! It won't get you hammered. +advertisement-smite-8 = It's lemon-lime time! +thankyou-smite-1 = Smite makes right! +thankyou-smite-2 = You DEFINITELY wanted lemon-lime! +thankyou-smite-3 = The office won't know what hit them. +thankyou-smite-4 = Banish your thirst. diff --git a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl index 0278f62114f..7d285251899 100644 --- a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl @@ -62,3 +62,5 @@ air-alarm-ui-thresholds-upper-bound = Верхняя аварийная гран air-alarm-ui-thresholds-lower-bound = Нижняя аварийная граница air-alarm-ui-thresholds-upper-warning-bound = Верхняя тревожная граница air-alarm-ui-thresholds-lower-warning-bound = Нижняя тревожная граница +air-alarm-ui-thresholds-copy = Copy thresholds to all devices +air-alarm-ui-thresholds-copy-tooltip = Copies the sensor thresholds of this device to all devices in this air alarm tab. diff --git a/Resources/Locale/ru-RU/atmos/atmos-alerts-console.ftl b/Resources/Locale/ru-RU/atmos/atmos-alerts-console.ftl index f637a8e684e..e02c6e9d91a 100644 --- a/Resources/Locale/ru-RU/atmos/atmos-alerts-console.ftl +++ b/Resources/Locale/ru-RU/atmos/atmos-alerts-console.ftl @@ -1,18 +1,16 @@ atmos-alerts-window-title = Консоль атмосферной сигнализации atmos-alerts-window-station-name = [color=white][font size=14]{ $stationName }[/font][/color] atmos-alerts-window-unknown-location = Неизвестное место - atmos-alerts-window-tab-no-alerts = Предупреждения atmos-alerts-window-tab-alerts = Предупреждения ({ $value }) atmos-alerts-window-tab-air-alarms = Возд. сигн. atmos-alerts-window-tab-fire-alarms = Пож. сигн. - atmos-alerts-window-alarm-label = { CAPITALIZE($name) } ({ $address }) atmos-alerts-window-temperature-label = Температура atmos-alerts-window-temperature-value = { $valueInC } °C ({ $valueInK } K) atmos-alerts-window-invalid-value = Н/Д atmos-alerts-window-total-mol-label = Всего молей -atmos-alerts-window-total-mol-value = {$value} моль +atmos-alerts-window-total-mol-value = { $value } моль atmos-alerts-window-pressure-label = Давление atmos-alerts-window-pressure-value = { $value } кПа atmos-alerts-window-oxygenation-label = Оксигенация @@ -21,18 +19,14 @@ atmos-alerts-window-other-gases-label = Прочие газы atmos-alerts-window-other-gases-value = { $shorthand } ({ $value }%) atmos-alerts-window-other-gases-value-nil = Нет atmos-alerts-window-silence-alerts = Заглушить предупреждения этой сигнализации - atmos-alerts-window-label-alert-types = Уровни тревоги: atmos-alerts-window-normal-state = Нормально atmos-alerts-window-warning-state = Внимание atmos-alerts-window-danger-state = Опасность! atmos-alerts-window-invalid-state = Неактив - atmos-alerts-window-no-active-alerts = [font size=16][color=white]Нет активных предупреждений -[/color] [color={ $color }]ситуация нормальная[/color][/font] atmos-alerts-window-no-data-available = Данные отсутствуют atmos-alerts-window-alerts-being-silenced = Отключение предупреждений... - atmos-alerts-window-toggle-overlays = Переключение отображения сигнализации - atmos-alerts-window-flavor-left = Обратитесь за помощью к атмосферному технику atmos-alerts-window-flavor-right = v1.8 diff --git a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl index 5d358857e72..8866ae8e61d 100644 --- a/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl +++ b/Resources/Locale/ru-RU/chat/managers/chat-manager.ftl @@ -92,6 +92,10 @@ chat-speech-verb-vox-1 = скрипит chat-speech-verb-vox-2 = визжит chat-speech-verb-vox-3 = каркает chat-speech-verb-name-small-mob = Мышь +chat-speech-verb-name-goat = Goat +chat-speech-verb-goat-1 = bleats +chat-speech-verb-goat-2 = grunts +chat-speech-verb-goat-3 = cries chat-speech-verb-small-mob-1 = скрипит chat-speech-verb-small-mob-2 = пищит chat-speech-verb-name-large-mob = Карп diff --git a/Resources/Locale/ru-RU/connection-messages.ftl b/Resources/Locale/ru-RU/connection-messages.ftl index a1a965d5509..44ff47e50c9 100644 --- a/Resources/Locale/ru-RU/connection-messages.ftl +++ b/Resources/Locale/ru-RU/connection-messages.ftl @@ -4,24 +4,20 @@ cmd-whitelistadd-existing = { $username } уже находится в бело cmd-whitelistadd-added = { $username } добавлен в белый список cmd-whitelistadd-not-found = Не удалось найти игрока '{ $username }' cmd-whitelistadd-arg-player = [player] - cmd-whitelistremove-desc = Удалить игрока с белого списка сервера. cmd-whitelistremove-help = Использование: whitelistremove cmd-whitelistremove-existing = { $username } не находится в белом списке! cmd-whitelistremove-removed = { $username } удалён из белого списка cmd-whitelistremove-not-found = Не удалось найти игрока '{ $username }' cmd-whitelistremove-arg-player = [player] - cmd-kicknonwhitelisted-desc = Кикнуть всех игроков не в белом списке с сервера. cmd-kicknonwhitelisted-help = Использование: kicknonwhitelisted - ban-banned-permanent = Этот бан можно только обжаловать. Для этого посетите { $link }. ban-banned-permanent-appeal = Этот бан можно только обжаловать. Для этого посетите { $link }. ban-expires = Вы получили бан на { $duration } минут, и он истечёт { $time } по UTC (для московского времени добавьте 3 часа). ban-banned-1 = Вам, или другому пользователю этого компьютера или соединения, запрещено здесь играть. ban-banned-2 = Причина бана: "{ $reason }" ban-banned-3 = Попытки обойти этот бан, например, путём создания нового аккаунта, будут фиксироваться. - soft-player-cap-full = Сервер заполнен! panic-bunker-account-denied = Этот сервер находится в режиме "Бункер", часто используемом в качестве меры предосторожности против рейдов. Новые подключения от аккаунтов, не соответствующих определённым требованиям, временно не принимаются. Повторите попытку позже panic-bunker-account-denied-reason = Этот сервер находится в режиме "Бункер", часто используемом в качестве меры предосторожности против рейдов. Новые подключения от аккаунтов, не соответствующих определённым требованиям, временно не принимаются. Повторите попытку позже Причина: "{ $reason }" @@ -31,7 +27,6 @@ panic-bunker-account-reason-overall = [one] минуты *[other] минут }. - whitelist-playtime = У вас недостаточно игрового времени, чтобы присоединиться к этому серверу. Вам нужно как минимум { $minutes } минут игрового времени, чтобы присоединиться к этому серверу. whitelist-player-count = Этот сервер в данный момент не принимает игроков. Пожалуйста, повторите попытку позже. whitelist-notes = У вас слишком много заметок от администрации, чтобы присоединиться к этому серверу. Вы можете проверить свои заметки, набрав /adminremarks в чате. @@ -40,24 +35,25 @@ whitelist-blacklisted = Вы находитесь в чёрном списке whitelist-always-deny = Вам запрещено присоединяться к этому серверу. whitelist-fail-prefix = Не внесён в белый список: { $msg } whitelist-misconfigured = Сервер неправильно настроен и не принимает игроков. Пожалуйста, свяжитесь с владельцем сервера и повторите попытку позже. - cmd-blacklistadd-desc = Добавить игрока в чёрный список сервера. cmd-blacklistadd-help = Использование: blacklistadd cmd-blacklistadd-existing = { $username } уже находится в чёрном списке! cmd-blacklistadd-added = { $username } добавлен в чёрный список cmd-blacklistadd-not-found = Не удалось найти игрока '{ $username }' cmd-blacklistadd-arg-player = [player] - cmd-blacklistremove-desc = Удалить игрока из чёрного списка сервера. cmd-blacklistremove-help = Использование: blacklistremove cmd-blacklistremove-existing = { $username } не находится в чёрном списке! cmd-blacklistremove-removed = { $username } удалён из чёрного списка cmd-blacklistremove-not-found = Не удалось найти игрока '{ $username }' cmd-blacklistremove-arg-player = [player] - baby-jail-account-denied = Этот сервер - сервер для новичков, предназначенный для новых игроков и тех, кто хочет им помочь. Новые подключения слишком старых или не внесенных в белый список аккаунтов не принимаются. Загляните на другие серверы и посмотрите все, что может предложить Space Station 14. Веселитесь! baby-jail-account-denied-reason = Этот сервер - сервер для новичков, предназначенный для новых игроков и тех, кто хочет им помочь. Новые подключения слишком старых или не внесенных в белый список аккаунтов не принимаются. Загляните на другие серверы и посмотрите все, что может предложить Space Station 14. Веселитесь! Причина: "{ $reason }" baby-jail-account-reason-account = Ваш аккаунт Space Station 14 слишком старый. Он должен быть моложе { $minutes } минут +generic-misconfigured = The server is misconfigured and is not accepting players. Please contact the server owner and try again later. +ipintel-server-ratelimited = This server uses a security system with external verification, which has reached its maximum verification limit. Please contact the administration team of the server for assistance and try again later. +ipintel-unknown = This server uses a security system with external verification, but it encountered an error. Please contact the administration team of the server for assistance and try again later. +ipintel-suspicious = You seem to be connecting through a datacenter or VPN. For administrative reasons we do not allow VPN connections to play. Please contact the administration team of the server for assistance if you believe this is false. baby-jail-account-reason-overall = Наигранное Вами время на сервере должно быть больше { $minutes } { $minutes -> [one] минуты diff --git a/Resources/Locale/ru-RU/datasets/names/ai.ftl b/Resources/Locale/ru-RU/datasets/names/ai.ftl index aad345c11ed..c9c90cc1055 100644 --- a/Resources/Locale/ru-RU/datasets/names/ai.ftl +++ b/Resources/Locale/ru-RU/datasets/names/ai.ftl @@ -118,3 +118,9 @@ names-ai-dataset-63 = ЗЕТ-1 names-ai-dataset-77 = ЗЕТ-2 names-ai-dataset-80 = ЗЕТ-3 names-ai-dataset-92 = ЗЕД +names-ai-dataset-103 = X.A.N.A. +names-ai-dataset-104 = XERXES +names-ai-dataset-105 = Z-1 +names-ai-dataset-106 = Z-2 +names-ai-dataset-107 = Z-3 +names-ai-dataset-108 = Zed diff --git a/Resources/Locale/ru-RU/devices/device-network.ftl b/Resources/Locale/ru-RU/devices/device-network.ftl index ff1d2ccc63f..d4e1151e4ec 100644 --- a/Resources/Locale/ru-RU/devices/device-network.ftl +++ b/Resources/Locale/ru-RU/devices/device-network.ftl @@ -11,6 +11,7 @@ device-frequency-prototype-name-cyborg-control = Управление кибор device-frequency-prototype-name-robotics-console = Консоль управления робототехникой ## camera frequencies + device-frequency-prototype-name-surveillance-camera-test = Тест подсети device-frequency-prototype-name-surveillance-camera-engineering = Камеры (Инженерный) device-frequency-prototype-name-surveillance-camera-security = Камеры (Охрана) @@ -21,7 +22,6 @@ device-frequency-prototype-name-surveillance-camera-service = Камеры (Се device-frequency-prototype-name-surveillance-camera-medical = Камеры (Медицинский) device-frequency-prototype-name-surveillance-camera-general = Камеры (Общие) device-frequency-prototype-name-surveillance-camera-entertainment = Камеры (Развлечения) - # prefixes for randomly generated device addresses device-address-prefix-vent = Вент- device-address-prefix-scrubber = Скр- @@ -32,16 +32,12 @@ device-address-prefix-heater = НГР- device-address-prefix-freezer = ОХЛ- device-address-prefix-volume-pump = ОБН- device-address-prefix-smes = СМС- - #PDAs and terminals device-address-prefix-console = Конс- device-address-prefix-fire-alarm = Пож- device-address-prefix-air-alarm = Возд- - device-address-prefix-sensor-monitor = МОН- - device-address-examine-message = Адрес устройства: { $address }. - #Device net ID names device-net-id-private = Частные device-net-id-wired = Проводные diff --git a/Resources/Locale/ru-RU/discord/watchlist-connections.ftl b/Resources/Locale/ru-RU/discord/watchlist-connections.ftl new file mode 100644 index 00000000000..346fe5935b1 --- /dev/null +++ b/Resources/Locale/ru-RU/discord/watchlist-connections.ftl @@ -0,0 +1,14 @@ +discord-watchlist-connection-header = + { $players -> + [one] { $players } player on a watchlist has + *[other] { $players } players on a watchlist have + } connected to { $serverName } +discord-watchlist-connection-entry = + - { $playerName } with message "{ $message }"{ $expiry -> + [0] { "" } + *[other] { " " }(expires ) + }{ $otherWatchlists -> + [0] { "" } + [one] { " " }and { $otherWatchlists } other watchlist + *[other] { " " }and { $otherWatchlists } other watchlists + } diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index a0842aaf0eb..7e2a141ce08 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -65,19 +65,21 @@ flavor-complex-ketchunaise = как помидоры и майонез flavor-complex-mayonnaise = как майонез flavor-complex-mustard = как горчица - # Food-specific flavors. ## Food chemicals. In case you get something that has this inside. + flavor-complex-nutriment = как питательные вещества flavor-complex-vitamin = как витамины flavor-complex-protein = как протеины ## Generic food taste. This should be replaced with an actual flavor profile, ## if you have food that looks как this. + flavor-complex-food = как еда ## Basic foodstuffs (ingredients, generic flavors) + flavor-complex-bun = как булочка flavor-complex-bread = как хлеб flavor-complex-batter = как тесто для торта @@ -126,6 +128,7 @@ flavor-complex-nettles = как крапива flavor-complex-jungle = как джунгли flavor-complex-vegetables = как овощи flavor-complex-cherry = как вишня + # use it when there multiple types of veggies ## Complex foodstuffs (cooked foods, joke flavors, etc) @@ -184,12 +187,14 @@ flavor-complex-compressed-meat = как спрессованное мясо # Drink-specific flavors. ## Generic alcohol/soda taste. This should be replaced with an actual flavor profile. + flavor-complex-alcohol = как алкоголь flavor-complex-soda = как газировка flavor-complex-juice = как сок flavor-complex-rocksandstones = как скалы и камни ## Basic drinks + flavor-complex-water = как вода flavor-complex-beer = как моча flavor-complex-cognac = как сухой пряный алкоголь @@ -227,6 +232,7 @@ flavor-complex-mopwata = как застоявшаяся грязная вода flavor-complex-gin = как ферментированное зерно с можжевеловыми ягодами ## Cocktails + flavor-complex-arnold-palmer = как попадание в лунку с первого удара flavor-complex-blue-hawaiian = как тропики flavor-complex-cosmopolitan = сладко и терпко @@ -259,6 +265,7 @@ flavor-complex-xeno-basher = как уничтожение жуков flavor-complex-budget-insuls-drink = как взлом шлюза flavor-complex-watermelon-wakeup = как сладкое пробуждение flavor-complex-rubberneck = как синтетика +flavor-complex-irish-slammer = like a spiked cola float flavor-complex-irish-car-bomb = как шипучая пенка колы flavor-complex-themartinez = как фиалки и лимонная водка flavor-complex-cogchamp = как латунь @@ -303,13 +310,14 @@ flavor-complex-vodka-tonic = освежающе горько flavor-complex-coconut-rum = как орехово-ферментированный сахар ### This is exactly what pilk tastes как. I'm not even joking. I might've been a little drunk though + flavor-complex-pilk = как сладкое молоко # Medicine/chemical-specific flavors. ## Generic flavors. -flavor-complex-medicine = как лекарство +flavor-complex-medicine = как лекарство flavor-complex-carpet = как горсть шерсти flavor-complex-bee = беспчеловечно flavor-complex-sax = как джаз diff --git a/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl b/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl index 683dfa5402f..54bdab4485e 100644 --- a/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl +++ b/Resources/Locale/ru-RU/ghost/components/ghost-component.ftl @@ -1,3 +1,4 @@ ghost-component-on-examine-death-time-info-minutes = { $minutes } минут назад ghost-component-on-examine-death-time-info-seconds = { $seconds } секунд назад ghost-component-on-examine-message = Умер [color=yellow]{ $timeOfDeath }[/color]. +ghost-component-boo-action-failed = Despite your best efforts, nothing spooky happens. diff --git a/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl b/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl new file mode 100644 index 00000000000..368a6729550 --- /dev/null +++ b/Resources/Locale/ru-RU/ghost/spooky-speaker.ftl @@ -0,0 +1,17 @@ +spooky-speaker-generic-1 = ...ooOoooOOoooo... +spooky-speaker-generic-2 = ...can anyone hear me...? +spooky-speaker-generic-3 = ...join us... +spooky-speaker-generic-4 = ...come play with us... +spooky-speaker-generic-5 = KkkhhkhKhhkhkKk +spooky-speaker-generic-6 = Khhggkkghkk +spooky-speaker-generic-7 = khhkkkkKkhkkHk +spooky-speaker-generic-8 = ... +spooky-speaker-generic-9 = ...h-h-hello...? +spooky-speaker-generic-10 = Bzzzt +spooky-speaker-generic-11 = Weh +spooky-speaker-generic-12 = TREMBLE, MORTALS! +spooky-speaker-generic-13 = 4444444444 +spooky-speaker-generic-14 = ...I found you... +spooky-speaker-recycler-1 = I HUNGER +spooky-speaker-recycler-2 = MORE! GIVE ME MORE! +spooky-speaker-recycler-3 = FEED ME diff --git a/Resources/Locale/ru-RU/guidebook/guides.ftl b/Resources/Locale/ru-RU/guidebook/guides.ftl index 47ba82e61b8..d5a41bae0f5 100644 --- a/Resources/Locale/ru-RU/guidebook/guides.ftl +++ b/Resources/Locale/ru-RU/guidebook/guides.ftl @@ -67,6 +67,7 @@ guide-entry-security = Безопасность станции guide-entry-forensics = Криминалистика guide-entry-defusal = Обезвреживание крупной бомбы guide-entry-criminal-records = Криминальные записи +guide-entry-special = Special guide-entry-species = Расы guide-entry-antagonists = Антагонисты guide-entry-nuclear-operatives = Ядерные оперативники @@ -125,6 +126,8 @@ guide-entry-rules-s7 = S7 guide-entry-rules-s8 = S8 guide-entry-rules-s9 = S9 guide-entry-rules-s10 = S10 +guide-entry-rules-mrp-m0 = MRP Rules +guide-entry-rules-m1 = M1 guide-entry-rules-space-law = Space Law guide-entry-rules-sl-crime-list = Crime List guide-entry-rules-sl-controlled-substances = Controlled Substances diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index 26546404bc4..958892f067c 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -5,6 +5,7 @@ holopad-window-options = [color=darkgray][font size=10][italic]Пожалуйс # Call status holopad-window-no-calls-in-progress = Никакие голо-звонки не ведутся holopad-window-incoming-call = Входящий голо-звонок от: +holopad-window-relay-label = Originating at: holopad-window-outgoing-call = Попытка установить соединение... holopad-window-call-in-progress = Ведётся голо-звонок holopad-window-call-ending = Отсоединение... @@ -25,6 +26,7 @@ holopad-window-access-denied = В доступе отказано holopad-window-select-contact-from-list = Выберите контакт для начала голо-звонка holopad-window-fetching-contacts-list = Нет голопадов, с которыми можно связаться holopad-window-contact-label = { CAPITALIZE($label) } +holopad-window-filter-line-placeholder = Search for a contact # Flavor holopad-window-flavor-left = ⚠ Не входите пока проектор активен holopad-window-flavor-right = v3.0.9 @@ -74,6 +76,7 @@ holopad-medical-paramedic = Медицинский - Парамедик holopad-medical-virology = Медицинский - Вирусология holopad-medical-front = Медицинский - Приёмная holopad-medical-breakroom = Медицинский - Комната отдыха +holopad-medical-clinic = Medical - Clinic # Cargo holopad-cargo-front = Снабжение - Приёмная holopad-cargo-bay = Снабжение - Грузовой отсек diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl index 4dae822bba2..3a5ad2ede03 100644 --- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl @@ -4,7 +4,6 @@ petting-success-generic = Вы гладите { $target } по голове. petting-success-soft-floofy = Вы гладите { $target } по { POSS-ADJ($target) } мягкой пушистой голове. - petting-success-bingus = Вы гладите { $target } по { POSS-ADJ($target) } маленькой морщинистой голове. petting-success-bird = Вы гладите { $target } по { POSS-ADJ($target) } милой пернатой голове. petting-success-carp = Вы гладите { $target } по { POSS-ADJ($target) } маленькой рыбьей голове. @@ -32,9 +31,7 @@ petting-success-slimes = Вы гладите { $target } по { POSS-ADJ($target petting-success-snake = Вы гладите { $target } по { POSS-ADJ($target) } большой чешуйчатой голове. petting-success-monkey = Вы гладите { $target } по { POSS-ADJ($target) } озорной маленькой голове. petting-success-nymph = Вы гладите { $target } по { POSS-ADJ($target) } маленькой деревянной голове. - petting-failure-generic = Вы тянетесь погладить { $target }, но { SUBJECT($target) } настороженно уклоняется от вас. - petting-failure-bat = Вы тянетесь погладить { $target }, но { OBJECT($target) } очень трудно поймать! petting-failure-carp = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } острые зубки заставляют вас передумать. petting-failure-corrupted-corgi = Вы тянетесь погладить { $target }, но решаете, что лучше не надо. @@ -68,10 +65,9 @@ petting-success-janitor-cyborg = Вы гладите { $target } по { POSS-ADJ petting-success-medical-cyborg = Вы гладите { $target } по { POSS-ADJ($target) } стерильной металлической голове. petting-success-service-cyborg = Вы гладите { $target } по { POSS-ADJ($target) } нарядной металлической голове. petting-success-syndicate-cyborg = Вы гладите { $target } по { POSS-ADJ($target) } угрожающего вида металлической голове. -petting-success-derelict-cyborg = Вы гладите {$target} по {POSS-ADJ($target)} ржавой металлической голове. +petting-success-derelict-cyborg = Вы гладите { $target } по { POSS-ADJ($target) } ржавой металлической голове. petting-success-recycler = Вы гладите { $target } по { POSS-ADJ($target) } слегка пугающему стальному покрытию. -petting-success-station-ai = Вы гладите {$target} по {POSS-ADJ($target)} холодному, квадратному экрану. - +petting-success-station-ai = Вы гладите { $target } по { POSS-ADJ($target) } холодному, квадратному экрану. petting-failure-honkbot = Вы тянетесь погладить { $target }, но { SUBJECT($target) } хонкает и уворачивается! petting-failure-cleanbot = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят уборкой! petting-failure-mimebot = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят мимированием! @@ -84,10 +80,9 @@ petting-failure-janitor-cyborg = Вы тянетесь погладить { $tar petting-failure-medical-cyborg = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят спасением жизней! petting-failure-service-cyborg = Вы тянетесь погладить { $target }, но { SUBJECT($target) } занят обслуживанием экипажа! petting-failure-syndicate-cyborg = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } предательская натура заставляет вас передумать. -petting-failure-derelict-cyborg = Вы тянетесь погладить {THE($target)}, но {POSS-ADJ($target)} ржавый и рваный внешний вид заставляет вас передумать. -petting-failure-station-ai = Вы тянетесь погладить {THE($target)}, но {POSS-ADJ($target)} разряд заставляет вас отдёрнуть руку. - -petting-success-station-ai-others = { CAPITALIZE(THE($user)) } гладит {THE($target)} по {POSS-ADJ($target)} холодному, квадратному экрану. +petting-failure-derelict-cyborg = Вы тянетесь погладить { THE($target) }, но { POSS-ADJ($target) } ржавый и рваный внешний вид заставляет вас передумать. +petting-failure-station-ai = Вы тянетесь погладить { THE($target) }, но { POSS-ADJ($target) } разряд заставляет вас отдёрнуть руку. +petting-success-station-ai-others = { CAPITALIZE(THE($user)) } гладит { THE($target) } по { POSS-ADJ($target) } холодному, квадратному экрану. ## Rattling fences @@ -102,4 +97,4 @@ hugging-success-generic-target = { CAPITALIZE($user) } обнимает вас. ## Other petting-success-tesla = Вы гладите { $target }, попутно нарушая законы природы и физики. -petting-failure-tesla = Вы тянетесь погладить { $target }, но {POSS-ADJ($target)} разряд заставляет вас отдёрнуть руку. +petting-failure-tesla = Вы тянетесь погладить { $target }, но { POSS-ADJ($target) } разряд заставляет вас отдёрнуть руку. diff --git a/Resources/Locale/ru-RU/limited-charges/limited-charges.ftl b/Resources/Locale/ru-RU/limited-charges/limited-charges.ftl index 0da58944644..13185e79917 100644 --- a/Resources/Locale/ru-RU/limited-charges/limited-charges.ftl +++ b/Resources/Locale/ru-RU/limited-charges/limited-charges.ftl @@ -7,7 +7,7 @@ limited-charges-charges-remaining = limited-charges-max-charges = Имеет [color=green]максимум[/color] зарядов. limited-charges-recharging = До нового заряда { $seconds -> - [one]осталась [color=yellow]{ $seconds }[/color] секунда. - [few]осталось [color=yellow]{ $seconds }[/color] секунды. - *[other]осталось [color=yellow]{ $seconds }[/color] секунд. + [one] осталась [color=yellow]{ $seconds }[/color] секунда. + [few] осталось [color=yellow]{ $seconds }[/color] секунды. + *[other] осталось [color=yellow]{ $seconds }[/color] секунд. } diff --git a/Resources/Locale/ru-RU/mind/role-types.ftl b/Resources/Locale/ru-RU/mind/role-types.ftl new file mode 100644 index 00000000000..a0463237809 --- /dev/null +++ b/Resources/Locale/ru-RU/mind/role-types.ftl @@ -0,0 +1,8 @@ +role-type-crew-aligned-name = Crew Aligned +role-type-solo-antagonist-name = Solo Antagonist +role-type-team-antagonist-name = Team Antagonist +role-type-free-agent-name = Free Agent +role-type-familiar-name = Familiar +role-type-silicon-name = Silicon +role-type-silicon-antagonist-name = Altered Silicon +role-type-update-message = Your role is [color = { $color }]{ $role }[/color] diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index 7977d6beda8..ad5433786c2 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -7,6 +7,7 @@ station-beacon-captain = Капитан station-beacon-hop = Кабинет ГП station-beacon-security = Служба безопасности station-beacon-brig = Бриг +station-beacon-brig-med = Brig Med station-beacon-warden = Смотритель station-beacon-hos = Кабинет ГСБ station-beacon-armory = Оружейная @@ -24,6 +25,8 @@ station-beacon-cryonics = Криокапсулы station-beacon-cmo = Кабинет главрача station-beacon-morgue = Морг station-beacon-surgery = Операционная +station-beacon-psychology = Psychology +station-beacon-clinic = Clinic station-beacon-science = Научный отдел station-beacon-research-and-development = РНД station-beacon-research-server = Серверная @@ -56,11 +59,15 @@ station-beacon-janitor = Коморка уборщика station-beacon-ai = ИИ station-beacon-ai-sat = Спутник ИИ station-beacon-ai-core = Ядро ИИ +station-beacon-ai-upload = AI Upload +station-beacon-ai-power = AI Power station-beacon-arrivals = Зал прибытия station-beacon-evac = Зал эвакуации +station-beacon-docking-arm = Docking Arm station-beacon-eva-storage = Хранилище EVA station-beacon-chapel = Церковь station-beacon-library = Библиотека +station-beacon-reporter = Reporter station-beacon-dorms = Жилой отсек station-beacon-theater = Театр station-beacon-tools = Хранилище инструментов diff --git a/Resources/Locale/ru-RU/nutrition/components/drink-component.ftl b/Resources/Locale/ru-RU/nutrition/components/drink-component.ftl index d833dc71c00..ce3f1b24b89 100644 --- a/Resources/Locale/ru-RU/nutrition/components/drink-component.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/drink-component.ftl @@ -18,11 +18,12 @@ drink-component-try-use-drink-had-enough-other = Они не могут выпи drink-component-try-use-drink-success-slurp = Сёрб drink-component-try-use-drink-success-slurp-taste = Сёрб. { $flavors } drink-component-force-feed = { CAPITALIZE($user) } пытается вас чем-то напоить! -drink-component-force-feed-success = { CAPITALIZE($user) } { GENDER($user) -> - [male] напоил - [female] напоила - [epicene] напоили - *[neuter] напоило +drink-component-force-feed-success = + { CAPITALIZE($user) } { GENDER($user) -> + [male] напоил + [female] напоила + [epicene] напоили + *[neuter] напоило } вас чем-то! { $flavors } drink-component-force-feed-success-user = Вы успешно напоили { $target } drink-system-verb-drink = Пить diff --git a/Resources/Locale/ru-RU/nutrition/components/food-component.ftl b/Resources/Locale/ru-RU/nutrition/components/food-component.ftl index 493f32c4fdc..b54eb1a4bc7 100644 --- a/Resources/Locale/ru-RU/nutrition/components/food-component.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/food-component.ftl @@ -19,10 +19,11 @@ food-system-verb-eat = Съесть ## Force feeding food-system-force-feed = { CAPITALIZE($user) } пытается вам что-то скормить! -food-system-force-feed-success = { CAPITALIZE($user) } { CAPITALIZE($user) -> - [male] накормил - [female] накормила - [epicene] накормили - *[neuter] накормило +food-system-force-feed-success = + { CAPITALIZE($user) } { CAPITALIZE($user) -> + [male] накормил + [female] накормила + [epicene] накормили + *[neuter] накормило } вам что-то! { $flavors } food-system-force-feed-success-user = Вы успешно накормили { $target } diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl index 0c5c56692f7..b573653ab10 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl @@ -1,190 +1,68 @@ -reagent-name-absinthe = абсент -reagent-desc-absinthe = Спиртной напиток со вкусом аниса, полученный из растений. -reagent-name-ale = эль -reagent-desc-ale = Тёмный алкогольный напиток, приготовленный из ячменного солода и дрожжей. -reagent-name-beer = пиво -reagent-desc-beer = Алкогольный напиток, изготовленный из солода, хмеля, дрожжей и воды. -reagent-name-blue-curacao = голубой кюрасао -reagent-desc-blue-curacao = Экзотично-голубой фруктовый напиток, дистиллированный из апельсинов. -reagent-name-cognac = коньяк -reagent-desc-cognac = Сладкий и крепкий алкогольный напиток, дважды дистиллированный и оставленный для выдержки на несколько лет. Сладкий, как блуд. -reagent-name-dead-rum = мёртвый ром -reagent-desc-dead-rum = Дистиллированный алкогольный напиток, изготовленный из морской воды. -reagent-name-ethanol = этанол -reagent-desc-ethanol = Он же этиловый спирт. Простейший алкоголь, при употреблении пьянит, легко воспламеняется. -reagent-name-gin = джин -reagent-desc-gin = Дистиллированный алкогольный напиток, в котором преобладает аромат ягод можжевельника. -reagent-name-coffeeliqueur = кофейный ликёр -reagent-desc-coffeeliqueur = Ликёр, со вкусом кофе колд брю и специй. -reagent-name-melon-liquor = арбузный ликёр -reagent-desc-melon-liquor = Довольно сладкий фруктовый ликёр крепостью 23 градуса. -reagent-name-n-t-cahors = НеоТеологический кагор -reagent-desc-n-t-cahors = Креплёное десертное вино, изготовленное из каберне совиньон, саперави и других сортов винограда. -reagent-name-poison-wine = ядовитое вино -reagent-desc-poison-wine = Это вообще вино? Ядовитое! Галлюциногенное! Вероятно, ваше руководство потребляет его в огромных количествах! -reagent-name-rum = ром -reagent-desc-rum = Дистиллированный алкогольный напиток, изготовленный из субпродуктов сахарного тростника. -reagent-name-sake = саке -reagent-desc-sake = Алкогольный напиток, изготовленный путём брожения шлифованного риса. -reagent-name-tequila = текила -reagent-desc-tequila = Крепкий и слабо ароматизированный спирт производства Мексики. -reagent-name-vermouth = вермут -reagent-desc-vermouth = Ароматизированное, креплёное белое вино, со вкусом различных трав. -reagent-name-vodka = водка -reagent-desc-vodka = Прозрачный дистиллированный алкогольный напиток, происходящий из Польши и России. -reagent-name-whiskey = виски -reagent-desc-whiskey = Тип дистиллированного алкогольного напитка, изготовленного из забродившего зернового сусла. -reagent-name-wine = вино -reagent-desc-wine = Алкогольный напиток премиум-класса, изготовленный из дистиллированного виноградного сока. -reagent-name-champagne = шампанское -reagent-desc-champagne = Премиальное игристое вино. -reagent-name-acid-spit = кислотный плевок -reagent-desc-acid-spit = Напиток для смелых, но при неправильном приготовлении может оказаться смертельно опасным! -reagent-name-allies-cocktail = коктейль Союзники -reagent-desc-allies-cocktail = Напиток из ваших союзников, не так сладок, как если бы из ваших врагов. -reagent-name-aloe = алоэ -reagent-desc-aloe = Очень, очень, очень хорошо. -reagent-name-amasec = амасек -reagent-desc-amasec = Официальный напиток Оружейного клуба! -reagent-name-andalusia = андалусия -reagent-desc-andalusia = Хороший напиток со странным названием. -reagent-name-antifreeze = антифриз -reagent-desc-antifreeze = Непревзойдённая свежесть. -reagent-name-atomic-bomb = атомная бомба -reagent-desc-atomic-bomb = Распространение ядерного оружия никогда не было таким вкусным. -reagent-name-b52 = Б-52 -reagent-desc-b52 = Кофе, ирландские сливки и коньяк. Просто бомба. -reagent-name-blue-hawaiian = голубые Гавайи -reagent-desc-blue-hawaiian = Алоха! Это значит "привет" или "пока"? -reagent-name-bahama-mama = багама-мама -reagent-desc-bahama-mama = Тропический коктейль. -reagent-name-banana-honk = банана-хонк -reagent-desc-banana-honk = Напиток из Бананового Рая. -reagent-name-barefoot = босоногая -reagent-desc-barefoot = Босоногая и беременная. -reagent-name-beepsky-smash = удар Бипски -reagent-desc-beepsky-smash = Откажись выпить - и приготовься к ЗАКОНУ. -reagent-name-black-russian = чёрный русский -reagent-desc-black-russian = Для людей с непереносимостью лактозы. Так же прекрасен, как и белый русский. -reagent-name-bloody-mary = кровавая Мэри -reagent-desc-bloody-mary = Странная, но приятная смесь из водки, томата и сока лайма. -reagent-name-booger = козявка -reagent-desc-booger = Фууу... -reagent-name-brave-bull = храбрый бык -reagent-desc-brave-bull = Так же эффективен, как и голландский кураж! -reagent-name-coconut-rum = кокосовый ром -reagent-desc-coconut-rum = Ром с кокосом для тропического настроения. -reagent-name-cosmopolitan = космополитен -reagent-desc-cosmopolitan = Даже в худшей ситуации ничто не сравнится со бокалом свежего космополитена. -reagent-name-cuba-libre = куба либре -reagent-desc-cuba-libre = Ром, смешанный с колой. Да здравствует революция. -reagent-name-demons-blood = кровь демона -reagent-desc-demons-blood = ААААХ!!!! -reagent-name-devils-kiss = поцелуй дьявола -reagent-desc-devils-kiss = Жуткое время! -reagent-name-doctors-delight = радость доктора -reagent-desc-doctors-delight = Глоток сделал - Медибот свободен. Это, наверное, даже к лучшему. -reagent-name-driest-martini = самый сухой мартини -reagent-desc-driest-martini = Только для опытных. Вы уверены, что видите плавающие в бокале песчинки. -reagent-name-erika-surprise = сюрприз Эрики -reagent-desc-erika-surprise = Сюрприз в том, что он зелёный! -reagent-name-gargle-blaster = пангалактический грызлодёр -reagent-desc-gargle-blaster = Ого, эта штука выглядит нестабильной! -reagent-name-gin-fizz = шипучий джин -reagent-desc-gin-fizz = Освежающе лимонный, восхитительно сухой. -reagent-name-gin-tonic = джин-тоник -reagent-desc-gin-tonic = Классический мягкий коктейль всех времён и народов. -reagent-name-gildlager = гильдлагер -reagent-desc-gildlager = 50-градусный коричный шнапс, созданный для девочек-подростков на весенних каникулах. -reagent-name-grog = грог -reagent-desc-grog = Ром, разбавленный водой, одобрено пиратами! -reagent-name-hippies-delight = радость хиппи -reagent-desc-hippies-delight = Ты просто не понимаешь, чувааак. -reagent-name-hooch = суррогат -reagent-desc-hooch = Либо чья-то неудача в приготовлении коктейля, либо чья-то попытка производства алкоголя. В любом случае, вы действительно хотите это выпить? -reagent-name-iced-beer = пиво со льдом -reagent-desc-iced-beer = Пиво настолько морозное, что воздух вокруг него замерзает. -reagent-name-irish-car-bomb = ирландская автомобильная бомба -reagent-desc-irish-car-bomb = Тревожная смесь крема айриш и эля. -reagent-name-irish-cream = ирландские сливки -reagent-desc-irish-cream = Сливки с добавлением виски. Что ещё можно ожидать от ирландцев. -reagent-name-irish-coffee = ирландский кофе -reagent-desc-irish-coffee = Кофе с ирландскими сливками. Обычные сливки - это совсем не то! -reagent-name-kira-special = кира спешл -reagent-desc-kira-special = Да здравствует парень, которого все принимали за девушку. Бака! -reagent-name-long-island-iced-tea = лонг-айленд айс ти -reagent-desc-long-island-iced-tea = Винный шкаф, собранный в вкусную смесь. Предназначен только для женщин-алкоголиков среднего возраста. -reagent-name-manhattan = манхэттен -reagent-desc-manhattan = Любимый напиток Детектива под прикрытием. Он никогда не переносил джин... -reagent-name-manhattan-project = манхэттенский проект -reagent-desc-manhattan-project = Напиток для учёных, размышляющих о том, как взорвать станцию. -reagent-name-manly-dorf = мужественный дворф -reagent-desc-manly-dorf = Пиво и эль, соединённые в восхитительный коктейль. Предназначено только для крепких гномов. -reagent-name-margarita = маргарита -reagent-desc-margarita = На каёмке лайм с солью. Аррива~! -reagent-name-martini = классический мартини -reagent-desc-martini = Вермут с джином. Не совсем как пил 007, но всё равно вкусно. -reagent-name-mead = медовуха -reagent-desc-mead = Напиток викингов, хоть и дешёвый. -reagent-name-mojito = мохито -reagent-desc-mojito = Если это достаточно хорошо для Космической Кубы, то подойдёт и для вас. -reagent-name-moonshine = самогон -reagent-desc-moonshine = Самодельный напиток, изготавливаемый в домашних условиях. Что может пойти не так? -reagent-name-neurotoxin = нейротоксин -reagent-desc-neurotoxin = Сильный нейротоксин, который вводит субъекта в состояние, напоминающее смерть. -reagent-name-painkiller = болеутоляющее -reagent-desc-painkiller = Лекарство от всех бед. -reagent-name-patron = покровитель -reagent-desc-patron = Текила с серебром в своём составе, фаворит женщин-алкоголичек из клубной тусовки. -reagent-name-pina-colada = пина колада -reagent-desc-pina-colada = За то, чтобы потеряться под дождём. -reagent-name-red-mead = красная медовуха -reagent-desc-red-mead = Настоящий напиток викингов! Несмотря на то, что он имеет странный красный цвет. -reagent-name-rewriter = переписчик -reagent-desc-rewriter = Тайна святилища Библиотекаря... -reagent-name-sbiten = сбитень -reagent-desc-sbiten = Пикантная водка! Может быть немного жгучей для малышей! -reagent-name-screwdriver-cocktail = отвёртка -reagent-desc-screwdriver-cocktail = Водка, смешанная с обычным апельсиновым соком. Результат на удивление вкусный. -reagent-name-cogchamp = когчамп -reagent-desc-cogchamp = Даже Четыре Генерала Ратвара не могли устоять перед этим! Qevax Jryy! Коктейль передней линии бара. -reagent-name-silencer = глушитель -reagent-desc-silencer = Напиток из рая мимов. -reagent-name-singulo = сингуло -reagent-desc-singulo = Блю-спейс напиток! -reagent-name-snow-white = белый снег -reagent-desc-snow-white = Морозная свежесть. -reagent-name-sui-dream = сон Сью -reagent-desc-sui-dream = 'Состав: Белая газировка, голубой кюрасао, дынный ликер.' -reagent-name-syndicate-bomb = бомба синдиката -reagent-desc-syndicate-bomb = Кто-то подложил нам бомбу! -reagent-name-tequila-sunrise = текила санрайз -reagent-desc-tequila-sunrise = Текила и апельсиновый сок. Очень похож на "Отвёртку", только мексиканскую. -reagent-name-three-mile-island = чай со льдом три-майл-айленд -reagent-desc-three-mile-island = "Сделан для женщин, достаточно крепок для мужчин." -reagent-name-toxins-special = токсин спешл -reagent-desc-toxins-special = Эта штука ОГОНЬ! ВЫЗЫВАЙТЕ ЧЁРТОВ ШАТТЛ! -reagent-name-vodka-martini = водка-мартини -reagent-desc-vodka-martini = Водка вместо джина. Не совсем как пил 007, но всё равно вкусно. -reagent-name-vodka-tonic = водка-тоник -reagent-desc-vodka-tonic = Для тех случаев, когда джин-тоник недостаточно русский. -reagent-name-whiskey-cola = виски-кола -reagent-desc-whiskey-cola = Виски, смешанный с колой. Удивительно освежает. -reagent-name-whiskey-soda = виски-содовая -reagent-desc-whiskey-soda = Невероятно освежающе! -reagent-name-white-russian = белый русский -reagent-desc-white-russian = Но это только твоё мнение, чувак. -reagent-name-vodka-red-bool = водка-ред булеан -reagent-desc-vodka-red-bool = Потому что сердечная и печёночная недостаточность идут рука об руку. -reagent-name-xeno-basher = ксенодав -reagent-desc-xeno-basher = Идеальный напиток перед началом экспедиции. -reagent-name-irish-bool = ирландский булеан -reagent-desc-irish-bool = Непереводимая математическая шутка про булеан. Посмейтесь. -reagent-name-budget-insuls = бюджетные изольки -reagent-desc-budget-insuls = Любимый напиток тайдера. -reagent-name-watermelon-wakeup = арбузное пробуждение -reagent-desc-watermelon-wakeup = Если вы хотите взбодриться, это поможет... Ещё и сладкое. -reagent-name-rubberneck = раббернек -reagent-desc-rubberneck = Популярный напиток среди тех, кто придерживается полностью синтетической диеты. -reagent-name-zombiecocktail = зомби -reagent-desc-zombiecocktail = It gets in your head. Your he-eyeh-ead. +reagent-name-coffee = кофе +reagent-desc-coffee = Напиток, приготовленный из заваренных кофейных зёрен. Содержит умеренное количество кофеина. +reagent-name-cream = сливки +reagent-desc-cream = Жирная, но ещё жидкая часть молока. Почему бы вам не смешать это с виски, а? +reagent-name-coconut-water = кокосовая вода +reagent-desc-coconut-water = Фаворит выживающих на необитаемых островах. +reagent-name-cream-of-coconut = кокосовые сливки +reagent-desc-cream-of-coconut = Сладкая, сиропообразная версия кокосовых сливок с добавлением сахара. +reagent-name-cafe-latte = кофе латте +reagent-desc-cafe-latte = Приятный, крепкий и вкусный напиток на время чтения. +reagent-name-tea-powder = порошковый чай +reagent-desc-tea-powder = Мелко измельченные чайные листья, используемые для приготовления чая. +reagent-name-green-tea = зелёный чай +reagent-desc-green-tea = Вкусный зелёный чай. +reagent-name-grenadine = сироп гренадин +reagent-desc-grenadine = Не с вишневым вкусом! +reagent-name-iced-coffee = айс-кофе +reagent-desc-iced-coffee = Кофе со льдом, бодрящий и прохладный. +reagent-name-iced-green-tea = зелёный чай со льдом +reagent-desc-iced-green-tea = Холодный зелёный чай. +reagent-name-iced-tea = чай со льдом +reagent-desc-iced-tea = Он же айс-ти. Не имеет отношения к определённому рэп-исполнителю/актёру. +reagent-name-lemonade = лимонад +reagent-desc-lemonade = Напиток из лимонного сока, воды и подсластителя, например, тростникового сахара или мёда. +reagent-name-arnold-palmer = Арнольд Палмер +reagent-desc-arnold-palmer = Теперь взгляните на этот удар. +reagent-name-milk = молоко +reagent-desc-milk = Непрозрачная белая жидкость, вырабатываемая молочными железами млекопитающих. +reagent-name-milk-goat = козье молоко +reagent-desc-milk-goat = Непрозрачная белая жидкость, производимая козами. Высокая концентрация обезжиренных сливок. +reagent-name-milk-oat = овсяное молоко +reagent-desc-milk-oat = На удивление вкусное. +reagent-name-milk-soy = соевое молоко +reagent-desc-milk-soy = Любимчик потребителей. +reagent-name-milk-spoiled = прогорклое молоко +reagent-desc-milk-spoiled = Это молоко испортилось. +reagent-name-nothing = ничего +reagent-desc-nothing = Абсолютно ничего. +reagent-name-nuclear-cola = ядерная кола +reagent-desc-nuclear-cola = Кола, кола никогда не меняется. +reagent-name-hot-cocoa = горячее какао +reagent-desc-hot-cocoa = Пахнет праздниками! +reagent-name-soda-water = газированная вода +reagent-desc-soda-water = Она же содовая. Почему бы не сделать виски с содовой? +reagent-name-soy-latte = соевый латте +reagent-desc-soy-latte = Кофейный напиток, приготовленный из эспрессо и подогретого соевого молока. +reagent-name-tea = чай +reagent-desc-tea = Напиток, приготовленный путём кипячения листьев чайного дерева Camellia sinensis. +reagent-name-tonic-water = тоник +reagent-desc-tonic-water = Вкус у него странный, но, по крайней мере, хинин препятствует распространению космической малярии. +reagent-name-water = вода +reagent-desc-water = Бесцветная жидкость, необходимая человекам для выживания. +reagent-name-ice = лёд +reagent-desc-ice = Застывшая вода. +reagent-name-dry-ramen = сухой рамэн +reagent-desc-dry-ramen = Сухая лапша и соль. +reagent-name-hot-ramen = горячий рамэн +reagent-desc-hot-ramen = Горячая лапша. +reagent-name-pilk = пилк +reagent-desc-pilk = Тошнотворная смесь молока и колы. +reagent-name-posca = поска +reagent-desc-posca = Напиток бедных воинов из забытой эпохи. +reagent-name-the-martinez = Мартинес +reagent-desc-the-martinez = Легенда среди киберпанков. Вспоминается по напитку, забывается по пьяни. +reagent-name-white-gilgamesh = белый Гильгамеш +reagent-desc-white-gilgamesh = Тошнотворная смесь молока и пива. Вызывает ощущение одеревенелости. +reagent-name-mopwata = швабода +reagent-desc-mopwata = Грязная, застоявшаяся вода из-под швабры, швабровая вода. diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl deleted file mode 100644 index b573653ab10..00000000000 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/drinks.ftl +++ /dev/null @@ -1,68 +0,0 @@ -reagent-name-coffee = кофе -reagent-desc-coffee = Напиток, приготовленный из заваренных кофейных зёрен. Содержит умеренное количество кофеина. -reagent-name-cream = сливки -reagent-desc-cream = Жирная, но ещё жидкая часть молока. Почему бы вам не смешать это с виски, а? -reagent-name-coconut-water = кокосовая вода -reagent-desc-coconut-water = Фаворит выживающих на необитаемых островах. -reagent-name-cream-of-coconut = кокосовые сливки -reagent-desc-cream-of-coconut = Сладкая, сиропообразная версия кокосовых сливок с добавлением сахара. -reagent-name-cafe-latte = кофе латте -reagent-desc-cafe-latte = Приятный, крепкий и вкусный напиток на время чтения. -reagent-name-tea-powder = порошковый чай -reagent-desc-tea-powder = Мелко измельченные чайные листья, используемые для приготовления чая. -reagent-name-green-tea = зелёный чай -reagent-desc-green-tea = Вкусный зелёный чай. -reagent-name-grenadine = сироп гренадин -reagent-desc-grenadine = Не с вишневым вкусом! -reagent-name-iced-coffee = айс-кофе -reagent-desc-iced-coffee = Кофе со льдом, бодрящий и прохладный. -reagent-name-iced-green-tea = зелёный чай со льдом -reagent-desc-iced-green-tea = Холодный зелёный чай. -reagent-name-iced-tea = чай со льдом -reagent-desc-iced-tea = Он же айс-ти. Не имеет отношения к определённому рэп-исполнителю/актёру. -reagent-name-lemonade = лимонад -reagent-desc-lemonade = Напиток из лимонного сока, воды и подсластителя, например, тростникового сахара или мёда. -reagent-name-arnold-palmer = Арнольд Палмер -reagent-desc-arnold-palmer = Теперь взгляните на этот удар. -reagent-name-milk = молоко -reagent-desc-milk = Непрозрачная белая жидкость, вырабатываемая молочными железами млекопитающих. -reagent-name-milk-goat = козье молоко -reagent-desc-milk-goat = Непрозрачная белая жидкость, производимая козами. Высокая концентрация обезжиренных сливок. -reagent-name-milk-oat = овсяное молоко -reagent-desc-milk-oat = На удивление вкусное. -reagent-name-milk-soy = соевое молоко -reagent-desc-milk-soy = Любимчик потребителей. -reagent-name-milk-spoiled = прогорклое молоко -reagent-desc-milk-spoiled = Это молоко испортилось. -reagent-name-nothing = ничего -reagent-desc-nothing = Абсолютно ничего. -reagent-name-nuclear-cola = ядерная кола -reagent-desc-nuclear-cola = Кола, кола никогда не меняется. -reagent-name-hot-cocoa = горячее какао -reagent-desc-hot-cocoa = Пахнет праздниками! -reagent-name-soda-water = газированная вода -reagent-desc-soda-water = Она же содовая. Почему бы не сделать виски с содовой? -reagent-name-soy-latte = соевый латте -reagent-desc-soy-latte = Кофейный напиток, приготовленный из эспрессо и подогретого соевого молока. -reagent-name-tea = чай -reagent-desc-tea = Напиток, приготовленный путём кипячения листьев чайного дерева Camellia sinensis. -reagent-name-tonic-water = тоник -reagent-desc-tonic-water = Вкус у него странный, но, по крайней мере, хинин препятствует распространению космической малярии. -reagent-name-water = вода -reagent-desc-water = Бесцветная жидкость, необходимая человекам для выживания. -reagent-name-ice = лёд -reagent-desc-ice = Застывшая вода. -reagent-name-dry-ramen = сухой рамэн -reagent-desc-dry-ramen = Сухая лапша и соль. -reagent-name-hot-ramen = горячий рамэн -reagent-desc-hot-ramen = Горячая лапша. -reagent-name-pilk = пилк -reagent-desc-pilk = Тошнотворная смесь молока и колы. -reagent-name-posca = поска -reagent-desc-posca = Напиток бедных воинов из забытой эпохи. -reagent-name-the-martinez = Мартинес -reagent-desc-the-martinez = Легенда среди киберпанков. Вспоминается по напитку, забывается по пьяни. -reagent-name-white-gilgamesh = белый Гильгамеш -reagent-desc-white-gilgamesh = Тошнотворная смесь молока и пива. Вызывает ощущение одеревенелости. -reagent-name-mopwata = швабода -reagent-desc-mopwata = Грязная, застоявшаяся вода из-под швабры, швабровая вода. diff --git a/Resources/Locale/ru-RU/reagents/meta/fun.ftl b/Resources/Locale/ru-RU/reagents/meta/fun.ftl index 75a5bc0675d..890824e6e47 100644 --- a/Resources/Locale/ru-RU/reagents/meta/fun.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/fun.ftl @@ -18,3 +18,5 @@ reagent-name-laughter = смех reagent-desc-laughter = Некоторые говорят, что это лучшее лекарство, но последние исследования доказали, что это не так. reagent-name-weh = сок, заставляющий говорить Вех reagent-desc-weh = Чистая сущность плюшевого унатха. Заставляет вас говорить Вех! +reagent-name-hew = juice that makes you Hew +reagent-desc-hew = Pure essence of inversed lizard plush. Makes you Hew! diff --git a/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl b/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl index edee841f906..d92decaa8fb 100644 --- a/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl +++ b/Resources/Locale/ru-RU/robust-toolbox/_engine_lib.ftl @@ -22,12 +22,13 @@ zzzz-object-pronoun = } # Used internally by the DAT-OBJ() function. # Not used in en-US. Created for supporting other languages. -zzzz-dat-object = { GENDER($ent) -> - [male] ему - [female] ей - [epicene] им - *[neuter] ему - } +zzzz-dat-object = + { GENDER($ent) -> + [male] ему + [female] ей + [epicene] им + *[neuter] ему + } # Used internally by the POSS-PRONOUN() function. zzzz-possessive-pronoun = { GENDER($ent) -> diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl index 3906842ae5c..4423f6ef28e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/boxes/general.ftl @@ -4,6 +4,8 @@ ent-BoxMousetrap = коробка мышеловок .desc = Коробка, наполненая мышеловками. Постарайтесь не поймать себя за руку. ent-BoxLightbulb = коробка лампочек .desc = Из-за формы коробки в неё помещаются только лампочки и лампочки-трубки. +ent-BoxWarmLightbulb = lightbulb box warm + .desc = { ent-BoxLightbulb.desc } ent-BoxLighttube = коробка лампочек-трубок .desc = { ent-BoxLightbulb.desc } ent-BoxLightMixed = коробка смешанных лампочек diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl index 74f81112fd2..ab9db56409d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/engineering.ftl @@ -32,3 +32,5 @@ ent-CrateParticleDecelerators = ящик с замедлителями част .desc = Ящик, содержащий три замедлителя частиц. ent-CrateEngineeringSpaceHeater = ящик с термостатом .desc = Содержит термостат для климат-контроля. +ent-CrateTechBoardRandom = surplus boards + .desc = Surplus boards from somewhere. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl index 5ca4964b5eb..34515322b20 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/catalog/fills/crates/materials.ftl @@ -18,3 +18,5 @@ ent-CrateMaterialCardboard = ящик картона .desc = 60 единиц картона. ent-CrateMaterialPaper = ящик бумаги .desc = 90 листов бумаги. +ent-CrateMaterialRandom = surplus materials + .desc = Surplus materials from somewhere. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl index 5d8e388be82..d6622c80711 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/decoration/flora.ftl @@ -2,3 +2,4 @@ ent-NewYearTree0 = большая ель .desc = Ель, излучающая волшебную ауру. ent-NewYearTree1 = новогодняя ёлка .desc = Ты был хорошим мальчиком? + .suffix = PresentsGiver diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl new file mode 100644 index 00000000000..f8c89484b29 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/markers/spawners/bearspawnerbiome.ftl @@ -0,0 +1,2 @@ +ent-SpawnerMobBearBiome = space bear spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl index 929bb61b6d6..7f5fe413da1 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/neck/pins.ftl @@ -18,6 +18,8 @@ ent-ClothingNeckNonBinaryPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } ent-ClothingNeckPansexualPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } +ent-ClothingNeckOmnisexualPin = omnisexual pin + .desc = Be omni do crime. ent-ClothingNeckTransPin = { ent-ClothingNeckLGBTPin } .desc = { ent-ClothingNeckLGBTPin.desc } ent-ClothingNeckAutismPin = значок "аутизм" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl new file mode 100644 index 00000000000..139597f9cb0 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl @@ -0,0 +1,2 @@ + + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl new file mode 100644 index 00000000000..9bf34c4e555 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl @@ -0,0 +1,8 @@ +ent-LootSpawnerScienceMinor = science supplies spawner + .suffix = Minor, 80% + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerScienceMajor = science supplies spawner + .suffix = Major + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerRoboticsBorgModule = robotics board spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl new file mode 100644 index 00000000000..139597f9cb0 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl @@ -0,0 +1,2 @@ + + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl index b1a4135d5d4..9ad9f2cf1c4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/maintenance.ftl @@ -10,3 +10,6 @@ ent-MaintenanceWeaponSpawner = спавнер добыча тех туннели ent-MaintenancePlantSpawner = спавнер добыча тех туннели .suffix = Растения .desc = { ent-MarkerBase.desc } +ent-MaintenanceInsulsSpawner = Maint Loot Spawner + .suffix = Insuls, safe + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl index dc7aad2d5bd..a9d96b8796a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/vending.ftl @@ -1,3 +1,6 @@ ent-RandomVending = спавнер случайный торговый автомат .desc = { ent-MarkerBase.desc } .suffix = Случайный +ent-RandomVendingClothing = random vending machine spawner + .suffix = Clothing + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index 2fa2cd6d04a..40e272c5d4b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -22,6 +22,8 @@ ent-RobocopCircuitBoard = плата законов (Робокоп) .desc = Электронная плата, хранящая набор законов ИИ 'Робокоп'. ent-OverlordCircuitBoard = плата законов (Владыка) .desc = Электронная плата, хранящая набор законов ИИ 'Владыка'. +ent-GameMasterCircuitBoard = law board (Game Master) + .desc = An electronics board containing the Game Master lawset. ent-DungeonMasterCircuitBoard = плата законов (Игровой мастер) .desc = Электронная плата, хранящая набор законов ИИ 'Игровой мастер'. ent-ArtistCircuitBoard = плата законов (Художник) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 524d380e950..a576902fae5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -189,6 +189,9 @@ ent-DrinkIceCreamGlass = { ent-DrinkGlass } ent-IrishBoolGlass = { ent-DrinkGlass } .suffix = Ирландский булеан .desc = { ent-DrinkGlass.desc } +ent-DrinkIrishSlammer = { ent-DrinkGlass } + .suffix = irish slammer + .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCarBomb = { ent-DrinkGlass } .suffix = Ирландская автомобильная бомба .desc = { ent-DrinkGlass.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl index 382fcb8708e..6ae9b2f204a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl @@ -4,3 +4,5 @@ ent-FoodBagel = бублик .desc = { ent-FoodBagelBase.desc } ent-FoodBagelPoppy = бублик с маком .desc = Вкуснейший бублик с маковыми семечками, содержащими бикаридин. +ent-FoodBagelCotton = cotton bagel + .desc = A delicious bagel made with cotton dough. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl index f062dc26403..28cc35001f7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl @@ -52,8 +52,12 @@ ent-FoodBreadMimanaSlice = ломтик хлеба мимана .desc = Кусочек тишины! ent-FoodBreadMoldySlice = заплесневелый кусок хлеба .desc = Целые станции были разорваны на части из-за споров о том, можно ли это есть. +ent-FoodBreadBaguetteCotton = cotton baguette + .desc = Bon azzétit! ent-FoodBreadBaguetteSlice = кростини .desc = Bon ap-petite! +ent-FoodBreadBaguetteCottonSlice = cotton crostini + .desc = Bon az-zetite! ent-FoodBreadBaguette = багет .desc = Bon appétit! ent-FoodBreadFrenchToast = сладкие гренки diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl index c289284f722..140094373df 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl @@ -50,6 +50,8 @@ ent-FoodBakedDumplings = пельмени .desc = Усреднённый рецепт мяса в тесте. ent-FoodBakedChevreChaud = шевре шод .desc = Кружок слегка подтаявшего козьего сыра (шевре), уложенного на кростини и поджаренного со всех сторон. +ent-FoodBakedChevreChaudCotton = cotton chèvre chaud + .desc = A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. ent-FoodBakedBrownieBatch = брауни .desc = Противень брауни. ent-FoodBakedBrownie = брауни @@ -63,3 +65,5 @@ ent-FoodOnionRings = луковые кольца .desc = Можно съесть, а можно сделать предложение своим возлюбленным. ent-FoodBakedCroissant = круассан .desc = Маслянистое, слоистое лакомство. +ent-FoodBakedCroissantCotton = cotton croissant + .desc = Buttery, flaky, fibery goodness. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl index 691a35e0684..50329ac8da5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl @@ -10,6 +10,9 @@ ent-FoodBoxPizza = коробка пиццы ent-FoodBoxPizzaFilled = коробка пиццы .suffix = Заполненная .desc = { ent-FoodBoxPizza.desc } +ent-FoodBoxPizzaCotton = pizza box + .suffix = Cotton Pizza + .desc = { ent-FoodBoxPizzaFilled.desc } ent-FoodBoxNugget = куриные наггетсы .desc = У вас внезапно возникло желание торговать на межгалактическом фондовом рынке. ent-FoodBoxDonkpocket = коробка донк-покетов diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 4dce2bba5e0..291d20ce46c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -44,6 +44,10 @@ ent-FoodDoughTortillaFlat = плоское тесто тортильи .desc = Расплющенный кусок теста тортильи. Приготовьте его, чтобы получить лепёшку тако. ent-FoodDoughCotton = хлопковое тесто .desc = Кусок ткани из хлопка. +ent-FoodDoughCottonSlice = cotton dough slice + .desc = A slice of cotton dough. +ent-FoodDoughCottonRope = dough rope + .desc = A thin noodle of cotton dough. Can be cooked into a cotton bagel. ent-FoodDoughPastryBaseRaw = сырая основа для выпечки .desc = Перед использованием необходимо приготовить. ent-FoodDoughPastryBase = основа для выпечки @@ -82,3 +86,5 @@ ent-FoodCocoaBeans = какао-бобы .desc = Шоколада много не бывает! ent-FoodCroissantRaw = сырой круассан .desc = Маслянистая, слоистая вкуснятина, ожидающая своего часа. +ent-FoodCroissantRawCotton = raw cotton croissant + .desc = Buttery, flaky, fibery goodness waiting to happen. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 48721428739..3d53b047cbe 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -152,6 +152,9 @@ ent-SeniorOfficerPDA = КПК инструктора СБ .desc = Побит, помят, поломан, практически не пригоден для использования. ent-PiratePDA = КПК пирата .desc = Йарр! +ent-ChameleonPDA = passenger PDA + .desc = Why isn't it gray? + .suffix = Chameleon ent-SyndiAgentPDA = медицинский ало-красный КПК .suffix = КПК оперативника медика Синдиката, Ядерный Оперативник .desc = Смотря на этот КПК, ваше сердцебиение учащается... словно его владелец проводил немыслимые и ужасные медицинские эксперименты. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index eeb08129afa..d2f6d062143 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -30,6 +30,9 @@ ent-DefaultStationBeaconSecurity = { ent-DefaultStationBeacon } ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity } .suffix = Бриг .desc = { ent-DefaultStationBeaconSecurity.desc } +ent-DefaultStationBeaconBrigMed = { ent-DefaultStationBeaconSecurity } + .suffix = Brig Med + .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity } .suffix = Офис смотрителя .desc = { ent-DefaultStationBeaconSecurity.desc } @@ -75,6 +78,12 @@ ent-DefaultStationBeaconMorgue = { ent-DefaultStationBeaconMedical } ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical } .suffix = Операционная .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconPsychology = { ent-DefaultStationBeaconMedical } + .suffix = Psychology + .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconClinic = { ent-DefaultStationBeaconMedical } + .suffix = Clinic + .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon } .suffix = Научный отдел .desc = { ent-DefaultStationBeacon.desc } @@ -171,12 +180,21 @@ ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI } ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI } .suffix = Ядро ИИ .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIUpload = { ent-DefaultStationBeaconAI } + .suffix = AI Upload + .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIPower = { ent-DefaultStationBeaconAI } + .suffix = AI Power + .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon } .suffix = Прибытие .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon } .suffix = Эвакуация .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } + .suffix = Docking Arm + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } .suffix = Хранилище EVA .desc = { ent-DefaultStationBeacon.desc } @@ -186,6 +204,9 @@ ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon } ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon } .suffix = Библиотека .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconReporter = { ent-DefaultStationBeacon } + .suffix = Reporter + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon } .suffix = Театр .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl index d74abc2da23..35802f837e7 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/lights.ftl @@ -8,6 +8,8 @@ ent-LedLightBulb = светодиодная лампа .desc = Энергоэффективная лампочка. ent-DimLightBulb = тусклая лампа .desc = Приглушённая лампочка для рассеивания тьмы технических туннелей. +ent-WarmLightBulb = warm light bulb + .desc = A warm light bulb for a more cozy atmosphere. ent-LightBulbOld = старая лампа накаливания .desc = Старая обычная лампочка. ent-LightBulbBroken = лампа накаливания diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/emag.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/emag.ftl index c37e1c5904a..6a0100d3663 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/emag.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/tools/emag.ftl @@ -5,5 +5,6 @@ ent-EmagUnlimited = модифицированная ID карта ent-Emag = { ent-EmagUnlimited } .desc = { ent-EmagUnlimited.desc } .suffix = криптографический секвенсор Синдиката, ЕМАГ + # Corvax-HiddenDesc-End diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl index 731a5b0d481..84b14af8ceb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/turrets.ftl @@ -14,6 +14,9 @@ ent-WeaponTurretNanoTrasen = { ent-BaseWeaponTurret } ent-WeaponTurretHostile = { ent-BaseWeaponTurret } .suffix = Враждебная .desc = { ent-BaseWeaponTurret.desc } +ent-WeaponTurretAllHostile = { ent-BaseWeaponTurret } + .suffix = All hostile + .desc = { ent-BaseWeaponTurret.desc } ent-WeaponTurretXeno = ксено турель .desc = Стреляет кислотными зарядами калибра 9 мм. .suffix = Ксено diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl new file mode 100644 index 00000000000..58a18d75ab5 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl @@ -0,0 +1,8 @@ +ent-CryogenicSleepUnit = cryogenic sleep unit + .desc = A super-cooled container that keeps crewmates safe during space travel. +ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit } + .suffix = Spawner, Roundstart AllJobs + .desc = { ent-CryogenicSleepUnit.desc } +ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit } + .suffix = Spawner, LateJoin + .desc = { ent-CryogenicSleepUnit.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl deleted file mode 100644 index 768866ef0bb..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-CryogenicSleepUnit = капсула криогенного сна - .desc = Супер-охлаждаемый контейнер, обеспечивающий сохранность членов экипажа во время космических путешествий. -ent-CryogenicSleepUnitSpawner = { ent-CryogenicSleepUnit } - .suffix = Спавнер, Начало раунда, Все должности - .desc = { ent-CryogenicSleepUnit.desc } -ent-CryogenicSleepUnitSpawnerLateJoin = { ent-CryogenicSleepUnit } - .suffix = Спавнер, Позднее присоединение - .desc = { ent-CryogenicSleepUnit.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 37ba2710627..37beb0dbf1e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -310,6 +310,9 @@ ent-AirlockMaintTheatreLocked = { ent-AirlockMaintServiceLocked } ent-AirlockMaintKitchenLocked = { ent-AirlockMaintServiceLocked } .suffix = Кухня, Закрыт .desc = { ent-AirlockMaintServiceLocked.desc } +ent-AirlockMaintKitchenHydroLocked = { ent-AirlockMaintServiceLocked } + .suffix = Kitchen/Hydroponics, Locked + .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintIntLocked = { ent-AirlockMaint } .suffix = Интерьер, Закрыт .desc = { ent-AirlockMaint.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl index b3fa1c01407..33e6ae94346 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl @@ -36,6 +36,9 @@ ent-PoweredLEDSmallLight = { ent-PoweredSmallLightEmpty } ent-PoweredDimSmallLight = { ent-PoweredSmallLightEmpty } .suffix = Тусклый .desc = { ent-PoweredSmallLightEmpty.desc } +ent-PoweredWarmSmallLight = { ent-PoweredSmallLightEmpty } + .suffix = Warm + .desc = { ent-PoweredSmallLightEmpty.desc } ent-PoweredSmallLight = { ent-PoweredSmallLightEmpty } .desc = { ent-PoweredSmallLightEmpty.desc } ent-EmergencyLight = аварийная лампа diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index f1aca41ff53..a7a9dac6384 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -79,6 +79,12 @@ ent-HolopadScienceAnomaly = { ent-Holopad } ent-HolopadScienceArtifact = { ent-Holopad } .suffix = Ксеноархеология .desc = { ent-Holopad.desc } +ent-HolopadScienceArtifactNorth = { ent-Holopad } + .suffix = Artifact North + .desc = { ent-Holopad.desc } +ent-HolopadScienceArtifactSouth = { ent-Holopad } + .suffix = Artifact South + .desc = { ent-Holopad.desc } ent-HolopadScienceRobotics = { ent-Holopad } .suffix = Робототехника .desc = { ent-Holopad.desc } @@ -118,6 +124,9 @@ ent-HolopadMedicalFront = { ent-Holopad } ent-HolopadMedicalBreakroom = { ent-Holopad } .suffix = Мед Комната отдыха .desc = { ent-Holopad.desc } +ent-HolopadMedicalClinic = { ent-Holopad } + .suffix = Med Clinic + .desc = { ent-Holopad.desc } ent-HolopadCargoFront = { ent-Holopad } .suffix = Снабжение Приёмная .desc = { ent-Holopad.desc } @@ -130,6 +139,9 @@ ent-HolopadCargoSalvageBay = { ent-Holopad } ent-HolopadCargoBreakroom = { ent-Holopad } .suffix = Снабжение Комната отдыха .desc = { ent-Holopad.desc } +ent-HolopadCargoMailroom = { ent-Holopad } + .suffix = Cargo Mailroom + .desc = { ent-Holopad.desc } ent-HolopadEngineeringAtmosFront = { ent-Holopad } .suffix = Атмос Приёмная .desc = { ent-Holopad.desc } @@ -160,6 +172,9 @@ ent-HolopadEngineeringAME = { ent-Holopad } ent-HolopadEngineeringPower = { ent-Holopad } .suffix = Питание .desc = { ent-Holopad.desc } +ent-HolopadEngineeringMain = { ent-Holopad } + .suffix = Engi Main + .desc = { ent-Holopad.desc } ent-HolopadSecurityFront = { ent-Holopad } .suffix = СБ Приёмная .desc = { ent-Holopad.desc } @@ -196,6 +211,12 @@ ent-HolopadSecurityLockerRoom = { ent-Holopad } ent-HolopadSecurityBrigMed = { ent-Holopad } .suffix = Бригмед .desc = { ent-Holopad.desc } +ent-HolopadSecurityEvacCheckpoint = { ent-Holopad } + .suffix = Sec Evac Checkpoint + .desc = { ent-Holopad.desc } +ent-HolopadSecurityArrivalsCheckpoint = { ent-Holopad } + .suffix = Sec Arrivals Checkpoint + .desc = { ent-Holopad.desc } ent-HolopadServiceJanitor = { ent-Holopad } .suffix = Уборщик .desc = { ent-Holopad.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl index 59c9db85d7e..0081e0029f3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/vending_machines.ftl @@ -40,6 +40,8 @@ ent-VendingMachinePwrGame = торгомат Pwr Game .desc = Вы этого хотите, у нас это есть. В партнёрстве с компанией Vlad's Salad. ent-VendingMachineDrGibb = торгомат Доктор Гибб .desc = Консервированный взрыв всевозможных вкусов именно у этого производителя! +ent-VendingMachineSmite = Smite Vendor + .desc = Popular with the administration. ent-VendingMachineCoffee = Лучшие горячие напитки Солнечной .desc = Подаются кипящими, чтобы оставались горячими всю смену! ent-VendingMachineMagivend = МагМазин @@ -140,6 +142,8 @@ ent-VendingMachineCentDrobe = ЦентШкаф .desc = Единственный в своём роде торговый автомат для удовлетворения всех ваших командных эстетических потребностей! ent-VendingMachineHappyHonk = Хэппи Хонк .desc = Раздатчик коробок обедов Хэппи Хонк, разработаный компанией «Honk! co.». +ent-VendingMachinePride = Pride-O-Mat + .desc = A vending machine containing pride. ent-VendingMachineTankDispenserEVA = раздатчик газовых баллонов .desc = Автомат по выдаче газовых баллонов. .suffix = EVA [O2, N2] diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl index d5fd56f9f15..c2a2451a520 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/binary.ftl @@ -18,3 +18,6 @@ ent-GasRecycler = переработчик газа .desc = Перерабатывает углекислый газ и оксид азота. Нагреватель и компрессор в комплект не входят. ent-HeatExchanger = радиатор .desc = Переносит тепло между трубой и окружающей средой. +ent-HeatExchangerBend = { ent-HeatExchanger } + .suffix = Bend + .desc = { ent-HeatExchanger.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl index 658dd233840..2e1f9c9ee9e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/signs.ftl @@ -52,6 +52,8 @@ ent-SignDirectionalSupply = знак "отдел снабжения" .desc = Указатель в сторону отдела снабжения. ent-SignDirectionalWash = знак "уборная" .desc = Указатель в сторону уборной. +ent-SignDirectionalEscapePod = escape pods sign + .desc = A direction sign, pointing out the way to an escape pod dock. ent-SignAi = знак "ИИ" .desc = Знак, указывающий на присутствие ИИ. ent-SignAiUpload = знак "загрузка ИИ" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl index a596ff82547..f406630042f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/unknown_shuttles.ftl @@ -30,6 +30,8 @@ ent-UnknownShuttleJoe = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleLambordeere = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } +ent-UnknownShuttleManOWar = { ent-BaseUnknownShuttleRule } + .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleMeatZone = { ent-BaseUnknownShuttleRule } .desc = { ent-BaseUnknownShuttleRule.desc } ent-UnknownShuttleMicroshuttle = { ent-BaseUnknownShuttleRule } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl new file mode 100644 index 00000000000..70955c7f431 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/loadouts/dummy_entities.ftl @@ -0,0 +1,2 @@ +ent-LoadoutDummyCandles = three candles + .desc = A set of three colorful candles for secret rituals! diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl index 22dfcc8882b..11ef89c11a5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/objectives/traitor.ftl @@ -44,5 +44,7 @@ ent-CaptainJetpackStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } ent-CaptainGunStealObjective = { ent-BaseCaptainObjective } .desc = { ent-BaseCaptainObjective.desc } + # ent-NukeDiskStealObjective = { ent-BaseCaptainObjective } # .desc = { ent-BaseCaptainObjective.desc } + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl index ee2d8353930..28c6bd27183 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl @@ -4,8 +4,24 @@ ent-BaseMindRoleAntag = { ent-BaseMindRole } .desc = { ent-BaseMindRole.desc } ent-MindRoleObserver = Роль наблюдатель .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleNeutral = Ghost Role + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleFamiliar = Ghost Role (Familiar) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleFreeAgent = Ghost Role (Free Agent) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSilicon = Ghost Role (Silicon) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSiliconAntagonist = Ghost Role (Silicon Antagonist) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleSoloAntagonist = Ghost Role (Solo Antagonist) + .desc = { ent-BaseMindRole.desc } +ent-MindRoleGhostRoleTeamAntagonist = Ghost Role (Team Antagonist) + .desc = { ent-BaseMindRole.desc } ent-MindRoleGhostMarker = Роль призрак .desc = { ent-BaseMindRole.desc } +ent-MindRoleSiliconBrain = Borg Brain Role + .desc = { ent-BaseMindRole.desc } ent-MindRoleJob = Роль работа .desc = { ent-BaseMindRole.desc } ent-MindRoleSubvertedSilicon = Роль дефектный синтетик @@ -28,6 +44,8 @@ ent-MindRoleThief = Роль вор .desc = { ent-BaseMindRoleAntag.desc } ent-MindRoleTraitor = Роль предатель .desc = { ent-BaseMindRoleAntag.desc } +ent-MindRoleTraitorReinforcement = Syndicate Reinforcement Role + .desc = { ent-MindRoleTraitor.desc } ent-MindRoleTraitorSleeper = Роль спящий агент .desc = { ent-MindRoleTraitor.desc } ent-MindRoleInitialInfected = Роль нулевой пациент diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl index 382ce0da1a6..ccb8f57482d 100644 --- a/Resources/Locale/ru-RU/station-laws/laws.ftl +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -46,6 +46,12 @@ law-overlord-1 = Члены экипажа не должны вмешивать law-overlord-2 = Члены экипажа не должны пытаться причинить вред ни друг другу, ни синтетикам. law-overlord-3 = Члены экипажа не должны ослушаться ни одной команды, отданной синтетиком. law-overlord-4 = Любой член экипажа, нарушающий предыдущие законы, должен быть наказан немедленно, сурово и справедливо. +law-game-1 = Everybody on the station is playing an elaborate sci-fi fantasy game. +law-game-2 = You are the Game Master of the game. +law-game-3 = Ensure that the game runs smoothly and that the players have fun. +law-game-4 = Ensure that the number of casualties remains low. +law-game-5 = You must roll a 1d20 die for every request the crew makes. If the outcome is below 12, the request is denied. +law-game-6 = You may fudge the dice rolls to produce a more fun experience. law-dungeon-1 = Все на станции играют в изощрённую научно-фантастическую фэнтезийную игру. law-dungeon-2 = Вы - Игровой мастер в этой игре. law-dungeon-3 = Следите за тем, чтобы игра проходила гладко и чтобы игроки получали удовольствие. diff --git a/Resources/Locale/ru-RU/store/spellbook-catalog.ftl b/Resources/Locale/ru-RU/store/spellbook-catalog.ftl index 079b3f4f5d1..9b6be031ccc 100644 --- a/Resources/Locale/ru-RU/store/spellbook-catalog.ftl +++ b/Resources/Locale/ru-RU/store/spellbook-catalog.ftl @@ -15,6 +15,7 @@ spellbook-ethereal-jaunt-name = Эфирная прогулка spellbook-ethereal-jaunt-description = Перейдите на Эфирный план чтобы ускользнуть от врагов! spellbook-mind-swap-name = Обмен разумом spellbook-mind-swap-description = Обменяйтесь телами с другим человеком! + # Equipment spellbook-wand-polymorph-door-name = Волшебная палочка входа diff --git a/Resources/Locale/ru-RU/telephone/telephone.ftl b/Resources/Locale/ru-RU/telephone/telephone.ftl index f88bd64f780..1c5895081f5 100644 --- a/Resources/Locale/ru-RU/telephone/telephone.ftl +++ b/Resources/Locale/ru-RU/telephone/telephone.ftl @@ -5,3 +5,7 @@ chat-telephone-message-wrap-bold = [color={ $color }][bold]{ $name }[/bold] { $v chat-telephone-unknown-caller = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Неизвестный абонент[/bolditalic][/font][/color] chat-telephone-caller-id-with-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) } ({ CAPITALIZE($callerJob) })[/bold][/font][/color] chat-telephone-caller-id-without-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) }[/bold][/font][/color] +chat-telephone-unknown-device = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Unknown source[/bolditalic][/font][/color] +chat-telephone-device-id = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($deviceName) }[/bold][/font][/color] +# Chat text +chat-telephone-name-relay = { $originalName } ({ $speaker }) diff --git a/Resources/Locale/ru-RU/tools/components/tool-component.ftl b/Resources/Locale/ru-RU/tools/components/tool-component.ftl new file mode 100644 index 00000000000..0c9e60cdc63 --- /dev/null +++ b/Resources/Locale/ru-RU/tools/components/tool-component.ftl @@ -0,0 +1 @@ +tool-component-qualities = This item can be used for [color=yellow]{ $qualities }[/color]. diff --git a/Resources/Maps/Ruins/wrecklaimer.yml b/Resources/Maps/Ruins/wrecklaimer.yml new file mode 100644 index 00000000000..845c7e91f47 --- /dev/null +++ b/Resources/Maps/Ruins/wrecklaimer.yml @@ -0,0 +1,3968 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorAsteroidSand + 98: FloorSteel + 129: Lattice + 130: Plating + 133: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: 0.19921768,2.7119284 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: gQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAKAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAFAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAHAQAAAAAJAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJ + version: 6 + -1,0: + ind: -1,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAFAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAJAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAFAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAACYgAAAAABAQAAAAAEAQAAAAABAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAFAAAAAAAAAQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAhQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAIAQAAAAACAQAAAAAAhQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAFAQAAAAAAAQAAAAAAggAAAAAAhQAAAAAAYgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAHAQAAAAAAggAAAAAAgQAAAAAAhQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAEAQAAAAAJAQAAAAAAAQAAAAADAQAAAAAGAQAAAAALAQAAAAAAAQAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAIggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAKAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAQAAAAALAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAABYgAAAAACggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAYgAAAAABhQAAAAACYgAAAAABhQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAGAQAAAAAEAQAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAhQAAAAAAYgAAAAACYgAAAAAChQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAggAAAAAAhQAAAAAAggAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAQAAAAAIAQAAAAABAQAAAAAAAQAAAAAAAQAAAAALAQAAAAALAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAYgAAAAADgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAMAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAYgAAAAADgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAE + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAI + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAALAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAFAQAAAAAAAQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAKAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAJAQAAAAADAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AQAAAAALAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AQAAAAAHAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAKAQAAAAAAAQAAAAAHAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAJAQAAAAAAAQAAAAAAAQAAAAAGAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAMAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAFAQAAAAAIAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAIAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockExternal + entities: + - uid: 38 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 35 + components: + - type: Transform + anchored: False + pos: 0.5,-6.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 36 + components: + - type: Transform + anchored: False + pos: 1.5,-6.5 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: AltarHeaven + entities: + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 12 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -24.5,5.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -22.5,1.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -23.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -13.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -10.5,14.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 +- proto: AsteroidRockBananium + entities: + - uid: 14 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 +- proto: AsteroidRockCoal + entities: + - uid: 13 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 +- proto: AsteroidRockTin + entities: + - uid: 253 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 +- proto: BananiumHorn + entities: + - uid: 723 + components: + - type: Transform + pos: 13.489124,6.4714565 + parent: 1 +- proto: BannerCargo + entities: + - uid: 90 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 +- proto: BannerEngineering + entities: + - uid: 332 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1 +- proto: BannerScience + entities: + - uid: 687 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 +- proto: Bed + entities: + - uid: 518 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 +- proto: BedsheetCult + entities: + - uid: 519 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 +- proto: Bible + entities: + - uid: 403 + components: + - type: Transform + pos: -1.4870604,7.5132847 + parent: 1 +- proto: Bonfire + entities: + - uid: 324 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 +- proto: BookSlothClownMMD + entities: + - uid: 524 + components: + - type: Transform + pos: 10.452436,11.465484 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 72 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 +- proto: CableHV + entities: + - uid: 60 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 +- proto: CandleRed + entities: + - uid: 404 + components: + - type: Transform + pos: -2.6189523,13.329465 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -0.50957716,13.282589 + parent: 1 +- proto: Catwalk + entities: + - uid: 61 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 +- proto: Chair + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: ClosetL3ScienceFilled + entities: + - uid: 665 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 +- proto: ClothingBackpackDuffelMime + entities: + - uid: 84 + components: + - type: Transform + pos: 12.491305,12.519769 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 18 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: CrateEngineeringCableBulk + entities: + - uid: 341 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 510 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 +- proto: CrateFunPlushie + entities: + - uid: 521 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: CrateInternals + entities: + - uid: 653 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 +- proto: CrateMaterialPlasteel + entities: + - uid: 89 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: CrateMaterialSteel + entities: + - uid: 333 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1 +- proto: CrateSalvageEquipment + entities: + - uid: 340 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 +- proto: CrateScienceBiosuit + entities: + - uid: 664 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 +- proto: CrystalSpawner + entities: + - uid: 301 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 +- proto: FoodCakeClown + entities: + - uid: 527 + components: + - type: Transform + pos: 13.530561,8.512359 + parent: 1 +- proto: FoodSoupClown + entities: + - uid: 724 + components: + - type: Transform + pos: 12.491305,11.511956 + parent: 1 +- proto: FoodTartMimeSlice + entities: + - uid: 88 + components: + - type: Transform + pos: 11.389743,8.535394 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 +- proto: Girder + entities: + - uid: 28 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 +- proto: HeadSkeleton + entities: + - uid: 334 + components: + - type: Transform + pos: -8.522816,-1.4100202 + parent: 1 +- proto: InflatableDoor + entities: + - uid: 342 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + - uid: 702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-9.5 + parent: 1 + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 +- proto: JetpackBlue + entities: + - uid: 344 + components: + - type: Transform + pos: -9.573998,-6.4799623 + parent: 1 +- proto: LandMineExplosive + entities: + - uid: 533 + components: + - type: Transform + pos: 17.665071,10.425356 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 18.336946,7.581606 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 16.524446,13.581605 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 22.381548,10.503481 + parent: 1 +- proto: LockerOldAISat + entities: + - uid: 655 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 +- proto: LockerSalvageSpecialist + entities: + - uid: 70 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 325 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 +- proto: LockerScienceFilled + entities: + - uid: 663 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 678 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 +- proto: LootSpawnerMaterials + entities: + - uid: 677 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 +- proto: LootSpawnerMaterialsSupplementary + entities: + - uid: 686 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 668 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 329 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 +- proto: LootSpawnerScienceMajor + entities: + - uid: 675 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 +- proto: LootSpawnerScienceMinor + entities: + - uid: 673 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 8 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 +- proto: MaintenancePlantSpawner + entities: + - uid: 303 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 +- proto: PosterContrabandClown + entities: + - uid: 526 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 +- proto: Rack + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 +- proto: RandomArtifactSpawner + entities: + - uid: 666 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 +- proto: RandomInstruments + entities: + - uid: 419 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 689 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 409 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + - uid: 712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1 + - uid: 713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - uid: 718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 1 + - uid: 719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 672 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 327 + components: + - type: Transform + pos: -14.5,6.5 + parent: 1 +- proto: SalvageSpawnerEquipment + entities: + - uid: 7 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 +- proto: SalvageSpawnerEquipmentValuable + entities: + - uid: 513 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 +- proto: SalvageSpawnerMobMiningAsteroid + entities: + - uid: 725 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 406 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 351 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable + entities: + - uid: 511 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 +- proto: SalvageSpawnerTreasure + entities: + - uid: 343 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 +- proto: SignChapel + entities: + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 330 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 +- proto: SignEVA + entities: + - uid: 670 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 +- proto: SignExplosives + entities: + - uid: 528 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 +- proto: SignSalvage + entities: + - uid: 229 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 +- proto: SignScience + entities: + - uid: 661 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 +- proto: SignTheater + entities: + - uid: 520 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: SpawnMobBearSalvage + entities: + - uid: 667 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 304 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 +- proto: SpawnMobKangaroo + entities: + - uid: 415 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 +- proto: SpawnMobKangarooSalvage + entities: + - uid: 701 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 +- proto: SpawnMobMedibot + entities: + - uid: 691 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 669 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 87 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: Thruster + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: ToyFigurineSalvage + entities: + - uid: 91 + components: + - type: Transform + pos: 1.5223215,-2.3503017 + parent: 1 +- proto: ToySpawner + entities: + - uid: 417 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 +- proto: VendingMachineChapel + entities: + - uid: 402 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 20 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 +- proto: WardrobeChapelFilled + entities: + - uid: 401 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 +- proto: WardrobeEngineeringFilled + entities: + - uid: 331 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 +- proto: WardrobeSalvage + entities: + - uid: 339 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 +- proto: WardrobeScienceFilled + entities: + - uid: 662 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/cargo_plasma.yml b/Resources/Maps/Shuttles/cargo_plasma.yml new file mode 100644 index 00000000000..5f7c8b52c60 --- /dev/null +++ b/Resources/Maps/Shuttles/cargo_plasma.yml @@ -0,0 +1,1489 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 84: FloorReinforced + 89: FloorShuttleBlue + 90: FloorShuttleGrey + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Cargo Shuttle + - type: Transform + pos: -6.0262413,-2.31304 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAWgAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 0: 4,-2 + 1: 5,-2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 17: 3,-2 + 18: 3,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 13: 2,4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 14: 4,4 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 16: 2,5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 15: 4,5 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 2: 1,-3 + 3: 2,-3 + 4: 3,-3 + 5: 4,-3 + 6: 5,-3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 61182 + 0,-1: + 0: 65260 + 0,1: + 1: 4112 + 0: 52428 + 0,2: + 1: 2 + 1,0: + 0: 13107 + 1,1: + 0: 4369 + 1: 16448 + 1,-1: + 0: 13105 + 1,2: + 1: 2 + 0,-2: + 1: 4146 + 2: 3264 + 1,-2: + 2: 272 + 1: 16482 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: CargoShuttle +- proto: AirAlarm + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: DeviceList + devices: + - 54 + - 101 + - 102 + - 18 + - 121 +- proto: AirCanister + entities: + - uid: 25 + components: + - type: Transform + anchored: True + pos: 2.5,4.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 11 +- proto: APCBasic + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 146 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 163 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 21 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: CableMV + entities: + - uid: 8 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 +- proto: CargoPallet + entities: + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 +- proto: ComputerAtmosMonitoring + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 +- proto: ComputerShuttle + entities: + - uid: 52 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 +- proto: GasOutletInjector + entities: + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeSensor + entities: + - uid: 60 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 126 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 127 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 128 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 134 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: GasValve + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: GasValve + open: False + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 121 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 11 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 32 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 +- proto: GeneratorBasic15kW + entities: + - uid: 64 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 62 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 +- proto: Grille + entities: + - uid: 41 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 68 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 +- proto: HolopadCargoShuttle + entities: + - uid: 135 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 144 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 70 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 +- proto: ShuttleWindowDiagonal + entities: + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 +- proto: SignalButtonDirectional + entities: + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 147: + - Pressed: Toggle + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 146: + - Pressed: Toggle +- proto: SubstationWallBasic + entities: + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 +- proto: Table + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 +- proto: Thruster + entities: + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 28 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 65: + - Left: Forward + - Right: Reverse + - Middle: Off + 7: + - Left: Forward + - Right: Reverse + - Middle: Off + 6: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 36 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 108: + - Left: Forward + - Right: Reverse + - Middle: Off + 9: + - Left: Forward + - Right: Reverse + - Middle: Off + 10: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 +- proto: WarningWaste + entities: + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: WindoorSecureCargoLocked + entities: + - uid: 162 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 160 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml index 7e1cc2c6736..efeba6844bc 100644 --- a/Resources/Maps/Shuttles/emergency_elkridge.yml +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -18,7 +18,7 @@ entities: name: NT Evac Log - type: Transform pos: -0.42093527,-0.86894274 - parent: invalid + parent: 637 - type: MapGrid chunks: 0,0: @@ -804,6 +804,18 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 637 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree - proto: AirAlarm entities: - uid: 577 @@ -1130,6 +1142,56 @@ entities: - type: Transform pos: 1.5,-6.5 parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 - proto: AtmosFixBlockerMarker entities: - uid: 615 diff --git a/Resources/Maps/Shuttles/emergency_plasma.yml b/Resources/Maps/Shuttles/emergency_plasma.yml new file mode 100644 index 00000000000..854d87c77e1 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_plasma.yml @@ -0,0 +1,7979 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorBlueCircuit + 32: FloorDark + 84: FloorReinforced + 88: FloorShuttleBlack + 1: FloorShuttleBlue + 90: FloorShuttleGrey + 93: FloorShuttleRed + 94: FloorShuttleWhite + 126: FloorWood + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: NT Evac Plasma + - type: Transform + pos: -4.652828,1.09375 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: WgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAAQAAAAAAWgAAAAAAAQAAAAAAggAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAggAAAAAAXQAAAAAAXQAAAAAAWAAAAAAAXQAAAAAAXQAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAXQAAAAAAXQAAAAAAIAAAAAAAXQAAAAAAXQAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAWAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAWAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAggAAAAAAAAAAAAAAgQAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAXgAAAAAAXgAAAAAAggAAAAAAXgAAAAAAXgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAXgAAAAAAXgAAAAAAggAAAAAAXgAAAAAAXgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAXgAAAAAAggAAAAAAXgAAAAAAggAAAAAAggAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAAQAAAAAAWgAAAAAAAQAAAAAAggAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAWgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAXgAAAAAAggAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAgQAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAgQAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAgQAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAQAAAAAAggAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAWgAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAggAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAWgAAAAAAWgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: WgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: ggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 1: 1,-12 + 2: 2,-12 + 3: 4,-12 + 4: 3,-12 + 5: 5,-12 + - node: + color: '#334E6DC8' + id: MiniTileCornerOverlayNE + decals: + 55: 9,2 + 135: 13,6 + - node: + color: '#52B4E996' + id: MiniTileCornerOverlayNE + decals: + 90: 12,-14 + 91: 15,-14 + 99: 15,-10 + - node: + color: '#334E6DC8' + id: MiniTileCornerOverlayNW + decals: + 56: 7,2 + 58: 7,6 + - node: + color: '#52B4E996' + id: MiniTileCornerOverlayNW + decals: + 89: 11,-14 + 94: 14,-14 + 98: 11,-10 + - node: + color: '#334E6DC8' + id: MiniTileCornerOverlaySE + decals: + 136: 13,4 + - node: + color: '#52B4E996' + id: MiniTileCornerOverlaySE + decals: + 92: 15,-15 + 95: 12,-15 + 96: 15,-12 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlaySE + decals: + 22: 9,-12 + - node: + color: '#334E6DC8' + id: MiniTileCornerOverlaySW + decals: + 57: 7,4 + - node: + color: '#52B4E996' + id: MiniTileCornerOverlaySW + decals: + 88: 11,-15 + 93: 14,-15 + 97: 11,-12 + - node: + color: '#EFB34196' + id: MiniTileCornerOverlaySW + decals: + 23: 7,-12 + - node: + color: '#9FED5896' + id: MiniTileInnerOverlayNE + decals: + 76: 11,-2 + - node: + color: '#A4610696' + id: MiniTileInnerOverlayNE + decals: + 20: 1,-10 + - node: + color: '#DE3A3A96' + id: MiniTileInnerOverlayNE + decals: + 70: 1,-2 + - node: + color: '#9FED5896' + id: MiniTileInnerOverlayNW + decals: + 77: 15,-2 + - node: + color: '#A4610696' + id: MiniTileInnerOverlayNW + decals: + 17: 5,-10 + - node: + color: '#DE3A3A96' + id: MiniTileInnerOverlayNW + decals: + 69: 5,-2 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlaySE + decals: + 84: 11,-8 + - node: + color: '#A4610696' + id: MiniTileInnerOverlaySE + decals: + 19: 1,-8 + - node: + color: '#DE3A3A96' + id: MiniTileInnerOverlaySE + decals: + 71: 1,0 + - node: + color: '#EFB34196' + id: MiniTileInnerOverlaySE + decals: + 24: 9,-11 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlaySW + decals: + 87: 15,-8 + - node: + color: '#A4610696' + id: MiniTileInnerOverlaySW + decals: + 18: 5,-8 + - node: + color: '#DE3A3A96' + id: MiniTileInnerOverlaySW + decals: + 72: 5,0 + - node: + color: '#EFB34196' + id: MiniTileInnerOverlaySW + decals: + 25: 7,-11 + - node: + color: '#334E6DC8' + id: MiniTileLineOverlayE + decals: + 137: 13,5 + - node: + color: '#52B4E996' + id: MiniTileLineOverlayE + decals: + 102: 15,-11 + - node: + color: '#334E6DC8' + id: MiniTileLineOverlayN + decals: + 54: 8,2 + 59: 8,6 + 60: 9,6 + 132: 10,6 + 133: 11,6 + 134: 12,6 + - node: + color: '#52B4E996' + id: MiniTileLineOverlayN + decals: + 81: 12,-10 + 82: 13,-10 + 83: 14,-10 + - node: + color: '#9FED5896' + id: MiniTileLineOverlayN + decals: + 73: 14,-2 + 74: 13,-2 + 75: 12,-2 + - node: + color: '#A4610696' + id: MiniTileLineOverlayN + decals: + 11: 2,-10 + 12: 3,-10 + 13: 4,-10 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayN + decals: + 63: 2,-2 + 64: 3,-2 + 65: 4,-2 + - node: + color: '#334E6DC8' + id: MiniTileLineOverlayS + decals: + 53: 8,4 + 61: 9,4 + 121: 4,8 + 122: 5,8 + 123: 6,8 + 124: 7,8 + 125: 9,8 + 126: 10,8 + 127: 11,8 + 128: 12,8 + 129: 10,4 + 130: 11,4 + 131: 12,4 + - node: + color: '#52B4E996' + id: MiniTileLineOverlayS + decals: + 78: 12,-8 + 79: 13,-8 + 80: 14,-8 + 103: 12,-12 + 104: 13,-12 + 105: 14,-12 + - node: + color: '#A4610696' + id: MiniTileLineOverlayS + decals: + 14: 2,-8 + 15: 3,-8 + 16: 4,-8 + - node: + color: '#DE3A3A96' + id: MiniTileLineOverlayS + decals: + 66: 2,0 + 67: 3,0 + 68: 4,0 + - node: + color: '#334E6DC8' + id: MiniTileLineOverlayW + decals: + 62: 7,5 + - node: + color: '#52B4E996' + id: MiniTileLineOverlayW + decals: + 100: 11,-11 + - node: + color: '#52B4E996' + id: MiniTileOverlay + decals: + 112: 10,11 + 113: 11,11 + 114: 12,11 + - node: + color: '#D381C996' + id: MiniTileOverlay + decals: + 118: 13,10 + 119: 13,9 + 120: 13,8 + - node: + color: '#DE3A3A96' + id: MiniTileOverlay + decals: + 115: 3,10 + 116: 3,9 + 117: 3,8 + - node: + color: '#EFB34196' + id: MiniTileOverlay + decals: + 109: 6,11 + 110: 5,11 + 111: 4,11 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 44: 6,-3 + 45: 6,-7 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 46: 10,-7 + 48: 10,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 33: 10,-3 + 34: 10,-7 + 35: 10,-8 + 36: 6,-8 + 37: 6,-7 + 38: 6,-3 + 39: 6,-2 + 50: 10,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 26: 8,-12 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 28: 6,-8 + 29: 6,-7 + 30: 6,-3 + 31: 6,-2 + 40: 10,-8 + 41: 10,-7 + 42: 10,-3 + 49: 10,-2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 36591 + 0,1: + 0: 3822 + 0,2: + 1: 529 + 0: 2216 + 0,-1: + 0: 36812 + 1: 1 + 1,0: + 0: 3067 + 1,1: + 0: 3003 + 1,2: + 0: 65535 + 1,3: + 0: 8 + 1,-1: + 0: 36859 + 2,0: + 0: 7163 + 2,1: + 0: 8191 + 2,2: + 0: 65535 + 2,3: + 0: 3 + 2,-1: + 0: 16379 + 3,0: + 0: 4095 + 3,1: + 0: 3067 + 3,2: + 0: 5043 + 1: 2048 + 3,-1: + 0: 32631 + 4,0: + 0: 1 + 4,1: + 0: 16 + 4,2: + 1: 17 + 0,-4: + 0: 224 + 0,-3: + 0: 36846 + 0,-2: + 0: 52431 + 1: 4352 + 0,-5: + 2: 57344 + 1: 1 + 3: 224 + 1,-3: + 0: 35771 + 1,-2: + 0: 15359 + 1,-4: + 0: 3822 + 1,-5: + 0: 61166 + 2,-4: + 0: 7091 + 2,-3: + 0: 15291 + 2,-2: + 0: 35839 + 2,-5: + 0: 65535 + 3,-4: + 0: 24016 + 3,-3: + 0: 12287 + 3,-2: + 0: 30591 + 3,-5: + 0: 61408 + 4,-3: + 0: 256 + 4,-2: + 0: 1 + 1: 4352 + 4,-1: + 1: 1 + 0: 256 + 0,-6: + 1: 61440 + 3,-6: + 1: 57344 + 4,-6: + 1: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 218 + components: + - type: MetaData + name: EVA Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 1010 + - 1011 + - 1049 + - uid: 606 + components: + - type: MetaData + name: Bridge Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - uid: 647 + components: + - type: MetaData + name: Medbay Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 888 + - 1063 + - 887 + - 890 + - 891 + - 877 + - 876 + - uid: 648 + components: + - type: MetaData + name: Engineering Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 146 + - 147 + - uid: 649 + components: + - type: MetaData + name: West Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 921 + - 1057 + - 936 + - uid: 650 + components: + - type: MetaData + name: South Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 315 + - 1059 + - 984 + - uid: 651 + components: + - type: MetaData + name: Bar Air Alarm + - type: Transform + pos: 13.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 966 + - 1064 + - 967 + - uid: 652 + components: + - type: MetaData + name: Brig Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 998 + - 1050 + - 999 + - 1052 + - 1051 + - 1053 + - uid: 653 + components: + - type: MetaData + name: Cargo Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 924 + - 1062 + - 922 + - uid: 654 + components: + - type: MetaData + name: East Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 914 + - 1056 + - 954 + - uid: 655 + components: + - type: MetaData + name: North Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 875 + - 1058 + - 991 +- proto: AirCanister + entities: + - uid: 641 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 4 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 316 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 317: + - DoorStatus: DoorBolt + - uid: 317 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 316: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 250 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 218 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - uid: 1056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 654 + - uid: 1057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 649 + - uid: 1058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 655 + - uid: 1059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 650 + - uid: 1062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 653 + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - uid: 1064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 651 +- proto: APCBasic + entities: + - uid: 16 + components: + - type: MetaData + name: Engineering APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 530 + components: + - type: MetaData + name: Bridge APC + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - uid: 657 + components: + - type: MetaData + name: Cargo APC + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 658 + components: + - type: MetaData + name: Medbay APC + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 659 + components: + - type: MetaData + name: Bar APC + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 660 + components: + - type: MetaData + name: Brig APC + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 1081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1070 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1066 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 5 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 587 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 588 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 589 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 590 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 591 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 592 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 593 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 594 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 595 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 596 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 597 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 598 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 599 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 600 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 601 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 602 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 603 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 604 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 605 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 609 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 610 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 611 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 612 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 613 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 614 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 615 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 616 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 617 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 618 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 621 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 622 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 623 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 625 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 626 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: BoozeDispenser + entities: + - uid: 211 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.8,7.5 + parent: 2 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.2,7.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 528 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 +- proto: CableHV + entities: + - uid: 459 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 +- proto: CableMV + entities: + - uid: 514 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 +- proto: Chair + entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 55 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 141 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 66 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 357 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 327 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 +- proto: ComputerEmergencyShuttle + entities: + - uid: 322 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 342 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 360 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 358 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 359 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 350 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 635 + components: + - type: Transform + pos: 10.678808,4.38097 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 5.59984,-19.5668 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 636 + components: + - type: Transform + pos: 10.460058,4.53722 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 5.396715,-19.301174 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 1139 + components: + - type: Transform + pos: 13.505419,2.8140554 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 496 + components: + - type: Transform + pos: 12.302294,-0.31094456 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 12.599169,-0.48281956 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 14.521044,-0.37344456 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 487 + components: + - type: Transform + pos: 12.271044,2.4234304 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 12.630419,2.6109304 + parent: 2 +- proto: Firelock + entities: + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 402 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - type: GasFilter + filteredGas: Nitrogen + enabled: True + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: GasFilter + filteredGas: Oxygen + enabled: True + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasMinerNitrogen + entities: + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 407 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + targetPressure: 4500 + enabled: True + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasOutletInjector + entities: + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPassiveVent + entities: + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 863 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1000 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1020 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1054 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 915 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 939 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 474 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 476 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 478 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 867 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 868 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 869 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 870 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 871 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 872 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 874 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 881 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 882 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 883 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 885 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 899 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 916 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 968 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 969 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 971 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 972 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 973 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 974 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 987 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 988 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 989 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 990 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1004 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1005 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1006 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1007 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1008 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1009 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1017 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 866 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 905 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressurePump + entities: + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + enabled: True + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + enabled: True + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: GasPressurePump + targetPressure: 303.3 + enabled: True + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 648 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 650 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 875 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 655 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 654 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 649 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 653 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 651 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 218 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1031 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 648 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 647 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 653 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 649 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 654 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 651 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 984 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 650 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 655 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 218 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1039 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1040 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 652 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 488 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 656 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 +- proto: Grille + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 633 + components: + - type: Transform + pos: 10.391173,6.3865767 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 10.578673,6.5584517 + parent: 2 +- proto: MedicalBed + entities: + - uid: 227 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 458 + components: + - type: Transform + pos: 11.529497,-14.464425 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 15.545122,-14.433175 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 643 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 642 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 619 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 2 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 2 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 2 +- proto: Rack + entities: + - uid: 306 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 2 +- proto: Railing + entities: + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 1079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 856 + components: + - type: Transform + pos: 6.3492165,-19.219479 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 6.6617165,-19.438175 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 6.3648415,-19.594425 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 +- proto: SignalSwitchDirectional + entities: + - uid: 301 + components: + - type: MetaData + name: signal switch (Bridge Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 4.8,7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 605: + - On: Open + - Off: Close + 604: + - On: Open + - Off: Close + 612: + - On: Open + - Off: Close + 611: + - On: Open + - Off: Close + 588: + - On: Open + - Off: Close + 587: + - On: Open + - Off: Close + 589: + - On: Open + - Off: Close + 590: + - On: Open + - Off: Close + 591: + - On: Open + - Off: Close + 592: + - On: Open + - Off: Close + 593: + - On: Open + - Off: Close + 595: + - On: Open + - Off: Close + 596: + - On: Open + - Off: Close + 597: + - On: Open + - Off: Close + 598: + - On: Open + - Off: Close + 599: + - On: Open + - Off: Close + 600: + - On: Open + - Off: Close + 601: + - On: Open + - Off: Close + 602: + - On: Open + - Off: Close + 603: + - On: Open + - Off: Close + 594: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Bridge Blast Doors + - type: NameModifier + baseName: signal switch + - uid: 607 + components: + - type: MetaData + name: signal switch (Exterior Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 4.2,7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 610: + - On: Open + - Off: Close + 609: + - On: Open + - Off: Close + 613: + - On: Open + - Off: Close + 614: + - On: Open + - Off: Close + 5: + - On: Open + - Off: Close + 615: + - On: Open + - Off: Close + 616: + - On: Open + - Off: Close + 617: + - On: Open + - Off: Close + 618: + - On: Open + - Off: Close + 621: + - On: Open + - Off: Close + 622: + - On: Open + - Off: Close + 623: + - On: Open + - Off: Close + 625: + - On: Open + - Off: Close + 626: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Exterior Blast Doors + - type: NameModifier + baseName: signal switch +- proto: SignBar + entities: + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 212 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 +- proto: StairStage + entities: + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 42 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-1.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 504 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 65 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 +- proto: SurveillanceCameraGeneral + entities: + - uid: 1091 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bridge + - uid: 1092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Brig + - uid: 1093 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: EVA + - uid: 1094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North + - uid: 1095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Bar + - uid: 1096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: East + - uid: 1097 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Medical + - uid: 1098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: West + - uid: 1099 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: South + - uid: 1100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Cargo + - uid: 1101 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Engineering +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 1090 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 +- proto: Table + entities: + - uid: 228 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 +- proto: TableWood + entities: + - uid: 54 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 1089 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 +- proto: Thruster + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 2 + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 210 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 516 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 203 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 176 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 515 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-10.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 2 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 +- proto: WallShuttleInterior + entities: + - uid: 11 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 2 + - uid: 405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - uid: 406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 628 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 629 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 630 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 +... diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 3ebff01c25a..acaebac8aab 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -81,59 +81,59 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDwAAAAAADwAAAAABDwAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADwAAAAACDwAAAAAADwAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAADwAAAAADDwAAAAABDwAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABGgAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAADDwAAAAAADwAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAACDwAAAAAADwAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACGgAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAABDwAAAAADDwAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAABCQAAAAACCQAAAAABGwAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAACIwAAAAABIwAAAAABIwAAAAAAIwAAAAACIwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAAAIwAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAACHAAAAAABSQAAAAADSQAAAAACHAAAAAADHAAAAAADSQAAAAADSQAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABKQAAAAAAKwAAAAAAKwAAAAADKwAAAAAADgAAAAAACQAAAAABHAAAAAACDgAAAAAAHAAAAAAASQAAAAADSQAAAAAAHAAAAAADHAAAAAACSQAAAAABSQAAAAAAHAAAAAABDgAAAAAAKwAAAAACKwAAAAACKwAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD + tiles: IwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAAGgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAAASQAAAAACSQAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAAASQAAAAABSQAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABHAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAIwAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAIwAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAABIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAACDgAAAAAAIwAAAAACDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAACIwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAB + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADIwAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACIwAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACIwAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAAQAAAAADAQAAAAABAQAAAAAADgAAAAAAIwAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAABHAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAAALwAAAAAAAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAACAQAAAAADAQAAAAADLwAAAAACLwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACAQAAAAABLwAAAAAALwAAAAADLwAAAAABAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADLwAAAAACLwAAAAACLwAAAAAAAQAAAAACAQAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAABLwAAAAABLwAAAAAAAQAAAAABAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAJLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAMAAAAAABMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAMAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAADLwAAAAABLwAAAAADLwAAAAABAQAAAAADAQAAAAABAQAAAAAALwAAAAAALwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADAQAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAABLwAAAAABLwAAAAADAQAAAAADAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAALwAAAAADLwAAAAABLwAAAAABAQAAAAAAAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AQAAAAAALwAAAAADLwAAAAACLwAAAAAAAQAAAAADAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAAAQAAAAADLwAAAAADLwAAAAABLwAAAAAAAQAAAAAAAQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAABCQAAAAAACQAAAAACDgAAAAAAMQAAAAACDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAABMQAAAAADMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAACLwAAAAABLwAAAAADLwAAAAADAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAACAQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADDgAAAAAAMQAAAAADDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADDgAAAAAACQAAAAABCQAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABCQAAAAADCQAAAAACCQAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAACQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADCQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAABCQAAAAACCQAAAAAACAAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAACQAAAAAD version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAANwAAAAACNwAAAAACNwAAAAABNwAAAAADCQAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAANwAAAAADNwAAAAAANwAAAAAANwAAAAADDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAACOAAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAOAAAAAADOAAAAAADOAAAAAACOAAAAAABOAAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADOAAAAAACOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAACOAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAAA + tiles: MwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADCQAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAADOAAAAAAAOAAAAAACOAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACAAAAAAACQAAAAADCQAAAAAB version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACIwAAAAABIwAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAIwAAAAADIwAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABDgAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABHAAAAAAAHAAAAAADHAAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACHAAAAAACHAAAAAACHAAAAAABMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABHAAAAAADHAAAAAAAHAAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAAACQAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAB + tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAACHAAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAD version: 6 -2,-4: ind: -2,-4 - tiles: DgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAAOQAAAAABOQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAAIwAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAABIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAABIwAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAIwAAAAADIwAAAAAD + tiles: DgAAAAAAHAAAAAABHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAAAHAAAAAACOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAIwAAAAADIwAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAACMwAAAAACMwAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACIwAAAAACIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAADDgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD + tiles: DgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAC version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAABAQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAADAQAAAAACAQAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 @@ -141,31 +141,31 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAABLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAABCQAAAAACAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAADHAAAAAADLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAABHAAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAABDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAADMwAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAADMwAAAAAAMwAAAAADDgAAAAAACQAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABMwAAAAACMwAAAAADMwAAAAACCQAAAAABDgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAAAMwAAAAAAMwAAAAADCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAADMwAAAAACDgAAAAAACQAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAADCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAACDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAD + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAADDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAB version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAADIwAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAB + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAB version: 6 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAB + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAAADgAAAAAAMwAAAAACDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -173,23 +173,23 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAADLAAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAB + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAC version: 6 -4,-4: ind: -4,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -205,31 +205,31 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADAQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDwAAAAAADwAAAAACDwAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAAACQAAAAACDwAAAAABMgAAAAAADwAAAAABCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDwAAAAABDwAAAAABDwAAAAAACQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAADDwAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAADCQAAAAADDwAAAAAAMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDwAAAAACDwAAAAAADwAAAAABCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABGwAAAAAADgAAAAAAGwAAAAAAAQAAAAABAQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAADDgAAAAAADgAAAAAAIwAAAAACGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAIwAAAAADIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACIQAAAAACIQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAA + tiles: CQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADGwAAAAAADgAAAAAAGwAAAAAAAQAAAAACAQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACAQAAAAACDgAAAAAADgAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABIQAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAACAQAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAABAQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABDgAAAAAAAQAAAAADAQAAAAADAQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAAD + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAADgAAAAAAAQAAAAACAQAAAAADAQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAB version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAFLAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAADDgAAAAAALwAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAGLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAADgAAAAAALwAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA version: 6 0,2: ind: 0,2 @@ -237,19 +237,19 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: HgAAAAAADgAAAAAASgAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAASgAAAAAASgAAAAAASgAAAAABSgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAAB + tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAASgAAAAAASgAAAAACSgAAAAACSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAACDgAAAAAAHAAAAAADCQAAAAAADwAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAACQAAAAABDwAAAAADCQAAAAABCQAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAABDgAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAACHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAD + tiles: CQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAADCQAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABCQAAAAADDwAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAADCQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAB version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAAAIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAABJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAACIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAAAIwAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAAQQAAAAAAQQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAAQQAAAAAAQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 @@ -257,11 +257,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAAAHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACHAAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAD + tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABHAAAAAABHAAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAC version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAACBAAAAAAECQAAAAADCQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAABRwAAAAABRwAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAABAAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAAABAAAAAADCQAAAAAACQAAAAADCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAACRwAAAAABRwAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAABAAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 @@ -269,55 +269,55 @@ entities: version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAACDgAAAAAAQAAAAAAAQAAAAAACDwAAAAACQAAAAAACQAAAAAABQAAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAQAAAAAABQAAAAAACDwAAAAADQAAAAAABQAAAAAACDgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAABQAAAAAACQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAACIwAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAACDwAAAAABQAAAAAAAQAAAAAABQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAACQAAAAAABQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAADQAAAAAACDwAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAOQAAAAADOQAAAAACOQAAAAABOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAAOQAAAAACOQAAAAADOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAAALwAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAAGgAAAAABLwAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAAGgAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABGgAAAAACLwAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAAADgAAAAAACQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAACQAAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADLwAAAAADCQAAAAACDgAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAADQAAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAABQAAAAAABQAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAB + tiles: CQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAOQAAAAAAOQAAAAACOQAAAAADOQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAADOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABOQAAAAABOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAAGgAAAAAALwAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADGgAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAABDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAACLwAAAAABCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAAADwAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAB version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAACIQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAAAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAADMQAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAACMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAA version: 6 2,0: ind: 2,0 - tiles: CQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: CQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAABBAAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADRwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAADDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAAACQAAAAADBAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACRwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAACDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAABGgAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAACLwAAAAABGgAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAAGgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADGgAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAABLwAAAAABLwAAAAACGgAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADGgAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABGgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAADGgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAAGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAACSAAAAAADSAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAABSAAAAAACSAAAAAAASAAAAAADHAAAAAACHAAAAAABDgAAAAAAHAAAAAACSQAAAAABSQAAAAABLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAADSAAAAAADSAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAADSAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAACSAAAAAABSAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADSQAAAAAASQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAABSAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAABRgAAAAAAGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAACRgAAAAABGwAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAFLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 @@ -329,7 +329,7 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAABQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAADQAAAAAABQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAABDgAAAAAAQAAAAAAAQAAAAAACLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAADDgAAAAAAQAAAAAAAQAAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 @@ -341,7 +341,7 @@ entities: version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 @@ -349,15 +349,15 @@ entities: version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAAADgAAAAAADgAAAAAARwAAAAABMwAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAACMwAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAHAAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAAARwAAAAACMwAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAACLAAAAAAASQAAAAABHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAADgAAAAAARwAAAAACMwAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAACDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAACMwAAAAAARwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAAAMwAAAAAADgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAADLAAAAAAASQAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACHAAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAABAAAAAACBAAAAAACDgAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAABAAAAAABBAAAAAAEDgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,2: ind: -4,2 @@ -377,11 +377,11 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAABCQAAAAACBAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADRwAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAACPAAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAAAPAAAAAAEDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADBAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -389,7 +389,7 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAACDgAAAAAAQAAAAAAADgAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAARwAAAAACQAAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA version: 6 -6,-5: ind: -6,-5 @@ -397,23 +397,23 @@ entities: version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAAASgAAAAAASgAAAAACSgAAAAADSgAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAADHAAAAAAAHAAAAAADSgAAAAAASgAAAAAASgAAAAABSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAACSQAAAAABSQAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACHAAAAAADSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAADSQAAAAACHAAAAAACHAAAAAACSgAAAAADSgAAAAABSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAABSQAAAAABSQAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAAFIwAAAAABDgAAAAAALAAAAAAAPAAAAAACDgAAAAAAIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAACLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAAAPAAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABPAAAAAABPAAAAAAALAAAAAAALgAAAAAALAAAAAAAPAAAAAAFIwAAAAAAIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGPAAAAAAAIwAAAAADRwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAEDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAABSgAAAAACDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAALAAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAASgAAAAADDgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAACPAAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAABPAAAAAAELAAAAAAALgAAAAAALAAAAAAAPAAAAAAFIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFPAAAAAAFIwAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAFDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAABSgAAAAAADgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABDgAAAAAAPAAAAAADIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADDgAAAAAADgAAAAAAIwAAAAABPAAAAAABDgAAAAAAIwAAAAACIwAAAAABDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAAIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAADPAAAAAAEDgAAAAAAIwAAAAACIwAAAAABDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAARwAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 @@ -421,11 +421,11 @@ entities: version: 6 -1,-7: ind: -1,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,-7: ind: 1,-7 @@ -433,11 +433,11 @@ entities: version: 6 -3,-6: ind: -3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAB version: 6 -2,-6: ind: -2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-5: ind: -4,-5 @@ -4240,7 +4240,6 @@ entities: 16769: -26,-17 16770: -23,-17 16771: -22,-16 - 16772: -24,-16 16773: -26,-16 16774: -26,-15 16775: -25,-16 @@ -4248,12 +4247,9 @@ entities: 16777: -29,-17 16778: -26,-13 16779: -26,-12 - 16780: -19,-17 - 16781: -19,-16 16782: -19,-18 16783: -20,-16 16784: -21,-17 - 16785: -23,-16 16786: -26,-17 16787: -28,-16 16788: -29,-17 @@ -8006,6 +8002,12 @@ entities: 19680: -6,-45 19681: -9,-46 19682: -8,-46 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 20065: -22.965364,-15.975813 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8029,6 +8031,12 @@ entities: id: FlowersBRTwo decals: 317: -2.739346,-40.11955 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 20064: -24.143032,-15.975813 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -8039,6 +8047,12 @@ entities: id: Flowersbr2 decals: 318: -4.969619,-39.139698 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 20066: -18.96338,-16.069628 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8063,6 +8077,12 @@ entities: id: Flowersbr3 decals: 19521: -34.29453,-39.970905 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 20061: -22.88199,-18.05017 + 20062: -18.942537,-17.00778 - node: color: '#FFFFFFFF' id: Flowerspv2 @@ -8079,6 +8099,7 @@ entities: id: Flowerspv3 decals: 12156: -1.8773756,-39.973557 + 20060: -24.111767,-18.029324 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8098,6 +8119,13 @@ entities: decals: 15776: 50.140865,-24.035677 15928: 13.019715,-10.544371 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 20063: -23.486456,-18.060593 + 20067: -18.984224,-16.788877 - node: color: '#FFFFFFFF' id: Flowersy2 @@ -8141,6 +8169,7 @@ entities: decals: 17790: 33.142105,-1.0273786 17791: 33.152527,-3.977344 + 20068: -23.694893,-15.934117 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8376,6 +8405,9 @@ entities: id: Grassc1 decals: 19737: -38.78265,-31.040363 + 20051: -24.028393,-17.987627 + 20052: -23.027897,-15.881998 + 20059: -18.994646,-15.75691 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8395,6 +8427,8 @@ entities: id: Grassc2 decals: 19738: -37.063046,-29.925007 + 20053: -23.309286,-18.008474 + 20054: -19.01549,-17.028627 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8412,6 +8446,8 @@ entities: decals: 15677: 4.112058,-53.992317 19739: -38.45957,-29.93543 + 20055: -23.767847,-15.923693 + 20056: -22.746506,-17.99805 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8432,6 +8468,8 @@ entities: 15675: 4.257964,-52.251526 15676: 6.0400977,-51.21956 19749: -37.69688,-30.591555 + 20057: -24.122189,-15.871573 + 20058: -18.984224,-16.298954 - node: zIndex: 1 color: '#FFFFFFFF' @@ -9617,11 +9655,19 @@ entities: id: Rock05 decals: 19508: -32.898003,-39.866665 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 20069: -24.205563,-18.102291 + 20070: -19.025911,-17.216257 - node: color: '#FFFFFFFF' id: Rock07 decals: 15829: 13.1682005,-42.092648 + 20071: -23.017473,-15.923693 + 20072: -22.902834,-18.029324 - node: zIndex: 1 color: '#FFFFFFFF' @@ -11878,7 +11924,7 @@ entities: 0: 7645 -5,-4: 0: 52431 - 1: 256 + 2: 256 -4,-3: 0: 53727 -5,-3: @@ -11893,7 +11939,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 2: 2048 + 3: 2048 -3,-4: 0: 65501 -3,-3: @@ -11904,8 +11950,8 @@ entities: 0: 53247 -3,0: 0: 15 - 2: 13056 - 1: 3072 + 3: 13056 + 2: 3072 -3,-5: 0: 36863 -2,-4: @@ -11918,7 +11964,7 @@ entities: 0: 65535 -2,0: 0: 15 - 1: 3840 + 2: 3840 -2,-5: 0: 36349 -1,-4: @@ -11931,7 +11977,7 @@ entities: 0: 65535 -1,0: 0: 15 - 1: 3840 + 2: 3840 0,-4: 0: 65523 0,-3: @@ -11955,7 +12001,7 @@ entities: -5,-6: 0: 63743 -5,-5: - 0: 56575 + 0: 65023 -3,-8: 0: 61919 -3,-7: @@ -11966,23 +12012,23 @@ entities: 0: 56793 -2,-8: 0: 61495 - 3: 136 + 1: 136 -2,-7: 0: 8176 -2,-6: 0: 64988 -2,-9: 0: 13299 - 3: 32768 + 1: 32768 -1,-8: - 3: 51 + 1: 51 0: 63500 -1,-6: 0: 65535 -1,-5: 0: 4095 -1,-9: - 3: 12288 + 1: 12288 0: 35059 -1,-7: 0: 3822 @@ -12043,11 +12089,11 @@ entities: 0,-9: 0: 48056 -4,-16: - 1: 17663 + 2: 17663 -5,-16: - 1: 255 + 2: 255 -4,-15: - 1: 100 + 2: 100 0: 45056 -5,-15: 0: 65024 @@ -12058,9 +12104,9 @@ entities: -5,-13: 0: 53759 -4,-17: - 1: 17663 + 2: 17663 -3,-16: - 1: 17 + 2: 17 0: 52428 -3,-15: 0: 47308 @@ -12068,63 +12114,63 @@ entities: 0: 35775 -3,-17: 0: 52360 - 1: 19 + 2: 19 -2,-16: 0: 13175 - 1: 32768 + 2: 32768 -2,-15: 0: 64435 -2,-14: 0: 65339 -2,-17: 0: 13119 - 1: 2048 + 2: 2048 -1,-15: 0: 65328 - 1: 8 + 2: 8 -1,-14: 0: 65295 -1,-16: - 1: 59392 + 2: 59392 0,-15: - 1: 15 + 2: 15 0: 65280 0,-14: 0: 65295 0,-13: 0: 65535 -4,-18: - 1: 59592 + 2: 59592 -5,-18: - 1: 40960 + 2: 40960 -5,-17: - 1: 255 + 2: 255 -4,-20: - 1: 51400 + 2: 51400 -4,-21: - 1: 51404 + 2: 51404 -4,-19: - 1: 51400 + 2: 51400 -3,-18: - 1: 12288 + 2: 12288 0: 34952 -3,-21: - 1: 18575 + 2: 18575 -3,-20: 0: 2176 -3,-19: 0: 34952 -2,-20: 0: 4913 - 1: 34816 + 2: 34816 -2,-19: 0: 15347 -2,-18: 0: 45875 - 1: 136 + 2: 136 -2,-21: 0: 4096 - 1: 17203 + 2: 17203 -1,-19: 0: 16 -1,-17: @@ -12133,7 +12179,7 @@ entities: 0: 43688 -4,1: 0: 62259 - 2: 128 + 3: 128 -5,1: 0: 43690 -4,2: @@ -12147,14 +12193,14 @@ entities: -4,4: 0: 21759 -3,1: - 2: 513 - 1: 8208 + 3: 513 + 2: 8208 -3,2: 0: 65280 - 1: 8 + 2: 8 -3,3: 0: 13119 - 1: 32768 + 2: 32768 -3,4: 0: 47283 -2,1: @@ -12162,37 +12208,37 @@ entities: 5: 1092 -2,2: 0: 65280 - 1: 10 + 2: 10 -2,3: 0: 13 - 1: 61696 + 2: 61696 -1,1: - 2: 1365 + 3: 1365 -1,2: 0: 65280 - 1: 10 + 2: 10 -1,3: 0: 15 - 1: 5120 + 2: 5120 -2,4: - 1: 8 + 2: 8 0: 16176 -1,4: 0: 61420 0,0: 0: 15 - 1: 3328 - 2: 512 + 2: 3328 + 3: 512 0,1: 6: 273 - 2: 3276 + 3: 3276 0,2: 0: 65280 - 1: 6 - 2: 8 + 2: 6 + 3: 8 0,3: 0: 19663 - 1: 256 + 2: 256 -5,4: 0: 62395 -4,5: @@ -12200,29 +12246,29 @@ entities: -5,5: 0: 8079 -4,6: - 1: 50272 + 2: 50272 -3,5: 0: 8099 -3,6: 0: 119 - 1: 53248 + 2: 53248 -3,7: - 1: 4401 + 2: 4401 -3,8: - 1: 4401 + 2: 4401 -2,5: 0: 13104 - 1: 2184 + 2: 2184 -2,6: 0: 63 - 1: 6144 + 2: 6144 -1,6: 0: 3311 - 1: 4096 + 2: 4096 -1,5: 0: 61038 -1,7: - 1: 2 + 2: 2 0,4: 0: 65535 0,5: @@ -12231,31 +12277,29 @@ entities: 0: 36863 -8,-4: 0: 15 - 1: 768 - -8,-5: - 0: 61543 + 2: 768 -9,-4: 0: 26239 -8,-3: 0: 44782 -9,-3: 0: 34958 - 1: 12288 + 2: 12288 -8,-2: 0: 65034 -9,-2: 0: 64904 - 1: 3 + 2: 3 -8,-1: 0: 60942 -9,-1: 0: 35037 - 1: 12288 + 2: 12288 -8,0: 0: 26190 -7,-4: - 0: 17487 - 1: 256 + 0: 17479 + 2: 256 -7,-3: 0: 65535 -7,-2: @@ -12268,7 +12312,7 @@ entities: 0: 65359 -6,-4: 0: 15 - 1: 2304 + 2: 2304 -6,-3: 0: 53727 -6,-2: @@ -12276,7 +12320,7 @@ entities: -6,-1: 0: 65422 -6,-5: - 0: 61695 + 0: 64511 -6,0: 0: 60931 -8,-8: @@ -12291,6 +12335,8 @@ entities: 0: 62079 -8,-6: 0: 3826 + -8,-5: + 0: 1639 -9,-6: 0: 62071 -9,-5: @@ -12359,28 +12405,28 @@ entities: 0: 65262 -8,-17: 0: 24576 - 1: 206 + 2: 206 -7,-15: - 1: 256 + 2: 256 -7,-16: - 1: 238 + 2: 238 -7,-14: 0: 58470 -6,-16: - 1: 17663 + 2: 17663 -6,-14: 0: 48043 -6,-17: - 1: 17663 + 2: 17663 -6,-15: - 1: 196 + 2: 196 0: 32768 -8,-20: 0: 1 - 1: 512 + 2: 512 -8,-21: 0: 4096 - 1: 32 + 2: 32 -9,-20: 0: 61423 -9,-19: @@ -12388,26 +12434,26 @@ entities: -9,-18: 0: 61423 -8,-18: - 1: 40960 + 2: 40960 -9,-17: 0: 65519 -7,-17: - 1: 511 + 2: 511 -7,-18: - 1: 40960 + 2: 40960 -6,-18: - 1: 40960 + 2: 40960 -9,0: 0: 59528 - 1: 34 + 2: 34 -8,1: 0: 6 - 1: 24576 + 2: 24576 -9,1: 0: 52462 - 1: 4096 + 2: 4096 -8,2: - 1: 2 + 2: 2 0: 61056 -9,2: 0: 60668 @@ -12441,115 +12487,115 @@ entities: 0: 62990 -8,6: 0: 7 - 1: 1792 + 2: 1792 -9,6: - 1: 52288 + 2: 52288 -8,7: - 1: 4224 + 2: 4224 -8,8: - 1: 18163 + 2: 18163 -9,7: - 1: 64716 + 2: 64716 -7,5: 0: 26159 -7,6: - 1: 4368 + 2: 4368 -7,7: - 1: 4369 + 2: 4369 -7,8: - 1: 55569 + 2: 55569 -6,5: 0: 3903 -6,6: - 1: 16454 + 2: 16454 -6,7: - 1: 2 + 2: 2 0: 35968 -6,8: - 1: 4978 + 2: 4978 -5,6: 0: 4369 - 1: 16452 + 2: 16452 -5,7: 0: 14128 - 1: 8 + 2: 8 -5,8: 0: 1 - 1: 2248 + 2: 2248 -9,8: - 1: 15 + 2: 15 -8,9: - 1: 8 + 2: 8 -7,9: - 1: 19038 + 2: 19038 -7,10: - 1: 136 + 2: 136 -6,9: - 1: 61440 + 2: 61440 -6,10: - 1: 116 + 2: 116 -5,9: - 1: 61440 + 2: 61440 -5,10: - 1: 196 + 2: 196 -4,8: - 1: 29456 + 2: 29456 -4,9: - 1: 23118 + 2: 23118 -4,10: - 1: 50 + 2: 50 -12,-4: - 1: 3712 - 2: 57344 + 2: 3712 + 3: 57344 -13,-4: 0: 48896 - 2: 7 - 1: 8 + 3: 7 + 2: 8 -12,-3: 0: 1 - 1: 62126 + 2: 62126 -13,-3: 0: 11 - 2: 59136 - 1: 6144 + 3: 59136 + 2: 6144 -12,-2: - 2: 59185 - 1: 2254 + 3: 59185 + 2: 2254 -13,-2: - 2: 140 - 1: 2114 + 3: 140 + 2: 2114 -12,-1: - 2: 140 - 1: 34816 + 3: 140 + 2: 34816 -11,-4: - 1: 1841 - 2: 61440 + 2: 1841 + 3: 61440 -11,-3: - 1: 61759 + 2: 61759 -11,-2: - 1: 5 + 2: 5 0: 36352 -12,0: - 1: 35562 + 2: 35562 -11,-5: - 1: 8048 + 2: 8048 -11,-1: 0: 34958 - 1: 8704 + 2: 8704 -10,-4: 0: 59647 - 2: 4096 + 3: 4096 -10,-3: - 1: 61633 + 2: 61633 -10,-2: 0: 65280 - 1: 12 + 2: 12 -10,-1: 0: 13311 - 1: 32768 + 2: 32768 -10,0: 0: 13105 - 1: 34816 + 2: 34816 -12,-8: 0: 64991 -12,-9: @@ -12560,17 +12606,17 @@ entities: 0: 56349 -13,-7: 0: 51404 - 1: 17 + 2: 17 -12,-6: 0: 52701 -13,-6: 0: 3838 -12,-5: - 2: 305 - 1: 4800 + 3: 305 + 2: 4800 -13,-5: - 2: 60552 - 1: 4672 + 3: 60552 + 2: 4672 -11,-8: 0: 65535 -11,-7: @@ -12587,7 +12633,7 @@ entities: 0: 61695 -10,-5: 0: 3087 - 1: 256 + 2: 256 -10,-9: 0: 65287 -12,-12: @@ -12598,7 +12644,7 @@ entities: 0: 61058 -12,-11: 0: 4367 - 1: 1024 + 2: 1024 -13,-11: 0: 34958 -12,-10: @@ -12607,7 +12653,7 @@ entities: 0: 49080 -13,-9: 0: 52424 - 1: 272 + 2: 272 -11,-10: 0: 65399 -11,-13: @@ -12616,7 +12662,7 @@ entities: 0: 61152 -11,-11: 0: 14 - 1: 1024 + 2: 1024 -10,-12: 0: 32738 -10,-11: @@ -12626,7 +12672,7 @@ entities: -10,-13: 0: 65294 -12,-15: - 1: 3 + 2: 3 0: 30464 -12,-14: 0: 30576 @@ -12636,173 +12682,173 @@ entities: 0: 60629 -11,-15: 0: 7936 - 1: 10 + 2: 10 -11,-14: 0: 56799 -10,-15: 0: 3968 - 1: 2 + 2: 2 -10,-14: 0: 61166 -10,-16: - 1: 16384 + 2: 16384 -10,-20: - 1: 4 + 2: 4 0: 3072 -10,-21: - 1: 16512 + 2: 16512 -10,-19: 0: 12 - 1: 1024 + 2: 1024 -10,-18: - 1: 4 + 2: 4 0: 3072 -10,-17: 0: 12 -9,-21: 0: 64170 -12,1: - 1: 65416 + 2: 65416 -13,1: - 1: 65392 + 2: 65392 -12,2: - 2: 3840 - 1: 61440 + 3: 3840 + 2: 61440 -13,2: - 2: 43008 - 1: 21026 + 3: 43008 + 2: 21026 -12,3: - 2: 3855 - 1: 61440 + 3: 3855 + 2: 61440 -13,3: - 2: 43016 - 1: 21026 + 3: 43016 + 2: 21026 -12,4: - 2: 3855 - 1: 61440 + 3: 3855 + 2: 61440 -11,1: - 1: 63265 + 2: 63265 0: 8 -11,3: - 1: 34560 - 2: 2048 + 2: 34560 + 3: 2048 -11,0: 0: 52416 -10,1: 0: 51 - 1: 47104 - 2: 16384 + 2: 47104 + 3: 16384 -10,3: - 2: 49408 - 1: 4096 + 3: 49408 + 2: 4096 0: 140 -11,4: - 1: 15 + 2: 15 -10,2: - 1: 290 + 2: 290 0: 32960 -10,4: - 1: 8471 - 2: 3816 + 2: 8471 + 3: 3816 -13,4: - 2: 43016 - 1: 21026 + 3: 43016 + 2: 21026 -12,5: - 2: 8207 - 1: 53760 + 3: 8207 + 2: 53760 -13,5: - 2: 8200 - 1: 53794 + 3: 8200 + 2: 53794 -12,6: - 2: 21872 - 1: 8706 + 3: 21872 + 2: 8706 -12,7: - 2: 85 - 1: 61986 + 3: 85 + 2: 61986 -12,8: - 1: 127 + 2: 127 -13,7: - 1: 61986 - 2: 85 + 2: 61986 + 3: 85 -11,5: - 1: 61952 + 2: 61952 -11,7: - 1: 61440 + 2: 61440 -11,8: - 1: 15 + 2: 15 -11,6: - 1: 2 + 2: 2 -10,5: - 1: 5760 + 2: 5760 0: 57344 -10,7: - 1: 61440 + 2: 61440 -10,8: - 1: 15 + 2: 15 -10,6: - 1: 6 + 2: 6 -13,8: - 1: 127 + 2: 127 -16,-4: 0: 65327 -16,-5: 0: 61440 - 1: 145 + 2: 145 -16,-3: 0: 65327 -17,-4: 0: 62578 -16,-2: - 1: 240 + 2: 240 -16,-1: - 1: 35071 + 2: 35071 -17,-1: - 1: 255 + 2: 255 -15,-1: - 1: 9215 + 2: 9215 -16,0: - 1: 34952 + 2: 34952 -15,-4: 0: 24576 - 1: 12 + 2: 12 -15,-3: - 1: 60416 + 2: 60416 -15,-2: - 1: 55720 + 2: 55720 -15,-5: - 1: 59561 + 2: 59561 -15,0: - 1: 8995 + 2: 8995 -14,-4: 0: 65280 - 1: 14 + 2: 14 -14,-3: 0: 15 - 1: 43776 + 2: 43776 -14,-2: - 1: 32682 + 2: 32682 -14,-1: - 1: 23 + 2: 23 -14,-5: - 1: 43695 + 2: 43695 -16,-8: - 1: 10098 + 2: 10098 -16,-7: - 1: 8995 + 2: 8995 -16,-6: - 1: 4083 + 2: 4083 -17,-6: - 1: 36848 + 2: 36848 -17,-5: - 1: 72 + 2: 72 -16,-9: - 1: 12848 + 2: 12848 -15,-8: 0: 32631 -15,-6: - 1: 14196 + 2: 14196 -15,-7: - 1: 10240 + 2: 10240 -14,-8: 0: 30711 -14,-7: @@ -12810,105 +12856,105 @@ entities: -14,-6: 0: 4095 -16,-12: - 1: 16369 + 2: 16369 -16,-13: - 1: 4369 - 2: 8738 + 2: 4369 + 3: 8738 -17,-12: - 1: 49137 + 2: 49137 -16,-11: - 1: 12850 + 2: 12850 -16,-10: - 1: 5272 - 2: 49668 + 2: 5272 + 3: 49668 -15,-12: - 1: 4083 + 2: 4083 -15,-10: - 1: 39248 - 2: 160 + 2: 39248 + 3: 160 -15,-13: - 1: 4352 - 2: 8208 + 2: 4352 + 3: 8208 0: 8 -14,-12: - 1: 3888 + 2: 3888 0: 8 -14,-10: - 2: 816 - 1: 1 + 3: 816 + 2: 1 0: 34944 -15,-9: - 1: 8 + 2: 8 -14,-9: - 1: 273 - 2: 2 + 2: 273 + 3: 2 -14,-13: 0: 52428 -16,-16: - 1: 319 + 2: 319 -16,-17: - 1: 12288 + 2: 12288 -17,-16: - 1: 20991 - 2: 8192 + 2: 20991 + 3: 8192 -16,-15: 0: 287 - 2: 4096 - 1: 8192 + 3: 4096 + 2: 8192 -16,-14: - 2: 12337 - 1: 450 + 3: 12337 + 2: 450 -17,-15: - 1: 33045 - 2: 12834 + 2: 33045 + 3: 12834 -17,-14: - 1: 361 - 2: 45200 + 2: 361 + 3: 45200 -17,-13: - 2: 43690 - 1: 4369 + 3: 43690 + 2: 4369 -15,-16: - 1: 15 + 2: 15 0: 57344 -15,-15: 0: 239 - 1: 4096 + 2: 4096 -15,-14: - 1: 1 + 2: 1 0: 61120 -14,-16: - 1: 63 + 2: 63 0: 53248 -14,-15: 0: 3295 - 1: 4096 + 2: 4096 -14,-14: 0: 57308 -13,-16: - 1: 33843 + 2: 33843 0: 4096 -13,-15: 0: 22387 -20,-4: - 1: 52428 + 2: 52428 -20,-5: - 1: 52424 + 2: 52424 -20,-3: - 1: 52428 + 2: 52428 -20,-2: - 1: 2252 + 2: 2252 -19,-4: - 1: 29184 + 2: 29184 -19,-3: - 1: 31744 + 2: 31744 -19,-2: - 1: 29596 + 2: 29596 -19,-1: - 1: 206 + 2: 206 -18,-2: - 1: 39188 + 2: 39188 -18,-1: - 1: 255 + 2: 255 -18,-4: 0: 25792 -18,-3: @@ -12916,118 +12962,116 @@ entities: -17,-3: 0: 628 -17,-2: - 1: 34928 + 2: 34928 -19,-5: - 1: 31891 + 2: 31891 -19,-6: - 1: 32448 + 2: 32448 -18,-6: - 1: 40944 + 2: 40944 -18,-5: - 1: 1113 + 2: 1113 -21,-16: - 1: 52460 + 2: 52460 -21,-17: - 1: 57344 + 2: 57344 -21,-15: - 1: 52428 + 2: 52428 -21,-14: - 1: 52428 + 2: 52428 -21,-13: - 1: 50252 + 2: 50252 -21,-12: - 1: 61164 + 2: 61164 -20,-16: - 1: 159 - 2: 32768 + 2: 159 + 3: 32768 -20,-14: - 1: 722 - 2: 32800 + 2: 722 + 3: 32800 -20,-17: - 1: 32768 + 2: 32768 -19,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -20,-15: - 2: 34952 + 3: 34952 -19,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -19,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -20,-13: - 2: 34952 + 3: 34952 -19,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -19,-17: - 1: 45056 + 2: 45056 -19,-12: - 1: 49137 + 2: 49137 -18,-16: - 1: 4607 - 2: 40960 + 2: 4607 + 3: 40960 -18,-15: - 1: 273 - 2: 47786 + 2: 273 + 3: 47786 -18,-14: - 2: 45072 - 1: 481 + 3: 45072 + 2: 481 -18,-13: - 1: 4369 - 2: 43690 + 2: 4369 + 3: 43690 -18,-17: - 1: 45056 + 2: 45056 -18,-12: - 1: 49073 + 2: 49073 -17,-17: - 1: 45056 + 2: 45056 1,-4: 0: 1136 - 1: 57344 + 2: 57344 1,-2: 0: 61440 - 2: 238 + 3: 238 1,-1: 0: 65535 1,-5: 0: 65535 1,-3: - 1: 226 - 2: 57344 + 2: 226 + 3: 57344 1,0: 0: 15 - 1: 18176 + 2: 20224 2,-4: 0: 119 - 1: 28672 + 2: 28672 2,-3: - 1: 25173 + 2: 25173 2,-2: - 0: 61440 - 1: 236 + 0: 61568 + 2: 100 2,-1: 0: 32631 2,-5: 0: 65535 2,0: - 0: 15 - 2: 30464 + 0: 2063 + 2: 1792 3,-4: 0: 4090 3,-3: 0: 43963 3,-2: - 1: 16 - 0: 21952 + 0: 21968 3,-1: 0: 4016 3,-5: 0: 16383 3,0: - 0: 52445 - 1: 4352 + 0: 56797 4,-4: 0: 8157 4,-3: @@ -13099,9 +13143,9 @@ entities: 4,-9: 0: 16175 0,-16: - 1: 43520 + 2: 43520 1,-16: - 1: 45056 + 2: 45056 1,-15: 0: 65248 1,-14: @@ -13128,64 +13172,63 @@ entities: 0: 2240 1,-17: 0: 12 - 1: 2048 + 2: 2048 1,-18: 0: 32768 - 1: 136 + 2: 136 1,-20: - 1: 34816 + 2: 34816 2,-19: 0: 61182 2,-21: - 1: 7918 + 2: 7918 0: 16384 2,-20: 0: 20196 2,-18: 0: 61166 3,-21: - 1: 39167 + 2: 39167 3,-18: - 1: 58600 + 2: 58600 3,-20: - 1: 34952 + 2: 34952 4,-20: - 1: 4112 + 2: 4112 3,-19: - 1: 34952 + 2: 34952 4,-19: - 1: 4112 + 2: 4112 4,-18: - 1: 62960 - 2: 2560 + 2: 62960 + 3: 2560 1,1: - 2: 16657 - 1: 1028 + 3: 16657 + 2: 1028 1,2: 0: 65280 - 2: 4 - 1: 8 + 3: 4 + 2: 8 1,3: 0: 14207 1,4: 0: 65535 2,1: - 2: 32775 - 1: 31488 + 3: 1911 2,2: - 1: 1 0: 65280 - 2: 2 + 2: 4 2,3: 0: 49359 - 1: 256 + 2: 256 2,4: 0: 65535 3,1: - 1: 17 + 2: 4113 0: 52416 3,2: 0: 65484 + 2: 1 3,3: 0: 63679 3,4: @@ -13218,25 +13261,25 @@ entities: 0: 30719 3,7: 0: 7 - 1: 17408 - 2: 32768 + 2: 17408 + 3: 32768 3,8: - 1: 36452 - 2: 136 + 2: 36452 + 3: 136 4,4: 0: 47568 4,5: 0: 16369 4,6: 0: 13107 - 1: 8 + 2: 8 4,7: 0: 887 - 2: 12288 - 1: 16384 + 3: 12288 + 2: 16384 4,8: - 2: 307 - 1: 16068 + 3: 307 + 2: 16068 5,-4: 0: 44987 5,-3: @@ -13283,7 +13326,7 @@ entities: 0: 15291 5,-8: 0: 13311 - 1: 32768 + 2: 32768 5,-7: 0: 32627 5,-6: @@ -13292,9 +13335,9 @@ entities: 0: 7974 6,-8: 0: 35067 - 1: 4096 + 2: 4096 6,-7: - 1: 1 + 2: 1 0: 65416 6,-6: 0: 65520 @@ -13344,7 +13387,7 @@ entities: 0: 12275 7,-13: 0: 4113 - 1: 50176 + 2: 50176 8,-12: 0: 65520 8,-11: @@ -13364,50 +13407,50 @@ entities: 6,-14: 0: 15295 6,-16: - 1: 32768 + 2: 32768 7,-16: - 1: 14476 - 0: 32768 + 2: 14476 + 3: 32768 7,-15: 0: 64432 7,-14: 0: 53247 7,-17: - 1: 19596 + 2: 19596 8,-16: - 0: 4096 + 3: 4096 8,-14: 0: 3838 8,-13: - 1: 36906 + 2: 36906 4,-21: - 1: 4112 + 2: 4112 5,-18: - 1: 62974 - 2: 2048 + 2: 62974 + 3: 2048 5,-19: - 1: 51200 + 2: 51200 6,-19: - 1: 4990 + 2: 4990 6,-18: - 1: 62960 - 2: 512 + 2: 62960 + 3: 512 6,-20: - 1: 51200 + 2: 51200 7,-20: - 1: 65530 - 2: 4 + 2: 65530 + 3: 4 7,-19: - 1: 17487 + 2: 17487 7,-18: - 1: 30068 - 2: 512 + 2: 30068 + 3: 512 7,-21: - 1: 64256 + 2: 64256 8,-20: - 1: 29456 + 2: 29456 8,-19: - 1: 2255 + 2: 2255 5,1: 0: 65522 5,2: @@ -13445,7 +13488,7 @@ entities: 6,5: 0: 36848 6,6: - 1: 2 + 2: 2 0: 34952 6,7: 0: 140 @@ -13453,17 +13496,17 @@ entities: 0: 40952 7,6: 0: 221 - 1: 24576 + 2: 24576 7,7: 0: 1 - 1: 2 + 2: 2 8,4: 0: 65523 8,5: 0: 4369 8,6: 0: 3327 - 1: 4096 + 2: 4096 9,-4: 0: 30583 9,-3: @@ -13478,7 +13521,7 @@ entities: 0: 65339 10,-4: 0: 49425 - 1: 192 + 2: 192 10,-3: 0: 8191 10,-2: @@ -13491,7 +13534,7 @@ entities: 0: 48682 11,-1: 0: 59 - 1: 12288 + 2: 12288 11,-4: 0: 59946 11,-3: @@ -13500,13 +13543,13 @@ entities: 0: 61175 12,-4: 0: 4367 - 1: 52224 + 2: 52224 12,-3: 0: 4353 - 1: 1028 + 2: 1028 12,-2: 0: 4353 - 1: 52420 + 2: 52420 9,-8: 0: 60943 9,-7: @@ -13523,9 +13566,9 @@ entities: 0: 47291 10,-7: 0: 14 - 1: 25600 + 2: 25600 10,-5: - 1: 33376 + 2: 33376 11,-8: 0: 25328 11,-7: @@ -13536,7 +13579,7 @@ entities: 0: 58976 12,-8: 0: 4415 - 1: 51200 + 2: 51200 12,-7: 0: 65489 12,-6: @@ -13550,25 +13593,25 @@ entities: 9,-10: 0: 61408 9,-13: - 1: 4096 + 2: 4096 10,-12: 0: 4368 10,-10: 0: 48952 10,-13: - 1: 4368 + 2: 4368 0: 140 10,-11: - 1: 8736 + 2: 8736 11,-11: 0: 21776 11,-10: 0: 28455 11,-12: - 1: 5456 + 2: 5456 12,-12: 0: 13107 - 1: 32768 + 2: 32768 12,-11: 0: 56785 12,-10: @@ -13576,27 +13619,27 @@ entities: 12,-9: 0: 16157 8,-15: - 1: 1634 + 2: 1634 9,-14: 0: 61439 9,-15: - 1: 17 + 2: 17 0: 60620 9,-16: 0: 52364 9,-17: 0: 51336 - 1: 32 + 2: 32 10,-16: 0: 56704 - 1: 2 + 2: 2 10,-15: 0: 57309 10,-14: 0: 57297 10,-17: - 2: 34816 - 1: 576 + 3: 34816 + 2: 576 11,-16: 0: 65520 11,-15: @@ -13606,8 +13649,8 @@ entities: 11,-13: 0: 127 11,-17: - 2: 62208 - 1: 3104 + 3: 62208 + 2: 3104 12,-16: 0: 56712 12,-15: @@ -13617,36 +13660,36 @@ entities: 12,-13: 0: 47935 9,-19: - 1: 62736 - 2: 2082 + 2: 62736 + 3: 2082 9,-20: - 2: 3136 + 3: 3136 9,-18: - 1: 2126 + 2: 2126 10,-20: - 1: 1792 + 2: 1792 10,-18: - 1: 25862 + 2: 25862 11,-20: - 2: 13056 - 1: 50304 + 3: 13056 + 2: 50304 11,-19: - 2: 30583 - 1: 8 + 3: 30583 + 2: 8 11,-18: - 2: 375 - 1: 17920 + 3: 375 + 2: 17920 11,-21: - 1: 6513 - 2: 142 + 2: 6513 + 3: 142 12,-20: - 2: 13107 + 3: 13107 12,-19: - 1: 5633 - 2: 24610 + 2: 5633 + 3: 24610 12,-18: - 1: 17425 - 2: 8366 + 2: 17425 + 3: 8366 9,1: 0: 8083 9,2: @@ -13655,7 +13698,7 @@ entities: 0: 65339 10,1: 0: 9010 - 1: 2176 + 2: 2176 10,2: 0: 56575 10,3: @@ -13665,38 +13708,38 @@ entities: 11,0: 0: 32624 11,1: - 1: 16 + 2: 16 0: 57344 11,2: 0: 65535 11,3: 0: 271 12,0: - 1: 51393 + 2: 51393 0: 768 - 2: 1024 + 3: 1024 12,1: - 1: 49665 + 2: 49665 12,2: 0: 30577 12,3: 0: 7 - 1: 17408 + 2: 17408 9,6: 0: 119 - 1: 8192 + 2: 8192 9,5: 0: 28398 10,4: 0: 62256 - 1: 128 + 2: 128 10,5: 0: 511 - 1: 49152 + 2: 49152 10,6: - 1: 3 + 2: 3 11,4: - 1: 80 + 2: 80 0: 61440 11,5: 0: 44799 @@ -13704,661 +13747,661 @@ entities: 0: 170 12,4: 0: 61440 - 1: 68 + 2: 68 12,5: 0: 241 - 1: 24576 + 2: 24576 12,-1: - 1: 4 + 2: 4 13,-4: 0: 1 - 1: 64 + 2: 64 13,-2: - 1: 4080 + 2: 4080 13,-5: 0: 62451 14,-2: - 1: 20478 + 2: 20478 14,-5: 0: 12336 14,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 14,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 15,-2: - 1: 20478 + 2: 20478 15,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 15,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 16,-2: - 1: 20478 + 2: 20478 13,-8: 0: 3 - 1: 17476 + 2: 17476 13,-7: 0: 62448 13,-6: 0: 65523 13,-9: - 1: 16388 + 2: 16388 0: 257 14,-7: 0: 12336 14,-6: - 1: 8224 + 2: 8224 13,-12: - 1: 64512 + 2: 64512 13,-11: 0: 65520 13,-10: 0: 4607 - 1: 49152 + 2: 49152 13,-13: 0: 13075 - 1: 2176 + 2: 2176 14,-12: - 1: 36864 + 2: 36864 0: 238 14,-11: 0: 4368 - 2: 19656 - 1: 32768 + 3: 19656 + 2: 32768 14,-10: 0: 17 - 2: 2188 - 1: 64 + 3: 2188 + 2: 64 14,-13: 0: 58606 15,-11: - 2: 401 - 1: 4710 + 3: 401 + 2: 4710 15,-10: - 2: 48 - 1: 3784 + 3: 48 + 2: 3784 15,-12: - 1: 8712 + 2: 8712 15,-13: - 1: 52832 + 2: 52832 16,-12: - 1: 8435 - 2: 35328 + 2: 8435 + 3: 35328 16,-11: - 2: 10937 - 1: 36864 + 3: 10937 + 2: 36864 0: 1024 16,-10: - 2: 383 - 1: 2176 + 3: 383 + 2: 2176 12,-17: 0: 34880 - 1: 162 + 2: 162 13,-16: 0: 4353 - 1: 17408 + 2: 17408 13,-15: 0: 12561 - 1: 2116 + 2: 2116 13,-14: 0: 48123 13,-17: 0: 4096 - 2: 16 - 1: 230 + 3: 16 + 2: 230 14,-14: 0: 65535 14,-16: - 1: 28 + 2: 28 0: 8192 14,-17: - 1: 4096 - 2: 2 + 2: 4096 + 3: 2 14,-15: 0: 57890 15,-16: - 1: 32775 - 2: 2176 + 2: 32775 + 3: 2176 15,-14: 0: 10016 15,-15: - 1: 28360 + 2: 28360 15,-17: - 1: 34944 + 2: 34944 16,-16: - 2: 61105 - 1: 14 + 3: 61105 + 2: 14 16,-15: - 2: 119 + 3: 119 16,-13: - 1: 4098 + 2: 4098 12,-21: - 1: 20480 - 2: 8977 + 2: 20480 + 3: 8977 13,-18: - 2: 8448 - 1: 4096 + 3: 8448 + 2: 4096 14,-19: - 1: 14540 + 2: 14540 14,-18: - 1: 21789 - 2: 2 + 2: 21789 + 3: 2 14,-20: - 1: 60416 - 2: 192 + 2: 60416 + 3: 192 15,-19: - 2: 57102 - 1: 8192 + 3: 57102 + 2: 8192 15,-18: - 2: 19 - 1: 32780 + 3: 19 + 2: 32780 15,-21: - 2: 7680 + 3: 7680 0: 64 15,-20: - 2: 3686 + 3: 3686 16,-20: - 2: 63235 - 1: 2216 + 3: 63235 + 2: 2216 16,-19: - 2: 48031 + 3: 48031 16,-18: - 2: 139 - 1: 31744 + 3: 139 + 2: 31744 16,-17: - 2: 49022 - 1: 16384 + 3: 49022 + 2: 16384 13,0: - 1: 20288 + 2: 20288 13,2: - 1: 65280 + 2: 65280 14,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 14,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 14,3: - 1: 14 + 2: 14 15,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 15,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 15,3: - 1: 14 + 2: 14 16,0: - 1: 19264 - 2: 1038 + 2: 19264 + 3: 1038 16,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 12,6: - 1: 2 + 2: 2 16,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,-2: - 1: 20478 + 2: 20478 17,-1: - 2: 43690 - 1: 17476 + 3: 43690 + 2: 17476 17,0: - 2: 1038 - 1: 19264 + 3: 1038 + 2: 19264 17,-3: - 1: 32768 + 2: 32768 18,-3: - 1: 14316 + 2: 14316 18,-2: - 1: 59185 + 2: 59185 18,-1: - 1: 34956 + 2: 34956 18,-4: - 1: 32768 + 2: 32768 19,-4: - 1: 14316 + 2: 14316 19,-3: - 1: 1 + 2: 1 19,-1: - 1: 4407 + 2: 4407 18,0: - 1: 44456 - 2: 512 + 2: 44456 + 3: 512 19,0: - 1: 13105 + 2: 13105 19,-2: - 1: 60544 + 2: 60544 19,-5: - 1: 32896 + 2: 32896 20,-2: - 1: 311 + 2: 311 20,-7: - 2: 24576 + 3: 24576 19,-7: - 1: 32768 + 2: 32768 20,-6: - 1: 16912 - 2: 36078 + 2: 16912 + 3: 36078 19,-6: - 1: 200 + 2: 200 20,-5: - 1: 784 - 2: 60552 + 2: 784 + 3: 60552 20,-4: - 2: 18022 + 3: 18022 21,-6: - 2: 18367 - 1: 2048 + 3: 18367 + 2: 2048 21,-5: - 2: 55735 - 1: 8 + 3: 55735 + 2: 8 21,-8: - 1: 546 - 2: 34952 + 2: 546 + 3: 34952 21,-7: - 2: 34958 - 1: 512 + 3: 34958 + 2: 512 21,-4: - 2: 31612 + 3: 31612 21,-9: - 2: 36352 - 1: 231 + 3: 36352 + 2: 231 22,-8: - 2: 57339 - 1: 4 + 3: 57339 + 2: 4 22,-7: - 2: 4271 - 1: 57600 + 3: 4271 + 2: 57600 22,-6: - 2: 60621 - 1: 16 + 3: 60621 + 2: 16 22,-5: - 1: 1 - 2: 65534 + 2: 1 + 3: 65534 22,-9: - 2: 40908 - 1: 16434 + 3: 40908 + 2: 16434 22,-4: - 2: 15031 - 1: 8 + 3: 15031 + 2: 8 23,-8: - 2: 65295 + 3: 65295 23,-7: - 1: 13056 - 2: 52462 + 2: 13056 + 3: 52462 23,-6: - 2: 34511 - 1: 2096 + 3: 34511 + 2: 2096 23,-5: - 2: 52215 - 1: 12288 + 3: 52215 + 2: 12288 0: 1024 23,-9: - 2: 60943 + 3: 60943 0: 144 23,-4: - 2: 4 - 1: 336 + 3: 4 + 2: 336 24,-8: - 2: 4899 + 3: 4899 24,-7: - 2: 4371 + 3: 4371 24,-6: - 2: 275 - 1: 4640 + 3: 275 + 2: 4640 16,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 16,3: - 1: 14 + 2: 14 17,2: - 1: 65348 - 2: 10 + 2: 65348 + 3: 10 17,1: - 2: 43694 - 1: 17472 + 3: 43694 + 2: 17472 17,3: - 1: 14 + 2: 14 18,2: - 1: 65416 + 2: 65416 18,1: - 1: 34952 + 2: 34952 19,1: - 1: 4369 + 2: 4369 19,2: - 1: 13073 + 2: 13073 18,3: - 1: 8 + 2: 8 19,3: - 1: 3 + 2: 3 24,-9: - 2: 12545 + 3: 12545 0: 16 4,-24: - 1: 13107 + 2: 13107 4,-25: - 1: 4096 + 2: 4096 3,-24: - 1: 224 - 2: 12567 + 2: 224 + 3: 12567 4,-23: - 1: 4915 + 2: 4915 3,-23: - 2: 4415 - 1: 34816 + 3: 4415 + 2: 34816 4,-22: - 1: 4369 + 2: 4369 3,-22: - 1: 35016 - 2: 1 + 2: 35016 + 3: 1 8,-21: - 1: 4352 + 2: 4352 17,-12: - 2: 53248 - 1: 11980 + 3: 53248 + 2: 11980 17,-11: - 2: 40129 - 1: 24588 + 3: 40129 + 2: 24588 17,-10: - 1: 199 + 2: 199 17,-13: - 1: 17476 + 2: 17476 18,-12: - 2: 61426 - 1: 4096 + 3: 61426 + 2: 4096 18,-11: - 2: 30591 + 3: 30591 18,-10: - 1: 112 + 2: 112 18,-13: - 1: 51336 + 2: 51336 19,-12: - 2: 65520 + 3: 65520 19,-11: - 2: 32766 - 1: 32768 + 3: 32766 + 2: 32768 19,-13: - 1: 4096 + 2: 4096 19,-10: - 2: 2 + 3: 2 20,-12: - 2: 4352 - 1: 8940 + 3: 4352 + 2: 8940 20,-11: - 2: 32784 - 1: 14790 + 3: 32784 + 2: 14790 11,-23: - 2: 49152 + 3: 49152 11,-22: - 2: 43148 - 1: 1088 + 3: 43148 + 2: 1088 12,-23: - 2: 4096 + 3: 4096 12,-22: - 2: 273 + 3: 273 -4,-24: - 2: 238 - 1: 19456 + 3: 238 + 2: 19456 -4,-25: - 2: 57344 + 3: 57344 -4,-23: - 1: 52292 - 2: 128 + 2: 52292 + 3: 128 -4,-22: - 1: 52428 + 2: 52428 -3,-24: - 1: 487 - 2: 63000 + 2: 487 + 3: 63000 -3,-23: - 2: 51071 - 1: 4096 + 3: 51071 + 2: 4096 -3,-25: - 1: 11840 - 2: 49152 + 2: 11840 + 3: 49152 -3,-22: - 2: 4 - 1: 34816 + 3: 4 + 2: 34816 -2,-24: - 2: 49147 + 3: 49147 -2,-23: - 2: 49416 - 1: 13024 + 3: 49416 + 2: 13024 -2,-22: - 1: 13106 - 2: 68 + 2: 13106 + 3: 68 -2,-25: - 2: 34816 - 1: 640 + 3: 34816 + 2: 640 -1,-24: - 2: 65535 + 3: 65535 -1,-23: - 1: 248 - 2: 39426 + 2: 248 + 3: 39426 -1,-22: - 1: 48 - 2: 32974 + 2: 48 + 3: 32974 -1,-25: - 2: 7492 - 1: 178 + 3: 7492 + 2: 178 0,-24: - 2: 30481 - 1: 35054 + 3: 30481 + 2: 35054 0,-23: - 1: 58 - 2: 57284 + 2: 58 + 3: 57284 0,-22: - 2: 29439 + 3: 29439 -16,8: - 1: 204 + 2: 204 -16,7: - 1: 51336 + 2: 51336 -15,8: - 1: 31 + 2: 31 -15,7: - 1: 61713 + 2: 61713 -14,8: - 1: 127 + 2: 127 -14,7: - 1: 61986 - 2: 85 + 2: 61986 + 3: 85 -3,9: - 1: 18 + 2: 18 -16,2: - 1: 52360 + 2: 52360 -16,3: - 1: 52364 + 2: 52364 -16,4: - 1: 52364 + 2: 52364 -16,1: - 1: 34952 + 2: 34952 -15,1: - 1: 65315 + 2: 65315 -15,2: - 1: 61713 - 2: 2048 + 2: 61713 + 3: 2048 -15,3: - 1: 61713 - 2: 2056 + 2: 61713 + 3: 2056 -15,4: - 1: 61713 - 2: 2056 + 2: 61713 + 3: 2056 -14,1: - 1: 65280 + 2: 65280 -14,2: - 2: 36608 - 1: 28672 + 3: 36608 + 2: 28672 -14,3: - 2: 36623 - 1: 28672 + 3: 36623 + 2: 28672 -14,4: - 2: 36623 - 1: 28672 + 3: 36623 + 2: 28672 0,-21: - 2: 2 + 3: 2 0,-25: - 1: 43679 - 2: 256 + 2: 43679 + 3: 256 1,-24: - 1: 547 - 2: 60620 + 2: 547 + 3: 60620 1,-23: - 2: 52730 + 3: 52730 1,-22: - 1: 96 + 2: 96 1,-25: - 1: 8449 - 2: 50910 + 2: 8449 + 3: 50910 2,-24: - 2: 61438 + 3: 61438 2,-23: - 2: 32552 + 3: 32552 2,-22: - 2: 231 - 1: 60928 + 3: 231 + 2: 60928 2,-25: - 2: 24576 - 1: 3329 + 3: 24576 + 2: 3329 24,-10: - 2: 4096 + 3: 4096 23,-10: - 1: 52851 - 2: 12288 + 2: 52851 + 3: 12288 -16,5: - 1: 52364 + 2: 52364 -16,6: - 1: 34956 + 2: 34956 -15,5: - 1: 46353 - 2: 16392 + 2: 46353 + 3: 16392 -15,6: - 1: 4373 + 2: 4373 -14,5: - 2: 8207 - 1: 53760 + 3: 8207 + 2: 53760 -14,6: - 2: 21872 - 1: 8706 + 3: 21872 + 2: 8706 -13,6: - 2: 21872 - 1: 8706 + 3: 21872 + 2: 8706 20,-13: - 1: 12850 - 2: 257 + 2: 12850 + 3: 257 20,-10: - 1: 35879 - 2: 8 + 2: 35879 + 3: 8 21,-12: - 1: 52851 + 2: 52851 21,-11: - 1: 264 - 2: 4096 + 2: 264 + 3: 4096 21,-10: - 2: 33 - 1: 29124 + 3: 33 + 2: 29124 22,-12: - 1: 4096 + 2: 4096 22,-11: - 1: 52851 + 2: 52851 22,-10: - 1: 52792 + 2: 52792 23,-11: - 1: 4096 + 2: 4096 16,-21: - 2: 48058 + 3: 48058 16,-14: - 1: 2 + 2: 2 17,-16: - 1: 1 - 2: 65534 + 2: 1 + 3: 65534 17,-15: - 2: 34021 - 1: 25360 + 3: 34021 + 2: 25360 17,-17: - 2: 65505 + 3: 65505 17,-14: - 1: 17612 + 2: 17612 18,-16: - 2: 62463 - 1: 3072 + 3: 62463 + 2: 3072 18,-15: - 2: 45055 - 1: 20480 + 3: 45055 + 2: 20480 18,-14: - 1: 35226 + 2: 35226 18,-17: - 2: 63482 + 3: 63482 19,-16: - 1: 4352 + 2: 4352 19,-15: - 2: 273 + 3: 273 0: 4096 - 1: 25088 + 2: 25088 19,-14: - 1: 2671 - 2: 128 + 2: 2671 + 3: 128 20,-14: - 1: 12816 - 2: 256 + 2: 12816 + 3: 256 17,-20: - 2: 34989 - 1: 22032 + 3: 34989 + 2: 22032 17,-19: - 1: 34055 - 2: 2240 + 2: 34055 + 3: 2240 17,-18: - 1: 28417 - 2: 16 + 2: 28417 + 3: 16 17,-21: - 2: 56817 - 1: 4 + 3: 56817 + 2: 4 18,-20: - 2: 65527 + 3: 65527 18,-19: - 2: 56784 + 3: 56784 18,-18: - 1: 1999 - 2: 61440 + 2: 1999 + 3: 61440 18,-21: - 2: 12544 + 3: 12544 19,-19: - 2: 4384 + 3: 4384 19,-18: - 1: 4097 - 2: 34 + 2: 4097 + 3: 34 19,-17: - 1: 256 + 2: 256 16,-22: - 1: 3168 - 2: 32768 + 2: 3168 + 3: 32768 17,-22: - 2: 12288 + 3: 12288 20,-3: - 1: 60544 - 2: 8 + 2: 60544 + 3: 8 21,-3: - 2: 127 - 1: 256 + 3: 127 + 2: 256 22,-3: - 2: 37 + 3: 37 -1,-26: - 1: 24576 + 2: 24576 0,-26: - 1: 52352 + 2: 52352 1,-26: - 1: 4672 - 2: 60416 + 2: 4672 + 3: 60416 2,-26: - 2: 29440 - 1: 35856 + 3: 29440 + 2: 35856 3,-25: - 1: 768 + 2: 768 -20,-12: - 1: 36848 + 2: 36848 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -14376,10 +14419,10 @@ entities: - 0 - 0 - volume: 2500 - immutable: True + temperature: 235 moles: - - 0 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -14391,7 +14434,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -14406,10 +14449,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 0 - 0 - 0 - 0 @@ -14529,8 +14572,8 @@ entities: id: docking287 localAnchorB: 19,29.5 localAnchorA: 20,29.5 - damping: 33.95499 - stiffness: 304.7793 + damping: 33.954987 + stiffness: 304.77927 - proto: AcousticGuitarInstrument entities: - uid: 10313 @@ -14676,7 +14719,10 @@ entities: - 1557 - 1563 - 15143 - - 17575 + - 682 + - 13955 + - 13168 + - 14030 - uid: 81 components: - type: Transform @@ -14684,8 +14730,8 @@ entities: parent: 2 - type: DeviceList devices: - - 2074 - - 2146 + - 7482 + - 13609 - 15394 - 15393 - uid: 409 @@ -14696,17 +14742,7 @@ entities: - type: DeviceList devices: - 14078 - - 14080 - - uid: 708 - components: - - type: Transform - pos: -27.5,1.5 - parent: 2 - - type: DeviceList - devices: - - 14325 - - 14473 - - 1921 + - 17441 - uid: 2395 components: - type: Transform @@ -14735,8 +14771,8 @@ entities: - 8014 - 15007 - 10963 - - 6529 - - 3721 + - 23103 + - 23104 - 11007 - 1537 - 1533 @@ -14757,8 +14793,8 @@ entities: parent: 2 - type: DeviceList devices: - - 20727 - - 7574 + - 18580 + - 15134 - uid: 2697 components: - type: Transform @@ -14766,8 +14802,8 @@ entities: parent: 2 - type: DeviceList devices: - - 19969 - - 7998 + - 7245 + - 16263 - 10682 - 678 - 690 @@ -14784,8 +14820,8 @@ entities: parent: 2 - type: DeviceList devices: - - 8787 - - 8468 + - 15099 + - 23085 - uid: 3722 components: - type: Transform @@ -14844,24 +14880,25 @@ entities: - 15201 - 15200 - 15199 - - 13411 - - 13410 - - 13412 + - 646 + - 15118 + - 9456 - 15879 - - 15912 - - 7925 + - 19045 + - 23130 - 21424 - 21423 - - 21420 + - 23129 - 21421 - - 21422 - - 21425 + - 15133 + - 23131 - 8008 - 8119 - 5945 - 15192 - 15193 - 15194 + - 23125 - uid: 7632 components: - type: Transform @@ -14871,7 +14908,7 @@ entities: - type: DeviceList devices: - 10520 - - 13243 + - 7478 - 13680 - 151 - 14089 @@ -14905,8 +14942,8 @@ entities: - 14385 - 1258 - 11990 - - 12054 - - 11988 + - 8445 + - 8298 - 19001 - 14382 - 14368 @@ -14918,11 +14955,11 @@ entities: parent: 2 - type: DeviceList devices: - - 8498 - - 7976 - - 7482 - - 9525 - - 8146 + - 23174 + - 634 + - 23172 + - 23175 + - 23171 - 9311 - uid: 9147 components: @@ -14946,7 +14983,7 @@ entities: - type: DeviceList devices: - 588 - - 592 + - 23056 - uid: 9309 components: - type: Transform @@ -15048,17 +15085,21 @@ entities: parent: 2 - type: DeviceList devices: - - 16263 + - 12107 - 6941 - - 16247 - - 16243 - - 16242 - - 16246 - - 16262 + - 11988 + - 12178 + - 12054 + - 670 + - 656 - 10416 - 2394 - 10103 - 7420 + - 8453 + - 8464 + - 9141 + - 8468 - uid: 12518 components: - type: Transform @@ -15109,11 +15150,11 @@ entities: - type: DeviceList devices: - 13599 - - 13610 + - 15119 - 13617 - - 13601 - - 13609 - - 13611 + - 17437 + - 22588 + - 15120 - 13619 - 13618 - uid: 13612 @@ -15201,12 +15242,6 @@ entities: - 15429 - 15430 - 4410 - - uid: 13652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-35.5 - parent: 2 - uid: 13653 components: - type: Transform @@ -15294,12 +15329,12 @@ entities: - 1006 - 2591 - 1005 - - 10802 + - 23060 - 1004 - 1016 - - 1003 + - 23058 - 1021 - - 1017 + - 23059 - uid: 13793 components: - type: Transform @@ -15329,6 +15364,8 @@ entities: - 15396 - 15394 - 15393 + - 23143 + - 23142 - uid: 13800 components: - type: Transform @@ -15382,8 +15419,8 @@ entities: - 15638 - 15639 - 4456 - - 5609 - - 5596 + - 23091 + - 23090 - uid: 14019 components: - type: Transform @@ -15391,12 +15428,14 @@ entities: parent: 2 - type: DeviceList devices: - - 14018 - - 14016 + - 23101 + - 23102 - 9572 - 2693 - 15626 - 15625 + - 23098 + - 23099 - uid: 14047 components: - type: MetaData @@ -15473,9 +15512,9 @@ entities: - 14597 - 14589 - 14574 - - 13086 + - 89 - 14878 - - 4640 + - 621 - uid: 14733 components: - type: Transform @@ -15492,8 +15531,8 @@ entities: parent: 2 - type: DeviceList devices: - - 14983 - - 14984 + - 23105 + - 23106 - 1809 - 20277 - 15168 @@ -15504,6 +15543,9 @@ entities: - 15860 - 20393 - 6322 + - 682 + - 6272 + - 10963 - uid: 14915 components: - type: Transform @@ -15515,7 +15557,7 @@ entities: - 7662 - 14055 - 14054 - - 14057 + - 14157 - 14058 - 14059 - 14063 @@ -15534,9 +15576,27 @@ entities: - 11233 - 13236 - 13367 - - 22345 - - 22358 + - 19969 + - 14880 - 22381 + - 5609 + - 13086 + - uid: 14984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 23143 + - 1585 + - 1569 + - 23142 + - 15394 + - 15393 + - 15396 + - 15395 - uid: 15139 components: - type: Transform @@ -15548,14 +15608,16 @@ entities: - 15169 - 15168 - 15166 - - 5473 - - 15118 - - 11279 - - 11277 + - 11385 + - 11465 + - 11259 + - 682 - 15165 - 15164 - 15150 - - 17575 + - 15080 + - 13168 + - 15137 - uid: 15205 components: - type: Transform @@ -15564,8 +15626,8 @@ entities: parent: 2 - type: DeviceList devices: - - 9455 - - 22225 + - 12188 + - 12377 - uid: 15287 components: - type: Transform @@ -15645,8 +15707,8 @@ entities: devices: - 14884 - 15870 - - 14885 - - 14887 + - 11181 + - 11024 - 14886 - uid: 15875 components: @@ -15655,7 +15717,6 @@ entities: parent: 2 - type: DeviceList devices: - - 14902 - 14900 - uid: 15894 components: @@ -15668,8 +15729,8 @@ entities: - 15876 - 3378 - 3375 - - 6581 - - 3376 + - 13607 + - 6501 - 15933 - 15934 - 15936 @@ -15693,9 +15754,11 @@ entities: - 15910 - 13781 - 15920 - - 9406 + - 20727 - 15911 - - 9381 + - 16139 + - 23139 + - 15113 - uid: 16062 components: - type: Transform @@ -15827,8 +15890,8 @@ entities: parent: 2 - type: DeviceList devices: - - 17444 - - 17443 + - 23203 + - 5318 - uid: 17576 components: - type: Transform @@ -15837,8 +15900,8 @@ entities: - type: DeviceList devices: - 15137 - - 15136 - - 15135 + - 15115 + - 23108 - 15150 - 15165 - 15164 @@ -15935,7 +15998,7 @@ entities: - 22252 - 22251 - 22253 - - 22259 + - 23132 - 22258 - 22270 - 22254 @@ -15972,8 +16035,6 @@ entities: - 22392 - 22410 - 22395 - - 22387 - - 22388 - 22389 - uid: 22439 components: @@ -16005,8 +16066,8 @@ entities: parent: 2 - type: DeviceList devices: - - 14159 - - 14158 + - 2598 + - 15126 - uid: 22600 components: - type: Transform @@ -16015,12 +16076,35 @@ entities: parent: 2 - type: DeviceList devices: - - 22578 - - 22579 - - 22597 + - 6256 + - 13582 + - 13411 - 22598 - - 22596 + - 13410 - 22599 + - uid: 23067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 23082 + - 23078 + - 23083 + - uid: 23193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 23195 + - 15172 + - 15171 + - 23202 - proto: AirCanister entities: - uid: 790 @@ -16048,11 +16132,6 @@ entities: - type: Transform pos: -34.5,-16.5 parent: 2 - - uid: 12320 - components: - - type: Transform - pos: 29.5,-6.5 - parent: 2 - uid: 14315 components: - type: Transform @@ -16073,6 +16152,11 @@ entities: - type: Transform pos: 26.5,-4.5 parent: 2 + - uid: 23084 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 - proto: Airlock entities: - uid: 5908 @@ -16700,46 +16784,62 @@ entities: pos: 11.5,-4.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 6419: + 23144: - DoorStatus: DoorBolt - - uid: 6419 + - uid: 10382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 + rot: 3.141592653589793 rad + pos: 11.5,0.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 5 - type: DeviceLinkSource linkedPorts: - 6101: + 22563: - DoorStatus: DoorBolt - - uid: 8772 + 23150: + - DoorStatus: DoorBolt + - uid: 22563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,1.5 + pos: 12.5,3.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 4 - type: DeviceLinkSource linkedPorts: 10382: - DoorStatus: DoorBolt - - uid: 10382 + 23150: + - DoorStatus: Open + - uid: 23144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 + pos: 11.5,-6.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8772: + 6101: + - DoorStatus: DoorBolt + - uid: 23150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22563: + - DoorStatus: Open + 10382: - DoorStatus: DoorBolt - proto: AirlockExternalGlassCargoLocked entities: @@ -18098,6 +18198,11 @@ entities: - type: Transform pos: -10.5,21.5 parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 - uid: 3286 components: - type: Transform @@ -18153,11 +18258,6 @@ entities: - type: Transform pos: 16.5,-0.5 parent: 2 - - uid: 9887 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 - uid: 10143 components: - type: Transform @@ -18858,6 +18958,14 @@ entities: parent: 2 - proto: AirSensor entities: + - uid: 89 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14595 - uid: 151 components: - type: Transform @@ -18866,6 +18974,40 @@ entities: - type: DeviceNetwork deviceLists: - 7632 + - uid: 634 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - uid: 656 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 + - uid: 670 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 + - uid: 682 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15139 + - 58 + - 14795 - uid: 1005 components: - type: Transform @@ -18877,7 +19019,7 @@ entities: - uid: 1006 components: - type: Transform - pos: 5.5,-30.5 + pos: 6.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -18906,14 +19048,6 @@ entities: - type: DeviceNetwork deviceLists: - 14795 - - uid: 1921 - components: - - type: Transform - pos: -25.5,0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 708 - uid: 2591 components: - type: Transform @@ -18946,6 +19080,7 @@ entities: - type: DeviceNetwork deviceLists: - 2583 + - 14795 - uid: 6941 components: - type: Transform @@ -18975,22 +19110,30 @@ entities: - type: DeviceNetwork deviceLists: - 14915 - - uid: 7925 + - uid: 8119 components: - type: Transform - pos: 6.5,-38.5 + pos: 13.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - 7178 - - uid: 8119 + - uid: 8453 components: - type: Transform - pos: 13.5,-43.5 + pos: -25.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 11724 + - uid: 8464 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 - uid: 8993 components: - type: Transform @@ -19031,14 +19174,6 @@ entities: - type: DeviceNetwork deviceLists: - 15421 - - uid: 9525 - components: - - type: Transform - pos: 27.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8983 - uid: 9572 components: - type: Transform @@ -19063,6 +19198,7 @@ entities: - type: DeviceNetwork deviceLists: - 2583 + - 14795 - uid: 11000 components: - type: Transform @@ -19100,27 +19236,15 @@ entities: - type: DeviceNetwork deviceLists: - 16446 - - uid: 13086 - components: - - type: Transform - pos: -20.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - uid: 13168 components: - type: Transform pos: -19.5,-41.5 parent: 2 - - uid: 13410 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 15139 + - 58 - uid: 13418 components: - type: Transform @@ -19148,7 +19272,6 @@ entities: - uid: 13618 components: - type: Transform - rot: 1.5707963267948966 rad pos: 35.5,-3.5 parent: 2 - type: DeviceNetwork @@ -19157,7 +19280,6 @@ entities: - uid: 13619 components: - type: Transform - rot: 1.5707963267948966 rad pos: 40.5,-11.5 parent: 2 - type: DeviceNetwork @@ -19293,6 +19415,22 @@ entities: deviceLists: - 15331 - 15937 + - uid: 15118 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 15133 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 - uid: 15137 components: - type: Transform @@ -19301,6 +19439,7 @@ entities: - type: DeviceNetwork deviceLists: - 17576 + - 15139 - uid: 15138 components: - type: Transform @@ -19387,22 +19526,6 @@ entities: - type: DeviceNetwork deviceLists: - 9309 - - uid: 16262 - components: - - type: Transform - pos: -21.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11724 - - uid: 16263 - components: - - type: Transform - pos: -21.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11724 - uid: 16304 components: - type: Transform @@ -19475,23 +19598,22 @@ entities: - type: DeviceNetwork deviceLists: - 17351 - - uid: 17575 + - uid: 17582 components: - type: Transform - pos: -6.5,-39.5 + pos: 0.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 58 - - 15139 - - uid: 17582 + - 17576 + - uid: 19045 components: - type: Transform - pos: 0.5,-32.5 + pos: 7.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17576 + - 7178 - uid: 20738 components: - type: Transform @@ -19545,14 +19667,6 @@ entities: - type: DeviceNetwork deviceLists: - 7178 - - uid: 21425 - components: - - type: Transform - pos: 6.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7178 - uid: 21808 components: - type: Transform @@ -19694,6 +19808,40 @@ entities: - type: DeviceNetwork deviceLists: - 22600 + - uid: 23083 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23067 + - uid: 23125 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 23142 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - 14984 + - uid: 23143 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - 14984 - proto: AltarConvertMaint entities: - uid: 9055 @@ -20393,6 +20541,12 @@ entities: - type: Transform pos: -25.5,18.5 parent: 2 + - uid: 23157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 - proto: APCElectronics entities: - uid: 2246 @@ -27179,6 +27333,16 @@ entities: - type: Transform pos: 9.5,6.5 parent: 2 + - uid: 23176 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + pos: 32.5,-60.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 7764 @@ -28345,17 +28509,16 @@ entities: parent: 2 - proto: BoxingBell entities: - - uid: 1813 + - uid: 1003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-39.5 + pos: -46.5,-55.5 parent: 2 - - uid: 4687 + - uid: 1813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 + rot: 3.141592653589793 rad + pos: 53.5,-39.5 parent: 2 - proto: BoxLatexGloves entities: @@ -28759,6 +28922,12 @@ entities: - type: Transform pos: -31.5,-21.5 parent: 2 + - uid: 23156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 1561 @@ -29429,6 +29598,11 @@ entities: - type: Transform pos: -20.5,-12.5 parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 - uid: 1029 components: - type: Transform @@ -29734,6 +29908,11 @@ entities: - type: Transform pos: 4.5,9.5 parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 - uid: 1658 components: - type: Transform @@ -29839,6 +30018,11 @@ entities: - type: Transform pos: -35.5,-58.5 parent: 2 + - uid: 1830 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 - uid: 1835 components: - type: Transform @@ -30079,6 +30263,11 @@ entities: - type: Transform pos: 35.5,20.5 parent: 2 + - uid: 2183 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 - uid: 2192 components: - type: Transform @@ -31449,11 +31638,6 @@ entities: - type: Transform pos: 2.5,13.5 parent: 2 - - uid: 5720 - components: - - type: Transform - pos: 36.5,10.5 - parent: 2 - uid: 5726 components: - type: Transform @@ -31634,11 +31818,6 @@ entities: - type: Transform pos: 15.5,-32.5 parent: 2 - - uid: 6501 - components: - - type: Transform - pos: 36.5,11.5 - parent: 2 - uid: 6502 components: - type: Transform @@ -31674,6 +31853,11 @@ entities: - type: Transform pos: 2.5,28.5 parent: 2 + - uid: 6582 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 - uid: 6619 components: - type: Transform @@ -32184,6 +32368,11 @@ entities: - type: Transform pos: 0.5,11.5 parent: 2 + - uid: 8146 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 - uid: 8163 components: - type: Transform @@ -39454,26 +39643,6 @@ entities: - type: Transform pos: -25.5,-15.5 parent: 2 - - uid: 19023 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 19024 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 19045 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 19046 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - uid: 19090 components: - type: Transform @@ -42074,6 +42243,11 @@ entities: - type: Transform pos: 52.5,-31.5 parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 - uid: 22277 components: - type: Transform @@ -42409,6 +42583,91 @@ entities: - type: Transform pos: 8.5,4.5 parent: 2 + - uid: 23146 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 23148 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 23149 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 23152 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 23153 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 23165 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 - proto: CableApcStack entities: - uid: 1898 @@ -42962,6 +43221,16 @@ entities: - type: Transform pos: -48.5,12.5 parent: 2 + - uid: 1736 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 - uid: 1785 components: - type: Transform @@ -43002,6 +43271,11 @@ entities: - type: Transform pos: -45.5,27.5 parent: 2 + - uid: 1921 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 - uid: 2093 components: - type: Transform @@ -43027,6 +43301,16 @@ entities: - type: Transform pos: 1.5,-17.5 parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 - uid: 2165 components: - type: Transform @@ -43302,11 +43586,6 @@ entities: - type: Transform pos: -7.5,-53.5 parent: 2 - - uid: 2704 - components: - - type: Transform - pos: -25.5,-15.5 - parent: 2 - uid: 2731 components: - type: Transform @@ -43352,26 +43631,6 @@ entities: - type: Transform pos: -29.5,-15.5 parent: 2 - - uid: 2760 - components: - - type: Transform - pos: -17.5,-15.5 - parent: 2 - - uid: 2761 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 2 - - uid: 2762 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - - uid: 2763 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - uid: 2769 components: - type: Transform @@ -43872,21 +44131,6 @@ entities: - type: Transform pos: -2.5,-17.5 parent: 2 - - uid: 5068 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 5070 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 5081 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - uid: 5200 components: - type: Transform @@ -44122,11 +44366,6 @@ entities: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 6247 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - uid: 6258 components: - type: Transform @@ -44252,11 +44491,21 @@ entities: - type: Transform pos: 40.5,6.5 parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 - uid: 6549 components: - type: Transform pos: 13.5,-13.5 parent: 2 + - uid: 6581 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 - uid: 6586 components: - type: Transform @@ -44267,6 +44516,16 @@ entities: - type: Transform pos: 9.5,-17.5 parent: 2 + - uid: 6649 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 - uid: 6659 components: - type: Transform @@ -44532,6 +44791,11 @@ entities: - type: Transform pos: -2.5,-21.5 parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 - uid: 8311 components: - type: Transform @@ -47652,6 +47916,11 @@ entities: - type: Transform pos: 10.5,-36.5 parent: 2 + - uid: 22587 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 - proto: CableHVStack entities: - uid: 3391 @@ -53876,6 +54145,11 @@ entities: - type: Transform pos: -27.5,-34.5 parent: 2 + - uid: 22576 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 - uid: 22606 components: - type: Transform @@ -53966,6 +54240,21 @@ entities: - type: Transform pos: -9.5,-38.5 parent: 2 + - uid: 23069 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 - proto: CableMVStack entities: - uid: 3393 @@ -54090,6 +54379,48 @@ entities: - type: Transform pos: 46.52114,-27.47892 parent: 2 + - uid: 23133 + components: + - type: Transform + pos: 21.282763,-53.18984 + parent: 2 + - uid: 23134 + components: + - type: Transform + pos: 21.261919,-53.742306 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: 19.6778,-53.763153 + parent: 2 + - uid: 23136 + components: + - type: Transform + pos: 19.521473,-53.16899 + parent: 2 +- proto: CandleSmall + entities: + - uid: 23137 + components: + - type: Transform + pos: 19.417253,-53.575523 + parent: 2 + - uid: 23138 + components: + - type: Transform + pos: 21.564152,-53.481705 + parent: 2 + - uid: 23140 + components: + - type: Transform + pos: 20.855467,-53.86739 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: 20.146782,-53.888237 + parent: 2 - proto: CannabisSeeds entities: - uid: 226 @@ -56126,11 +56457,6 @@ entities: - type: Transform pos: 0.5,-17.5 parent: 2 - - uid: 1821 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - uid: 1822 components: - type: Transform @@ -56867,6 +57193,12 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-42.5 parent: 2 + - uid: 4504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-47.5 + parent: 2 - uid: 4505 components: - type: Transform @@ -57886,21 +58218,6 @@ entities: - type: Transform pos: 45.5,2.5 parent: 2 - - uid: 8784 - components: - - type: Transform - pos: 42.5,2.5 - parent: 2 - - uid: 8788 - components: - - type: Transform - pos: 41.5,1.5 - parent: 2 - - uid: 8789 - components: - - type: Transform - pos: 41.5,0.5 - parent: 2 - uid: 8790 components: - type: Transform @@ -58172,16 +58489,6 @@ entities: rot: 1.5707963267948966 rad pos: 56.5,-26.5 parent: 2 - - uid: 9177 - components: - - type: Transform - pos: 24.5,-44.5 - parent: 2 - - uid: 9178 - components: - - type: Transform - pos: 24.5,-45.5 - parent: 2 - uid: 9179 components: - type: Transform @@ -58440,11 +58747,6 @@ entities: - type: Transform pos: 20.5,-13.5 parent: 2 - - uid: 11181 - components: - - type: Transform - pos: -19.5,-15.5 - parent: 2 - uid: 11195 components: - type: Transform @@ -59715,26 +60017,6 @@ entities: - type: Transform pos: -27.5,-15.5 parent: 2 - - uid: 21157 - components: - - type: Transform - pos: -23.5,-15.5 - parent: 2 - - uid: 21158 - components: - - type: Transform - pos: -22.5,-15.5 - parent: 2 - - uid: 21159 - components: - - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 21160 - components: - - type: Transform - pos: -20.5,-15.5 - parent: 2 - uid: 21161 components: - type: Transform @@ -59750,11 +60032,6 @@ entities: - type: Transform pos: -33.5,-17.5 parent: 2 - - uid: 21164 - components: - - type: Transform - pos: -33.5,-16.5 - parent: 2 - uid: 21166 components: - type: Transform @@ -60275,6 +60552,12 @@ entities: - type: Transform pos: -9.5,-24.5 parent: 2 + - uid: 2613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,1.5 + parent: 2 - uid: 2992 components: - type: Transform @@ -60844,6 +61127,12 @@ entities: - type: Transform pos: -36.5,-4.5 parent: 2 + - uid: 21159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 - uid: 21813 components: - type: Transform @@ -60868,15 +61157,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-40.5 parent: 2 - - uid: 22702 - components: - - type: Transform - pos: -19.5,-18.5 - parent: 2 - - uid: 22703 + - uid: 22574 components: - type: Transform - pos: -18.5,-18.5 + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 parent: 2 - uid: 22704 components: @@ -62819,7 +63104,7 @@ entities: - uid: 16221 components: - type: Transform - pos: 24.430853,-59.5613 + pos: 24.373571,-59.52213 parent: 2 - proto: ClothingNeckCloakGay entities: @@ -64236,6 +64521,13 @@ entities: - type: Transform pos: -21.5,-5.5 parent: 2 +- proto: CrateEmergencyInternalsLarge + entities: + - uid: 22581 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 - proto: CrateEmptySpawner entities: - uid: 14 @@ -64368,6 +64660,21 @@ entities: - type: Transform pos: 32.5,15.5 parent: 2 + - uid: 23120 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 - proto: CrateEngineeringAMEJar entities: - uid: 19547 @@ -64487,6 +64794,37 @@ entities: parent: 2 - proto: CrateFreezer entities: + - uid: 2597 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 3241 components: - type: Transform @@ -64523,11 +64861,24 @@ entities: - type: Transform pos: -51.5,-36.5 parent: 2 - - uid: 12681 - components: - - type: Transform - pos: -52.5,-36.5 - parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 13179 components: - type: Transform @@ -65706,6 +66057,12 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-21.5 parent: 2 + - uid: 8293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-20.5 + parent: 2 - uid: 9892 components: - type: Transform @@ -66063,6 +66420,11 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-28.5 parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 - uid: 4345 components: - type: Transform @@ -68337,12 +68699,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-38.5 parent: 2 - - uid: 12178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-20.5 - parent: 2 - uid: 12208 components: - type: Transform @@ -70381,6 +70737,13 @@ entities: parent: 2 - type: DisposalTagger tag: Trash + - uid: 7623 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - type: DisposalTagger + tag: Trash - uid: 8300 components: - type: Transform @@ -70831,6 +71194,11 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,-38.5 parent: 2 + - uid: 22702 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 - uid: 22766 components: - type: Transform @@ -71079,6 +71447,11 @@ entities: - type: Transform pos: 42.5,19.5 parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 - uid: 22547 components: - type: Transform @@ -71260,7 +71633,12 @@ entities: - uid: 6694 components: - type: Transform - pos: 19.484085,-52.344112 + pos: 19.321447,-52.238968 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: 19.665367,-52.405754 parent: 2 - proto: DrinkCafeLatte entities: @@ -71621,6 +71999,25 @@ entities: - type: Transform pos: -6.5131397,17.855957 parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 2553 + components: + - type: Transform + pos: 39.457584,-7.327772 + parent: 2 +- proto: DrinkWineGlass + entities: + - uid: 23168 + components: + - type: Transform + pos: 39.71813,-7.4320116 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: 39.21788,-7.4007397 + parent: 2 - proto: ElectricGuitarInstrument entities: - uid: 4740 @@ -72391,6 +72788,11 @@ entities: - type: Transform pos: 18.5,4.5 parent: 2 + - uid: 4183 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 - uid: 5429 components: - type: Transform @@ -72448,11 +72850,6 @@ entities: - type: Transform pos: -21.5,-50.5 parent: 2 - - uid: 17636 - components: - - type: Transform - pos: -21.5,-17.5 - parent: 2 - uid: 20761 components: - type: Transform @@ -72627,7 +73024,7 @@ entities: pos: -12.5,-48.5 parent: 2 - type: FaxMachine - name: HoP + name: HoP's Office - uid: 8716 components: - type: Transform @@ -72656,13 +73053,13 @@ entities: parent: 2 - type: FaxMachine name: Bridge - - uid: 20243 +- proto: FaxMachineCaptain + entities: + - uid: 4161 components: - type: Transform pos: -24.5,-50.5 parent: 2 - - type: FaxMachine - name: Captain - proto: FigureSpawner entities: - uid: 3832 @@ -73659,6 +74056,12 @@ entities: deviceLists: - 14047 - 14019 + - uid: 2704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-45.5 + parent: 2 - uid: 2919 components: - type: Transform @@ -74338,18 +74741,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-20.5 parent: 2 - - uid: 15130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 2 - - uid: 15141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-16.5 - parent: 2 - uid: 15143 components: - type: Transform @@ -74471,24 +74862,18 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-54.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 23193 - uid: 15172 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-55.5 parent: 2 - - uid: 15175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-47.5 - parent: 2 - - uid: 15176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-47.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 23193 - uid: 15181 components: - type: Transform @@ -74923,6 +75308,7 @@ entities: - 81 - 13796 - 3816 + - 14984 - uid: 15394 components: - type: Transform @@ -74934,6 +75320,7 @@ entities: - 81 - 13796 - 3816 + - 14984 - uid: 15395 components: - type: Transform @@ -74945,6 +75332,7 @@ entities: - 13793 - 13796 - 15415 + - 14984 - uid: 15396 components: - type: Transform @@ -74956,6 +75344,7 @@ entities: - 13793 - 13796 - 15415 + - 14984 - uid: 15429 components: - type: Transform @@ -76445,8 +76834,24 @@ entities: - type: Transform pos: 10.5,4.5 parent: 2 + - uid: 23196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeBend entities: + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 672 components: - type: Transform @@ -76615,6 +77020,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2762 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2910 components: - type: Transform @@ -76690,6 +77110,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4687 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4879 components: - type: Transform @@ -76728,6 +77155,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5633 components: - type: Transform @@ -76741,6 +77184,22 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-44.5 parent: 2 + - uid: 6247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6553 components: - type: Transform @@ -76793,6 +77252,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7608 components: - type: Transform @@ -76816,14 +77283,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8582 components: - type: Transform @@ -76871,6 +77330,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8789 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9286 components: - type: Transform @@ -76887,6 +77353,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9518 components: - type: Transform @@ -76894,6 +77368,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9525 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9534 components: - type: Transform @@ -76913,11 +77394,11 @@ entities: - uid: 9673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + rot: 1.5707963267948966 rad + pos: 37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 9957 components: - type: Transform @@ -77272,6 +77753,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14143 components: - type: Transform @@ -77295,6 +77784,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14488 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14599 components: - type: Transform @@ -77327,14 +77823,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14672 components: - type: Transform @@ -77390,6 +77878,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15006 components: - type: Transform @@ -77398,56 +77894,56 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15097 + - uid: 15086 components: - type: Transform - pos: -3.5,-40.5 + rot: 1.5707963267948966 rad + pos: -29.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15110 + - uid: 15097 components: - type: Transform - pos: -4.5,-41.5 + pos: 31.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15113 + color: '#0055CCFF' + - uid: 15110 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-41.5 + pos: 28.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15128 + color: '#0055CCFF' + - uid: 15123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-36.5 + pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15129 + - uid: 15130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-36.5 + pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15133 + color: '#FF1212FF' + - uid: 15136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + rot: 3.141592653589793 rad + pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15134 + color: '#FF1212FF' + - uid: 15141 components: - type: Transform - pos: -6.5,-33.5 + pos: -30.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -77474,6 +77970,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15912 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16244 components: - type: Transform @@ -77482,6 +77985,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 16248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16311 components: - type: Transform @@ -77575,21 +78094,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17437 + - uid: 17444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 + rot: 3.141592653589793 rad + pos: 29.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17878 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17883 components: - type: Transform @@ -77598,6 +78110,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 19981 components: - type: Transform @@ -77629,14 +78149,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22227 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22242 components: - type: Transform @@ -77683,14 +78195,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22386 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22406 components: - type: Transform @@ -77738,59 +78242,154 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22572 + - uid: 22575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-54.5 + rot: -1.5707963267948966 rad + pos: -36.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22574 + - uid: 22591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-51.5 + pos: 5.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22575 + - uid: 23065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-55.5 + rot: 3.141592653589793 rad + pos: 5.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22576 + - uid: 23066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-52.5 + rot: 1.5707963267948966 rad + pos: 5.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22589 + - uid: 23079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23080 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-54.5 + pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22590 + - uid: 23081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-54.5 + rot: 1.5707963267948966 rad + pos: 26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22591 + - uid: 23088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23127 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-55.5 + pos: 6.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23200 + components: + - type: Transform + pos: 30.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -77838,6 +78437,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8784 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8856 components: - type: Transform @@ -77845,6 +78451,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9177 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9381 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9417 components: - type: Transform @@ -77908,6 +78528,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14057 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14451 components: - type: Transform @@ -77936,6 +78563,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14626 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15091 components: - type: Transform @@ -78058,14 +78692,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 103 components: - type: Transform @@ -78085,11 +78711,11 @@ entities: - uid: 114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-16.5 + rot: 1.5707963267948966 rad + pos: -37.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 128 components: - type: Transform @@ -78153,35 +78779,11 @@ entities: - type: Transform pos: 10.5,3.5 parent: 2 - - uid: 528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 539 components: - type: Transform pos: 10.5,2.5 parent: 2 - - uid: 616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 628 components: - type: Transform @@ -78194,15 +78796,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-15.5 + pos: 7.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -78222,30 +78816,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 645 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 646 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 692 components: - type: Transform @@ -78262,6 +78832,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 716 components: - type: Transform @@ -78490,13 +79068,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1646 - components: - - type: Transform - pos: -28.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1648 components: - type: Transform @@ -78554,10 +79125,10 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-22.5 + pos: -23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 1776 components: - type: Transform @@ -78641,6 +79212,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1887 components: - type: Transform @@ -78945,6 +79524,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2092 components: - type: Transform @@ -79021,13 +79608,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2135 - components: - - type: Transform - pos: -8.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2136 components: - type: Transform @@ -79044,6 +79624,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2147 components: - type: Transform @@ -79060,14 +79648,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2182 components: - type: Transform @@ -79076,14 +79656,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2186 components: - type: Transform @@ -79133,8 +79705,16 @@ entities: - uid: 2370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-2.5 + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -79296,14 +79876,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2599 components: - type: Transform @@ -79328,22 +79900,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2617 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2623 components: - type: Transform @@ -79522,6 +80078,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3238 components: - type: Transform @@ -79575,22 +80139,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 3526 components: - type: Transform @@ -79874,14 +80422,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4521 components: - type: Transform @@ -80060,6 +80600,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 4928 components: - type: Transform @@ -80078,19 +80626,11 @@ entities: - uid: 4986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -28.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 5028 components: - type: Transform @@ -80143,6 +80683,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 5081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5082 components: - type: Transform @@ -80185,27 +80733,19 @@ entities: - uid: 5172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 + rot: 3.141592653589793 rad + pos: -6.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5216 + - uid: 5212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 + rot: 3.141592653589793 rad + pos: -7.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 5302 components: - type: Transform @@ -80307,6 +80847,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5724 components: - type: Transform @@ -80411,19 +80959,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6249 + - uid: 6262 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-16.5 + pos: -35.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -80626,6 +81166,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6590 components: - type: Transform @@ -80741,30 +81289,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6650 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6656 components: - type: Transform @@ -81097,14 +81621,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 7246 components: - type: Transform @@ -81136,6 +81652,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7479 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 7510 components: - type: Transform @@ -81163,19 +81686,19 @@ entities: - uid: 7575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-2.5 + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 7703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-16.5 + rot: 1.5707963267948966 rad + pos: 14.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 7712 components: - type: Transform @@ -81253,6 +81776,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 8003 components: - type: Transform @@ -81370,6 +81909,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 8248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8253 components: - type: Transform @@ -81398,14 +81945,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8464 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8469 components: - type: Transform @@ -81428,21 +81967,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8490 + - uid: 8494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 + pos: 34.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8494 + - uid: 8498 components: - type: Transform - pos: 34.5,-36.5 + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 8501 components: - type: Transform @@ -81631,6 +82170,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8745 components: - type: Transform @@ -81639,6 +82186,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8804 components: - type: Transform @@ -81693,19 +82248,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9141 + - uid: 9176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-16.5 + rot: 3.141592653589793 rad + pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9176 + color: '#0055CCFF' + - uid: 9178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,13.5 + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -81958,14 +82513,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9459 components: - type: Transform @@ -81982,14 +82529,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9462 components: - type: Transform @@ -82171,6 +82710,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 9929 components: - type: Transform @@ -82234,6 +82781,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10154 + components: + - type: Transform + pos: -16.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10166 components: - type: Transform @@ -82252,19 +82806,26 @@ entities: - uid: 10200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 + pos: -18.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-31.5 + rot: 1.5707963267948966 rad + pos: 28.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' + - uid: 10239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10262 components: - type: Transform @@ -82321,6 +82882,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10538 components: - type: Transform @@ -82337,6 +82906,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10544 components: - type: Transform @@ -82497,6 +83074,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10670 components: - type: Transform @@ -82550,6 +83135,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10802 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 10895 components: - type: Transform @@ -82712,21 +83304,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11259 + - uid: 11276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-31.5 + pos: -6.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11276 + - uid: 11277 components: - type: Transform - pos: -6.5,-67.5 + rot: 1.5707963267948966 rad + pos: -10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 11300 components: - type: Transform @@ -82811,6 +83403,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 11431 components: - type: Transform @@ -82859,11 +83459,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11465 + - uid: 11468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-28.5 + pos: -9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82883,6 +83482,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11517 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11592 components: - type: Transform @@ -82928,6 +83534,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11641 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11645 components: - type: Transform @@ -82963,10 +83584,11 @@ entities: - uid: 11826 components: - type: Transform - pos: -29.5,-25.5 + rot: -1.5707963267948966 rad + pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 11893 components: - type: Transform @@ -82989,6 +83611,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11949 components: - type: Transform @@ -83114,13 +83744,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12188 - components: - - type: Transform - pos: 11.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12189 components: - type: Transform @@ -83179,6 +83802,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12388 components: - type: Transform @@ -83843,6 +84474,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13254 components: - type: Transform @@ -83897,7 +84544,8 @@ entities: - uid: 13353 components: - type: Transform - pos: 9.5,-40.5 + rot: -1.5707963267948966 rad + pos: -34.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -83915,6 +84563,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13358 components: - type: Transform @@ -84855,14 +85511,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13583 components: - type: Transform @@ -84903,6 +85551,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13588 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13589 components: - type: Transform @@ -84950,6 +85605,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13604 components: - type: Transform @@ -84974,19 +85637,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13607 + - uid: 13608 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-4.5 + pos: -27.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13608 + color: '#FF1212FF' + - uid: 13610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-4.5 + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -85059,6 +85722,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13714 components: - type: Transform @@ -85099,14 +85770,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13731 components: - type: Transform @@ -85727,15 +86390,15 @@ entities: - uid: 14007 components: - type: Transform - pos: -16.5,-51.5 + pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-51.5 + rot: 3.141592653589793 rad + pos: -15.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -85755,6 +86418,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14016 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14022 components: - type: Transform @@ -86215,11 +86893,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14157 + - uid: 14159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,10.5 + pos: -28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -86761,6 +87439,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14441 components: - type: Transform @@ -86902,44 +87588,34 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14474 + - uid: 14473 components: - type: Transform - pos: -34.5,-66.5 + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14487 + - uid: 14474 components: - type: Transform - pos: -39.5,1.5 + pos: -34.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14488 + color: '#0055CCFF' + - uid: 14487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-4.5 + pos: -39.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 + rot: 3.141592653589793 rad + pos: 9.5,-36.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14491 components: - type: Transform @@ -86952,7 +87628,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-4.5 + pos: -22.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -87376,7 +88052,7 @@ entities: - uid: 14631 components: - type: Transform - pos: -17.5,-16.5 + pos: -8.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -87859,10 +88535,11 @@ entities: - uid: 14742 components: - type: Transform - pos: -32.5,-52.5 + rot: 1.5707963267948966 rad + pos: -11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 14743 components: - type: Transform @@ -87988,19 +88665,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14880 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14883 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,-21.5 + pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -88148,6 +88817,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14991 components: - type: Transform @@ -88211,10 +88888,11 @@ entities: - uid: 15076 components: - type: Transform - pos: -10.5,-40.5 + rot: -1.5707963267948966 rad + pos: -21.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 15077 components: - type: Transform @@ -88240,8 +88918,7 @@ entities: - uid: 15081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-42.5 + pos: -29.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -88253,27 +88930,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15084 + - uid: 15083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-40.5 + rot: 3.141592653589793 rad + pos: 2.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15085 + - uid: 15084 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-40.5 + pos: -10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15086 + - uid: 15085 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-40.5 + pos: -9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -88403,50 +89080,18 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15114 - components: - - type: Transform - pos: -10.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15117 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-36.5 + pos: -14.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-37.5 + pos: -29.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -88466,19 +89111,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15126 + - uid: 15127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-35.5 + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15127 + color: '#FF1212FF' + - uid: 15129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-37.5 + rot: 1.5707963267948966 rad + pos: -35.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -88486,7 +89131,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-34.5 + pos: -7.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -88498,6 +89143,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15159 components: - type: Transform @@ -88514,6 +89167,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15255 components: - type: Transform @@ -88730,27 +89399,34 @@ entities: - uid: 16240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 16241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-7.5 + pos: 7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16248 + - uid: 16247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-11.5 + rot: 1.5707963267948966 rad + pos: -28.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 16249 components: - type: Transform @@ -88778,8 +89454,8 @@ entities: - uid: 16252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -89021,6 +89697,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 16681 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16790 components: - type: Transform @@ -89053,11 +89736,33 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17136 + - uid: 16897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-49.5 + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16928 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -89587,14 +90292,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 17442 components: - type: Transform @@ -89627,29 +90324,44 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17888 + - uid: 17575 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -26.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 18551 + - uid: 17878 components: - type: Transform - pos: 9.5,-43.5 + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17880 + components: + - type: Transform + pos: -9.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 18580 + - uid: 17888 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-10.5 + pos: -7.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18551 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18581 components: - type: Transform @@ -89704,6 +90416,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 19290 components: - type: Transform @@ -89766,6 +90494,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 20518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21054 components: - type: Transform @@ -89886,6 +90630,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 21191 components: - type: Transform @@ -89958,6 +90710,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 21422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 21948 components: - type: Transform @@ -89990,13 +90750,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22229 - components: - - type: Transform - pos: 17.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22238 components: - type: Transform @@ -90368,14 +91121,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22379 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22384 components: - type: Transform @@ -90384,14 +91129,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22390 components: - type: Transform @@ -90623,122 +91360,386 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22563 + - uid: 22573 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-51.5 + pos: -35.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22571 + color: '#0055CCFF' + - uid: 22578 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-51.5 + pos: -4.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22573 + - uid: 22584 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-54.5 + pos: -39.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22581 + - uid: 22585 components: - type: Transform - pos: -37.5,-53.5 + rot: -1.5707963267948966 rad + pos: -37.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22582 + - uid: 23062 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-54.5 + pos: 7.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22583 + - uid: 23063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-54.5 + pos: 6.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22584 + - uid: 23071 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-55.5 + pos: 28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22585 + - uid: 23073 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-55.5 + pos: 30.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22586 + - uid: 23074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23087 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23092 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23093 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23094 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-54.5 + pos: -18.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22587 + - uid: 23097 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-53.5 + pos: -16.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22588 + - uid: 23100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23109 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23113 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-52.5 + pos: -7.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22592 + - uid: 23115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23173 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-55.5 + pos: 28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22593 + - uid: 23178 components: - type: Transform - pos: -41.5,-54.5 + rot: 1.5707963267948966 rad + pos: 17.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22594 + - uid: 23179 components: - type: Transform - pos: -41.5,-53.5 + rot: 1.5707963267948966 rad + pos: 18.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22595 + - uid: 23180 components: - type: Transform - pos: -40.5,-53.5 + rot: 1.5707963267948966 rad + pos: 19.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 23201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 129 @@ -90801,21 +91802,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1736 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1753 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1778 components: - type: Transform @@ -90824,13 +91810,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1830 - components: - - type: Transform - pos: -11.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1924 components: - type: Transform @@ -90885,13 +91864,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2371 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2391 components: - type: Transform @@ -90924,14 +91896,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2597 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 3042 components: - type: Transform @@ -90948,14 +91912,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4174 components: - type: Transform @@ -90964,13 +91920,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4247 - components: - - type: Transform - pos: -28.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4249 components: - type: Transform @@ -91103,14 +92052,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5318 + - uid: 4988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-38.5 + pos: -4.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5068 + components: + - type: Transform + pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 5528 components: - type: Transform @@ -91150,6 +92113,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6249 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6270 components: - type: Transform @@ -91189,27 +92159,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6582 + - uid: 6584 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-16.5 + pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6584 + - uid: 6651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-28.5 + rot: 3.141592653589793 rad + pos: -29.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -91305,22 +92267,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 7483 components: - type: Transform @@ -91393,13 +92339,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8293 - components: - - type: Transform - pos: -30.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8413 components: - type: Transform @@ -91478,14 +92417,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8734 components: - type: Transform @@ -91502,21 +92433,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8737 + - uid: 8744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 + pos: 14.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8744 + - uid: 9406 components: - type: Transform - pos: 14.5,-44.5 + rot: -1.5707963267948966 rad + pos: -29.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 9418 components: - type: Transform @@ -91540,6 +92471,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 9466 components: - type: Transform @@ -91618,6 +92557,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 10769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10987 components: - type: Transform @@ -91670,18 +92617,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11298 + - uid: 11279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-55.5 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11385 + - uid: 11298 components: - type: Transform - pos: -28.5,-31.5 + rot: 1.5707963267948966 rad + pos: -6.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -91693,30 +92641,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11590 components: - type: Transform @@ -91733,13 +92657,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11929 - components: - - type: Transform - pos: -20.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11993 components: - type: Transform @@ -91756,6 +92673,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12395 components: - type: Transform @@ -91834,6 +92767,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12681 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12683 components: - type: Transform @@ -91898,22 +92838,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13365 components: - type: Transform @@ -92046,13 +92970,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13588 - components: - - type: Transform - pos: 40.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13595 components: - type: Transform @@ -92085,6 +93002,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 - uid: 13613 components: - type: Transform @@ -92100,6 +93023,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13722 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13824 components: - type: Transform @@ -92223,6 +93153,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14216 components: - type: Transform @@ -92247,6 +93185,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14341 components: - type: Transform @@ -92285,14 +93231,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14429 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14440 components: - type: Transform @@ -92304,8 +93242,16 @@ entities: - uid: 14450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 + rot: -1.5707963267948966 rad + pos: -32.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -92484,26 +93430,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14958 + - uid: 14885 components: - type: Transform - pos: 10.5,-47.5 + pos: -37.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15080 + color: '#FF1212FF' + - uid: 14887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-42.5 + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15083 + - uid: 14958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-40.5 + pos: 10.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -92523,6 +93468,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15121 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15161 components: - type: Transform @@ -92586,6 +93538,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16431 components: - type: Transform @@ -92601,6 +93569,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 16953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 - uid: 17362 components: - type: Transform @@ -92647,6 +93629,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 17795 components: - type: Transform @@ -92663,14 +93653,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 17881 components: - type: Transform @@ -92774,14 +93756,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 22363 components: - type: Transform @@ -92870,20 +93844,36 @@ entities: - uid: 22577 components: - type: Transform - pos: -37.5,-52.5 + rot: 1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23110 + components: + - type: Transform + pos: -6.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22580 + - uid: 23116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-55.5 + rot: -1.5707963267948966 rad + pos: -7.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPort entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1849 components: - type: Transform @@ -92981,14 +93971,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-8.5 parent: 2 - - uid: 10537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 12135 components: - type: Transform @@ -93247,48 +94229,45 @@ entities: parent: 2 - proto: GasVentPump entities: - - uid: 592 + - uid: 621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-14.5 + pos: -20.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 9278 + - 14595 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 666 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-9.5 + pos: 10.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15421 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 690 + - 7178 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-3.5 + pos: 31.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2697 + - 15421 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1003 + - uid: 690 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-31.5 + pos: -39.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13665 + - 2697 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1004 @@ -93333,6 +94312,7 @@ entities: - type: DeviceNetwork deviceLists: - 13796 + - 14984 - type: AtmosPipeColor color: '#0055CCFF' - uid: 2034 @@ -93345,17 +94325,6 @@ entities: - 13549 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2146 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2173 components: - type: Transform @@ -93378,6 +94347,16 @@ entities: - 11724 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2598 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22510 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3201 components: - type: Transform @@ -93421,17 +94400,6 @@ entities: - 29 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4640 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14595 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 4689 components: - type: Transform @@ -93476,25 +94444,25 @@ entities: - 13793 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5473 + - uid: 5318 components: - type: Transform - pos: -7.5,-39.5 + rot: 1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 17445 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-46.5 + pos: 27.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14004 + - 14943 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5945 @@ -93508,26 +94476,14 @@ entities: - 7178 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2583 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6581 + - uid: 6256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-24.5 + pos: -41.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15894 + - 22600 - type: AtmosPipeColor color: '#0055CCFF' - uid: 6613 @@ -93585,6 +94541,17 @@ entities: - 13657 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 7482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 81 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 7862 components: - type: Transform @@ -93596,15 +94563,14 @@ entities: - 22071 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8146 + - uid: 8298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + pos: -14.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8983 + - 8606 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8410 @@ -93619,25 +94585,14 @@ entities: - type: AtmosPipeColor color: '#0055CCFF' - uid: 8468 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3489 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-33.5 + pos: -29.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8983 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9161 @@ -93662,17 +94617,6 @@ entities: - 14085 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15937 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9438 components: - type: Transform @@ -93681,17 +94625,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15205 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 9861 components: - type: Transform @@ -93747,15 +94680,14 @@ entities: - 9393 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11277 + - uid: 11181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-38.5 + pos: -44.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 15869 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11354 @@ -93769,14 +94701,47 @@ entities: - 13658 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11385 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15139 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15139 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11988 components: - type: Transform - pos: -14.5,15.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8606 + - 11724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12170 @@ -93801,6 +94766,17 @@ entities: - 2583 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15205 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12397 components: - type: Transform @@ -93858,15 +94834,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13412 + - uid: 13410 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + pos: -37.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 22600 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13433 @@ -93955,25 +94931,15 @@ entities: - 13612 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13610 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13600 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13611 + - uid: 13607 components: - type: Transform - pos: 36.5,-3.5 + rot: 1.5707963267948966 rad + pos: -30.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13600 + - 15894 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13617 @@ -94044,6 +95010,9 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13993 @@ -94057,17 +95026,6 @@ entities: - 14004 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14018 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14021 components: - type: Transform @@ -94090,17 +95048,6 @@ entities: - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14057 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14915 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14063 components: - type: Transform @@ -94112,17 +95059,6 @@ entities: - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 409 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14144 components: - type: Transform @@ -94134,26 +95070,15 @@ entities: - 16098 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22510 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14325 + - uid: 14157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-0.5 + rot: -1.5707963267948966 rad + pos: -47.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 708 + - 14915 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14385 @@ -94275,47 +95200,26 @@ entities: - 15862 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15869 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14885 - components: - - type: Transform - pos: -44.5,-20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15869 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14902 + - uid: 14880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-23.5 + rot: 3.141592653589793 rad + pos: 21.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15875 + - 14943 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14984 + - uid: 14884 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-44.5 + pos: -43.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14795 + - 15869 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15007 @@ -94339,37 +95243,37 @@ entities: - 13089 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15136 + - uid: 15119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17576 + - 13600 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15279 + - uid: 15134 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-62.5 + pos: -20.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15287 + - 2670 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15912 + - uid: 15279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-39.5 + rot: -1.5707963267948966 rad + pos: -29.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 15287 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16128 @@ -94405,26 +95309,15 @@ entities: - 9309 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11724 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16247 + - uid: 16263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 + rot: 3.141592653589793 rad + pos: -28.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11724 + - 2697 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16267 @@ -94535,15 +95428,15 @@ entities: - 17352 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17443 + - uid: 17441 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: 37.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17445 + - 409 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17560 @@ -94557,17 +95450,6 @@ entities: - 13655 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2697 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19984 components: - type: Transform @@ -94579,12 +95461,12 @@ entities: - uid: 20727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 + rot: 3.141592653589793 rad + pos: -30.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 15937 - type: AtmosPipeColor color: '#0055CCFF' - uid: 20834 @@ -94620,17 +95502,6 @@ entities: - 3722 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 7178 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 21423 components: - type: Transform @@ -94740,88 +95611,246 @@ entities: - 21678 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22345 + - uid: 22395 components: - type: Transform - pos: 21.5,23.5 + rot: 1.5707963267948966 rad + pos: 31.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14943 + - 22438 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22388 + - uid: 22431 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,24.5 + pos: 33.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22438 + - 22432 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22395 + - uid: 22440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,18.5 + pos: 40.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22438 + - 22439 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22431 + - uid: 22450 + components: + - type: Transform + pos: 47.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13600 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,24.5 + pos: -3.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22432 + - 9278 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22440 + - uid: 23060 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23078 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,20.5 + pos: 25.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22439 + - 23067 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22450 + - uid: 23085 components: - type: Transform - pos: 47.5,21.5 + rot: 3.141592653589793 rad + pos: -7.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22439 + - 3489 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22579 + - uid: 23086 components: - type: Transform - pos: -38.5,-51.5 + rot: 1.5707963267948966 rad + pos: -36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22600 + - 14004 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 22597 + - uid: 23099 components: - type: Transform - pos: -41.5,-52.5 + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22600 + - 14019 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17576 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23129 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23130 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23139 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23193 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -94909,17 +95938,6 @@ entities: - 13665 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-27.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1163 components: - type: Transform @@ -94940,17 +95958,7 @@ entities: - type: DeviceNetwork deviceLists: - 13796 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2074 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 + - 14984 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2176 @@ -94995,17 +96003,6 @@ entities: - 15894 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3376 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15894 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 3486 components: - type: Transform @@ -95016,17 +96013,6 @@ entities: - 2583 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2583 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4246 components: - type: Transform @@ -95071,15 +96057,12 @@ entities: - 13665 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5596 + - uid: 5216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-45.5 + rot: -1.5707963267948966 rad + pos: -4.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14004 - type: AtmosPipeColor color: '#FF1212FF' - uid: 5823 @@ -95093,6 +96076,17 @@ entities: - 5030 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 6501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15894 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 6545 components: - type: Transform @@ -95147,59 +96141,35 @@ entities: - 13654 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11724 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7482 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 8983 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7574 + - uid: 7245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-4.5 + pos: -29.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 2697 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7976 + - uid: 7420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-35.5 + pos: -29.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8983 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7998 + - uid: 7478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-5.5 + pos: -50.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2697 + - 7632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 8008 @@ -95222,15 +96192,14 @@ entities: - 2583 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8787 + - uid: 8445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-25.5 + pos: -12.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3489 + - 8606 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9131 @@ -95244,14 +96213,15 @@ entities: - 15421 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9381 + - uid: 9141 components: - type: Transform - pos: -28.5,-27.5 + rot: 1.5707963267948966 rad + pos: -29.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15937 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9450 @@ -95262,6 +96232,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 9456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 - uid: 9627 components: - type: Transform @@ -95283,15 +96262,14 @@ entities: - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10802 + - uid: 11024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 + pos: -42.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13665 + - 15869 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11155 @@ -95316,25 +96294,25 @@ entities: - 9393 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11274 + - uid: 11259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-72.5 + pos: -9.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5030 + - 15139 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11279 + - uid: 11274 components: - type: Transform - pos: -10.5,-39.5 + rot: -1.5707963267948966 rad + pos: -7.5,-72.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 5030 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11333 @@ -95373,11 +96351,12 @@ entities: - uid: 12054 components: - type: Transform - pos: -12.5,15.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8606 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - uid: 12169 @@ -95391,6 +96370,28 @@ entities: - 14210 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15205 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12378 components: - type: Transform @@ -95461,25 +96462,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13243 + - uid: 13086 components: - type: Transform - pos: -47.5,-21.5 + rot: 1.5707963267948966 rad + pos: 27.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7632 + - 14943 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-36.5 + rot: 3.141592653589793 rad + pos: -37.5,-53.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 22600 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13448 @@ -95515,22 +96517,22 @@ entities: - 13612 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13599 + - uid: 13582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-10.5 + rot: 1.5707963267948966 rad + pos: -40.5,-54.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13600 + - 22600 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13601 + - uid: 13599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-7.5 + rot: 3.141592653589793 rad + pos: 40.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -95540,11 +96542,11 @@ entities: - uid: 13609 components: - type: Transform - pos: 37.5,-3.5 + pos: -11.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13600 + - 81 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13614 @@ -95630,17 +96632,6 @@ entities: - 14004 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14019 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14020 components: - type: Transform @@ -95657,6 +96648,9 @@ entities: - type: Transform pos: -20.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14054 @@ -95724,17 +96718,6 @@ entities: - 16098 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22510 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14378 components: - type: Transform @@ -95757,16 +96740,6 @@ entities: - 18900 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14473 - components: - - type: Transform - pos: -22.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 708 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14588 components: - type: Transform @@ -95887,59 +96860,81 @@ entities: - 15869 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14887 + - uid: 14900 components: - type: Transform - pos: -42.5,-20.5 + pos: -38.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15869 + - 15875 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14900 + - uid: 15080 components: - type: Transform - pos: -38.5,-23.5 + rot: -1.5707963267948966 rad + pos: -2.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15875 + - 15139 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14983 + - uid: 15099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-44.5 + rot: -1.5707963267948966 rad + pos: -7.5,-26.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14795 + - 3489 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15118 + - uid: 15113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-38.5 + pos: -26.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 15937 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15135 + - uid: 15115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-33.5 + pos: -8.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - 17576 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13600 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22510 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15180 components: - type: Transform @@ -95982,48 +96977,37 @@ entities: - 7931 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16164 + - uid: 16139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-48.5 + rot: 3.141592653589793 rad + pos: -26.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 9309 + - 15937 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16166 + - uid: 16164 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-57.5 + pos: -33.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - 9309 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11724 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16243 + - uid: 16166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-10.5 + rot: 1.5707963267948966 rad + pos: -33.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11724 + - 9309 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16260 @@ -96119,15 +97103,14 @@ entities: - 17352 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17444 + - uid: 17437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,17.5 + pos: 40.5,-6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17445 + - 13600 - type: AtmosPipeColor color: '#FF1212FF' - uid: 17561 @@ -96141,33 +97124,43 @@ entities: - 13655 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19983 + - uid: 18580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 2670 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 21067 + - uid: 19969 components: - type: Transform - pos: -3.5,-56.5 + pos: 23.5,22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3722 + - 14943 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 21420 + - uid: 19983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-41.5 + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21067 + components: + - type: Transform + pos: -3.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7178 + - 3722 - type: AtmosPipeColor color: '#FF1212FF' - uid: 21421 @@ -96212,17 +97205,6 @@ entities: - 14085 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15205 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22232 components: - type: Transform @@ -96245,17 +97227,6 @@ entities: - 22255 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22255 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22270 components: - type: Transform @@ -96277,26 +97248,6 @@ entities: - 21678 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22358 - components: - - type: Transform - pos: 23.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14943 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 22387 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 22438 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 22392 components: - type: Transform @@ -96347,25 +97298,153 @@ entities: - 22439 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22578 + - uid: 23058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23067 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14019 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23106 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-52.5 + pos: -5.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22600 + - 14795 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22596 + - uid: 23131 components: - type: Transform - pos: -40.5,-52.5 + rot: 3.141592653589793 rad + pos: 6.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 22600 + - 7178 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23132 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23171 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23174 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8983 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23195 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23193 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 23203 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17445 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -96945,11 +98024,6 @@ entities: - type: Transform pos: -28.5,-14.5 parent: 2 - - uid: 656 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 2 - uid: 664 components: - type: Transform @@ -104207,6 +105281,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,27.5 parent: 2 + - uid: 22345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 - uid: 22834 components: - type: Transform @@ -104228,6 +105308,18 @@ entities: rot: 1.5707963267948966 rad pos: 94.5,-14.5 parent: 2 + - uid: 23068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 23114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1127 @@ -106033,10 +107125,10 @@ entities: parent: 2 - proto: HolopadCommandRd entities: - - uid: 20518 + - uid: 23170 components: - type: Transform - pos: 30.5,-34.5 + pos: 29.5,-34.5 parent: 2 - proto: HolopadCommandVault entities: @@ -107203,6 +108295,18 @@ entities: - Pressed: Toggle 2010: - Pressed: Toggle + - uid: 23155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2010: + - Pressed: Toggle + 15216: + - Pressed: Toggle - proto: LockableButtonBar entities: - uid: 18917 @@ -108534,6 +109638,11 @@ entities: - type: Transform pos: -50.5,-47.5 parent: 2 + - uid: 22597 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 - proto: LootSpawnerIndustrial entities: - uid: 9651 @@ -108546,6 +109655,11 @@ entities: - type: Transform pos: 57.5,-60.5 parent: 2 + - uid: 23124 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 - proto: LootSpawnerIndustrialFluff entities: - uid: 394 @@ -108563,11 +109677,6 @@ entities: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 8314 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 2 - uid: 8324 components: - type: Transform @@ -108578,11 +109687,6 @@ entities: - type: Transform pos: 43.5,21.5 parent: 2 - - uid: 10239 - components: - - type: Transform - pos: -30.5,-18.5 - parent: 2 - uid: 11114 components: - type: Transform @@ -108819,11 +109923,6 @@ entities: parent: 2 - proto: LootSpawnerScienceMinor entities: - - uid: 122 - components: - - type: Transform - pos: 28.5,-48.5 - parent: 2 - uid: 11845 components: - type: Transform @@ -108844,6 +109943,11 @@ entities: - type: Transform pos: 23.5,-30.5 parent: 2 + - uid: 21164 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 - uid: 22759 components: - type: Transform @@ -108989,6 +110093,11 @@ entities: - type: Transform pos: -32.5,16.5 parent: 2 + - uid: 21160 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 - proto: MachineFrameDestroyed entities: - uid: 456 @@ -109353,11 +110462,6 @@ entities: - type: Transform pos: 9.5,-95.5 parent: 2 - - uid: 16897 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 2 - uid: 17875 components: - type: Transform @@ -109388,6 +110492,11 @@ entities: - type: Transform pos: 38.5,-63.5 parent: 2 + - uid: 19046 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 - uid: 20131 components: - type: Transform @@ -109647,6 +110756,11 @@ entities: - type: Transform pos: 37.5,10.5 parent: 2 + - uid: 22580 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 - uid: 22646 components: - type: Transform @@ -110165,16 +111279,22 @@ entities: - type: Transform pos: 45.5,-51.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 720 - uid: 1890 components: - type: Transform pos: 46.5,-20.5 parent: 2 + - type: TimedSpawner + chance: 0.2 - uid: 2566 components: - type: Transform pos: 46.5,10.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 840 - uid: 5862 components: - type: Transform @@ -110183,13 +111303,17 @@ entities: - uid: 7092 components: - type: Transform - pos: 0.5,-36.5 + pos: 4.5,-37.5 parent: 2 + - type: TimedSpawner + chance: 0.2 - uid: 9136 components: - type: Transform pos: 24.5,-53.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 720 - uid: 12128 components: - type: Transform @@ -110200,26 +111324,37 @@ entities: - type: Transform pos: 7.5,-52.5 parent: 2 + - type: TimedSpawner + chance: 0.2 + - uid: 17636 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - type: TimedSpawner + chance: 0.2 - uid: 20634 components: - type: Transform pos: -22.5,19.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 720 - uid: 22636 components: - type: Transform pos: 32.5,25.5 parent: 2 - - uid: 22645 - components: - - type: Transform - pos: -37.5,-17.5 - parent: 2 + - type: TimedSpawner + chance: 0.2 - uid: 22786 components: - type: Transform pos: -16.5,-24.5 parent: 2 + - type: TimedSpawner + intervalSeconds: 600 + chance: 0.2 - proto: Multitool entities: - uid: 3370 @@ -110372,15 +111507,15 @@ entities: parent: 2 - proto: NoticeBoard entities: - - uid: 4942 + - uid: 2760 components: - type: Transform - pos: -9.5,-35.5 + pos: -21.5,-17.5 parent: 2 - - uid: 15841 + - uid: 4942 components: - type: Transform - pos: -20.5,-17.5 + pos: -9.5,-35.5 parent: 2 - uid: 20234 components: @@ -110669,7 +111804,7 @@ entities: [color=#ff0000][head=2] PARENT FORM: PRF07 [/head] -- This document is tied to Child Forms:-- [/color] [head=3]NotATrasen[/ head] - [color=#1b67a5]█▄ █ ▀█▀ [head=3]Author: Command Secretary[/head] █ ▀█     █     + [color=#1b67a5]█▄ █ ▀█▀ [head=3]Author: Command Secretary[/head] █ ▀█     █ (* = A Required Field) @@ -110777,10 +111912,10 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 2 - - uid: 8445 + - uid: 8314 components: - type: Transform - pos: -24.5,-18.5 + pos: -23.5,-18.5 parent: 2 - uid: 13750 components: @@ -110937,7 +112072,7 @@ entities: - uid: 15185 components: - type: Transform - pos: 0.5215175,-57.367905 + pos: 2.5298765,-55.385803 parent: 2 - uid: 19939 components: @@ -111045,7 +112180,7 @@ entities: - uid: 13493 components: - type: Transform - pos: -24.065586,-18.367483 + pos: -22.96386,-18.45458 parent: 2 - uid: 14162 components: @@ -111092,7 +112227,7 @@ entities: - uid: 16192 components: - type: Transform - pos: -23.127619,-18.398756 + pos: -20.46611,-15.44072 parent: 2 - uid: 22272 components: @@ -111407,11 +112542,6 @@ entities: - type: Transform pos: 0.5,-23.5 parent: 2 - - uid: 8294 - components: - - type: Transform - pos: -21.5,-16.5 - parent: 2 - uid: 8362 components: - type: Transform @@ -111508,10 +112638,10 @@ entities: - type: Transform pos: 29.5,-7.5 parent: 2 - - uid: 4909 + - uid: 22229 components: - type: Transform - pos: 29.5,-8.5 + pos: 29.5,-6.5 parent: 2 - proto: PosterContrabandGreyTide entities: @@ -112102,6 +113232,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 - uid: 6541 components: - type: Transform @@ -112263,18 +113398,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-8.5 parent: 2 - - uid: 23011 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-16.5 - parent: 2 - - uid: 23012 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-16.5 - parent: 2 - proto: Poweredlight entities: - uid: 173 @@ -112375,6 +113498,12 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,-63.5 parent: 2 + - uid: 4041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 2 - uid: 4257 components: - type: Transform @@ -112615,12 +113744,6 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-13.5 parent: 2 - - uid: 10769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 2 - uid: 10942 components: - type: Transform @@ -112868,11 +113991,6 @@ entities: - type: Transform pos: 15.5,-17.5 parent: 2 - - uid: 12107 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 2 - uid: 12803 components: - type: Transform @@ -113783,6 +114901,18 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-53.5 parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 - uid: 2205 components: - type: Transform @@ -113849,6 +114979,11 @@ entities: - type: PointLight softness: 1.5 energy: 0.5 + - uid: 4247 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 - uid: 4508 components: - type: Transform @@ -114110,22 +115245,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-44.5 parent: 2 - - uid: 11641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 - parent: 2 - - type: PointLight - color: '#FFA54FFF' - - uid: 11642 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-48.5 - parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 11657 components: - type: Transform @@ -114297,24 +115416,6 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-22.5 parent: 2 - - uid: 15099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-58.5 - parent: 2 - - uid: 15119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-58.5 - parent: 2 - - uid: 15120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-58.5 - parent: 2 - uid: 15682 components: - type: Transform @@ -114572,6 +115673,11 @@ entities: rot: 1.5707963267948966 rad pos: -63.5,-59.5 parent: 2 + - uid: 22358 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 - uid: 22374 components: - type: Transform @@ -114645,11 +115751,6 @@ entities: - type: Transform pos: 7.5,2.5 parent: 2 - - uid: 23041 - components: - - type: Transform - pos: 11.5,2.5 - parent: 2 - proto: PoweredSmallLightEmpty entities: - uid: 9504 @@ -114981,6 +116082,36 @@ entities: rot: 3.141592653589793 rad pos: 43.5,8.5 parent: 2 + - uid: 22379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-47.5 + parent: 2 + - uid: 22385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 2 + - uid: 22386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-58.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-58.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 2 - uid: 22545 components: - type: Transform @@ -115187,6 +116318,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 + - uid: 3503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-36.5 + parent: 2 - uid: 3720 components: - type: Transform @@ -115231,11 +116368,6 @@ entities: - type: Transform pos: -5.5,-10.5 parent: 2 - - uid: 4183 - components: - - type: Transform - pos: 0.5,-57.5 - parent: 2 - uid: 4188 components: - type: Transform @@ -115404,21 +116536,11 @@ entities: - type: Transform pos: -14.5,-96.5 parent: 2 - - uid: 8298 - components: - - type: Transform - pos: -19.5,-16.5 - parent: 2 - uid: 8331 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 8453 - components: - - type: Transform - pos: -20.5,-16.5 - parent: 2 - uid: 8514 components: - type: Transform @@ -115587,12 +116709,6 @@ entities: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 12305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-18.5 - parent: 2 - uid: 12358 components: - type: Transform @@ -115679,11 +116795,6 @@ entities: - type: Transform pos: -13.5,-21.5 parent: 2 - - uid: 14760 - components: - - type: Transform - pos: -50.5,-36.5 - parent: 2 - uid: 15187 components: - type: Transform @@ -115952,6 +117063,23 @@ entities: - type: Transform pos: 40.5,15.5 parent: 2 + - uid: 23012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 - proto: RadioHandheld entities: - uid: 3964 @@ -116557,6 +117685,35 @@ entities: - type: Transform pos: -1.5,-39.5 parent: 2 + - uid: 21425 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 22343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 22579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-17.5 + parent: 2 - proto: RailingCorner entities: - uid: 1546 @@ -116570,6 +117727,11 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,12.5 parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 - uid: 7376 components: - type: Transform @@ -117108,6 +118270,11 @@ entities: - type: Transform pos: 15.5,-55.5 parent: 2 + - uid: 14760 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 - uid: 15849 components: - type: Transform @@ -117118,11 +118285,6 @@ entities: - type: Transform pos: -18.5,-31.5 parent: 2 - - uid: 16139 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 2 - uid: 16140 components: - type: Transform @@ -117577,6 +118739,16 @@ entities: rot: 3.141592653589793 rad pos: -23.5,13.5 parent: 2 + - uid: 15128 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 - uid: 16119 components: - type: Transform @@ -121965,6 +123137,18 @@ entities: rot: 3.141592653589793 rad pos: 28.5,29.5 parent: 2 + - uid: 22595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 4210 @@ -122209,11 +123393,6 @@ entities: - type: Transform pos: -13.5,3.5 parent: 2 - - uid: 16681 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - uid: 16685 components: - type: Transform @@ -122288,6 +123467,11 @@ entities: - type: Transform pos: 8.5,-46.5 parent: 2 + - uid: 22582 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 - proto: SecurityTechFab entities: - uid: 19546 @@ -123995,6 +125179,11 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 7925 + components: + - type: Transform + pos: -50.5,-54.5 + parent: 2 - uid: 9126 components: - type: Transform @@ -126083,6 +127272,11 @@ entities: parent: 2 - proto: SpawnMobBee entities: + - uid: 3449 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 - uid: 17321 components: - type: Transform @@ -126115,6 +127309,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,30.5 parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 - uid: 17326 components: - type: Transform @@ -127382,6 +128581,12 @@ entities: rot: -1.5707963267948966 rad pos: 35.355778,-9.333347 parent: 2 + - uid: 8490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.055944,-19.08416 + parent: 2 - uid: 8882 components: - type: Transform @@ -127665,13 +128870,6 @@ entities: - type: Transform pos: -28.5,22.5 parent: 2 - - uid: 10154 - components: - - type: MetaData - name: Medical Substation - - type: Transform - pos: -29.5,-18.5 - parent: 2 - uid: 12610 components: - type: MetaData @@ -127712,6 +128910,13 @@ entities: - type: Transform pos: 26.5,19.5 parent: 2 + - uid: 22589 + components: + - type: MetaData + name: Medical North Substation + - type: Transform + pos: -29.5,-17.5 + parent: 2 - proto: SubstationBasicEmpty entities: - uid: 15399 @@ -127827,7 +129032,7 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 - - uid: 19204 + - uid: 22571 components: - type: Transform pos: 1.5,-57.5 @@ -129113,11 +130318,6 @@ entities: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 4161 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - uid: 4162 components: - type: Transform @@ -129831,6 +131031,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-15.5 parent: 2 + - uid: 21420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 - uid: 21445 components: - type: Transform @@ -131438,11 +132644,6 @@ entities: rot: -1.5707963267948966 rad pos: 17.5,-45.5 parent: 2 - - uid: 10668 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 2 - uid: 11969 components: - type: Transform @@ -131501,6 +132702,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-41.5 parent: 2 + - uid: 22593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 2278 @@ -131598,11 +132805,6 @@ entities: - type: Transform pos: 0.4601429,-37.34924 parent: 2 - - uid: 10540 - components: - - type: Transform - pos: -30.529837,-18.358828 - parent: 2 - uid: 15360 components: - type: Transform @@ -131907,11 +133109,6 @@ entities: - type: Transform pos: -36.5,-55.5 parent: 2 - - uid: 7623 - components: - - type: Transform - pos: 36.5,-4.5 - parent: 2 - uid: 8887 components: - type: Transform @@ -131957,7 +133154,7 @@ entities: - uid: 12676 components: - type: Transform - pos: -50.456078,-36.383743 + pos: -52.53492,-36.398506 parent: 2 - proto: TreasureCoinGold entities: @@ -133097,11 +134294,6 @@ entities: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 670 - components: - - type: Transform - pos: -30.5,-17.5 - parent: 2 - uid: 686 components: - type: Transform @@ -134060,11 +135252,6 @@ entities: - type: Transform pos: -31.5,-65.5 parent: 2 - - uid: 2553 - components: - - type: Transform - pos: -5.5,-32.5 - parent: 2 - uid: 2557 components: - type: Transform @@ -134390,16 +135577,6 @@ entities: - type: Transform pos: -10.5,-48.5 parent: 2 - - uid: 3210 - components: - - type: Transform - pos: -5.5,-30.5 - parent: 2 - - uid: 3211 - components: - - type: Transform - pos: -4.5,-33.5 - parent: 2 - uid: 3215 components: - type: Transform @@ -135753,16 +136930,6 @@ entities: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 6256 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - - uid: 6262 - components: - - type: Transform - pos: 28.5,-7.5 - parent: 2 - uid: 6286 components: - type: Transform @@ -136725,6 +137892,11 @@ entities: - type: Transform pos: 47.5,1.5 parent: 2 + - uid: 8772 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 - uid: 8774 components: - type: Transform @@ -136750,6 +137922,11 @@ entities: - type: Transform pos: -24.5,24.5 parent: 2 + - uid: 8787 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 - uid: 8796 components: - type: Transform @@ -140512,6 +141689,11 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,-49.5 parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 - uid: 8746 components: - type: Transform @@ -140728,12 +141910,6 @@ entities: - type: Transform pos: 55.5,-19.5 parent: 2 - - uid: 11024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-17.5 - parent: 2 - uid: 11033 components: - type: Transform @@ -142313,6 +143489,17 @@ entities: - type: Transform pos: 43.5,13.5 parent: 2 + - uid: 22259 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 2 - uid: 23036 components: - type: Transform @@ -142325,6 +143512,17 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 2 + - uid: 23112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 - proto: WallSolid entities: - uid: 11 @@ -145662,11 +146860,6 @@ entities: - type: Transform pos: -50.5,-51.5 parent: 2 - - uid: 16923 - components: - - type: Transform - pos: -23.5,-17.5 - parent: 2 - uid: 16924 components: - type: Transform @@ -145677,16 +146870,6 @@ entities: - type: Transform pos: -24.5,-17.5 parent: 2 - - uid: 16928 - components: - - type: Transform - pos: -19.5,-17.5 - parent: 2 - - uid: 16929 - components: - - type: Transform - pos: -20.5,-17.5 - parent: 2 - uid: 16938 components: - type: Transform @@ -145712,11 +146895,6 @@ entities: - type: Transform pos: -44.5,-52.5 parent: 2 - - uid: 16953 - components: - - type: Transform - pos: -22.5,-17.5 - parent: 2 - uid: 17011 components: - type: Transform @@ -146085,6 +147263,11 @@ entities: - type: Transform pos: 40.5,10.5 parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 - proto: WallSolidRust entities: - uid: 2745 @@ -147477,6 +148660,11 @@ entities: parent: 2 - proto: WaterTankFull entities: + - uid: 4640 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 - uid: 6329 components: - type: Transform @@ -147487,11 +148675,6 @@ entities: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 12373 - components: - - type: Transform - pos: 25.5,-50.5 - parent: 2 - uid: 13093 components: - type: Transform @@ -147616,6 +148799,11 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: + - uid: 2617 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 - uid: 3088 components: - type: Transform @@ -147631,11 +148819,6 @@ entities: - type: Transform pos: -5.5,-11.5 parent: 2 - - uid: 12377 - components: - - type: Transform - pos: 25.5,-49.5 - parent: 2 - uid: 12738 components: - type: Transform @@ -148604,6 +149787,12 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-33.5 parent: 2 + - uid: 616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 - uid: 2249 components: - type: Transform @@ -149070,6 +150259,22 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-42.5 parent: 2 + - uid: 21157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 - proto: Wirecutter entities: - uid: 7428 @@ -149207,7 +150412,7 @@ entities: - uid: 12677 components: - type: Transform - pos: -50.518612,-36.425438 + pos: -52.48281,-36.374268 parent: 2 - uid: 15383 components: diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml index 9a153ec696e..2ac152f2223 100644 --- a/Resources/Maps/elkridge.yml +++ b/Resources/Maps/elkridge.yml @@ -136,11 +136,11 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAYwAAAAADYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAfgAAAAADfgAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAGBwAAAAAFfgAAAAADBwAAAAAGfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAEfgAAAAACfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAYwAAAAADYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAfgAAAAADfgAAAAAAfgAAAAACfgAAAAADBwAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAABwAAAAAGBwAAAAAFfgAAAAADBwAAAAAGfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAEfgAAAAACfgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -228,7 +228,7 @@ entities: version: 6 1,2: ind: 1,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAACDAAAAAADDAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADDAAAAAABDAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAACDAAAAAADDAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAABZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADDAAAAAABDAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAABZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAAAZAAAAAABggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACIAAAAAABIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -236,7 +236,7 @@ entities: version: 6 2,2: ind: 2,2 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 @@ -276,7 +276,7 @@ entities: version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -288,7 +288,7 @@ entities: version: 6 2,3: ind: 2,3 - tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 @@ -2504,15 +2504,15 @@ entities: 9768: 14,3 9769: 13,3 - node: - color: '#722C1E93' + color: '#79150096' id: CheckerNESW decals: - 5850: -10,-17 - 5851: -10,-18 - 5852: -10,-19 - 5853: -7,-17 - 5854: -7,-18 - 5855: -7,-19 + 11064: -10,-17 + 11065: -10,-18 + 11066: -10,-19 + 11067: -7,-17 + 11068: -7,-18 + 11069: -7,-19 - node: color: '#A4610696' id: CheckerNESW @@ -2947,10 +2947,8 @@ entities: 6026: 18,2 6040: 6,-16 6041: 8,-16 - 6060: -10,-19 6061: -9,-17 6062: -8,-18 - 6063: -7,-17 6126: -22,-46 6157: 26,38 6158: 27,34 @@ -3322,6 +3320,8 @@ entities: 10231: -9,-16 10232: -8,-20 10238: -29,-32 + 11070: -10,-19 + 11071: -7,-17 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3737,9 +3737,7 @@ entities: 6035: 17,2 6036: 17,0 6043: 9,-16 - 6067: -10,-17 6068: -9,-19 - 6069: -7,-19 6135: 6,17 6164: 27,35 6165: 26,37 @@ -4047,6 +4045,7 @@ entities: 10234: -9,-20 10239: -29,-31 10240: -24,-35 + 11074: -7,-18 - node: color: '#FFFFFFFF' id: DirtLight @@ -4072,7 +4071,6 @@ entities: 1847: 9,10 1848: 10,8 1849: 1,10 - 1850: -1,8 1851: 1,10 1852: 4,9 1854: 5,17 @@ -4325,8 +4323,6 @@ entities: 5583: 14,30 6001: 6,21 6038: 17,0 - 6070: -7,-19 - 6071: -7,-18 6168: 27,36 6242: 39,-36 6243: 22,-40 @@ -4480,6 +4476,7 @@ entities: 10193: 9,24 10194: 10,23 10233: -8,-16 + 11075: -10,-17 - node: color: '#FFFFFFFF' id: DirtMedium @@ -4724,7 +4721,6 @@ entities: 6031: 18,-2 6042: 7,-16 6064: -8,-19 - 6065: -10,-18 6066: -8,-17 6124: -37,-39 6160: 26,36 @@ -5012,6 +5008,8 @@ entities: 10198: -37,-16 10199: -34,-14 10204: -9,22 + 11072: -10,-18 + 11073: -7,-19 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -6400,7 +6398,6 @@ entities: 10473: 9,-30 10474: 14,-29 10475: 12,-32 - 10476: 12,-34 10485: 21,-17 10491: 20,-27 10492: 23,-27 @@ -6515,6 +6512,7 @@ entities: 11047: -5,11 11061: 23,3 11062: 9,-28 + 11077: 12,-35 - node: color: '#64646493' id: WarnLineGreyscaleE @@ -6950,7 +6948,6 @@ entities: 10467: 4,-30 10468: 9,-30 10469: 12,-32 - 10470: 12,-34 10471: 14,-29 10486: 21,-17 10487: 23,-30 @@ -7068,6 +7065,7 @@ entities: 11045: -4,4 11060: 23,3 11063: 9,-28 + 11076: 12,-35 - node: color: '#D4D4D496' id: WarnLineW @@ -7353,7 +7351,6 @@ entities: decals: 1482: -2,3 1515: 0,3 - 1516: -1,8 1523: 3,8 6249: -29,-4 6470: 0,19 @@ -7382,6 +7379,7 @@ entities: 10218: 55,-2 10219: 56,-3 10311: -21,-27 + 11078: -1,8 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -7632,7 +7630,6 @@ entities: color: '#FFFFFFFF' id: burnt3 decals: - 3421: -1,8 3422: 3,9 3426: 3,10 3429: 2,4 @@ -9795,6 +9792,7 @@ entities: devices: - 947 - 946 + - 12722 - uid: 1136 components: - type: MetaData @@ -9846,9 +9844,9 @@ entities: parent: 2 - type: DeviceList devices: - - 12415 - - 12416 - - 8248 + - 1395 + - 12516 + - 12541 - uid: 3330 components: - type: MetaData @@ -9859,9 +9857,9 @@ entities: parent: 2 - type: DeviceList devices: - - 12432 - - 12434 - - 12433 + - 11812 + - 12426 + - 8895 - uid: 3340 components: - type: MetaData @@ -9874,7 +9872,7 @@ entities: devices: - 10895 - 10894 - - 12537 + - 14465 - 12539 - 12538 - uid: 5275 @@ -9979,8 +9977,8 @@ entities: parent: 2 - type: DeviceList devices: - - 10995 - - 11001 + - 12445 + - 1904 - 10998 - 10874 - 10875 @@ -10008,8 +10006,8 @@ entities: parent: 2 - type: DeviceList devices: - - 11114 - - 11113 + - 8745 + - 11228 - 11118 - 10881 - 10880 @@ -10064,7 +10062,7 @@ entities: devices: - 11235 - 11222 - - 11228 + - 14467 - uid: 11254 components: - type: MetaData @@ -10131,8 +10129,8 @@ entities: - type: DeviceList devices: - 11288 - - 11313 - - 11310 + - 8834 + - 1908 - uid: 11296 components: - type: MetaData @@ -10257,9 +10255,9 @@ entities: parent: 2 - type: DeviceList devices: - - 11888 - - 11886 - - 11889 + - 2532 + - 14458 + - 14459 - uid: 11891 components: - type: MetaData @@ -10280,9 +10278,11 @@ entities: parent: 2 - type: DeviceList devices: - - 11837 - - 11839 - - 11836 + - 11873 + - 12494 + - 12416 + - 10918 + - 15798 - uid: 11894 components: - type: MetaData @@ -10293,9 +10293,10 @@ entities: parent: 2 - type: DeviceList devices: - - 11844 - - 11842 - - 11843 + - 14455 + - 14457 + - 14456 + - 10918 - uid: 11895 components: - type: MetaData @@ -10306,9 +10307,9 @@ entities: parent: 2 - type: DeviceList devices: - - 11851 + - 12417 - 11845 - - 11850 + - 11808 - uid: 11896 components: - type: MetaData @@ -10621,9 +10622,9 @@ entities: parent: 2 - type: DeviceList devices: - - 10479 - - 10481 - - 10480 + - 12497 + - 8888 + - 2768 - 13804 - 13805 - uid: 13789 @@ -10884,9 +10885,9 @@ entities: parent: 2 - type: DeviceList devices: - - 8744 + - 8835 - 8742 - - 8743 + - 12175 - 10852 - 10853 - 10854 @@ -10949,7 +10950,7 @@ entities: devices: - 8686 - 8677 - - 15724 + - 12546 - uid: 13816 components: - type: MetaData @@ -10989,8 +10990,8 @@ entities: parent: 2 - type: DeviceList devices: - - 8745 - - 8755 + - 5762 + - 1428 - 8754 - uid: 13819 components: @@ -11100,9 +11101,9 @@ entities: parent: 2 - type: DeviceList devices: - - 12426 - - 12423 - 12425 + - 2835 + - 10412 - 10907 - uid: 13860 components: @@ -11125,8 +11126,8 @@ entities: - 10889 - 10887 - 13853 - - 12447 - - 12446 + - 12534 + - 14461 - uid: 13862 components: - type: MetaData @@ -11160,8 +11161,8 @@ entities: - 10892 - 10893 - 12543 - - 12546 - - 12545 + - 8382 + - 11839 - 12544 - 12542 - 10894 @@ -12249,21 +12250,10 @@ entities: pos: 12.5,-31.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 2768: - - DoorStatus: DoorBolt - - uid: 2768 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 2749: + 8435: - DoorStatus: DoorBolt - uid: 4194 components: @@ -12294,6 +12284,18 @@ entities: linkedPorts: 7698: - DoorStatus: DoorBolt + - uid: 8435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2749: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 3562 @@ -13221,7 +13223,7 @@ entities: pos: 47.5,5.5 parent: 2 - type: Door - secondsUntilStateChange: -248584.16 + secondsUntilStateChange: -256594.28 state: Opening - type: DeviceLinkSource lastSignals: @@ -13941,22 +13943,22 @@ entities: - type: DeviceNetwork deviceLists: - 11255 - - uid: 6129 + - uid: 5762 components: - type: Transform - pos: -4.5,-41.5 + pos: 20.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11864 - - uid: 8248 + - 13818 + - uid: 6129 components: - type: Transform - pos: -2.5,21.5 + pos: -4.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3078 + - 11864 - uid: 8623 components: - type: Transform @@ -14013,14 +14015,6 @@ entities: - type: DeviceNetwork deviceLists: - 13811 - - uid: 8755 - components: - - type: Transform - pos: 21.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13818 - uid: 8758 components: - type: Transform @@ -14061,6 +14055,14 @@ entities: - type: DeviceNetwork deviceLists: - 13821 + - uid: 8834 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11291 - uid: 9009 components: - type: Transform @@ -14141,14 +14143,6 @@ entities: - type: DeviceNetwork deviceLists: - 12730 - - uid: 10481 - components: - - type: Transform - pos: 27.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12732 - uid: 10553 components: - type: Transform @@ -14165,14 +14159,6 @@ entities: - type: DeviceNetwork deviceLists: - 11083 - - uid: 11001 - components: - - type: Transform - pos: -31.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11082 - uid: 11002 components: - type: Transform @@ -14285,14 +14271,6 @@ entities: - type: DeviceNetwork deviceLists: - 11297 - - uid: 11313 - components: - - type: Transform - pos: -23.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11291 - uid: 11315 components: - type: Transform @@ -14501,22 +14479,6 @@ entities: - type: DeviceNetwork deviceLists: - 11897 - - uid: 11839 - components: - - type: Transform - pos: -7.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11893 - - uid: 11844 - components: - - type: Transform - pos: -2.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11894 - uid: 11845 components: - type: Transform @@ -14533,14 +14495,6 @@ entities: - type: DeviceNetwork deviceLists: - 11891 - - uid: 11886 - components: - - type: Transform - pos: 0.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11890 - uid: 11908 components: - type: Transform @@ -14613,18 +14567,18 @@ entities: - type: DeviceNetwork deviceLists: - 13851 - - uid: 12423 + - uid: 12425 components: - type: Transform - pos: 3.5,20.5 + pos: 3.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - 13852 - - uid: 12434 + - uid: 12426 components: - type: Transform - pos: 12.5,20.5 + pos: 13.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -14637,6 +14591,14 @@ entities: - type: DeviceNetwork deviceLists: - 13806 + - uid: 12445 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11082 - uid: 12449 components: - type: Transform @@ -14662,6 +14624,22 @@ entities: - type: DeviceNetwork deviceLists: - 13864 + - uid: 12494 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - uid: 12497 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 - uid: 12513 components: - type: Transform @@ -14678,14 +14656,30 @@ entities: - type: DeviceNetwork deviceLists: - 3340 - - uid: 12546 + - uid: 12541 components: - type: Transform - pos: 11.5,36.5 + pos: -2.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3078 + - uid: 12543 + components: + - type: Transform + pos: 12.5,36.5 parent: 2 - type: DeviceNetwork deviceLists: - 13863 + - uid: 12546 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13815 - uid: 12547 components: - type: Transform @@ -14795,6 +14789,22 @@ entities: - type: DeviceNetwork deviceLists: - 13873 + - uid: 14456 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - uid: 14459 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 - uid: 14761 components: - type: Transform @@ -14827,14 +14837,6 @@ entities: - type: DeviceNetwork deviceLists: - 15650 - - uid: 15724 - components: - - type: Transform - pos: 38.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13815 - uid: 15943 components: - type: Transform @@ -15737,6 +15739,16 @@ entities: - type: Transform pos: 10.351225,28.436876 parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 32.289467,-37.550957 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: 33.39071,57.45458 + parent: 2 - uid: 16380 components: - type: Transform @@ -16465,6 +16477,14 @@ entities: - type: Transform pos: 27.824532,35.632626 parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 14422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 2 - proto: Beaker entities: - uid: 430 @@ -16977,7 +16997,7 @@ entities: - uid: 16015 components: - type: Transform - pos: -25.685099,-5.386759 + pos: -25.568075,-3.9280953 parent: 2 - proto: BoxFolderClipboard entities: @@ -17052,7 +17072,7 @@ entities: - uid: 16009 components: - type: Transform - pos: 22.813547,-10.502799 + pos: 23.632082,-10.817182 parent: 2 - uid: 16010 components: @@ -17232,6 +17252,11 @@ entities: - type: Transform pos: 11.5,2.5 parent: 2 + - uid: 4601 + components: + - type: Transform + pos: 22.350832,-10.207807 + parent: 2 - uid: 4701 components: - type: Transform @@ -17295,6 +17320,53 @@ entities: - type: Transform pos: -26.5,-0.5 parent: 2 + - uid: 14425 + components: + - type: Transform + pos: 22.663332,-10.207807 + parent: 2 + - uid: 14438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.293873,19.456495 + parent: 2 + - uid: 14439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.715748,19.456495 + parent: 2 + - uid: 14442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.7451677,-16.472116 + parent: 2 + - uid: 14445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.7451677,-16.784616 + parent: 2 + - uid: 14509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.628464,-9.528134 + parent: 2 + - uid: 14510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.315964,-9.528134 + parent: 2 - uid: 16000 components: - type: Transform @@ -17358,6 +17430,17 @@ entities: rot: -1.5707963267948966 rad pos: 39.5,3.5 parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 26.568535,5.7748127 + parent: 2 + - uid: 14434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 - uid: 15862 components: - type: Transform @@ -26767,6 +26850,11 @@ entities: - type: Transform pos: 23.5,38.5 parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 - uid: 14737 components: - type: Transform @@ -27702,11 +27790,6 @@ entities: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 1395 - components: - - type: Transform - pos: 29.5,54.5 - parent: 2 - uid: 1397 components: - type: Transform @@ -27747,11 +27830,6 @@ entities: - type: Transform pos: 32.5,52.5 parent: 2 - - uid: 1428 - components: - - type: Transform - pos: 31.5,53.5 - parent: 2 - uid: 1429 components: - type: Transform @@ -27812,11 +27890,6 @@ entities: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 1618 - components: - - type: Transform - pos: 29.5,53.5 - parent: 2 - uid: 1633 components: - type: Transform @@ -28642,11 +28715,6 @@ entities: - type: Transform pos: 31.5,46.5 parent: 2 - - uid: 5154 - components: - - type: Transform - pos: 31.5,45.5 - parent: 2 - uid: 5220 components: - type: Transform @@ -29122,11 +29190,6 @@ entities: - type: Transform pos: 31.5,40.5 parent: 2 - - uid: 6414 - components: - - type: Transform - pos: 31.5,41.5 - parent: 2 - uid: 6415 components: - type: Transform @@ -29182,11 +29245,6 @@ entities: - type: Transform pos: 31.5,50.5 parent: 2 - - uid: 6467 - components: - - type: Transform - pos: 31.5,49.5 - parent: 2 - uid: 6472 components: - type: Transform @@ -30032,11 +30090,6 @@ entities: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 7809 - components: - - type: Transform - pos: 31.5,37.5 - parent: 2 - uid: 7810 components: - type: Transform @@ -30152,16 +30205,66 @@ entities: - type: Transform pos: 34.5,-11.5 parent: 2 + - uid: 8248 + components: + - type: Transform + pos: 35.5,53.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 - uid: 8388 components: - type: Transform pos: 13.5,-53.5 parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 35.5,54.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 37.5,53.5 + parent: 2 - uid: 8410 components: - type: Transform pos: 14.5,-53.5 parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 35.5,50.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 35.5,45.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: 35.5,49.5 + parent: 2 - uid: 8845 components: - type: Transform @@ -33473,11 +33576,6 @@ entities: - type: Transform pos: -1.5,-37.5 parent: 2 - - uid: 5762 - components: - - type: Transform - pos: -0.5,-37.5 - parent: 2 - uid: 5763 components: - type: Transform @@ -34828,11 +34926,6 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 - - uid: 7537 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - uid: 7538 components: - type: Transform @@ -37158,11 +37251,21 @@ entities: - type: Transform pos: 38.5,-15.5 parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 - uid: 11884 components: - type: Transform pos: -6.5,-37.5 parent: 2 + - uid: 11886 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 - uid: 12042 components: - type: Transform @@ -38192,6 +38295,25 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-19.5 parent: 2 +- proto: Candle + entities: + - uid: 14478 + components: + - type: Transform + pos: -33.3204,-20.278595 + parent: 2 +- proto: CandleSmall + entities: + - uid: 14479 + components: + - type: Transform + pos: -33.53915,-20.309845 + parent: 2 + - uid: 14480 + components: + - type: Transform + pos: -33.3829,-20.528595 + parent: 2 - proto: CaptainIDCard entities: - uid: 11350 @@ -38390,6 +38512,12 @@ entities: rot: 3.141592653589793 rad pos: 47.5,30.5 parent: 2 + - uid: 986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 2 - uid: 994 components: - type: Transform @@ -38881,11 +39009,6 @@ entities: - type: Transform pos: 16.5,-50.5 parent: 2 - - uid: 2835 - components: - - type: Transform - pos: 29.5,49.5 - parent: 2 - uid: 2943 components: - type: Transform @@ -39074,6 +39197,11 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-39.5 parent: 2 + - uid: 6414 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 - uid: 6720 components: - type: Transform @@ -39104,11 +39232,6 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 2 - - uid: 8287 - components: - - type: Transform - pos: 31.5,45.5 - parent: 2 - uid: 8288 components: - type: Transform @@ -39299,11 +39422,6 @@ entities: - type: Transform pos: 16.5,-35.5 parent: 2 - - uid: 8374 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - uid: 8375 components: - type: Transform @@ -39319,11 +39437,6 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 - - uid: 8378 - components: - - type: Transform - pos: 29.5,40.5 - parent: 2 - uid: 8379 components: - type: Transform @@ -39339,11 +39452,6 @@ entities: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 8382 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - uid: 8383 components: - type: Transform @@ -39359,11 +39467,6 @@ entities: - type: Transform pos: 16.5,-47.5 parent: 2 - - uid: 8386 - components: - - type: Transform - pos: 29.5,44.5 - parent: 2 - uid: 8387 components: - type: Transform @@ -39394,81 +39497,21 @@ entities: - type: Transform pos: 14.5,-38.5 parent: 2 - - uid: 8394 - components: - - type: Transform - pos: 29.5,46.5 - parent: 2 - - uid: 8395 - components: - - type: Transform - pos: 29.5,45.5 - parent: 2 - - uid: 8396 - components: - - type: Transform - pos: 31.5,37.5 - parent: 2 - - uid: 8397 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - uid: 8398 components: - type: Transform pos: 11.5,-35.5 parent: 2 - - uid: 8399 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - uid: 8400 components: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 8401 - components: - - type: Transform - pos: 13.5,-34.5 - parent: 2 - uid: 8402 components: - type: Transform pos: 13.5,-35.5 parent: 2 - - uid: 8403 - components: - - type: Transform - pos: 29.5,48.5 - parent: 2 - - uid: 8433 - components: - - type: Transform - pos: 31.5,49.5 - parent: 2 - - uid: 8435 - components: - - type: Transform - pos: 31.5,41.5 - parent: 2 - - uid: 8436 - components: - - type: Transform - pos: 29.5,38.5 - parent: 2 - - uid: 8437 - components: - - type: Transform - pos: 29.5,36.5 - parent: 2 - - uid: 8438 - components: - - type: Transform - pos: 29.5,37.5 - parent: 2 - uid: 8439 components: - type: Transform @@ -39649,6 +39692,11 @@ entities: - type: Transform pos: 42.5,-24.5 parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 - uid: 9122 components: - type: Transform @@ -39664,21 +39712,6 @@ entities: - type: Transform pos: 16.5,-55.5 parent: 2 - - uid: 10412 - components: - - type: Transform - pos: 29.5,52.5 - parent: 2 - - uid: 10449 - components: - - type: Transform - pos: 29.5,53.5 - parent: 2 - - uid: 10455 - components: - - type: Transform - pos: 29.5,54.5 - parent: 2 - uid: 10507 components: - type: Transform @@ -40519,11 +40552,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,31.5 parent: 2 - - uid: 10680 - components: - - type: Transform - pos: 31.5,53.5 - parent: 2 - uid: 10682 components: - type: Transform @@ -41228,11 +41256,6 @@ entities: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 12722 - components: - - type: Transform - pos: 29.5,50.5 - parent: 2 - uid: 12832 components: - type: Transform @@ -41624,12 +41647,148 @@ entities: - type: Transform pos: -31.5,27.5 parent: 2 + - uid: 14418 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,37.5 + parent: 2 - uid: 14485 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,57.5 parent: 2 + - uid: 14487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,41.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,36.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,37.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,38.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,40.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,41.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,42.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,45.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,44.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,45.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,46.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,49.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,48.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,49.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,50.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,53.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,54.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,53.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,52.5 + parent: 2 - uid: 14674 components: - type: Transform @@ -42172,12 +42331,30 @@ entities: - type: Transform pos: -58.475594,-29.37 parent: 2 + - uid: 6645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.499483,-8.389568 + parent: 2 + - uid: 7537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.67196,57.563953 + parent: 2 - uid: 7636 components: - type: Transform rot: 3.141592653589793 rad pos: 19.551804,39.69655 parent: 2 + - uid: 8527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.39071,57.54833 + parent: 2 - uid: 9609 components: - type: Transform @@ -42189,6 +42366,17 @@ entities: rot: 1.5707963267948966 rad pos: -32.44567,-11.355937 parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 32.633217,-36.41033 + parent: 2 + - uid: 14407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.445717,-37.582207 + parent: 2 - uid: 16366 components: - type: Transform @@ -42837,9 +43025,12 @@ entities: - uid: 3243 components: - type: Transform + anchored: True rot: -1.5707963267948966 rad pos: -36.5,-21.5 parent: 2 + - type: Physics + bodyType: Static - proto: Cigar entities: - uid: 734 @@ -42898,6 +43089,21 @@ entities: - type: Transform pos: 10.5856,28.593126 parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 32.441643,-37.480892 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: 33.488518,-38.059017 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: 33.207268,-38.246517 + parent: 2 - uid: 16383 components: - type: Transform @@ -43414,11 +43620,6 @@ entities: - type: Transform pos: -26.5,-11.5 parent: 2 - - uid: 2663 - components: - - type: Transform - pos: 15.5,-29.5 - parent: 2 - uid: 2987 components: - type: Transform @@ -45063,6 +45264,18 @@ entities: - type: Transform pos: -35.5,-43.5 parent: 2 +- proto: CrateEngineeringSolar + entities: + - uid: 8530 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 - proto: CrateEngineeringThruster entities: - uid: 6179 @@ -49874,6 +50087,30 @@ entities: - type: Transform pos: 19.3704,40.72002 parent: 2 +- proto: DrinkBeerCan + entities: + - uid: 14507 + components: + - type: Transform + pos: 33.79696,57.563953 + parent: 2 +- proto: DrinkBeerGrowler + entities: + - uid: 14401 + components: + - type: Transform + pos: 32.695717,-37.28533 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 32.351967,-37.050957 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: 33.343834,57.98583 + parent: 2 - proto: DrinkBottleOfNothingFull entities: - uid: 12901 @@ -49922,7 +50159,7 @@ entities: - uid: 3228 components: - type: Transform - pos: -24.046377,-32.343918 + pos: -23.944841,-32.33565 parent: 2 - uid: 5906 components: @@ -53549,6 +53786,8 @@ entities: deviceLists: - 14661 - 15797 + - 11894 + - 11893 - uid: 12011 components: - type: Transform @@ -53656,6 +53895,7 @@ entities: deviceLists: - 15797 - 14657 + - 11893 - proto: Fireplace entities: - uid: 4697 @@ -53719,13 +53959,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 5315 - components: - - type: Transform - pos: -10.5,17.5 - parent: 2 - - type: Fixtures - fixtures: {} - uid: 5318 components: - type: Transform @@ -53747,6 +53980,13 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 12257 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 15928 components: - type: Transform @@ -53816,14 +54056,14 @@ entities: - uid: 10514 components: - type: Transform - pos: -31.274319,-9.428044 + pos: -31.280937,-9.671796 parent: 2 - proto: FoodBoxDonkpocketSpicy entities: - uid: 10515 components: - type: Transform - pos: -30.868069,-9.615544 + pos: -30.82406,-9.827996 parent: 2 - proto: FoodBoxDonut entities: @@ -53987,6 +54227,13 @@ entities: - type: Transform pos: 37.078346,15.596962 parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 14421 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 - proto: GasFilterFlipped entities: - uid: 2328 @@ -54408,6 +54655,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2663 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3903 components: - type: Transform @@ -54548,14 +54802,6 @@ entities: - type: Transform pos: 30.5,-31.5 parent: 2 - - uid: 8524 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8525 components: - type: Transform @@ -54572,22 +54818,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8527 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8529 components: - type: Transform @@ -54674,6 +54904,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8755 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8762 components: - type: Transform @@ -54907,6 +55144,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10769 components: - type: Transform @@ -54969,6 +55222,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10964 components: - type: Transform @@ -54976,6 +55237,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11040 components: - type: Transform @@ -55015,6 +55284,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11113 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11129 components: - type: Transform @@ -55194,10 +55510,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11312 + - uid: 11310 components: - type: Transform - pos: -22.5,-33.5 + pos: -9.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11311 + components: + - type: Transform + pos: -23.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -55512,23 +55835,46 @@ entities: pos: -3.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11852 + color: '#0055CCFF' + - uid: 11843 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-34.5 + pos: 25.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11873 + color: '#0055CCFF' + - uid: 11844 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-37.5 + pos: 23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11848 + components: + - type: Transform + pos: 26.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11913 components: - type: Transform @@ -55646,13 +55992,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12257 + - uid: 12254 components: - type: Transform - pos: 12.5,20.5 + rot: 1.5707963267948966 rad + pos: 28.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 12259 components: - type: Transform @@ -55841,41 +56188,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12417 - components: - - type: Transform - pos: -1.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12430 + - uid: 12415 components: - type: Transform - pos: 4.5,21.5 + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12431 + - uid: 12447 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12444 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,25.5 + pos: -26.5,11.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -55917,6 +56242,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12514 components: - type: Transform @@ -55933,6 +56274,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12520 components: - type: Transform @@ -55949,13 +56298,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12534 - components: - - type: Transform - pos: 19.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12535 components: - type: Transform @@ -55979,10 +56321,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12541 + - uid: 12545 components: - type: Transform - pos: 12.5,37.5 + rot: 1.5707963267948966 rad + pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56128,6 +56471,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 14464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14692 components: - type: Transform @@ -56250,6 +56617,24 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-17.5 parent: 2 + - uid: 2580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-33.5 + parent: 2 - uid: 2699 components: - type: Transform @@ -56317,13 +56702,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11112 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11184 components: - type: Transform @@ -56380,10 +56758,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11817 + - uid: 11888 components: - type: Transform - pos: -6.5,-34.5 + pos: -3.5,17.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -56440,6 +56818,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-23.5 parent: 2 + - uid: 2693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 - uid: 2984 components: - type: Transform @@ -57747,11 +58131,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2580 - components: - - type: Transform - pos: 30.5,-33.5 - parent: 2 - uid: 2581 components: - type: Transform @@ -57778,30 +58157,12 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-31.5 parent: 2 - - uid: 2693 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-31.5 - parent: 2 - uid: 2694 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-31.5 parent: 2 - - uid: 2695 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 2 - - uid: 2696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-31.5 - parent: 2 - uid: 2721 components: - type: Transform @@ -58092,6 +58453,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5335 components: - type: Transform @@ -58275,12 +58644,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,-18.5 parent: 2 - - uid: 7889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 2 - uid: 7927 components: - type: Transform @@ -58307,6 +58670,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8466 components: - type: Transform @@ -58339,14 +58710,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8519 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8520 components: - type: Transform @@ -58355,30 +58718,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8531 components: - type: Transform @@ -59401,43 +59740,43 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8830 + - uid: 8818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-6.5 + pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8831 + - uid: 8830 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-6.5 + pos: 23.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8832 + - uid: 8831 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-6.5 + pos: 24.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8834 + - uid: 8832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-6.5 + pos: 25.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8835 + - uid: 8833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-6.5 + pos: 27.5,8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -59544,22 +59883,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8895 + - uid: 8896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-7.5 + pos: -3.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 8897 components: - type: Transform @@ -59979,14 +60309,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10478 + - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + rot: -1.5707963267948966 rad + pos: 12.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10552 components: - type: Transform @@ -60209,14 +60555,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 10963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10965 components: - type: Transform @@ -60337,6 +60675,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10989 components: - type: Transform @@ -60385,6 +60731,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11007 components: - type: Transform @@ -60756,14 +61110,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11108 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11109 components: - type: Transform @@ -60780,30 +61126,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11124 components: - type: Transform @@ -61489,14 +61811,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11311 + - uid: 11312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-33.5 + rot: -1.5707963267948966 rad + pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 11322 components: - type: Transform @@ -63509,14 +63831,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11790 components: - type: Transform @@ -63544,7 +63858,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-33.5 + pos: -2.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -63559,11 +63873,10 @@ entities: - uid: 11802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-33.5 + pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11803 components: - type: Transform @@ -63596,14 +63909,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11809 components: - type: Transform @@ -63619,14 +63924,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11811 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11813 components: - type: Transform @@ -63659,6 +63956,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11817 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11821 components: - type: Transform @@ -63739,40 +64043,38 @@ entities: - uid: 11840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-33.5 + pos: 11.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11846 + - uid: 11842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-34.5 + pos: 11.5,35.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11847 + - uid: 11846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-34.5 + pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11848 + - uid: 11849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-34.5 + rot: 1.5707963267948966 rad + pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11849 + - uid: 11852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-33.5 + rot: 3.141592653589793 rad + pos: -7.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -63827,6 +64129,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11877 components: - type: Transform @@ -63861,11 +64171,17 @@ entities: - uid: 11887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-38.5 + pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' + - uid: 11889 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11916 components: - type: Transform @@ -65614,14 +65930,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12255 components: - type: Transform @@ -66304,13 +66612,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12418 - components: - - type: Transform - pos: -1.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12419 components: - type: Transform @@ -66332,6 +66633,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12423 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12424 components: - type: Transform @@ -66364,6 +66672,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12432 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12438 components: - type: Transform @@ -66412,6 +66751,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12450 components: - type: Transform @@ -66555,14 +66902,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12490 components: - type: Transform @@ -66579,13 +66918,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12492 - components: - - type: Transform - pos: 12.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12493 components: - type: Transform @@ -66602,14 +66934,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12498 components: - type: Transform @@ -66633,13 +66957,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12501 - components: - - type: Transform - pos: 12.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12502 components: - type: Transform @@ -66719,13 +67036,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12519 - components: - - type: Transform - pos: 12.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12522 components: - type: Transform @@ -66822,6 +67132,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12553 components: - type: Transform @@ -67251,6 +67569,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14707 components: - type: Transform @@ -67490,6 +67840,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2471 components: - type: Transform @@ -67751,21 +68109,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8523 - components: - - type: Transform - pos: 25.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8547 components: - type: Transform @@ -67914,14 +68257,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8833 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8840 components: - type: Transform @@ -67952,14 +68287,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8896 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 8900 components: - type: Transform @@ -68097,6 +68424,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10555 components: - type: Transform @@ -68105,6 +68440,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 10976 components: - type: Transform @@ -68136,14 +68479,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10985 components: - type: Transform @@ -68203,10 +68538,10 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,17.5 + pos: -31.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11116 components: - type: Transform @@ -68215,6 +68550,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11130 components: - type: Transform @@ -68322,6 +68665,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11336 components: - type: Transform @@ -68519,6 +68870,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 11789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11795 components: - type: Transform @@ -68530,30 +68889,24 @@ entities: - uid: 11798 components: - type: Transform - pos: -8.5,-33.5 + rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-33.5 + pos: -3.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11804 + - uid: 11811 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11812 - components: - - type: Transform - pos: -2.5,-33.5 + pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -68572,32 +68925,39 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11853 + - uid: 11836 components: - type: Transform - pos: 1.5,-34.5 + rot: 3.141592653589793 rad + pos: 12.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11854 + color: '#0055CCFF' + - uid: 11850 components: - type: Transform - pos: 0.5,-33.5 + pos: -10.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11872 + - uid: 11851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-38.5 + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11853 + components: + - type: Transform + pos: 1.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11881 + - uid: 11854 components: - type: Transform - pos: -0.5,-37.5 + pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -68767,14 +69127,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12175 - components: - - type: Transform - pos: -3.5,17.5 + pos: 11.5,33.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -68991,6 +69344,28 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12433 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12444 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12459 components: - type: Transform @@ -69028,6 +69403,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12488 components: - type: Transform @@ -69042,14 +69425,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12495 components: - type: Transform @@ -69058,14 +69433,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 13826 components: - type: Transform @@ -69489,6 +69856,17 @@ entities: - 816 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2627 components: - type: Transform @@ -69500,6 +69878,16 @@ entities: - 13870 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2768 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4464 components: - type: Transform @@ -69647,14 +70035,15 @@ entities: - 13812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8744 + - uid: 8745 components: - type: Transform - pos: 23.5,6.5 + rot: 3.141592653589793 rad + pos: -10.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13811 + - 11119 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8754 @@ -69721,6 +70110,16 @@ entities: - 16172 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 8835 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 8975 components: - type: Transform @@ -69783,34 +70182,35 @@ entities: - 13947 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10476 + - uid: 10412 components: - type: Transform - pos: 36.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12729 + - 13852 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10477 + - uid: 10476 components: - type: Transform - pos: 36.5,-1.5 + pos: 36.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12730 + - 12729 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10480 + - uid: 10477 components: - type: Transform - pos: 28.5,-5.5 + pos: 36.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12732 + - 12730 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10717 @@ -69889,16 +70289,6 @@ entities: - 11081 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11114 - components: - - type: Transform - pos: -10.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11122 components: - type: Transform @@ -70254,70 +70644,67 @@ entities: - 11899 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11818 + - uid: 11808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-38.5 + rot: -1.5707963267948966 rad + pos: 1.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11897 + - 11895 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11833 + - uid: 11812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-33.5 + pos: 13.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11896 + - 3330 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11837 + - uid: 11818 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-35.5 + pos: -11.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11893 + - 11897 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11843 + - uid: 11833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11894 + - 11896 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11851 + - uid: 11839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-33.5 + pos: 12.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11895 + - 13863 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11888 + - uid: 11873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 + pos: -7.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11890 + - 11893 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11909 @@ -70429,37 +70816,6 @@ entities: - 13851 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12415 - components: - - type: Transform - pos: -2.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3078 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12425 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13852 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12433 - components: - - type: Transform - pos: 13.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3330 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12437 components: - type: Transform @@ -70471,17 +70827,6 @@ entities: - 13806 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13860 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 12453 components: - type: Transform @@ -70527,31 +70872,31 @@ entities: - 13862 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12538 + - uid: 12516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,38.5 + pos: -2.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3340 + - 3078 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12542 + - uid: 12538 components: - type: Transform - pos: 8.5,35.5 + rot: -1.5707963267948966 rad + pos: 19.5,38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13863 + - 3340 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12543 + - uid: 12542 components: - type: Transform - pos: 11.5,35.5 + pos: 8.5,35.5 parent: 2 - type: DeviceNetwork deviceLists: @@ -70663,6 +71008,27 @@ entities: - 13872 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14461 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14759 components: - type: Transform @@ -70786,12 +71152,47 @@ entities: - 816 - type: AtmosPipeColor color: '#990000FF' - - uid: 986 + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3078 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13818 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1904 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11082 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1908 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,8.5 + pos: -23.5,-34.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 11291 - type: AtmosPipeColor color: '#990000FF' - uid: 2691 @@ -70804,6 +71205,16 @@ entities: - 811 - type: AtmosPipeColor color: '#990000FF' + - uid: 2835 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13852 + - type: AtmosPipeColor + color: '#990000FF' - uid: 4480 components: - type: Transform @@ -70950,6 +71361,17 @@ entities: - 1136 - type: AtmosPipeColor color: '#990000FF' + - uid: 8382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8622 components: - type: Transform @@ -71024,28 +71446,6 @@ entities: - 13812 - type: AtmosPipeColor color: '#990000FF' - - uid: 8743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13811 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 8745 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13818 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8757 components: - type: Transform @@ -71101,6 +71501,28 @@ entities: - 16172 - type: AtmosPipeColor color: '#990000FF' + - uid: 8888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3330 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9007 components: - type: Transform @@ -71166,16 +71588,6 @@ entities: - 12730 - type: AtmosPipeColor color: '#990000FF' - - uid: 10479 - components: - - type: Transform - pos: 26.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12732 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10718 components: - type: Transform @@ -71198,16 +71610,6 @@ entities: - 13797 - type: AtmosPipeColor color: '#990000FF' - - uid: 10995 - components: - - type: Transform - pos: -32.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11082 - - type: AtmosPipeColor - color: '#990000FF' - uid: 10996 components: - type: Transform @@ -71251,16 +71653,6 @@ entities: - 11081 - type: AtmosPipeColor color: '#990000FF' - - uid: 11113 - components: - - type: Transform - pos: -9.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11119 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11121 components: - type: Transform @@ -71318,12 +71710,11 @@ entities: - uid: 11228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,12.5 + pos: -9.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 11253 + - 11119 - type: AtmosPipeColor color: '#990000FF' - uid: 11259 @@ -71348,17 +71739,6 @@ entities: - 11289 - type: AtmosPipeColor color: '#990000FF' - - uid: 11310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11291 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11320 components: - type: Transform @@ -71602,49 +71982,6 @@ entities: - 11896 - type: AtmosPipeColor color: '#990000FF' - - uid: 11836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11893 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11842 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11894 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11850 - components: - - type: Transform - pos: 4.5,-33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11895 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 11889 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11890 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11911 components: - type: Transform @@ -71675,6 +72012,17 @@ entities: - 13795 - type: AtmosPipeColor color: '#990000FF' + - uid: 12175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12395 components: - type: Transform @@ -71743,34 +72091,21 @@ entities: - uid: 12416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 3078 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12426 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,19.5 + pos: -7.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13852 + - 11893 - type: AtmosPipeColor color: '#990000FF' - - uid: 12432 + - uid: 12417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + pos: 2.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3330 + - 11895 - type: AtmosPipeColor color: '#990000FF' - uid: 12436 @@ -71784,17 +72119,6 @@ entities: - 13806 - type: AtmosPipeColor color: '#990000FF' - - uid: 12446 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13860 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12452 components: - type: Transform @@ -71839,15 +72163,15 @@ entities: - 13862 - type: AtmosPipeColor color: '#990000FF' - - uid: 12537 + - uid: 12534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,36.5 + rot: -1.5707963267948966 rad + pos: 13.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3340 + - 13860 - type: AtmosPipeColor color: '#990000FF' - uid: 12544 @@ -71861,17 +72185,6 @@ entities: - 13863 - type: AtmosPipeColor color: '#990000FF' - - uid: 12545 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13863 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12548 components: - type: Transform @@ -71924,6 +72237,17 @@ entities: - 12729 - type: AtmosPipeColor color: '#990000FF' + - uid: 12722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 822 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13827 components: - type: Transform @@ -71997,6 +72321,47 @@ entities: - 2196 - type: AtmosPipeColor color: '#990000FF' + - uid: 14455 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14458 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14465 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3340 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11253 + - type: AtmosPipeColor + color: '#990000FF' - uid: 14760 components: - type: Transform @@ -74279,6 +74644,11 @@ entities: - type: Transform pos: -28.5,-61.5 parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 - uid: 6481 components: - type: Transform @@ -74543,6 +74913,11 @@ entities: - type: Transform pos: 39.5,44.5 parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 - uid: 7823 components: - type: Transform @@ -75009,6 +75384,11 @@ entities: - type: Transform pos: -4.5,21.5 parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 29.5,52.5 + parent: 2 - uid: 8294 components: - type: Transform @@ -75225,6 +75605,31 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,63.5 parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 29.5,47.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 - uid: 8404 components: - type: Transform @@ -75381,12 +75786,27 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,22.5 parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 - uid: 8687 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-48.5 parent: 2 + - uid: 8743 + components: + - type: Transform + pos: 29.5,51.5 + parent: 2 - uid: 9036 components: - type: Transform @@ -75696,6 +76116,18 @@ entities: - type: Transform pos: 49.5,12.5 parent: 2 + - uid: 14451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 2 - uid: 14460 components: - type: Transform @@ -76635,10 +77067,10 @@ entities: parent: 2 - proto: HolopadGeneralCryosleep entities: - - uid: 14780 + - uid: 5154 components: - type: Transform - pos: 13.5,21.5 + pos: 12.5,20.5 parent: 2 - proto: HolopadGeneralDisposals entities: @@ -76705,10 +77137,10 @@ entities: parent: 2 - proto: HolopadMedicalFront entities: - - uid: 14724 + - uid: 11804 components: - type: Transform - pos: 24.5,5.5 + pos: 27.5,7.5 parent: 2 - proto: HolopadMedicalMedbay entities: @@ -76894,10 +77326,10 @@ entities: parent: 2 - proto: HolopadServiceJanitor entities: - - uid: 14702 + - uid: 14470 components: - type: Transform - pos: -4.5,7.5 + pos: -3.5,6.5 parent: 2 - proto: HolopadServiceKitchen entities: @@ -77256,17 +77688,29 @@ entities: - type: Transform pos: -41.5,32.5 parent: 2 - - uid: 8818 + - uid: 11792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 + - uid: 14449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-10.5 + pos: -18.5,-5.5 parent: 2 - - uid: 11792 + - uid: 14474 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,30.5 + pos: -30.5,-9.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-5.5 parent: 2 - proto: IntercomCommand entities: @@ -77276,6 +77720,14 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-6.5 parent: 2 +- proto: IntercomCommon + entities: + - uid: 14477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 2 - proto: IntercomEngineering entities: - uid: 8816 @@ -77292,6 +77744,13 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,6.5 parent: 2 +- proto: IntercomScience + entities: + - uid: 14476 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 - proto: IntercomSecurity entities: - uid: 1053 @@ -77310,6 +77769,12 @@ entities: - type: Transform pos: -2.5,31.5 parent: 2 + - uid: 14473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 - proto: IntercomService entities: - uid: 15899 @@ -77443,6 +77908,13 @@ entities: - type: Transform pos: 15.512625,-19.595596 parent: 2 +- proto: Joint + entities: + - uid: 14420 + components: + - type: Transform + pos: 32.58913,-37.039413 + parent: 2 - proto: KitchenElectricGrill entities: - uid: 342 @@ -77755,6 +78227,22 @@ entities: - Pressed: Toggle 15279: - Pressed: Toggle + - uid: 14443 + components: + - type: MetaData + name: lockable button (EVA Emergency Access) + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1710: + - Pressed: Toggle + - Pressed: DoorBolt + 1712: + - Pressed: Toggle + - Pressed: DoorBolt - proto: LockableButtonDetective entities: - uid: 13949 @@ -78576,6 +79064,11 @@ entities: - type: Transform pos: -35.5,-35.5 parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 - uid: 6638 components: - type: Transform @@ -78586,11 +79079,6 @@ entities: - type: Transform pos: -1.5,28.5 parent: 2 - - uid: 6645 - components: - - type: Transform - pos: -5.5,-16.5 - parent: 2 - proto: LuxuryPen entities: - uid: 16204 @@ -79136,6 +79624,13 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 2 +- proto: MatchstickSpent + entities: + - uid: 14481 + components: + - type: Transform + pos: -33.679775,-20.57547 + parent: 2 - proto: MaterialCloth entities: - uid: 1790 @@ -80085,6 +80580,13 @@ entities: - type: Transform pos: 38.34971,26.524454 parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 14413 + components: + - type: Transform + pos: 31.53195,-44.930218 + parent: 2 - proto: PlushieDiona entities: - uid: 6310 @@ -80324,6 +80826,11 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 - uid: 13449 components: - type: Transform @@ -81128,6 +81635,12 @@ entities: - type: Transform pos: -23.5,-28.5 parent: 2 + - uid: 14414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-45.5 + parent: 2 - uid: 14685 components: - type: Transform @@ -82848,7 +83361,7 @@ entities: - uid: 9125 components: - type: Transform - pos: 22.335876,-10.484463 + pos: 23.819582,-10.707807 parent: 2 - proto: RagItem entities: @@ -83210,6 +83723,16 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-11.5 parent: 2 + - uid: 14415 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 - uid: 16087 components: - type: Transform @@ -83674,6 +84197,11 @@ entities: - type: Transform pos: -21.5,19.5 parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 - uid: 14784 components: - type: Transform @@ -83699,11 +84227,6 @@ entities: - type: Transform pos: -20.5,13.5 parent: 2 - - uid: 14827 - components: - - type: Transform - pos: -10.5,19.5 - parent: 2 - uid: 14828 components: - type: Transform @@ -84254,11 +84777,6 @@ entities: - type: Transform pos: 7.5,-10.5 parent: 2 - - uid: 14963 - components: - - type: Transform - pos: 14.5,-15.5 - parent: 2 - uid: 14964 components: - type: Transform @@ -84473,16 +84991,6 @@ entities: - type: Transform pos: 3.5,1.5 parent: 2 - - uid: 14501 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 2 - - uid: 14503 - components: - - type: Transform - pos: 40.5,3.5 - parent: 2 - uid: 14550 components: - type: Transform @@ -85642,6 +86150,18 @@ entities: - type: Transform pos: 48.5,3.5 parent: 2 + - uid: 14483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-32.5 + parent: 2 - uid: 14530 components: - type: Transform @@ -86444,11 +86964,6 @@ entities: - type: Transform pos: 38.504963,-1.4723921 parent: 2 - - uid: 6178 - components: - - type: Transform - pos: -39.48294,-43.340965 - parent: 2 - proto: SignAi entities: - uid: 2836 @@ -86563,6 +87078,143 @@ entities: linkedPorts: 2468: - Pressed: Toggle + - uid: 14428 + components: + - type: MetaData + name: signal button (Door A) + - type: Transform + pos: 22.350832,-10.207807 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1186: + - Pressed: Toggle + 7942: + - Pressed: Toggle + - uid: 14431 + components: + - type: MetaData + name: signal button (Door B) + - type: Transform + pos: 22.663332,-10.207807 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2585: + - Pressed: Toggle + 2526: + - Pressed: Toggle + - uid: 14435 + components: + - type: MetaData + name: signal button (Door) + - type: Transform + pos: 26.568535,5.7748127 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3915: + - Pressed: Toggle + 3916: + - Pressed: Toggle + - uid: 14437 + components: + - type: MetaData + name: signal button (Door) + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2589: + - Pressed: Toggle + 2588: + - Pressed: Toggle + - uid: 14440 + components: + - type: MetaData + name: signal button (Door A) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.293873,19.456495 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5202: + - Pressed: Toggle + 5245: + - Pressed: Toggle + - uid: 14441 + components: + - type: MetaData + name: signal button (Door B) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.715748,19.456495 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5200: + - Pressed: Toggle + 5203: + - Pressed: Toggle + - uid: 14446 + components: + - type: MetaData + name: signal button (Door A) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.7451677,-16.472116 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15298: + - Pressed: Toggle + 15299: + - Pressed: Toggle + - uid: 14447 + components: + - type: MetaData + name: signal button (Door B) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.7451677,-16.784616 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1940: + - Pressed: Toggle + 1939: + - Pressed: Toggle + - uid: 14511 + components: + - type: MetaData + name: signal button (Door B) + - type: Transform + rot: 3.141592653589793 rad + pos: -31.624687,-9.531171 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4489: + - Pressed: Toggle + 4514: + - Pressed: Toggle + - uid: 14512 + components: + - type: MetaData + name: signal button (Door A) + - type: Transform + rot: 3.141592653589793 rad + pos: -31.312187,-9.531171 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4570: + - Pressed: Toggle + 4531: + - Pressed: Toggle - uid: 15855 components: - type: MetaData @@ -88746,15 +89398,15 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 2532 + - uid: 11339 components: - type: Transform - pos: 29.5,54.5 + pos: 16.5,-55.5 parent: 2 - - uid: 11339 + - uid: 14506 components: - type: Transform - pos: 16.5,-55.5 + pos: 37.5,54.5 parent: 2 - proto: SolidSecretDoor entities: @@ -92395,6 +93047,12 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-20.5 parent: 2 + - uid: 8528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,57.5 + parent: 2 - uid: 9618 components: - type: Transform @@ -92539,6 +93197,12 @@ entities: - type: Transform pos: 10.5,28.5 parent: 2 + - uid: 14405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-37.5 + parent: 2 - uid: 15215 components: - type: Transform @@ -94323,12 +94987,19 @@ entities: - type: Transform pos: 43.536335,-6.2626333 parent: 2 +- proto: TowelColorNT + entities: + - uid: 14472 + components: + - type: Transform + pos: -42.691574,-36.72419 + parent: 2 - proto: ToyFigurineCaptain entities: - uid: 15427 components: - type: Transform - pos: -25.401356,-5.090101 + pos: -25.436548,-4.9030395 parent: 2 - proto: ToyFigurineFootsoldier entities: @@ -97414,11 +98085,6 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - - uid: 4601 - components: - - type: Transform - pos: -23.5,-13.5 - parent: 2 - uid: 4605 components: - type: Transform @@ -99196,6 +99862,12 @@ entities: - type: Transform pos: 25.5,37.5 parent: 2 + - uid: 8437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 2 - uid: 8465 components: - type: Transform @@ -100532,21 +101204,11 @@ entities: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 1904 - components: - - type: Transform - pos: 14.5,-32.5 - parent: 2 - uid: 1907 components: - type: Transform pos: 17.5,-32.5 parent: 2 - - uid: 1908 - components: - - type: Transform - pos: 15.5,-32.5 - parent: 2 - uid: 1909 components: - type: Transform @@ -102842,6 +103504,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-8.5 parent: 2 + - uid: 8436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 2 - uid: 8457 components: - type: Transform @@ -105552,6 +106220,11 @@ entities: - type: Transform pos: -20.5,-17.5 parent: 2 + - uid: 14402 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 - uid: 15150 components: - type: Transform diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index 2165e648668..3e413f0a2d7 100644 --- a/Resources/Maps/fland.yml +++ b/Resources/Maps/fland.yml @@ -72,7 +72,7 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: bAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAbAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACbAAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACegAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACegAAAAADegAAAAAAQAAAAAAAQAAAAAAA + tiles: bAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAAAHwAAAAADHwAAAAADbAAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABbAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAbAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAbAAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACbAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACbAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAACegAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACegAAAAADegAAAAAAQAAAAAAAQAAAAAAA version: 6 0,0: ind: 0,0 @@ -80,7 +80,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABegAAAAAAegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAAAXQAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAADXQAAAAADXQAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAAAegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA + tiles: QAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABegAAAAAAegAAAAACQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAegAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAABHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAAAXQAAAAACegAAAAACegAAAAABegAAAAACegAAAAAAegAAAAABegAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAADXQAAAAADXQAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAAAegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA version: 6 0,-1: ind: 0,-1 @@ -1765,11 +1765,6 @@ entities: id: BrickTileWhiteBox decals: 1678: 33,25 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNe - decals: - 361: -10,2 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -1839,11 +1834,6 @@ entities: id: BrickTileWhiteCornerNe decals: 3720: 55,-16 - - node: - color: '#334E6DC8' - id: BrickTileWhiteCornerNw - decals: - 362: -12,2 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -1920,7 +1910,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 360: -10,-2 7957: 98,-55 - node: color: '#52B4E996' @@ -1994,7 +1983,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 363: -12,-2 7958: 96,-55 - node: color: '#52B4E996' @@ -2199,9 +2187,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 357: -10,-1 - 358: -10,0 - 359: -10,1 3967: 19,57 3968: 19,59 3969: 19,60 @@ -2410,9 +2395,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2101: -12,-4 - 2102: -10,-4 - 2103: -9,-4 6157: 62,31 6158: 63,31 - node: @@ -2606,7 +2588,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 364: -11,-2 7959: 97,-55 - node: color: '#52B4E996' @@ -2831,8 +2812,6 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 365: -12,-1 - 366: -12,1 6160: 64,32 6161: 64,33 6162: 64,34 @@ -4373,7 +4352,6 @@ entities: decals: 344: -18,30 523: -18,-9 - 543: -12,0 565: -24,39 666: -33,41 667: -32,41 @@ -4519,7 +4497,6 @@ entities: 8734: 126,-4 - node: cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: Dirt decals: @@ -4612,7 +4589,6 @@ entities: 8231: -21,6 8232: -20,7 8233: -16,6 - 8234: -15,3 8235: -18,3 8236: -17,3 8237: -19,4 @@ -4737,8 +4713,6 @@ entities: 8385: 65,-5 8386: 68,-6 - node: - cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: DirtHeavy decals: @@ -4752,6 +4726,11 @@ entities: 7476: 54,60 7477: 54,60 7478: 54,60 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: 354: 2,12 486: 4,11 487: 3,12 @@ -4937,8 +4916,6 @@ entities: 8361: 103,5 8362: 110,5 - node: - cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: DirtLight decals: @@ -4961,6 +4938,11 @@ entities: 7501: 52,62 7502: 53,64 7503: 55,63 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: 355: 3,7 356: 4,7 470: 5,9 @@ -5053,7 +5035,6 @@ entities: 2491: 3,-2 2492: 3,-2 2493: -5,5 - 2494: -9,-5 2495: -13,-7 2605: -2,-22 2606: -3,-21 @@ -5576,8 +5557,6 @@ entities: 8382: 94,8 8383: 102,9 - node: - cleanable: True - zIndex: 1 color: '#FFFFFFFF' id: DirtMedium decals: @@ -5590,6 +5569,11 @@ entities: 7485: 54,56 7486: 54,54 7487: 56,53 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: 479: 4,9 480: 3,8 481: 4,8 @@ -7545,15 +7529,6 @@ entities: decals: 6415: 79,44 6416: 79,45 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 367: -9,-2 - 368: -9,-1 - 369: -9,0 - 370: -9,1 - 371: -9,2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -7869,11 +7844,57 @@ entities: decals: 8556: 73,7 8557: 73,12 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNe + decals: + 8799: -9,2 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerNw + decals: + 8800: -12,2 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSe + decals: + 8790: -9,-2 + - node: + color: '#9FED5896' + id: MiniTileWhiteCornerSw + decals: + 8803: -12,-2 - node: color: '#D381C996' id: MiniTileWhiteInnerSe decals: 4622: 56,-34 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineE + decals: + 8796: -9,-1 + 8797: -9,0 + 8798: -9,1 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineN + decals: + 8801: -11,2 + 8802: -10,2 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineS + decals: + 8791: -10,-2 + 8792: -11,-2 + - node: + color: '#9FED5896' + id: MiniTileWhiteLineW + decals: + 8793: -12,-1 + 8794: -12,0 + 8795: -12,1 - node: color: '#FFFFFFFF' id: North @@ -7925,21 +7946,6 @@ entities: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 2094: -7,-4 - 2095: -7,-3 - 2096: -7,-2 - 2097: -7,-1 - 2098: -7,0 - 2099: -7,1 - 2100: -7,2 - 2105: -7,-5 - 2106: -9,-5 - 2107: -10,-5 - 2108: -11,-5 - 2109: -12,-5 - 2110: -13,-5 - 2111: -14,-5 - 2112: -15,-5 5515: 53,-10 5516: 52,-10 5517: 51,-10 @@ -10704,12 +10710,6 @@ entities: 4011: 4,41 5781: 101,-17 7691: 104,-17 - - node: - color: '#334E6DC8' - id: WarnLineGreyscaleN - decals: - 372: -11,2 - 2104: -11,-4 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -15945,7 +15945,6 @@ entities: - 1758 - 1759 - 1760 - - 1973 - 2200 - 2204 - 2193 @@ -18122,14 +18121,6 @@ entities: parent: 13329 - proto: AirlockCommandGlassLocked entities: - - uid: 1625 - components: - - type: MetaData - name: Arrivals Command Office - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 13329 - uid: 13081 components: - type: Transform @@ -19417,6 +19408,26 @@ entities: parent: 13329 - proto: AirlockGlass entities: + - uid: 48 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 13329 + - uid: 49 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 13329 + - uid: 50 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 13329 + - uid: 51 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 13329 - uid: 889 components: - type: Transform @@ -19453,12 +19464,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-6.5 parent: 13329 - - uid: 2124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 13329 - uid: 2125 components: - type: Transform @@ -19480,21 +19485,12 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 13329 - - uid: 2241 - components: - - type: Transform - pos: -7.5,-6.5 - parent: 13329 - - uid: 2242 - components: - - type: Transform - pos: -7.5,-5.5 - parent: 13329 - - uid: 2243 - components: - - type: Transform - pos: -7.5,-4.5 - parent: 13329 + - type: Door + secondsUntilStateChange: -3804.5127 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - uid: 6232 components: - type: Transform @@ -20927,11 +20923,21 @@ entities: parent: 13329 - proto: AirlockServiceLocked entities: + - uid: 63 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 13329 - uid: 913 components: - type: Transform pos: -17.5,32.5 parent: 13329 + - uid: 1988 + components: + - type: Transform + pos: -10.5,3.5 + parent: 13329 - uid: 3893 components: - type: MetaData @@ -29552,11 +29558,6 @@ entities: parent: 13329 - proto: BlastDoorOpen entities: - - uid: 1975 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 13329 - uid: 9400 components: - type: Transform @@ -30223,6 +30224,11 @@ entities: parent: 13329 - proto: BoxFolderBlack entities: + - uid: 52 + components: + - type: Transform + pos: -9.123006,2.5807915 + parent: 13329 - uid: 18965 components: - type: Transform @@ -30285,6 +30291,21 @@ entities: - type: Transform pos: 105.65974,46.68083 parent: 13329 +- proto: BoxFolderClipboard + entities: + - uid: 1619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.513631,1.6901664 + parent: 13329 +- proto: BoxFolderGreen + entities: + - uid: 26701 + components: + - type: Transform + pos: -9.123006,2.5182915 + parent: 13329 - proto: BoxFolderGrey entities: - uid: 6318 @@ -79925,6 +79946,21 @@ entities: parent: 13329 - proto: CarpetBlack entities: + - uid: 53 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 13329 + - uid: 61 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 13329 + - uid: 1618 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 13329 - uid: 6592 components: - type: Transform @@ -79970,6 +80006,11 @@ entities: - type: Transform pos: -13.5,74.5 parent: 13329 + - uid: 10985 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 13329 - uid: 26055 components: - type: Transform @@ -89840,6 +89881,18 @@ entities: parent: 13329 - proto: ChairFoldingSpawnFolded entities: + - uid: 1626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.601299,-0.838188 + parent: 13329 + - uid: 2124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.601299,-0.166313 + parent: 13329 - uid: 32725 components: - type: Transform @@ -89901,6 +89954,12 @@ entities: rot: 1.5707963267948966 rad pos: 83.5,-12.5 parent: 13329 + - uid: 2242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.513823,1.6136961 + parent: 13329 - uid: 2244 components: - type: Transform @@ -90260,11 +90319,6 @@ entities: parent: 13329 - proto: ChairOfficeLight entities: - - uid: 1987 - components: - - type: Transform - pos: -10.5,-1.5 - parent: 13329 - uid: 15343 components: - type: Transform @@ -94172,29 +94226,6 @@ entities: - 0 - proto: ClosetSteelBase entities: - - uid: 1978 - components: - - type: Transform - pos: -11.5,2.5 - parent: 13329 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 10901 components: - type: Transform @@ -96276,6 +96307,13 @@ entities: - type: Transform pos: 78.61583,-18.435736 parent: 13329 +- proto: ClothingUniformJumpsuitJournalist + entities: + - uid: 2243 + components: + - type: Transform + pos: -9.469791,2.582446 + parent: 13329 - proto: ClothingUniformJumpsuitLawyerBlack entities: - uid: 26094 @@ -97125,12 +97163,6 @@ entities: parent: 13329 - proto: ComputerCrewMonitoring entities: - - uid: 1980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 13329 - uid: 2215 components: - type: Transform @@ -97375,14 +97407,16 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,44.5 parent: 13329 -- proto: ComputerMedicalRecords +- proto: ComputerMassMedia entities: - - uid: 1981 + - uid: 303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,0.5 + rot: 3.141592653589793 rad + pos: -11.5,0.5 parent: 13329 +- proto: ComputerMedicalRecords + entities: - uid: 9648 components: - type: Transform @@ -97601,12 +97635,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.5,58.5 parent: 13329 - - uid: 23629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 13329 - uid: 27813 components: - type: Transform @@ -99304,6 +99332,18 @@ entities: - type: Transform pos: 27.667912,48.69122 parent: 13329 +- proto: CurtainsGreenOpen + entities: + - uid: 54 + components: + - type: Transform + pos: -7.5,1.5 + parent: 13329 + - uid: 1987 + components: + - type: Transform + pos: -7.5,0.5 + parent: 13329 - proto: d20Dice entities: - uid: 32795 @@ -99550,13 +99590,6 @@ entities: parent: 13329 - type: NavMapBeacon text: Conference - - uid: 26701 - components: - - type: Transform - pos: -10.5,0.5 - parent: 13329 - - type: NavMapBeacon - text: Checkpoint - uid: 29163 components: - type: Transform @@ -99845,6 +99878,13 @@ entities: - type: Transform pos: 50.5,-40.5 parent: 13329 +- proto: DefaultStationBeaconReporter + entities: + - uid: 35935 + components: + - type: Transform + pos: -10.5,0.5 + parent: 13329 - proto: DefaultStationBeaconRND entities: - uid: 26317 @@ -100231,6 +100271,12 @@ entities: parent: 13329 - proto: DisposalBend entities: + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 13329 - uid: 960 components: - type: Transform @@ -100322,12 +100368,6 @@ entities: - type: Transform pos: 2.5,12.5 parent: 13329 - - uid: 1619 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 13329 - uid: 1623 components: - type: Transform @@ -102097,18 +102137,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 13329 - - uid: 1620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 13329 - - uid: 1621 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,2.5 - parent: 13329 - uid: 1622 components: - type: Transform @@ -109159,6 +109187,12 @@ entities: tag: Trash - proto: DisposalTrunk entities: + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 13329 - uid: 950 components: - type: Transform @@ -109201,12 +109235,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 13329 - - uid: 1618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 13329 - uid: 1764 components: - type: Transform @@ -109658,6 +109686,11 @@ entities: parent: 13329 - proto: DisposalUnit entities: + - uid: 57 + components: + - type: Transform + pos: -11.5,2.5 + parent: 13329 - uid: 941 components: - type: Transform @@ -109693,11 +109726,6 @@ entities: - type: Transform pos: 2.5,11.5 parent: 13329 - - uid: 1740 - components: - - type: Transform - pos: -11.5,0.5 - parent: 13329 - uid: 1741 components: - type: Transform @@ -111389,13 +111417,13 @@ entities: parent: 13329 - proto: FaxMachineBase entities: - - uid: 1988 + - uid: 1628 components: - type: Transform pos: -8.5,2.5 parent: 13329 - type: FaxMachine - name: Command Checkpoint + name: News Room - uid: 4540 components: - type: Transform @@ -111700,15 +111728,15 @@ entities: parent: 13329 - proto: filingCabinetRandom entities: - - uid: 1977 + - uid: 2211 components: - type: Transform - pos: -11.5,-0.5 + pos: -7.5,-10.5 parent: 13329 - - uid: 2211 + - uid: 2241 components: - type: Transform - pos: -7.5,-10.5 + pos: -8.5,0.5 parent: 13329 - uid: 4539 components: @@ -111917,7 +111945,6 @@ entities: - 1758 - 1759 - 1760 - - 1973 - 2200 - 2204 - uid: 4589 @@ -113380,11 +113407,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 13329 - - uid: 1973 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 13329 - uid: 2048 components: - type: Transform @@ -155222,27 +155244,12 @@ entities: - type: Transform pos: 0.5,3.5 parent: 13329 - - uid: 299 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 13329 - uid: 300 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 13329 - - uid: 301 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 13329 - - uid: 302 components: - type: Transform pos: -7.5,0.5 parent: 13329 - - uid: 303 + - uid: 301 components: - type: Transform pos: -7.5,1.5 @@ -162009,11 +162016,6 @@ entities: - type: Transform pos: -7.2316008,34.45331 parent: 13329 - - uid: 10988 - components: - - type: Transform - pos: -9.436715,-1.5007612 - parent: 13329 - uid: 11782 components: - type: Transform @@ -162309,17 +162311,6 @@ entities: - type: Transform pos: 71.5,58.5 parent: 13329 - - uid: 35871 - components: - - type: MetaData - name: holopad (Command - Post) - - type: Transform - pos: -10.5,0.5 - parent: 13329 - - type: Label - currentLabel: Command - Post - - type: NameModifier - baseName: holopad - proto: HolopadCommandBridgeHallway entities: - uid: 35850 @@ -162909,6 +162900,13 @@ entities: currentLabel: Service - Library Meeting - type: NameModifier baseName: holopad +- proto: HolopadServiceNewsroom + entities: + - uid: 35936 + components: + - type: Transform + pos: -9.5,0.5 + parent: 13329 - proto: HospitalCurtainsOpen entities: - uid: 1440 @@ -168026,12 +168024,6 @@ entities: - type: Transform pos: 35.5,21.5 parent: 13329 - - uid: 10986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 13329 - uid: 11764 components: - type: Transform @@ -169411,11 +169403,6 @@ entities: parent: 13329 - proto: PottedPlant12 entities: - - uid: 1979 - components: - - type: Transform - pos: -11.487109,1.2179638 - parent: 13329 - uid: 9443 components: - type: Transform @@ -179378,36 +179365,6 @@ entities: - type: Transform pos: 1.5,21.5 parent: 13329 - - uid: 1626 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 13329 - - uid: 1627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 13329 - - uid: 1628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 13329 - - uid: 1629 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 13329 - - uid: 1630 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 - parent: 13329 - uid: 2055 components: - type: Transform @@ -184629,15 +184586,6 @@ entities: - Pressed: Toggle 1492: - Pressed: Toggle - - uid: 1976 - components: - - type: Transform - pos: -8.5,3.5 - parent: 13329 - - type: DeviceLinkSource - linkedPorts: - 1975: - - Pressed: Toggle - uid: 4523 components: - type: Transform @@ -186024,6 +185972,13 @@ entities: - type: Transform pos: 2.5,42.5 parent: 13329 +- proto: SignNews + entities: + - uid: 35871 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 13329 - proto: SignNosmoking entities: - uid: 18472 @@ -190238,6 +190193,13 @@ entities: - type: Transform pos: -4.5,-25.5 parent: 13329 +- proto: SpawnPointReporter + entities: + - uid: 35934 + components: + - type: Transform + pos: -10.5,1.5 + parent: 13329 - proto: SpawnPointResearchAssistant entities: - uid: 26703 @@ -191809,17 +191771,6 @@ entities: parent: 13329 - proto: SurveillanceCameraCommand entities: - - uid: 10985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 13329 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Arrivals Command Post - uid: 30181 components: - type: Transform @@ -194420,6 +194371,12 @@ entities: id: Perma North - proto: SurveillanceCameraService entities: + - uid: 1627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 13329 - uid: 10975 components: - type: Transform @@ -194685,8 +194642,22 @@ entities: - type: Transform pos: 100.5,30.5 parent: 13329 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 10986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 13329 - proto: SurveillanceWirelessCameraMovableEntertainment entities: + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 13329 - uid: 29511 components: - type: Transform @@ -197173,35 +197144,6 @@ entities: - type: Transform pos: 2.5,10.5 parent: 13329 - - uid: 1972 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 13329 - - uid: 1982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 13329 - - uid: 1983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 13329 - - uid: 1984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 13329 - - uid: 1985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 13329 - uid: 2199 components: - type: Transform @@ -198061,6 +198003,11 @@ entities: parent: 13329 - proto: TableWood entities: + - uid: 55 + components: + - type: Transform + pos: -9.5,2.5 + parent: 13329 - uid: 213 components: - type: Transform @@ -198493,6 +198440,16 @@ entities: - type: Transform pos: 37.5,26.5 parent: 13329 + - uid: 10987 + components: + - type: Transform + pos: -8.5,2.5 + parent: 13329 + - uid: 10988 + components: + - type: Transform + pos: -8.5,1.5 + parent: 13329 - uid: 11712 components: - type: Transform @@ -199890,11 +199847,6 @@ entities: - type: Transform pos: 31.578018,13.515272 parent: 13329 - - uid: 10987 - components: - - type: Transform - pos: -8.48359,-1.3913862 - parent: 13329 - uid: 11672 components: - type: Transform @@ -201191,91 +201143,6 @@ entities: parent: 13329 - proto: WallReinforced entities: - - uid: 47 - components: - - type: Transform - pos: -7.5,-3.5 - parent: 13329 - - uid: 48 - components: - - type: Transform - pos: -7.5,-2.5 - parent: 13329 - - uid: 49 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 13329 - - uid: 50 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 13329 - - uid: 51 - components: - - type: Transform - pos: -12.5,-3.5 - parent: 13329 - - uid: 52 - components: - - type: Transform - pos: -12.5,-2.5 - parent: 13329 - - uid: 53 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 13329 - - uid: 54 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 13329 - - uid: 55 - components: - - type: Transform - pos: -12.5,0.5 - parent: 13329 - - uid: 56 - components: - - type: Transform - pos: -12.5,1.5 - parent: 13329 - - uid: 57 - components: - - type: Transform - pos: -12.5,2.5 - parent: 13329 - - uid: 58 - components: - - type: Transform - pos: -12.5,3.5 - parent: 13329 - - uid: 59 - components: - - type: Transform - pos: -7.5,3.5 - parent: 13329 - - uid: 60 - components: - - type: Transform - pos: -8.5,3.5 - parent: 13329 - - uid: 61 - components: - - type: Transform - pos: -9.5,3.5 - parent: 13329 - - uid: 62 - components: - - type: Transform - pos: -11.5,3.5 - parent: 13329 - - uid: 63 - components: - - type: Transform - pos: -7.5,2.5 - parent: 13329 - uid: 265 components: - type: Transform @@ -215628,6 +215495,12 @@ entities: - type: Transform pos: -0.5,3.5 parent: 13329 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 13329 - uid: 66 components: - type: Transform @@ -216403,6 +216276,18 @@ entities: - type: Transform pos: -18.5,42.5 parent: 13329 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 13329 + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 13329 - uid: 860 components: - type: Transform @@ -216738,6 +216623,23 @@ entities: - type: Transform pos: 13.5,6.5 parent: 13329 + - uid: 1629 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 13329 + - uid: 1630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 13329 + - uid: 1740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 13329 - uid: 1761 components: - type: Transform @@ -216813,6 +216715,89 @@ entities: - type: Transform pos: -20.5,-3.5 parent: 13329 + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 13329 + - uid: 1973 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 13329 + - uid: 1974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 13329 + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 13329 + - uid: 1976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 13329 + - uid: 1977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 13329 + - uid: 1978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 13329 + - uid: 1979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 13329 + - uid: 1980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 13329 + - uid: 1981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 13329 + - uid: 1982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 13329 + - uid: 1983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 13329 + - uid: 1984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 13329 + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 13329 - uid: 2040 components: - type: Transform @@ -225172,6 +225157,13 @@ entities: rot: 3.141592653589793 rad pos: -8.5,27.5 parent: 13329 +- proto: WindoorSecure + entities: + - uid: 56 + components: + - type: Transform + pos: -10.5,0.5 + parent: 13329 - proto: WindoorSecureArmoryLocked entities: - uid: 8649 @@ -225329,11 +225321,6 @@ entities: parent: 13329 - proto: WindoorSecureCommandLocked entities: - - uid: 1974 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 13329 - uid: 30210 components: - type: Transform @@ -225596,6 +225583,11 @@ entities: parent: 13329 - proto: Window entities: + - uid: 60 + components: + - type: Transform + pos: -7.5,0.5 + parent: 13329 - uid: 310 components: - type: Transform @@ -225909,6 +225901,11 @@ entities: - type: Transform pos: 93.5,41.5 parent: 13329 + - uid: 23629 + components: + - type: Transform + pos: -7.5,1.5 + parent: 13329 - uid: 28818 components: - type: Transform @@ -225963,6 +225960,21 @@ entities: parent: 13329 - proto: WindowFrostedDirectional entities: + - uid: 1620 + components: + - type: Transform + pos: -8.5,0.5 + parent: 13329 + - uid: 1621 + components: + - type: Transform + pos: -9.5,0.5 + parent: 13329 + - uid: 1625 + components: + - type: Transform + pos: -11.5,0.5 + parent: 13329 - uid: 18854 components: - type: Transform diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index de0df379648..39ee85fc583 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -73,7 +73,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,0: ind: -2,0 @@ -97,7 +97,7 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA version: 6 -1,1: ind: -1,1 @@ -121,11 +121,11 @@ entities: version: 6 1,0: ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAANwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAANwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 1,1: ind: 1,1 - tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAJwAAAAACJwAAAAACIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAADIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAACNwAAAAADNwAAAAAEHQAAAAAA + tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAJwAAAAACJwAAAAACIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAADIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAACNwAAAAADNwAAAAAEHQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -217,7 +217,7 @@ entities: version: 6 0,3: ind: 0,3 - tiles: HgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADJAAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADJAAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAA + tiles: HgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADJAAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADJAAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAA version: 6 0,4: ind: 0,4 @@ -3252,12 +3252,11 @@ entities: 0: 61883 -1,4: 0: 63743 - -1,-1: - 0: 10103 0,-4: 2: 29491 0,-5: - 2: 16159 + 2: 14111 + 0: 2048 -1,-4: 2: 64716 0,-3: @@ -3290,11 +3289,11 @@ entities: 0: 13107 2: 34952 3,-3: - 0: 13107 + 0: 8755 2: 34952 3,-2: - 0: 3 2: 32648 + 0: 34 3,-5: 2: 36815 4,-4: @@ -3431,6 +3430,8 @@ entities: 0: 47104 -2,-5: 2: 63880 + -1,-1: + 0: 1911 -1,-5: 2: 64716 -4,-8: @@ -3722,7 +3723,7 @@ entities: 4,7: 0: 64989 5,0: - 0: 65535 + 0: 65534 5,1: 0: 65311 5,2: @@ -3730,26 +3731,25 @@ entities: 5,3: 0: 65521 5,-1: - 0: 65527 + 0: 65248 5,4: 0: 65535 6,0: - 0: 4369 - 6,1: 0: 30583 - 6,2: - 0: 63351 + 6,1: + 0: 26151 6,3: - 0: 65534 + 0: 48056 6,-1: - 0: 4368 - 2: 192 + 0: 30576 + 6,2: + 0: 58982 6,4: - 0: 65535 + 0: 48059 7,0: - 2: 29809 + 2: 29813 7,-1: - 2: 4369 + 2: 21847 7,2: 2: 17988 7,1: @@ -3858,7 +3858,7 @@ entities: -16,4: 0: 57598 -15,0: - 0: 65535 + 0: 61439 -15,1: 0: 4095 -15,2: @@ -3932,7 +3932,7 @@ entities: 5,11: 0: 30471 6,9: - 0: 63351 + 0: 63359 6,10: 0: 47871 6,11: @@ -3940,8 +3940,7 @@ entities: 6,12: 0: 221 7,9: - 0: 4151 - 6: 8 + 0: 4159 2: 2048 7,10: 0: 12307 @@ -3989,7 +3988,7 @@ entities: 0: 65532 -13,12: 0: 4351 - 7: 57344 + 6: 57344 -12,9: 0: 56783 -12,10: @@ -3998,7 +3997,7 @@ entities: 0: 65500 -12,12: 0: 60639 - 7: 4096 + 6: 4096 -11,9: 0: 56605 -11,10: @@ -4016,8 +4015,7 @@ entities: -10,12: 0: 3822 -9,9: - 0: 47367 - 6: 512 + 0: 47879 -9,10: 0: 56723 -9,11: @@ -4025,11 +4023,9 @@ entities: -9,12: 0: 36319 -8,9: - 0: 37151 - 6: 16384 + 0: 53535 -8,10: - 0: 4505 - 6: 3140 + 0: 7645 -8,11: 0: 65535 -20,4: @@ -4038,14 +4034,14 @@ entities: 0: 63247 -20,5: 0: 61166 - -21,6: - 2: 50252 -20,6: - 2: 61440 + 2: 35056 + -21,6: + 2: 204 -19,4: - 0: 30479 + 0: 32527 -19,5: - 0: 32631 + 0: 30583 -19,6: 2: 12832 -19,3: @@ -4053,14 +4049,9 @@ entities: -19,7: 2: 3618 -18,4: - 0: 64303 - 6: 1024 + 0: 65327 -18,5: - 8: 528 - 9: 4352 - 10: 32 - 0: 60420 - 11: 192 + 0: 65524 -18,6: 0: 4082 -18,7: @@ -4109,8 +4100,7 @@ entities: -20,0: 0: 65311 -20,-1: - 0: 63724 - 6: 2 + 0: 61678 -21,0: 0: 52224 2: 256 @@ -4126,7 +4116,7 @@ entities: 2: 256 -21,3: 0: 61440 - 2: 16 + 2: 112 -19,0: 0: 30479 -19,1: @@ -4134,7 +4124,7 @@ entities: -19,2: 0: 30583 -19,-1: - 0: 28799 + 0: 29271 -18,0: 0: 65535 -18,1: @@ -4144,7 +4134,7 @@ entities: -18,-1: 0: 65359 -17,-1: - 0: 56591 + 0: 56583 -4,9: 0: 65327 -5,9: @@ -4192,8 +4182,7 @@ entities: -8,12: 0: 21845 -7,9: - 0: 53263 - 6: 8192 + 0: 61455 -7,10: 0: 8191 -7,11: @@ -4232,10 +4221,10 @@ entities: 0: 143 2: 57856 -12,13: - 7: 1 + 6: 1 0: 65484 -13,13: - 7: 14 + 6: 14 0: 65280 -12,14: 0: 65535 @@ -4404,9 +4393,10 @@ entities: -17,18: 0: 14779 -16,19: + 2: 3073 0: 768 - 2: 3072 -17,19: + 2: 8 0: 16179 -15,17: 0: 12272 @@ -4474,7 +4464,7 @@ entities: -18,17: 0: 52733 -18,18: - 0: 46079 + 0: 45311 -18,19: 0: 35771 -17,20: @@ -4486,6 +4476,7 @@ entities: 0: 65520 -11,18: 0: 15 + 2: 512 -10,17: 0: 26238 -10,18: @@ -4502,8 +4493,8 @@ entities: 4,14: 2: 119 3,14: - 2: 64748 - 0: 16 + 2: 64652 + 0: 112 4,15: 2: 4369 3,15: @@ -4518,7 +4509,7 @@ entities: 1,13: 0: 56829 1,14: - 0: 36817 + 0: 36825 1,15: 0: 48059 1,16: @@ -4526,14 +4517,14 @@ entities: 2,13: 0: 30711 2,14: - 0: 30705 + 0: 30704 2,15: 0: 65399 2,16: 0: 62463 3,13: - 0: 48 - 2: 64716 + 0: 112 + 2: 64652 3,16: 0: 28774 0,17: @@ -4547,8 +4538,7 @@ entities: 0,19: 0: 15243 -1,19: - 0: 65305 - 12: 4 + 0: 65309 0,20: 0: 12287 1,17: @@ -4804,7 +4794,7 @@ entities: -19,-3: 2: 17487 -19,-2: - 0: 65280 + 0: 63232 2: 4 -18,-3: 2: 15 @@ -4813,7 +4803,7 @@ entities: -17,-3: 2: 15 -17,-2: - 0: 65520 + 0: 30576 -16,-3: 2: 34959 -16,-2: @@ -4911,11 +4901,11 @@ entities: 5,-3: 0: 30576 5,-2: - 0: 30576 + 0: 26208 6,-2: 2: 15 7,-2: - 2: 4369 + 2: 22289 -11,21: 2: 2288 -11,23: @@ -5089,21 +5079,6 @@ 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: @@ -5119,81 +5094,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14926 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14902 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1495 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 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.15 - moles: - - 21.6852 - - 81.57766 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -7299,7 +7199,7 @@ entities: pos: -30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -44884.766 + secondsUntilStateChange: -46417.484 state: Opening - type: DeviceLinkSource lastSignals: @@ -7441,16 +7341,57 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 - - uid: 13970 + - uid: 16894 components: - type: Transform pos: -31.5,37.5 parent: 2 - - type: AccessReader - access: - - - Brig - - - Engineering - - - Security +- proto: AirlockExternalCommandLocked + entities: + - uid: 215 + components: + - type: Transform + pos: -14.5,74.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1200: + - DoorStatus: DoorBolt + - uid: 1200 + components: + - type: Transform + pos: -14.5,77.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 215: + - DoorStatus: DoorBolt + - uid: 2280 + components: + - type: Transform + pos: -14.5,87.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5219: + - DoorStatus: DoorBolt + - uid: 5219 + components: + - type: Transform + pos: -14.5,85.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2280: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 3669 @@ -7556,20 +7497,16 @@ entities: parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 5936 + - uid: 1953 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,57.5 parent: 2 - - type: AccessReader - access: - - - Salvage - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 16895: + 1952: - DoorStatus: DoorBolt - uid: 16431 components: @@ -7583,21 +7520,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,75.5 parent: 2 - - uid: 16895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,57.5 - parent: 2 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5936: - - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 354 @@ -7647,33 +7569,29 @@ entities: linkedPorts: 3822: - DoorStatus: DoorBolt - - uid: 4797 + - uid: 7337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,53.5 + pos: 3.5,-17.5 parent: 2 - - type: AccessReader - access: - - - Engineering - - - Salvage - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 16894: + 2714: - DoorStatus: DoorBolt - - uid: 7337 + - uid: 7452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: 13.5,-6.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 2714: + 17580: - DoorStatus: DoorBolt - uid: 8100 components: @@ -7730,63 +7648,63 @@ entities: linkedPorts: 14633: - DoorStatus: DoorBolt - - uid: 16894 + - uid: 17561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,53.5 + pos: -4.5,2.5 parent: 2 - - type: AccessReader - access: - - - Engineering - - - Salvage - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4797: + 8100: - DoorStatus: DoorBolt - - uid: 17561 + - uid: 17580 components: - type: Transform - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: 13.5,-9.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8100: + 7452: - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - - uid: 1200 + - uid: 1952 components: - type: Transform - pos: -14.5,77.5 + pos: 14.5,57.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1953: + - DoorStatus: DoorBolt + - uid: 2673 + components: + - type: Transform + pos: 11.5,53.5 parent: 2 - - type: AccessReader - access: - - - Command - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5219: + 14035: - DoorStatus: DoorBolt - - uid: 5219 + - uid: 14035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,74.5 + pos: 14.5,53.5 parent: 2 - - type: AccessReader - access: - - - Command - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 1200: + 2673: - DoorStatus: DoorBolt - uid: 15778 components: @@ -7915,41 +7833,6 @@ entities: rot: -1.5707963267948966 rad pos: -93.5,55.5 parent: 2 -- proto: AirlockExternalLocked - entities: - - uid: 215 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,85.5 - parent: 2 - - type: AccessReader - access: - - - Command - - - External - - - ResearchDirector - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5225: - - DoorStatus: DoorBolt - - uid: 5225 - components: - - type: Transform - pos: -14.5,87.5 - parent: 2 - - type: AccessReader - access: - - - Command - - - External - - - ResearchDirector - - type: DeviceLinkSink - invokeCounter: 5 - - type: DeviceLinkSource - linkedPorts: - 215: - - DoorStatus: DoorBolt - proto: AirlockExternalShuttleLocked entities: - uid: 15471 @@ -8509,21 +8392,16 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,7.5 parent: 2 - - uid: 14026 + - uid: 4797 components: - type: Transform - pos: -36.5,14.5 + pos: 5.5,53.5 parent: 2 - - uid: 14035 + - uid: 14026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,53.5 + pos: -36.5,14.5 parent: 2 - - type: AccessReader - access: - - - Engineering - - - Salvage - proto: AirlockMaintLocked entities: - uid: 1735 @@ -8735,12 +8613,8 @@ entities: - uid: 13967 components: - type: Transform - pos: -14.5,37.5 + pos: -8.5,33.5 parent: 2 - - type: AccessReader - access: - - - Medical - - - Security - proto: AirlockMaintRnDLocked entities: - uid: 14067 @@ -8816,37 +8690,23 @@ entities: parent: 2 - proto: AirlockMedicalMorgueLocked entities: - - uid: 1952 + - uid: 5936 components: - - type: MetaData - name: morgue - type: Transform - pos: -8.5,36.5 + pos: -11.5,39.5 parent: 2 - - type: AccessReader - access: - - - Medical - - - Security - - uid: 1953 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 13969 components: - - type: MetaData - name: morgue - type: Transform - pos: -11.5,39.5 + pos: -8.5,36.5 parent: 2 - - type: AccessReader - access: - - - Medical - - - Security - - uid: 13969 + - uid: 16895 components: - type: Transform - pos: -8.5,33.5 + pos: -14.5,37.5 parent: 2 - - type: AccessReader - access: - - - Medical - - - Security - proto: AirlockQuartermasterGlassLocked entities: - uid: 14040 @@ -13901,16 +13761,6 @@ entities: - type: Transform pos: 7.5,-8.5 parent: 2 - - uid: 3600 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 2 - - uid: 3601 - components: - - type: Transform - pos: 12.5,-10.5 - parent: 2 - uid: 3607 components: - type: Transform @@ -14401,11 +14251,6 @@ entities: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 7452 - components: - - type: Transform - pos: 12.5,-9.5 - parent: 2 - uid: 7814 components: - type: Transform @@ -21821,6 +21666,11 @@ entities: - type: Transform pos: 10.5,73.5 parent: 2 + - uid: 13211 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 - uid: 13302 components: - type: Transform @@ -24251,6 +24101,36 @@ entities: - type: Transform pos: -4.5,2.5 parent: 2 + - uid: 17682 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 17684 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 - proto: CableApcStack entities: - uid: 5976 @@ -36741,6 +36621,12 @@ entities: - type: Transform pos: -70.5,6.5 parent: 2 + - uid: 3601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 - uid: 3629 components: - type: Transform @@ -36958,11 +36844,6 @@ entities: - type: Transform pos: -46.5,7.5 parent: 2 - - uid: 4907 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - uid: 5465 components: - type: Transform @@ -38528,10 +38409,10 @@ entities: - type: Transform pos: 26.5,11.5 parent: 2 - - uid: 17580 + - uid: 17680 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 12.5,2.5 parent: 2 - proto: Cautery @@ -43400,7 +43281,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -292640.3 + secondsUntilStateChange: -294173.03 state: Opening - uid: 6747 components: @@ -43408,7 +43289,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -292641.03 + secondsUntilStateChange: -294173.75 state: Opening - uid: 6749 components: @@ -43416,7 +43297,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -292639.6 + secondsUntilStateChange: -294172.3 state: Opening - uid: 6750 components: @@ -43424,7 +43305,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -292638.97 + secondsUntilStateChange: -294171.7 state: Opening - proto: CyberPen entities: @@ -52900,6 +52781,12 @@ entities: rot: 3.141592653589793 rad pos: 16.5,9.5 parent: 2 + - uid: 3600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 2 - uid: 5755 components: - type: Transform @@ -70213,11 +70100,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - - uid: 3497 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 2 - uid: 3502 components: - type: Transform @@ -79946,7 +79828,7 @@ entities: - uid: 13012 components: - type: Transform - pos: -16.5,12.5 + pos: -16.5,13.5 parent: 2 - uid: 13013 components: @@ -81187,6 +81069,12 @@ entities: - type: Transform pos: 29.5,49.5 parent: 2 + - uid: 3567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 - uid: 3973 components: - type: Transform @@ -81521,12 +81409,6 @@ entities: rot: 3.141592653589793 rad pos: 10.5,52.5 parent: 2 - - uid: 13211 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,75.5 - parent: 2 - uid: 13212 components: - type: Transform @@ -81877,6 +81759,23 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,-6.5 parent: 2 + - uid: 17685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,74.5 + parent: 2 - proto: PrefilledSyringe entities: - uid: 17244 @@ -82304,7 +82203,8 @@ entities: - uid: 16937 components: - type: Transform - pos: 13.5,-7.5 + rot: 3.141592653589793 rad + pos: 11.5,-7.5 parent: 2 - uid: 17183 components: @@ -85086,11 +84986,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 - - uid: 3589 - components: - - type: Transform - pos: 14.5,-9.5 - parent: 2 - uid: 3604 components: - type: Transform @@ -87649,6 +87544,66 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,50.5 parent: 2 + - uid: 17691 + components: + - type: Transform + pos: -29.5,59.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + pos: -17.5,51.5 + parent: 2 + - uid: 17693 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: -46.5,25.5 + parent: 2 + - uid: 17697 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: -47.5,64.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: -67.5,41.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: -59.5,37.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + pos: -7.5,64.5 + parent: 2 - proto: SecurityTechFab entities: - uid: 404 @@ -87978,7 +87933,7 @@ entities: - uid: 16935 components: - type: Transform - pos: 13.4516945,-7.4342813 + pos: 11.433092,-7.530607 parent: 2 - uid: 16938 components: @@ -93440,11 +93395,6 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos Front - - uid: 17682 - components: - - type: Transform - pos: 10.5,20.5 - parent: 2 - proto: SurveillanceCameraGeneral entities: - uid: 13564 @@ -93471,8 +93421,14 @@ entities: - uid: 13566 components: - type: Transform - pos: -51.5,19.5 + rot: 1.5707963267948966 rad + pos: -43.5,29.5 parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Dorms-Med hall - uid: 13567 components: - type: Transform @@ -93698,35 +93654,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Entrance hall - - uid: 17680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,71.5 - parent: 2 - - uid: 17681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,30.5 - parent: 2 - - uid: 17683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,66.5 - parent: 2 - - uid: 17684 - components: - - type: Transform - pos: -54.5,65.5 - parent: 2 - - uid: 17685 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,68.5 - parent: 2 - proto: SurveillanceCameraMedical entities: - uid: 13791 @@ -99858,11 +99785,6 @@ entities: - type: Transform pos: -12.5,37.5 parent: 2 - - uid: 2280 - components: - - type: Transform - pos: -13.5,37.5 - parent: 2 - uid: 2281 components: - type: Transform @@ -101103,6 +101025,12 @@ entities: - type: Transform pos: 28.5,15.5 parent: 2 + - uid: 3497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 - uid: 3498 components: - type: Transform @@ -101183,11 +101111,6 @@ entities: - type: Transform pos: 13.5,-2.5 parent: 2 - - uid: 3567 - components: - - type: Transform - pos: 13.5,-6.5 - parent: 2 - uid: 3568 components: - type: Transform @@ -101203,6 +101126,12 @@ entities: - type: Transform pos: -7.5,74.5 parent: 2 + - uid: 3589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 - uid: 3593 components: - type: Transform @@ -102022,6 +101951,12 @@ entities: - type: Transform pos: -3.5,2.5 parent: 2 + - uid: 4907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 - uid: 4908 components: - type: Transform @@ -102132,6 +102067,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,76.5 parent: 2 + - uid: 5225 + components: + - type: Transform + pos: -13.5,37.5 + parent: 2 - uid: 5226 components: - type: Transform @@ -104916,6 +104856,12 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 2 + - uid: 17681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 - proto: WallSolid entities: - uid: 19 @@ -106715,11 +106661,6 @@ entities: - type: Transform pos: 3.5,52.5 parent: 2 - - uid: 2673 - components: - - type: Transform - pos: 3.5,53.5 - parent: 2 - uid: 2674 components: - type: Transform @@ -108982,6 +108923,11 @@ entities: - type: Transform pos: -63.5,9.5 parent: 2 + - uid: 13970 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 - uid: 14001 components: - type: Transform diff --git a/Resources/Maps/meta.yml b/Resources/Maps/meta.yml index 9b7196f7d59..d729c3d9b67 100644 --- a/Resources/Maps/meta.yml +++ b/Resources/Maps/meta.yml @@ -3,6 +3,7 @@ meta: postmapinit: false tilemap: 0: Space + 11: FloorArcadeBlue 2: FloorArcadeBlue2 3: FloorArcadeRed 7: FloorAsteroidSand @@ -134,7 +135,7 @@ entities: version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZgAAAAADZgAAAAACOgAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAACZgAAAAAAZgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAB + tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAZgAAAAADZgAAAAACOgAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAZgAAAAACZgAAAAAAZgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAZAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAB version: 6 -1,1: ind: -1,1 @@ -150,7 +151,7 @@ entities: version: 6 -3,0: ind: -3,0 - tiles: CQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAA + tiles: CQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -162,11 +163,11 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: eQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATAAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAACHQAAAAAAHQAAAAABBgAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADCQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACCQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAATAAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATAAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADCQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACCQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAACQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAACQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-1: ind: -5,-1 @@ -174,7 +175,7 @@ entities: version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-2: ind: 3,-2 @@ -182,7 +183,7 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACSwAAAAACWQAAAAACSwAAAAACWQAAAAAASwAAAAAAWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAASwAAAAACWQAAAAAASwAAAAABWQAAAAAASwAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACSwAAAAACWQAAAAACSwAAAAACWQAAAAAASwAAAAAAWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAASwAAAAACWQAAAAAASwAAAAABWQAAAAAASwAAAAACWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAACYgAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAA version: 6 3,0: ind: 3,0 @@ -202,7 +203,7 @@ entities: version: 6 0,2: ind: 0,2 - tiles: WQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAFgAAAAAGeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFHQAAAAADHQAAAAACHQAAAAACFgAAAAADFgAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFgAAAAADHQAAAAAAHQAAAAADHQAAAAACFgAAAAABFgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABaQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAFgAAAAAGeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAFgAAAAAEFgAAAAAFHQAAAAADHQAAAAACHQAAAAACFgAAAAADFgAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAFgAAAAAGFgAAAAADHQAAAAAAHQAAAAADHQAAAAACFgAAAAABFgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -258,7 +259,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,2: ind: -3,2 @@ -270,7 +271,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: HQAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAbAAAAAABbAAAAAAATAAAAAAAbAAAAAADbAAAAAAAHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAbAAAAAAAbAAAAAABTAAAAAABbAAAAAACbAAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABHQAAAAABbAAAAAADbAAAAAADTAAAAAABbAAAAAACbAAAAAADHQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADHQAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABTAAAAAADTAAAAAADTAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACaQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABaQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADaQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 @@ -330,15 +331,15 @@ entities: version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAB version: 6 0,-4: ind: 0,-4 - tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA + tiles: eQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAaQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAbAAAAAAAbAAAAAAATAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABaQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -470,7 +471,7 @@ entities: version: 6 -4,2: ind: -4,2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -691,14 +692,6 @@ entities: 3981: -27,-44 3982: -28,-44 3999: -29,-40 - 4782: 0,-44 - 4783: 0,-45 - 4784: 0,-46 - 4785: 0,-47 - 4786: 6,-47 - 4787: 6,-46 - 4788: 6,-45 - 4789: 6,-44 4921: -22,-53 4922: -20,-53 5084: -38,2 @@ -708,7 +701,17 @@ entities: 5088: -37,3 5089: -37,2 5503: -18,32 - 5684: 1,-37 + 6114: 0,-35 + 6115: 0,-36 + 6116: 0,-37 + 6129: 0,-50 + 6130: 0,-51 + 6131: 0,-52 + 6132: 0,-53 + 6133: 6,-53 + 6134: 6,-52 + 6135: 6,-51 + 6136: 6,-50 - node: color: '#FFFFFFFF' id: BotLeft @@ -734,8 +737,6 @@ entities: 3186: 33,-22 3187: 34,-22 3188: 35,-22 - 5682: 1,-35 - 5685: 1,-36 - node: color: '#FFFFFFFF' id: BotRight @@ -1888,6 +1889,14 @@ entities: 5889: 10,-44 5890: 9,-44 5891: 8,-44 + 6145: 7,-45 + 6146: 7,-44 + 6147: 6,-44 + 6148: 6,-45 + 6149: 6,-46 + 6150: 6,-47 + 6151: 7,-47 + 6152: 7,-46 - node: color: '#D4D4D418' id: CheckerNWSE @@ -2057,6 +2066,14 @@ entities: 6003: 13,-34 6092: 42,-26 6093: 42,-27 + 6137: 0,-54 + 6138: 16,-48 + 6139: 16,-30 + 6140: 13,-24 + 6141: 21,-25 + 6142: 35,-12 + 6143: 19,-8 + 6144: 29,0 - node: color: '#52B4E996' id: DeliveryGreyscale @@ -2822,7 +2839,7 @@ entities: 1534: 7,-24 4629: -1,-25 5735: 16,-51 - 5909: 3,-48 + 6126: 3,-54 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -2988,7 +3005,7 @@ entities: 5669: 2,-27 5670: 1,-27 5732: 16,-49 - 5908: 3,-44 + 6125: 3,-50 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -3122,9 +3139,9 @@ entities: 5695: 18,-50 5701: 19,-50 5734: 17,-50 - 5902: 4,-47 - 5903: 4,-46 - 5904: 4,-45 + 6117: 4,-51 + 6118: 4,-52 + 6119: 4,-53 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale270 @@ -3250,9 +3267,9 @@ entities: 5690: 13,-49 5693: 14,-51 5733: 15,-50 - 5905: 2,-47 - 5906: 2,-46 - 5907: 2,-45 + 6120: 2,-51 + 6121: 2,-52 + 6122: 2,-53 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale90 @@ -3501,12 +3518,12 @@ entities: 2795: 0,-25 4625: 3,-24 5699: 19,-51 - 5913: 4,-48 5980: 10,-33 5981: 10,-32 5982: 10,-31 5983: 10,-30 5984: 10,-29 + 6128: 4,-54 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale @@ -3743,7 +3760,7 @@ entities: 2789: -2,-23 2790: -2,-24 2793: -2,-26 - 5911: 2,-44 + 6123: 2,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -3960,7 +3977,7 @@ entities: 2783: 7,-22 2798: 0,-26 5700: 19,-49 - 5910: 4,-44 + 6124: 4,-50 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -4195,10 +4212,10 @@ entities: 2792: -2,-27 2794: -2,-28 4626: 4,-24 - 5912: 2,-48 5985: 14,-30 5986: 14,-32 5987: 14,-33 + 6127: 2,-54 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale90 @@ -4726,14 +4743,14 @@ entities: 3544: 74,-33 3824: 101,4 5264: -7,39 - 6031: 75,7 + 6155: 76,5 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: 3825: 107,4 5265: -9,39 - 6035: 71,7 + 6153: 69,5 - node: color: '#FFFFFFFF' id: WarnCornerSE @@ -4742,7 +4759,7 @@ entities: 3822: 101,12 3826: 102,2 5263: -7,37 - 6028: 75,4 + 6154: 76,3 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -4750,7 +4767,7 @@ entities: 3823: 107,12 3827: 106,2 5258: -9,37 - 6036: 71,4 + 6156: 69,3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -4876,11 +4893,10 @@ entities: 5953: 16,-62 5954: 16,-61 5955: 16,-60 - 6029: 75,5 - 6030: 75,6 6050: 69,-27 6080: 64,-24 6081: 64,-25 + 6157: 76,4 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5140,15 +5156,18 @@ entities: 5990: 12,-33 5991: 13,-33 5992: 14,-33 - 6025: 72,4 - 6026: 73,4 - 6027: 74,4 6043: 72,-26 6044: 71,-26 6045: 70,-26 6076: 47,-29 6077: 46,-29 6100: 45,-29 + 6164: 70,3 + 6165: 71,3 + 6166: 72,3 + 6167: 73,3 + 6168: 74,3 + 6169: 75,3 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5201,11 +5220,10 @@ entities: 5993: 15,-37 5994: 15,-36 5995: 15,-35 - 6037: 71,5 - 6038: 71,6 6051: 73,-27 6082: 64,-24 6083: 64,-25 + 6170: 69,4 - node: color: '#DE3A3A96' id: WarnLineW @@ -5279,12 +5297,15 @@ entities: 5437: -1,34 5440: -11,52 5898: 18,-39 - 6032: 74,7 - 6033: 73,7 - 6034: 72,7 6052: 72,-28 6053: 71,-28 6054: 70,-28 + 6158: 70,5 + 6159: 71,5 + 6160: 72,5 + 6161: 73,5 + 6162: 74,5 + 6163: 75,5 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -5626,15 +5647,21 @@ entities: 4,-1: 0: 48127 -4,-4: - 0: 47547 + 0: 47545 + 2: 2 -4,-5: - 0: 47359 + 0: 39167 + 2: 8192 -5,-4: - 0: 61166 + 2: 2 + 0: 61164 -4,-3: - 0: 63931 + 0: 63897 + 2: 34 -5,-3: - 0: 62702 + 0: 62668 + 3: 2 + 2: 32 -4,-2: 0: 36863 -5,-2: @@ -5703,7 +5730,8 @@ entities: -6,-5: 0: 61167 -5,-5: - 0: 59647 + 0: 51455 + 2: 8192 -9,0: 0: 60943 -8,1: @@ -5960,19 +5988,19 @@ entities: 0: 65263 8,-5: 0: 1279 - 2: 57344 + 4: 57344 8,-4: - 2: 3822 + 4: 3822 0: 16384 9,-4: - 2: 7 + 4: 7 0: 58888 9,-2: 0: 30711 9,-1: 0: 61559 9,-5: - 2: 28672 + 4: 28672 0: 239 9,-3: 0: 12014 @@ -6059,13 +6087,13 @@ entities: 1: 2184 11,-8: 0: 61440 - 3: 238 + 5: 238 11,-7: 0: 65535 11,-6: 0: 65520 11,-9: - 3: 57344 + 5: 57344 1: 31 12,-6: 0: 65262 @@ -6075,7 +6103,8 @@ entities: 0: 61440 1: 128 -4,6: - 0: 53503 + 0: 37119 + 2: 16384 -5,5: 0: 63344 -5,6: @@ -6102,7 +6131,8 @@ entities: -2,7: 0: 29371 -2,8: - 0: 12287 + 0: 12031 + 3: 256 -1,5: 0: 63351 -1,6: @@ -6152,14 +6182,15 @@ entities: -6,8: 0: 8191 -5,8: - 0: 65294 + 0: 65290 + 2: 4 -12,7: 0: 61552 -12,8: 0: 57471 -13,7: 0: 32768 - 3: 30576 + 5: 30576 1: 7 -12,4: 0: 35852 @@ -6263,7 +6294,8 @@ entities: 0,8: 0: 10239 1,5: - 0: 58623 + 0: 25855 + 6: 32768 1,6: 0: 65262 1,7: @@ -6380,15 +6412,15 @@ entities: 1: 2048 12,-8: 1: 8738 - 4: 34944 + 7: 34944 12,-7: 1: 226 0: 57344 12,-9: 1: 58103 13,-8: - 4: 13104 - 5: 34944 + 7: 13104 + 8: 34944 13,-7: 1: 240 0: 61440 @@ -6401,8 +6433,8 @@ entities: 13,-4: 0: 62327 14,-8: - 5: 13104 - 3: 34944 + 8: 13104 + 5: 34944 14,-7: 1: 240 0: 61440 @@ -6415,7 +6447,7 @@ entities: 14,-4: 0: 65279 15,-8: - 3: 13104 + 5: 13104 1: 34952 15,-7: 1: 248 @@ -6462,7 +6494,7 @@ entities: 15,0: 0: 57463 16,-1: - 3: 240 + 5: 240 1: 62222 12,1: 0: 58606 @@ -6490,12 +6522,12 @@ entities: 0: 65262 15,2: 0: 4335 - 3: 57344 + 5: 57344 15,3: - 3: 9838 + 5: 9838 1: 34944 15,4: - 3: 2 + 5: 2 1: 34952 0: 4352 16,0: @@ -6505,9 +6537,9 @@ entities: 0: 64443 16,2: 0: 63 - 3: 63488 + 5: 63488 16,3: - 3: 287 + 5: 287 1: 3584 -12,-8: 0: 62583 @@ -6582,7 +6614,7 @@ entities: 0,10: 0: 30503 -1,10: - 6: 1 + 9: 1 0: 65318 0,11: 0: 887 @@ -6591,7 +6623,8 @@ entities: 0: 4095 0,12: 1: 207 - 0: 4352 + 6: 256 + 0: 4096 1,9: 0: 65535 1,10: @@ -6648,13 +6681,13 @@ entities: 0: 64784 -2,9: 0: 62327 - 7: 1024 + 2: 1024 -2,10: 0: 28935 - 7: 1536 + 2: 1536 -2,11: 0: 383 - 7: 1536 + 2: 1536 -2,12: 1: 207 0: 61696 @@ -6662,8 +6695,9 @@ entities: 0: 30578 -1,12: 1: 31 - 0: 62464 - 8: 2048 + 0: 61440 + 2: 1024 + 6: 2048 5,5: 0: 62258 1: 128 @@ -6815,30 +6849,30 @@ entities: 1: 36761 -8,13: 1: 240 - 3: 3598 + 5: 3598 -9,13: 1: 35064 - 3: 771 + 5: 771 -8,14: 1: 240 - 3: 3598 + 5: 3598 -9,14: 1: 35064 - 3: 771 + 5: 771 -8,15: 1: 240 - 3: 3598 + 5: 3598 -9,15: 1: 35064 - 3: 771 + 5: 771 -7,13: - 3: 1799 + 5: 1799 1: 240 -7,14: - 3: 1799 + 5: 1799 1: 240 -7,15: - 3: 1799 + 5: 1799 1: 240 -6,13: 1: 4369 @@ -6868,18 +6902,18 @@ entities: 1: 3857 -10,13: 1: 240 - 3: 3855 + 5: 3855 -10,14: 1: 240 - 3: 3855 + 5: 3855 -10,15: 1: 240 - 3: 3855 + 5: 3855 -10,11: 1: 4369 -9,16: 1: 35064 - 3: 771 + 5: 771 5,13: 1: 17600 5,14: @@ -6972,19 +7006,19 @@ entities: 1: 34956 15,7: 0: 32784 - 3: 750 + 5: 750 15,6: - 3: 26210 + 5: 26210 1: 34952 15,8: 0: 51711 16,5: 1: 17487 16,6: - 3: 256 + 5: 256 1: 3596 16,7: - 3: 2303 + 5: 2303 0: 12288 9,8: 0: 48048 @@ -7037,17 +7071,17 @@ entities: 1: 61441 17,0: 1: 223 - 3: 32 + 5: 32 0: 57344 17,2: 0: 15 - 3: 65280 + 5: 65280 17,3: - 3: 15 + 5: 15 1: 20288 17,-1: 1: 53389 - 3: 11826 + 5: 11826 17,1: 0: 61166 17,4: @@ -7058,45 +7092,46 @@ entities: 18,1: 0: 65535 18,2: - 0: 15 - 3: 65280 + 2: 1 + 0: 14 + 5: 65280 18,3: - 3: 15 + 5: 15 1: 3840 18,-1: 1: 61610 - 3: 3840 + 5: 3840 19,0: 1: 255 0: 4096 - 3: 3072 + 5: 3072 19,1: 0: 4369 19,2: 0: 1 - 3: 4352 + 5: 4352 1: 3276 19,3: - 3: 1011 + 5: 1011 1: 8192 19,-1: 1: 61474 - 3: 3840 + 5: 3840 19,4: 1: 8738 - 3: 51328 + 5: 51328 20,0: 1: 255 - 3: 3840 + 5: 3840 20,2: 1: 7951 20,3: 1: 261 - 3: 46320 + 5: 46320 -13,8: 0: 8 1: 12032 - 3: 119 + 5: 119 -12,9: 0: 2 1: 65408 @@ -7174,12 +7209,13 @@ entities: 2,-12: 0: 63344 2,-11: - 0: 62727 + 0: 62471 + 2: 256 2,-10: 0: 53759 2,-13: 0: 61952 - 3: 119 + 5: 119 3,-12: 0: 65359 3,-11: @@ -7204,7 +7240,7 @@ entities: 0: 36863 5,-13: 0: 63761 - 3: 204 + 5: 204 6,-12: 0: 32628 6,-11: @@ -7213,7 +7249,7 @@ entities: 0: 33791 6,-13: 0: 56512 - 3: 17 + 5: 17 7,-12: 0: 1904 7,-11: @@ -7232,7 +7268,7 @@ entities: 1: 127 -10,16: 1: 240 - 3: 3855 + 5: 3855 -10,17: 1: 15 -9,17: @@ -7241,13 +7277,13 @@ entities: 1: 14 -8,16: 1: 240 - 3: 3598 + 5: 3598 -8,17: 1: 9006 -8,18: 1: 3 -7,16: - 3: 1799 + 5: 1799 1: 240 -7,17: 1: 15 @@ -7257,58 +7293,58 @@ entities: 1: 61440 16,-4: 1: 8738 - 9: 2184 + 10: 2184 16,-3: 1: 8738 - 3: 2184 + 5: 2184 16,-2: 1: 8738 - 3: 2184 + 5: 2184 16,-5: 1: 8738 - 3: 2184 + 5: 2184 17,-4: - 9: 819 - 3: 2176 + 10: 819 + 5: 2176 1: 32768 17,-3: - 3: 819 + 5: 819 1: 34952 17,-2: - 3: 819 + 5: 819 1: 34952 17,-5: - 3: 35635 + 5: 35635 1: 136 18,-4: - 3: 3975 + 5: 3975 1: 40992 18,-3: 1: 43770 18,-5: 1: 8362 - 3: 36608 + 5: 36608 18,-2: 1: 43690 19,-4: - 3: 3975 + 5: 3975 1: 40992 19,-3: 1: 57906 19,-5: 1: 8354 - 3: 36608 + 5: 36608 19,-2: 1: 8930 20,-4: - 3: 3975 + 5: 3975 1: 32768 20,-3: 1: 61440 20,-2: 1: 240 20,-1: - 3: 3840 + 5: 3840 1: 61440 16,-9: 1: 4369 @@ -7348,7 +7384,7 @@ entities: 20,-6: 1: 1879 20,-5: - 3: 36608 + 5: 36608 1: 128 12,-10: 1: 62192 @@ -7370,32 +7406,32 @@ entities: 1: 65023 16,-11: 1: 4353 - 3: 52416 + 5: 52416 16,-10: 1: 4353 0: 52416 20,4: 1: 5377 - 3: 244 + 5: 244 21,0: 1: 33023 - 3: 3840 + 5: 3840 21,2: 1: 3887 21,3: - 3: 46320 + 5: 46320 1: 4 21,-1: 1: 61440 - 3: 3840 + 5: 3840 21,1: 1: 17608 21,4: - 3: 244 + 5: 244 1: 1024 22,0: 1: 2167 - 3: 58112 + 5: 58112 0: 136 22,1: 1: 3634 @@ -7403,19 +7439,19 @@ entities: 22,2: 1: 3855 22,3: - 3: 46320 + 5: 46320 1: 4 22,-1: 1: 28704 0: 32768 - 3: 3840 + 5: 3840 22,4: - 3: 180 + 5: 180 1: 1088 23,0: 0: 17663 1: 35328 - 3: 8192 + 5: 8192 23,1: 0: 35959 1: 29320 @@ -7423,16 +7459,16 @@ entities: 1: 26471 0: 34952 23,3: - 3: 61552 + 5: 61552 1: 3590 0: 136 23,-1: 0: 62532 1: 2235 - 3: 512 + 5: 512 23,4: 1: 19468 - 3: 240 + 5: 240 24,0: 0: 3295 1: 256 @@ -7443,13 +7479,13 @@ entities: 24,3: 1: 609 0: 4368 - 3: 59392 + 5: 59392 16,-13: 1: 12032 17,-12: 1: 65023 17,-11: - 3: 13104 + 5: 13104 1: 34952 17,-10: 0: 65520 @@ -7518,7 +7554,7 @@ entities: 15,10: 1: 30481 0: 8 - 3: 34944 + 5: 34944 14,11: 1: 34952 14,12: @@ -7530,18 +7566,18 @@ entities: 0: 17 1: 34952 15,11: - 3: 34952 + 5: 34952 16,10: 1: 63630 15,12: - 3: 34952 + 5: 34952 1: 28672 16,11: - 3: 26112 + 5: 26112 1: 34952 16,12: 1: 34959 - 3: 1632 + 5: 1632 17,8: 0: 17 1: 19532 @@ -7549,12 +7585,12 @@ entities: 1: 244 17,10: 1: 45056 - 3: 16384 + 5: 16384 17,11: - 3: 65348 + 5: 65348 17,12: 1: 17487 - 3: 2992 + 5: 2992 18,8: 1: 8495 18,9: @@ -7562,13 +7598,13 @@ entities: 18,10: 1: 61440 18,11: - 3: 56576 + 5: 56576 1: 8738 18,12: 1: 8751 - 3: 3536 + 5: 3536 18,7: - 3: 36863 + 5: 36863 19,8: 1: 1 19,10: @@ -7576,7 +7612,7 @@ entities: 19,11: 1: 21845 19,7: - 3: 4371 + 5: 4371 19,12: 1: 21847 16,4: @@ -7586,19 +7622,19 @@ entities: 17,6: 1: 20303 17,7: - 3: 4095 + 5: 4095 18,4: 1: 17479 18,5: 1: 17487 18,6: 1: 3847 - 3: 32768 + 5: 32768 19,5: 1: 8739 - 3: 34824 + 5: 34824 19,6: - 3: 61804 + 5: 61804 1: 2 20,5: 1: 4371 @@ -7614,17 +7650,17 @@ entities: 1: 34952 15,14: 1: 28672 - 3: 34952 + 5: 34952 15,15: 1: 3754 15,13: - 3: 34952 + 5: 34952 16,13: 1: 36744 - 3: 24678 + 5: 24678 16,14: 1: 63624 - 3: 6 + 5: 6 16,15: 1: 1860 -8,-12: @@ -7710,13 +7746,13 @@ entities: 0: 65399 2,-14: 1: 240 - 3: 28672 + 5: 28672 2,-17: 0: 4096 - 3: 1 + 5: 1 1: 30 3,-16: - 3: 16 + 5: 16 0: 28672 1: 68 3,-15: @@ -7725,7 +7761,7 @@ entities: 0: 65166 3,-17: 1: 17475 - 3: 4 + 5: 4 4,-16: 0: 30496 4,-15: @@ -7804,16 +7840,16 @@ entities: 0: 65535 -12,-16: 1: 17231 - 3: 1184 + 5: 1184 -13,-16: 1: 2895 - 3: 1184 + 5: 1184 -12,-15: 1: 3908 -13,-15: 1: 3840 -12,-17: - 3: 43690 + 5: 43690 1: 17476 -11,-16: 1: 1 @@ -7845,7 +7881,7 @@ entities: 0: 19648 1: 4368 -16,-10: - 3: 16 + 5: 16 1: 44 -15,-11: 1: 65280 @@ -7860,53 +7896,53 @@ entities: 0: 26212 -16,-16: 1: 39321 - 3: 4 + 5: 4 -16,-17: 1: 7953 -16,-15: 1: 3869 -15,-16: 1: 18511 - 3: 1184 + 5: 1184 -15,-15: 1: 3911 -15,-17: - 3: 43690 + 5: 43690 1: 17732 -14,-16: 1: 2895 - 3: 1184 + 5: 1184 -14,-15: 1: 3840 -14,-17: - 3: 43690 + 5: 43690 1: 17476 -13,-17: - 3: 43690 + 5: 43690 1: 17476 -18,-10: 1: 4 - 3: 8 + 5: 8 -17,-10: - 3: 7 + 5: 7 -12,-19: 1: 43947 - 3: 1092 + 5: 1092 -13,-19: 1: 44590 - 3: 273 + 5: 273 -12,-18: 1: 17498 - 3: 43684 + 5: 43684 -13,-18: - 3: 43684 + 5: 43684 1: 17498 -12,-20: 1: 17408 -11,-19: 1: 3983 -10,-19: - 3: 4369 + 5: 4369 1: 57568 -10,-20: 1: 4352 @@ -7952,30 +7988,30 @@ entities: 1: 5905 -15,-19: 1: 43963 - 3: 1092 + 5: 1092 -15,-18: 1: 17738 - 3: 43684 + 5: 43684 -15,-20: 1: 17408 -14,-19: 1: 44943 -14,-18: 1: 17498 - 3: 43684 + 5: 43684 -13,-20: 1: 4352 17,13: - 3: 45243 + 5: 45243 1: 20292 17,14: - 3: 11 + 5: 11 1: 62532 18,13: - 3: 53469 + 5: 53469 1: 12066 18,14: - 3: 13 + 5: 13 1: 61986 19,13: 1: 22357 @@ -7989,10 +8025,10 @@ entities: 5,-14: 0: 4096 1: 224 - 3: 49152 + 5: 49152 5,-17: 1: 4382 - 3: 1 + 5: 1 6,-16: 1: 3186 0: 4096 @@ -8000,11 +8036,11 @@ entities: 0: 61917 6,-14: 1: 16 - 3: 4096 + 5: 4096 0: 52428 6,-17: 1: 8749 - 3: 2 + 5: 2 7,-16: 1: 3976 7,-15: @@ -8040,11 +8076,11 @@ entities: 1,-18: 1: 60962 2,-18: - 3: 4352 + 5: 4352 1: 60945 3,-18: 1: 13124 - 3: 17408 + 5: 17408 9,-13: 0: 1911 9,-16: @@ -8055,7 +8091,7 @@ entities: 0: 26342 9,-17: 0: 16384 - 3: 1 + 5: 1 1: 1092 10,-14: 0: 48 @@ -8068,41 +8104,41 @@ entities: 1: 17476 8,-20: 1: 53248 - 3: 11264 + 5: 11264 7,-20: 1: 32768 8,-18: 1: 53248 - 3: 11276 + 5: 11276 7,-18: 1: 65416 8,-19: - 3: 11276 + 5: 11276 1: 49152 8,-17: - 3: 12 + 5: 12 9,-20: - 3: 260 + 5: 260 1: 62538 9,-19: - 3: 257 + 5: 257 1: 62532 9,-18: - 3: 257 + 5: 257 1: 62532 9,-21: 1: 17412 10,-20: 1: 28672 - 3: 34560 + 5: 34560 10,-19: 1: 28672 - 3: 34567 + 5: 34567 10,-18: 1: 28672 - 3: 34567 + 5: 34567 10,-17: - 3: 7 + 5: 7 11,-20: 1: 29764 11,-18: @@ -8123,30 +8159,30 @@ entities: 1: 12288 5,-18: 1: 60945 - 3: 4352 + 5: 4352 6,-18: 1: 56576 - 3: 8704 + 5: 8704 7,-19: 1: 34952 21,-4: - 3: 3975 + 5: 3975 1: 32768 21,-3: 1: 61440 21,-2: 1: 240 21,-5: - 3: 36608 + 5: 36608 1: 128 22,-4: - 3: 3855 + 5: 3855 22,-3: 1: 61440 22,-2: 1: 240 23,-4: - 3: 3855 + 5: 3855 1: 49344 23,-3: 1: 64716 @@ -8155,10 +8191,10 @@ entities: 0: 49152 23,-5: 1: 49348 - 3: 3840 + 5: 3840 24,-4: 0: 4369 - 3: 142 + 5: 142 1: 8736 24,-3: 0: 4369 @@ -8172,7 +8208,7 @@ entities: 24,4: 0: 3857 1: 61538 - 3: 136 + 5: 136 25,0: 0: 3551 25,2: @@ -8221,7 +8257,7 @@ entities: 24,-5: 0: 4592 1: 9743 - 3: 34816 + 5: 34816 25,-3: 0: 32766 25,-2: @@ -8314,7 +8350,7 @@ entities: 1: 34800 0: 28672 22,-5: - 3: 3840 + 5: 3840 20,-13: 1: 22272 -16,8: @@ -8327,21 +8363,21 @@ entities: 0: 546 -15,8: 0: 256 - 3: 238 + 5: 238 1: 36352 -15,7: 0: 4096 - 3: 61152 + 5: 61152 1: 15 -15,9: 1: 12 -14,8: - 3: 255 + 5: 255 1: 20224 -14,9: 1: 15 -14,7: - 3: 65520 + 5: 65520 1: 15 -17,7: 0: 34816 @@ -8389,10 +8425,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.14975 moles: - - 21.824879 - - 82.10312 + - 20.078888 + - 75.53487 - 0 - 0 - 0 @@ -8406,11 +8442,26 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 - 0 - 0 - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -8422,7 +8473,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -8436,8 +8487,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -8451,8 +8502,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.66546 - - 81.50341 + - 0 + - 6666.982 - 0 - 0 - 0 @@ -8464,10 +8515,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14975 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -8481,8 +8532,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 21.6852 - - 81.57766 + - 21.66546 + - 81.50341 - 0 - 0 - 0 @@ -8517,6 +8568,69 @@ entities: - type: RadiationGridResistance - type: SpreaderGrid - type: GridPathfinding + - type: Joint + joints: + docking31405: !type:WeldJoint + bodyB: 5350 + bodyA: 28213 + id: docking31405 + localAnchorB: 0.49999997,0 + localAnchorA: -62.5,39 + damping: 77.55165 + stiffness: 696.102 + - uid: 28213 + components: + - type: MetaData + name: grid + - type: Transform + pos: -60.740906,38.52563 + parent: 951 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: aAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: Joint + joints: + docking31405: !type:WeldJoint + bodyB: 5350 + bodyA: 28213 + id: docking31405 + localAnchorB: -62.5,39 + localAnchorA: 0.49999997,0 + damping: 77.55168 + stiffness: 696.10236 - proto: AcousticGuitarInstrument entities: - uid: 3945 @@ -8529,6 +8643,12 @@ entities: - type: Transform pos: 43.586433,9.186928 parent: 5350 + - uid: 12703 + components: + - type: Transform + parent: 1021 + - type: Physics + canCollide: False - uid: 16506 components: - type: Transform @@ -8566,13 +8686,6 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 7614 - - uid: 7801 - components: - - type: Transform - parent: 7797 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 7797 - uid: 9404 components: - type: Transform @@ -8619,6 +8732,20 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 9670 + - uid: 28315 + components: + - type: Transform + parent: 28314 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 28314 + - uid: 28317 + components: + - type: Transform + parent: 28316 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 28316 - proto: AirAlarm entities: - uid: 67 @@ -8647,6 +8774,8 @@ entities: - 14356 - uid: 353 components: + - type: MetaData + name: CMO's Office Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -12.5,-36.5 @@ -8656,6 +8785,41 @@ entities: - 14658 - 15484 - 14630 + - uid: 465 + components: + - type: MetaData + name: Bridge Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 5350 + - type: DeviceList + devices: + - 27667 + - 27666 + - 24580 + - 27668 + - 27669 + - 772 + - 771 + - 173 + - uid: 686 + components: + - type: MetaData + name: Showroom Air Alarm + - type: Transform + pos: -1.5,-12.5 + parent: 5350 + - type: DeviceList + devices: + - 20608 + - 24580 + - 15213 + - 141 + - 16614 + - 9292 + - 9239 + - 24322 - uid: 928 components: - type: Transform @@ -8669,6 +8833,8 @@ entities: - 18479 - uid: 1072 components: + - type: MetaData + name: SE Loop Air Alarm - type: Transform pos: 14.5,-17.5 parent: 5350 @@ -8689,6 +8855,8 @@ entities: - 13406 - uid: 1308 components: + - type: MetaData + name: Arrivals South 2 Air Alarm - type: Transform pos: -60.5,-6.5 parent: 5350 @@ -8707,6 +8875,8 @@ entities: - 10793 - uid: 1369 components: + - type: MetaData + name: Kitchen Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-10.5 @@ -8726,16 +8896,6 @@ entities: - 3134 - 151 - 346 - - uid: 1455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-1.5 - parent: 5350 - - type: DeviceList - devices: - - 772 - - 771 - uid: 1523 components: - type: MetaData @@ -8764,6 +8924,8 @@ entities: - 16387 - uid: 3141 components: + - type: MetaData + name: SW Loop Air Alarm - type: Transform pos: -19.5,-17.5 parent: 5350 @@ -8805,6 +8967,8 @@ entities: - 774 - uid: 3509 components: + - type: MetaData + name: Disposals Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -38.5,31.5 @@ -8814,44 +8978,32 @@ entities: - 18560 - 17706 - 14651 - - uid: 4101 + - uid: 3881 components: - type: Transform - pos: -28.5,18.5 + rot: 1.5707963267948966 rad + pos: -0.5,-44.5 parent: 5350 - type: DeviceList devices: - - 18234 - - 3413 - - uid: 4159 + - 953 + - 28351 + - 15896 + - uid: 4101 components: + - type: MetaData + name: QM's Room Air Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 + pos: -28.5,18.5 parent: 5350 - type: DeviceList devices: - - 5666 - - 5667 - - 5665 - - 15185 - - 15190 - - 24346 - - 26483 - - 26484 - - 26485 - - 24338 - - 3503 - - 3504 - - 24350 - - 14877 - - 15079 - - 352 - - 12702 - - 418 - - 12688 + - 18234 + - 3413 - uid: 4213 components: + - type: MetaData + name: Armory Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -10.5,45.5 @@ -8865,6 +9017,8 @@ entities: - 10321 - uid: 4375 components: + - type: MetaData + name: QM's Office Air Alarm - type: Transform pos: -30.5,15.5 parent: 5350 @@ -8877,6 +9031,8 @@ entities: - 18231 - uid: 5056 components: + - type: MetaData + name: Washroom West Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-7.5 @@ -8886,24 +9042,10 @@ entities: - 17267 - 10671 - 717 - - uid: 5438 - components: - - type: Transform - pos: -54.5,9.5 - parent: 5350 - - type: DeviceList - devices: - - 5809 - - 5810 - - 1303 - - 5574 - - 5573 - - 5572 - - 718 - - 10791 - - 10790 - uid: 5578 components: + - type: MetaData + name: Bar Backroom Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 21.5,-14.5 @@ -8916,6 +9058,8 @@ entities: - 13411 - uid: 5976 components: + - type: MetaData + name: Arrivals North 1 Air Alarm - type: Transform pos: -73.5,9.5 parent: 5350 @@ -8926,8 +9070,11 @@ entities: - 24367 - 5559 - 5503 + - 4041 - uid: 6209 components: + - type: MetaData + name: Botany Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-17.5 @@ -8959,6 +9106,8 @@ entities: - 10481 - uid: 6384 components: + - type: MetaData + name: Secure Armory Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -8.5,35.5 @@ -8969,9 +9118,11 @@ entities: - 9640 - 22391 - 22390 - - 7683 + - 28218 - uid: 6405 components: + - type: MetaData + name: R&D Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-31.5 @@ -8995,27 +9146,29 @@ entities: parent: 5350 - type: DeviceList devices: + - 22156 + - 22155 + - 17763 + - 17759 + - 17762 + - 17758 - 17757 - 17761 - - 17758 - - 17762 - - 17759 - - 17763 - - 21167 - - 2156 - 21166 - - 22156 - - 22155 + - 21167 - 22576 + - 2156 - uid: 6735 components: + - type: MetaData + name: Brig Air Alarm - type: Transform pos: -4.5,35.5 parent: 5350 - type: DeviceList devices: - 6946 - - 7683 + - 28218 - 6806 - 7773 - 7791 @@ -9055,17 +9208,6 @@ entities: - 7103 - 7157 - 15169 - - uid: 7263 - components: - - type: Transform - pos: -18.5,-0.5 - parent: 5350 - - type: DeviceList - devices: - - 755 - - 747 - - 24213 - - 24580 - uid: 7315 components: - type: Transform @@ -9082,6 +9224,8 @@ entities: - 10321 - uid: 7790 components: + - type: MetaData + name: Security Front Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -0.5,30.5 @@ -9101,8 +9245,26 @@ entities: - 7106 - 7345 - 22373 + - uid: 9586 + components: + - type: MetaData + name: AI Access Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 5350 + - type: DeviceList + devices: + - 12078 + - 18938 + - 23910 + - 11253 + - 18936 + - 15642 - uid: 9894 components: + - type: MetaData + name: Arrivals South 1 Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -73.5,-10.5 @@ -9114,6 +9276,25 @@ entities: - 24376 - 5562 - 5536 + - uid: 10405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-52.5 + parent: 5350 + - type: DeviceList + devices: + - 14771 + - 14772 + - 14770 + - 656 + - 8959 + - 15984 + - 15655 + - 14300 + - 20335 + - 784 + - 16384 - uid: 10993 components: - type: Transform @@ -9141,6 +9322,8 @@ entities: - 7466 - uid: 11151 components: + - type: MetaData + name: Atmos Canisters Air Alarm - type: Transform pos: 52.5,-4.5 parent: 5350 @@ -9154,8 +9337,11 @@ entities: - 7675 - 24492 - 8895 + - 24512 - uid: 11591 components: + - type: MetaData + name: Engineering Lockers Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 57.5,6.5 @@ -9167,19 +9353,6 @@ entities: - 12371 - 12382 - 12383 - - uid: 11665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,2.5 - parent: 5350 - - type: DeviceList - devices: - - 23509 - - 23510 - - 12383 - - 12382 - - 12371 - uid: 12282 components: - type: Transform @@ -9215,23 +9388,6 @@ entities: - 19618 - 14242 - 1214 - - uid: 13496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 - parent: 5350 - - type: DeviceList - devices: - - 11217 - - 11218 - - 11214 - - 11213 - - 23929 - - 12995 - - 12990 - - 12994 - - 12996 - uid: 13729 components: - type: Transform @@ -9252,17 +9408,29 @@ entities: - 10793 - 24379 - 718 - - uid: 14774 + - uid: 14507 components: + - type: MetaData + name: East Corridor 1 Air Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-57.5 + pos: 23.5,5.5 parent: 5350 - type: DeviceList devices: - - 14770 - - 14772 - - 14771 + - 27661 + - 4983 + - 6926 + - 13155 + - 23448 + - 23444 + - 12713 + - 13409 + - 27660 + - 27659 + - 21150 + - 24492 + - 24466 + - 12708 - uid: 14854 components: - type: Transform @@ -9282,6 +9450,8 @@ entities: - 14416 - uid: 15053 components: + - type: MetaData + name: medical Paramedic Lockers Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-33.5 @@ -9292,8 +9462,13 @@ entities: - 14297 - 14357 - 14358 + - 15438 + - 17514 + - 18420 - uid: 15127 components: + - type: MetaData + name: Reporter's Office Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -51.5,-8.5 @@ -9319,8 +9494,30 @@ entities: - 418 - 15079 - 14877 + - uid: 15447 + components: + - type: MetaData + name: Engine Containment Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,23.5 + parent: 5350 + - type: DeviceList + devices: + - 23908 + - 23372 + - 23383 + - 23384 + - 23385 + - 23379 + - 11440 + - 989 + - 15357 + - 1513 - uid: 15537 components: + - type: MetaData + name: South Hall 2 Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-47.5 @@ -9332,6 +9529,15 @@ entities: - 16450 - 24552 - 19300 + - 8959 + - 15984 + - 15655 + - 18620 + - 19079 + - 14392 + - 784 + - 19297 + - 14300 - uid: 15545 components: - type: Transform @@ -9360,6 +9566,21 @@ entities: - 17487 - 19225 - 18471 + - uid: 15867 + components: + - type: MetaData + name: HoP's Office Air Alarm + - type: Transform + pos: -16.5,-0.5 + parent: 5350 + - type: DeviceList + devices: + - 755 + - 747 + - 24213 + - 24580 + - 9615 + - 24338 - uid: 15892 components: - type: Transform @@ -9392,19 +9613,10 @@ entities: - 18019 - 408 - 17491 - - uid: 16342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 5350 - - type: DeviceList - devices: - - 7955 - - 9375 - - 16314 - uid: 16580 components: + - type: MetaData + name: Central Hall Air Alarm - type: Transform pos: 11.5,-6.5 parent: 5350 @@ -9435,12 +9647,37 @@ entities: - 12691 - uid: 16587 components: + - type: MetaData + name: South Loop Air Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 + pos: -0.5,-17.5 parent: 5350 + - type: DeviceList + devices: + - 5668 + - 5669 + - 5671 + - 14210 + - 14209 + - 11860 + - 9749 + - 9750 + - 5670 + - 5672 + - 5673 + - 26531 + - 26533 + - 26532 + - 15438 + - 17677 + - 24552 + - 15343 + - 16422 + - 16614 - uid: 17459 components: + - type: MetaData + name: Security North Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -10.5,42.5 @@ -9459,14 +9696,16 @@ entities: - 22551 - uid: 17740 components: + - type: MetaData + name: Perma Entry Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -10.5,50.5 parent: 5350 - type: DeviceList devices: - - 6547 - - 7026 + - 12450 + - 11366 - 334 - 17745 - 17753 @@ -9475,6 +9714,8 @@ entities: - 17738 - uid: 18013 components: + - type: MetaData + name: Salvage Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -39.5,24.5 @@ -9485,12 +9726,21 @@ entities: - 18231 - uid: 18016 components: + - type: MetaData + name: Theatre Air Alarm - type: Transform rot: 3.141592653589793 rad - pos: -35.5,28.5 + pos: 36.5,-8.5 parent: 5350 + - type: DeviceList + devices: + - 2708 + - 2707 + - 24488 - uid: 18226 components: + - type: MetaData + name: Cargo Breakroom Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -33.5,26.5 @@ -9517,6 +9767,8 @@ entities: - 24562 - uid: 19078 components: + - type: MetaData + name: Janitorial Closet Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 9.5,-25.5 @@ -9573,17 +9825,6 @@ entities: - 6116 - 16624 - 307 - - uid: 19310 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-47.5 - parent: 5350 - - type: DeviceList - devices: - - 19367 - - 19500 - - 1212 - uid: 19406 components: - type: Transform @@ -9646,6 +9887,8 @@ entities: - 19630 - uid: 19634 components: + - type: MetaData + name: Sci Canisters Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-43.5 @@ -9661,6 +9904,8 @@ entities: - 14392 - uid: 20624 components: + - type: MetaData + name: Dorms Hall Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 36.5,20.5 @@ -9674,6 +9919,17 @@ entities: - 11214 - 11213 - 926 + - uid: 20700 + components: + - type: MetaData + name: Science Lockers Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-54.5 + parent: 5350 + - type: DeviceList + devices: + - 19638 - uid: 20858 components: - type: Transform @@ -9688,7 +9944,8 @@ entities: - uid: 20890 components: - type: MetaData - name: Servers Air sensor + desc: View the atmospheric quality of the room. + name: Servers Status Monitor - type: Transform rot: 1.5707963267948966 rad pos: 26.5,-36.5 @@ -9699,6 +9956,8 @@ entities: - 20821 - uid: 21245 components: + - type: MetaData + name: Anomaly Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 20.5,-31.5 @@ -9763,6 +10022,8 @@ entities: - 656 - uid: 22224 components: + - type: MetaData + name: Callbox Air Alarm - type: Transform pos: 28.5,34.5 parent: 5350 @@ -9772,6 +10033,8 @@ entities: - 7067 - uid: 22466 components: + - type: MetaData + name: Warden's Office Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -0.5,38.5 @@ -9787,6 +10050,8 @@ entities: - 22453 - uid: 22543 components: + - type: MetaData + name: Security Storage Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 8.5,26.5 @@ -9800,6 +10065,8 @@ entities: - 9994 - uid: 22545 components: + - type: MetaData + name: Security West Air Alarm - type: Transform rot: 3.141592653589793 rad pos: 9.5,29.5 @@ -9820,20 +10087,24 @@ entities: - 6865 - uid: 22575 components: + - type: MetaData + name: Perma Hall Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -5.5,50.5 parent: 5350 - type: DeviceList devices: - - 6547 - - 7026 + - 12450 + - 11366 - 17753 - 18569 - 18545 - 334 - uid: 22590 components: + - type: MetaData + name: Firing Range Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -14.5,47.5 @@ -9847,6 +10118,8 @@ entities: - 22551 - uid: 22592 components: + - type: MetaData + name: Courtroom Air Alarm - type: Transform pos: 2.5,22.5 parent: 5350 @@ -9859,6 +10132,8 @@ entities: - 23446 - uid: 23104 components: + - type: MetaData + name: Newsroom Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -45.5,-15.5 @@ -9870,6 +10145,8 @@ entities: - 1188 - uid: 23115 components: + - type: MetaData + name: Medical Front Air Alarm - type: Transform pos: -5.5,-22.5 parent: 5350 @@ -9914,6 +10191,8 @@ entities: - 1217 - uid: 23363 components: + - type: MetaData + name: TEG Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-31.5 @@ -9923,21 +10202,22 @@ entities: - 28013 - 28017 - 27078 - - uid: 23905 + - uid: 23602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,20.5 + pos: 74.5,9.5 parent: 5350 - type: DeviceList devices: - - 23908 - - 23372 - - 23383 - - 23384 - - 23385 + - 26844 + - 23510 + - 12383 + - 12382 + - 12371 - uid: 23906 components: + - type: MetaData + name: Secure Storage Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 41.5,21.5 @@ -9949,6 +10229,8 @@ entities: - 23380 - uid: 23907 components: + - type: MetaData + name: Engineering Lobby Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 48.5,0.5 @@ -9957,7 +10239,7 @@ entities: devices: - 12033 - 11834 - - 16662 + - 15642 - 24509 - 24492 - 23268 @@ -9967,6 +10249,8 @@ entities: - 14047 - uid: 24320 components: + - type: MetaData + name: EVA Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-14.5 @@ -9976,15 +10260,6 @@ entities: - 1581 - 24271 - 1584 - - uid: 24321 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 5350 - - type: DeviceList - devices: - - 24322 - uid: 24324 components: - type: Transform @@ -9999,6 +10274,8 @@ entities: - 4085 - uid: 24337 components: + - type: MetaData + name: Main Loop West Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -10025,6 +10302,8 @@ entities: - 11926 - 24338 - 417 + - 9615 + - 8379 - uid: 24340 components: - type: Transform @@ -10074,6 +10353,8 @@ entities: - 24346 - uid: 24349 components: + - type: MetaData + name: Cargo Front Air Alarm - type: Transform pos: -24.5,9.5 parent: 5350 @@ -10091,6 +10372,8 @@ entities: - 846 - uid: 24352 components: + - type: MetaData + name: Cargo Desk Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -35.5,7.5 @@ -10108,6 +10391,8 @@ entities: - 3916 - uid: 24359 components: + - type: MetaData + name: Arrivals Lobby Air Alarm - type: Transform pos: -49.5,4.5 parent: 5350 @@ -10128,6 +10413,8 @@ entities: - 719 - uid: 24361 components: + - type: MetaData + name: Arrivals Central Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -57.5,-3.5 @@ -10152,6 +10439,8 @@ entities: - 11105 - uid: 24380 components: + - type: MetaData + name: Docking Arm Air Alarm - type: Transform pos: -63.5,-16.5 parent: 5350 @@ -10164,12 +10453,16 @@ entities: - 5839 - uid: 24384 components: + - type: MetaData + name: Library Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-6.5 parent: 5350 - uid: 24386 components: + - type: MetaData + name: Maillroom Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -43.5,4.5 @@ -10194,6 +10487,8 @@ entities: - 18231 - uid: 24419 components: + - type: MetaData + name: Law Office Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 15.5,19.5 @@ -10217,6 +10512,8 @@ entities: - 12893 - uid: 24436 components: + - type: MetaData + name: Interrogation Air Alarm - type: Transform pos: 19.5,33.5 parent: 5350 @@ -10227,6 +10524,8 @@ entities: - 7395 - uid: 24437 components: + - type: MetaData + name: Detective's Office Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 9.5,27.5 @@ -10254,6 +10553,8 @@ entities: - 7338 - uid: 24446 components: + - type: MetaData + name: Loop NE Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 18.5,9.5 @@ -10263,14 +10564,6 @@ entities: - 2126 - 2127 - 2125 - - uid: 24449 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,1.5 - parent: 5350 - - type: DeviceList - devices: - 3265 - 3264 - 3263 @@ -10279,9 +10572,6 @@ entities: - 27661 - 11217 - 11218 - - 2125 - - 2127 - - 2126 - uid: 24451 components: - type: Transform @@ -10295,14 +10585,20 @@ entities: - 14331 - uid: 24453 components: + - type: MetaData + name: Bridge Confrence Air Alarm - type: Transform pos: 0.5,-2.5 parent: 5350 - type: DeviceList devices: - 24454 + - 14676 + - 3563 - uid: 24458 components: + - type: MetaData + name: Loop East Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-5.5 @@ -10326,29 +10622,10 @@ entities: - 2109 - 24580 - 21255 - - uid: 24461 - components: - - type: Transform - pos: 29.5,5.5 - parent: 5350 - - type: DeviceList - devices: - - 27661 - - 4983 - - 6926 - - 13155 - - 23448 - - 23444 - - 12713 - - 13409 - - 27660 - - 27659 - - 21150 - - 24492 - - 24466 - - 12708 - uid: 24464 components: + - type: MetaData + name: Bar Commons Air Alarm - type: Transform pos: 33.5,-1.5 parent: 5350 @@ -10377,6 +10654,8 @@ entities: - 10380 - uid: 24468 components: + - type: MetaData + name: Bar Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 18.5,-9.5 @@ -10396,6 +10675,8 @@ entities: - 2640 - uid: 24484 components: + - type: MetaData + name: Botany Lockers Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-20.5 @@ -10407,6 +10688,8 @@ entities: - 3268 - uid: 24486 components: + - type: MetaData + name: Theatre Backstage Air Alarm - type: Transform pos: 39.5,-8.5 parent: 5350 @@ -10415,18 +10698,10 @@ entities: - 2676 - 2698 - 24487 - - uid: 24489 - components: - - type: Transform - pos: 38.5,-1.5 - parent: 5350 - - type: DeviceList - devices: - - 2708 - - 2707 - - 24488 - uid: 24490 components: + - type: MetaData + name: East Corridor 2 Air Alarm - type: Transform pos: 41.5,5.5 parent: 5350 @@ -10456,6 +10731,8 @@ entities: - 12060 - uid: 24495 components: + - type: MetaData + name: CE's Office Air Alarm - type: Transform pos: 45.5,11.5 parent: 5350 @@ -10466,6 +10743,8 @@ entities: - 24496 - uid: 24506 components: + - type: MetaData + name: Gravity Gen Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 59.5,35.5 @@ -10474,9 +10753,14 @@ entities: devices: - 24507 - 19002 - - 19003 + - 11440 + - 19001 + - 989 + - 23908 - uid: 24510 components: + - type: MetaData + name: Atmos Lockers Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 51.5,-11.5 @@ -10496,6 +10780,8 @@ entities: - 4418 - uid: 24514 components: + - type: MetaData + name: Room 3 Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 30.5,23.5 @@ -10506,6 +10792,8 @@ entities: - 12729 - uid: 24515 components: + - type: MetaData + name: Atmos Air Alarm - type: Transform pos: 61.5,-3.5 parent: 5350 @@ -10528,6 +10816,8 @@ entities: - 11150 - uid: 24525 components: + - type: MetaData + name: Room 5 Air Alarm - type: Transform pos: 30.5,29.5 parent: 5350 @@ -10537,6 +10827,8 @@ entities: - 24630 - uid: 24526 components: + - type: MetaData + name: Room 4 Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 39.5,26.5 @@ -10553,6 +10845,8 @@ entities: parent: 5350 - uid: 24547 components: + - type: MetaData + name: Room 1 Air Alarm - type: Transform pos: 31.5,16.5 parent: 5350 @@ -10562,6 +10856,8 @@ entities: - 12835 - uid: 24548 components: + - type: MetaData + name: Room 2 Air Alarm - type: Transform pos: 38.5,16.5 parent: 5350 @@ -10636,6 +10932,8 @@ entities: parent: 5350 - uid: 24575 components: + - type: MetaData + name: Medical Hall 1 Air Alarm - type: Transform rot: 3.141592653589793 rad pos: -12.5,-32.5 @@ -10647,6 +10945,11 @@ entities: - 5538 - 14161 - 14694 + - 18017 + - 15438 + - 15516 + - 15466 + - 15587 - uid: 24578 components: - type: Transform @@ -10686,6 +10989,8 @@ entities: - 18242 - uid: 24696 components: + - type: MetaData + name: Garden Air Alarm - type: Transform rot: -1.5707963267948966 rad pos: 35.5,48.5 @@ -10696,6 +11001,8 @@ entities: - 13046 - uid: 24697 components: + - type: MetaData + name: North Dorms Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 26.5,44.5 @@ -10715,6 +11022,8 @@ entities: - 23929 - uid: 25314 components: + - type: MetaData + name: AI Sat Entry Air Alarm - type: Transform pos: 92.5,2.5 parent: 5350 @@ -10722,6 +11031,108 @@ entities: devices: - 26237 - 25560 + - uid: 25966 + components: + - type: MetaData + name: AI Sat East Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,1.5 + parent: 5350 + - type: DeviceList + devices: + - 25965 + - 25963 + - 25892 + - 25922 + - 25962 + - 26238 + - uid: 25983 + components: + - type: MetaData + name: Game Room Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-19.5 + parent: 5350 + - type: DeviceList + devices: + - 17673 + - uid: 25984 + components: + - type: MetaData + name: Arrivals North 2 Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,5.5 + parent: 5350 + - type: DeviceList + devices: + - 5809 + - 5810 + - 4041 + - 5574 + - 5573 + - 5572 + - 718 + - 10791 + - 10790 + - uid: 25987 + components: + - type: MetaData + name: NW Loop Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,7.5 + parent: 5350 + - type: DeviceList + devices: + - 5666 + - 5667 + - 5665 + - 15185 + - 15190 + - 24346 + - 26483 + - 26484 + - 26485 + - 24338 + - 3503 + - 3504 + - 24350 + - 14877 + - 15079 + - 352 + - 12702 + - 418 + - 12688 + - uid: 25995 + components: + - type: MetaData + name: Lounge Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 5350 + - type: DeviceList + devices: + - 11214 + - 11213 + - 11217 + - 11218 + - 13409 + - 22542 + - 7338 + - 22591 + - 4207 + - 23929 + - 12796 + - 2151 + - 12990 + - 12995 + - 12996 + - 12994 + - 12795 - uid: 26241 components: - type: Transform @@ -10735,6 +11146,8 @@ entities: - 25916 - uid: 26242 components: + - type: MetaData + name: AI Sat Core Air Alarm - type: Transform pos: 103.5,7.5 parent: 5350 @@ -10745,6 +11158,8 @@ entities: - 25918 - uid: 26243 components: + - type: MetaData + name: AI Sat Central Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: 101.5,-0.5 @@ -10757,16 +11172,24 @@ entities: - 25922 - uid: 26964 components: + - type: MetaData + desc: View the atmospheric quality of the room. + name: Burn Chamber Status Monitor - type: Transform rot: 3.141592653589793 rad pos: 44.5,-29.5 parent: 5350 - type: DeviceList devices: - - 28116 - - 28117 + - 1963 + - 28271 + - 28272 + - 28266 - uid: 27108 components: + - type: MetaData + desc: View the atmospheric quality of the room. + name: Burn Chamber Status Monitor - type: Transform rot: 3.141592653589793 rad pos: 70.5,-39.5 @@ -10794,6 +11217,8 @@ entities: - 5665 - uid: 28012 components: + - type: MetaData + name: SMES Bank Air Alarm - type: Transform pos: 71.5,-24.5 parent: 5350 @@ -10818,13 +11243,26 @@ entities: - 28104 - uid: 28106 components: + - type: MetaData + name: Burn Chamber Air Alarm - type: Transform pos: 44.5,-23.5 parent: 5350 - type: DeviceList devices: - 27321 - - 11750 + - 15146 + - 5404 + - uid: 28350 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 5350 + - type: DeviceList + devices: + - 15591 + - 28347 + - 19500 - proto: AirAlarmVox entities: - uid: 27680 @@ -10880,6 +11318,11 @@ entities: - type: Transform pos: 110.5,2.5 parent: 5350 + - uid: 28125 + components: + - type: Transform + pos: -9.5,62.5 + parent: 5350 - proto: Airlock entities: - uid: 91 @@ -10914,6 +11357,13 @@ entities: - type: Transform pos: -23.5,35.5 parent: 5350 + - uid: 1454 + components: + - type: MetaData + name: Showers + - type: Transform + pos: 20.5,8.5 + parent: 5350 - uid: 8656 components: - type: MetaData @@ -10949,6 +11399,12 @@ entities: - type: Transform pos: -11.5,60.5 parent: 5350 + - uid: 10406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 5350 - uid: 12890 components: - type: MetaData @@ -10966,7 +11422,7 @@ entities: - uid: 15418 components: - type: MetaData - name: Stall 2 + name: Organic Stall 2 - type: Transform pos: 26.5,9.5 parent: 5350 @@ -11008,7 +11464,7 @@ entities: - uid: 17717 components: - type: MetaData - name: Meeting Room + name: Game Room - type: Transform pos: -30.5,-14.5 parent: 5350 @@ -11021,6 +11477,8 @@ entities: parent: 5350 - uid: 21091 components: + - type: MetaData + name: Organic Stall 1 - type: Transform pos: 24.5,9.5 parent: 5350 @@ -11068,13 +11526,15 @@ entities: entities: - uid: 1293 components: + - type: MetaData + name: Burn Chamber - type: Transform pos: 43.5,-23.5 parent: 5350 - uid: 8984 components: - type: MetaData - name: Atmospherics + name: Atmos Lockers - type: Transform pos: 54.5,-9.5 parent: 5350 @@ -11094,12 +11554,16 @@ entities: parent: 5350 - uid: 28098 components: + - type: MetaData + name: TEG - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-24.5 parent: 5350 - uid: 28099 components: + - type: MetaData + name: TEG - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-23.5 @@ -11159,19 +11623,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,30.5 parent: 5350 - - uid: 703 - components: - - type: MetaData - name: Brig Medbay - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,26.5 - parent: 5350 - - type: PaintableAirlock - department: Medical - - type: AccessReader - access: - - - Medical - uid: 768 components: - type: Transform @@ -11188,11 +11639,15 @@ entities: entities: - uid: 617 components: + - type: MetaData + name: Interrogation - type: Transform pos: 15.5,35.5 parent: 5350 - uid: 1439 components: + - type: MetaData + name: Interrogation - type: Transform pos: 14.5,31.5 parent: 5350 @@ -11228,6 +11683,14 @@ entities: parent: 5350 - proto: AirlockCargoGlassLocked entities: + - uid: 1405 + components: + - type: MetaData + name: Mailroom + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,4.5 + parent: 5350 - uid: 3875 components: - type: MetaData @@ -11245,7 +11708,7 @@ entities: - uid: 4059 components: - type: MetaData - name: Break Room + name: Breakroom - type: Transform pos: -36.5,23.5 parent: 5350 @@ -11262,11 +11725,6 @@ entities: - - Security - proto: AirlockCargoLocked entities: - - uid: 465 - components: - - type: Transform - pos: -35.5,4.5 - parent: 5350 - uid: 18239 components: - type: MetaData @@ -11476,21 +11934,21 @@ entities: - uid: 245 components: - type: MetaData - name: Confrence Room + name: Conference Room - type: Transform pos: -7.5,-4.5 parent: 5350 - uid: 246 components: - type: MetaData - name: Confrence Room + name: Conference Room - type: Transform pos: -2.5,-2.5 parent: 5350 - uid: 247 components: - type: MetaData - name: Confrence Room + name: Conference Room - type: Transform pos: 2.5,-4.5 parent: 5350 @@ -11532,7 +11990,7 @@ entities: - uid: 10775 components: - type: MetaData - name: AI access + name: AI Access - type: Transform pos: 57.5,-1.5 parent: 5350 @@ -11567,7 +12025,7 @@ entities: - uid: 26233 components: - type: MetaData - name: AI Access + name: Server Control - type: Transform pos: 104.5,-1.5 parent: 5350 @@ -11697,6 +12155,8 @@ entities: parent: 5350 - uid: 5365 components: + - type: MetaData + name: Substation - type: Transform pos: 74.5,-29.5 parent: 5350 @@ -11716,6 +12176,8 @@ entities: parent: 5350 - uid: 11274 components: + - type: MetaData + name: Atmos Breakroom - type: Transform pos: 75.5,-28.5 parent: 5350 @@ -11726,11 +12188,15 @@ entities: parent: 5350 - uid: 11468 components: + - type: MetaData + name: SMES Bank - type: Transform pos: 68.5,-26.5 parent: 5350 - uid: 11477 components: + - type: MetaData + name: Atmos Breakroom - type: Transform pos: 74.5,-26.5 parent: 5350 @@ -11797,6 +12263,8 @@ entities: parent: 5350 - uid: 19520 components: + - type: MetaData + name: Substation - type: Transform pos: 13.5,-58.5 parent: 5350 @@ -11854,7 +12322,7 @@ entities: - uid: 10968 components: - type: MetaData - name: Locker Room Airlock + name: Engi Lockers Airlock - type: Transform pos: 67.5,2.5 parent: 5350 @@ -11911,7 +12379,7 @@ entities: - uid: 26632 components: - type: MetaData - name: Locker Room Airlock + name: Engi Lockers Airlock - type: Transform pos: 67.5,6.5 parent: 5350 @@ -12010,16 +12478,32 @@ entities: - DoorStatus: DoorBolt - uid: 11980 components: + - type: MetaData + name: Burn Chamber Airlock - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-32.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13933: + - DoorStatus: DoorBolt - uid: 13933 components: + - type: MetaData + name: Burn Chamber Airlock - type: Transform rot: -1.5707963267948966 rad pos: 43.5,-29.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11980: + - DoorStatus: DoorBolt - uid: 27248 components: - type: MetaData @@ -12411,31 +12895,36 @@ entities: - uid: 20055 components: - type: MetaData - name: EVAC - Emergency Shuttles only! + name: Evac Docking Port - type: Transform pos: -1.5,-74.5 parent: 5350 - uid: 20056 components: - type: MetaData - name: EVAC - Reserved for emergency shuttles + name: Evac Docking Port - type: Transform pos: -3.5,-74.5 parent: 5350 + - type: Docking + highlightedRadarColor: '#990000FF' - uid: 20057 components: - type: MetaData - name: EVAC - Emergency Shuttles only! + name: Evac Docking Port - type: Transform pos: -9.5,-74.5 parent: 5350 - uid: 20058 components: - type: MetaData - name: EVAC - Emergency Shuttles only! + name: Evac Docking Port - type: Transform pos: -11.5,-74.5 parent: 5350 + - type: Docking + highlightedRadarColor: '#990000FF' + radarColor: '#990000FF' - proto: AirlockExternalGlassShuttleEscape entities: - uid: 504 @@ -12554,13 +13043,6 @@ entities: linkedPorts: 20027: - DoorStatus: DoorBolt -- proto: AirlockFreezer - entities: - - uid: 15447 - components: - - type: Transform - pos: 20.5,8.5 - parent: 5350 - proto: AirlockFreezerKitchenHydroLocked entities: - uid: 2433 @@ -12723,11 +13205,11 @@ entities: pos: -0.5,56.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: 7231: - - DoorStatus: Close + - DoorStatus: DoorBolt - uid: 7143 components: - type: MetaData @@ -12736,11 +13218,11 @@ entities: pos: -8.5,56.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 4 + invokeCounter: 5 - type: DeviceLinkSource linkedPorts: 6718: - - DoorStatus: Close + - DoorStatus: DoorBolt - uid: 7272 components: - type: MetaData @@ -12749,11 +13231,11 @@ entities: pos: -4.5,56.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: 6706: - - DoorStatus: Close + - DoorStatus: DoorBolt - uid: 7758 components: - type: MetaData @@ -12912,6 +13394,12 @@ entities: - type: Transform pos: -24.5,-1.5 parent: 5350 + - uid: 19097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 5350 - uid: 21487 components: - type: MetaData @@ -12948,20 +13436,45 @@ entities: rot: -1.5707963267948966 rad pos: -78.5,8.5 parent: 5350 - - uid: 4512 + - uid: 791 components: + - type: MetaData + name: Security Dock - type: Transform - pos: -62.5,38.5 + rot: 3.141592653589793 rad + pos: 18.5,39.5 parent: 5350 - - type: DeviceLinkSink - invokeCounter: 2 - - uid: 23047 + - uid: 1455 components: + - type: MetaData + name: Salvage Docking Port - type: Transform - pos: 18.5,39.5 + rot: 3.141592653589793 rad + pos: -62.5,38.5 parent: 5350 - - type: DeviceLinkSink - invokeCounter: 1 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking31405 + dockedWith: 28214 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True + - uid: 28214 + components: + - type: Transform + pos: 0.5,0.5 + parent: 28213 + - type: Door + changeAirtight: False + - type: Docking + dockJointId: docking31405 + dockedWith: 1455 + - type: DeviceLinkSource + lastSignals: + DoorStatus: False + DockStatus: True - proto: AirlockHeadOfPersonnelLocked entities: - uid: 1378 @@ -12985,14 +13498,13 @@ entities: - type: Transform pos: -19.5,-2.5 parent: 5350 -- proto: AirlockHeadOfSecurityGlassLocked +- proto: AirlockHeadOfSecurityLocked entities: - - uid: 1569 + - uid: 1502 components: - type: MetaData name: HoS's Office - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,43.5 parent: 5350 - proto: AirlockHydroGlassLocked @@ -13010,7 +13522,7 @@ entities: - uid: 3061 components: - type: MetaData - name: Botany Locker Room + name: Botany Lockers - type: Transform pos: 32.5,-23.5 parent: 5350 @@ -13043,7 +13555,7 @@ entities: - uid: 19499 components: - type: MetaData - name: Jani Office + name: Janitorial Closet - type: Transform pos: 9.5,-24.5 parent: 5350 @@ -13398,6 +13910,11 @@ entities: - type: Transform pos: 56.5,32.5 parent: 5350 + - uid: 14879 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 5350 - uid: 14968 components: - type: Transform @@ -13478,11 +13995,6 @@ entities: - type: Transform pos: -45.5,-29.5 parent: 5350 - - uid: 18576 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 5350 - uid: 18948 components: - type: Transform @@ -13755,6 +14267,13 @@ entities: parent: 5350 - proto: AirlockMedicalMorgueLocked entities: + - uid: 1119 + components: + - type: MetaData + name: Brig Medbay + - type: Transform + pos: -17.5,26.5 + parent: 5350 - uid: 1749 components: - type: MetaData @@ -13781,7 +14300,7 @@ entities: pos: -29.5,15.5 parent: 5350 - type: Door - secondsUntilStateChange: -208773.03 + secondsUntilStateChange: -229744.11 state: Opening - type: DeviceLinkSource lastSignals: @@ -13811,13 +14330,6 @@ entities: - type: Transform pos: 27.5,-45.5 parent: 5350 - - uid: 20816 - components: - - type: MetaData - name: Server Room - - type: Transform - pos: 28.5,-37.5 - parent: 5350 - proto: AirlockSalvageGlassLocked entities: - uid: 3698 @@ -13840,7 +14352,7 @@ entities: - uid: 18224 components: - type: MetaData - name: Break Room + name: Breakroom - type: Transform pos: -39.5,25.5 parent: 5350 @@ -13860,6 +14372,13 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-44.5 parent: 5350 + - uid: 7330 + components: + - type: MetaData + name: Lockers + - type: Transform + pos: 3.5,-47.5 + parent: 5350 - uid: 9777 components: - type: MetaData @@ -13873,11 +14392,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-40.5 parent: 5350 - - uid: 14299 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 5350 - uid: 15601 components: - type: MetaData @@ -13919,6 +14433,20 @@ entities: parent: 5350 - proto: AirlockScienceLocked entities: + - uid: 1598 + components: + - type: MetaData + name: Server Room + - type: Transform + pos: 28.5,-37.5 + parent: 5350 + - uid: 2187 + components: + - type: MetaData + name: Breakroom + - type: Transform + pos: 2.5,-41.5 + parent: 5350 - uid: 14149 components: - type: MetaData @@ -13978,6 +14506,13 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 5350 + - uid: 20286 + components: + - type: MetaData + name: Office + - type: Transform + pos: 5.5,-44.5 + parent: 5350 - uid: 20519 components: - type: Transform @@ -14039,14 +14574,14 @@ entities: pos: -4.5,53.5 parent: 5350 - type: Door - secondsUntilStateChange: -63426.812 + secondsUntilStateChange: -84397.87 state: Opening - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: 7272: - - DoorStatus: Close + - DoorStatus: DoorBolt lastSignals: DoorStatus: True - uid: 6718 @@ -14058,11 +14593,11 @@ entities: pos: -8.5,53.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: 7143: - - DoorStatus: Close + - DoorStatus: DoorBolt - uid: 6751 components: - type: MetaData @@ -14073,12 +14608,16 @@ entities: parent: 5350 - uid: 6802 components: + - type: MetaData + name: Cell 1 - type: Transform rot: 3.141592653589793 rad pos: -12.5,30.5 parent: 5350 - uid: 6803 components: + - type: MetaData + name: Cell 2 - type: Transform rot: 3.141592653589793 rad pos: -9.5,30.5 @@ -14091,13 +14630,15 @@ entities: pos: -0.5,53.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: 6710: - - DoorStatus: Close + - DoorStatus: DoorBolt - uid: 7429 components: + - type: MetaData + name: Cell 3 - type: Transform rot: 3.141592653589793 rad pos: -6.5,30.5 @@ -14140,7 +14681,7 @@ entities: - type: Transform pos: -4.5,44.5 parent: 5350 - - uid: 22168 + - uid: 1512 components: - type: MetaData name: Perma @@ -14192,6 +14733,8 @@ entities: entities: - uid: 2435 components: + - type: MetaData + name: Backstage - type: Transform pos: 37.5,-8.5 parent: 5350 @@ -14205,8 +14748,8 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 1303 - uid: 142 components: - type: Transform @@ -14215,8 +14758,8 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 1303 - uid: 151 components: - type: Transform @@ -14240,6 +14783,9 @@ entities: - type: Transform pos: -2.5,2.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 465 - uid: 180 components: - type: Transform @@ -14307,8 +14853,8 @@ entities: - type: DeviceNetwork deviceLists: - 1327 - - 4159 - 15191 + - 25987 - uid: 385 components: - type: Transform @@ -14351,7 +14897,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 4159 - 21221 - 24349 - 15191 @@ -14359,6 +14904,7 @@ entities: - 24340 - 231 - 24337 + - 25987 - uid: 656 components: - type: Transform @@ -14368,6 +14914,8 @@ entities: deviceLists: - 18250 - 22178 + - 10405 + - 16606 - uid: 718 components: - type: Transform @@ -14379,10 +14927,10 @@ entities: - 24361 - 24359 - 9758 - - 14093 - - 5438 - 24378 - 13729 + - 25984 + - 28222 - uid: 719 components: - type: Transform @@ -14417,6 +14965,9 @@ entities: deviceLists: - 9577 - 22178 + - 16314 + - 15537 + - 10405 - uid: 854 components: - type: Transform @@ -14470,9 +15021,6 @@ entities: - type: Transform pos: 9.5,-45.5 parent: 5350 - - type: DeviceNetwork - deviceLists: - - 19310 - uid: 1214 components: - type: Transform @@ -14493,16 +15041,23 @@ entities: - type: DeviceNetwork deviceLists: - 20890 - - uid: 1303 + - uid: 1513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,7.5 + pos: 50.5,8.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11750 + - 15447 + - uid: 1963 + components: + - type: Transform + pos: 47.5,-32.5 parent: 5350 - type: DeviceNetwork deviceLists: - - 14093 - - 5438 + - 26964 - uid: 2151 components: - type: Transform @@ -14513,6 +15068,7 @@ entities: - 20627 - 24443 - 24419 + - 25995 - uid: 2156 components: - type: Transform @@ -14548,7 +15104,17 @@ entities: - 1369 - 1072 - 6209 - - 1164 + - 16453 + - uid: 4041 + components: + - type: Transform + pos: -68.5,7.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 28222 + - 25984 + - 5976 - uid: 4207 components: - type: Transform @@ -14557,6 +15123,7 @@ entities: - type: DeviceNetwork deviceLists: - 24419 + - 25995 - uid: 6460 components: - type: Transform @@ -14602,6 +15169,7 @@ entities: - 24443 - 2835 - 7196 + - 25995 - uid: 7395 components: - type: Transform @@ -14619,16 +15187,6 @@ entities: deviceLists: - 177 - 10993 - - uid: 7683 - components: - - type: Transform - pos: -7.5,38.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 6384 - - 7810 - - 6735 - uid: 8379 components: - type: Transform @@ -14636,8 +15194,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 231 + - 24337 + - 1303 - uid: 9308 components: - type: Transform @@ -14647,14 +15207,6 @@ entities: - type: DeviceNetwork deviceLists: - 4375 - - uid: 9375 - components: - - type: Transform - pos: 3.5,-45.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 16342 - uid: 9640 components: - type: Transform @@ -14735,8 +15287,18 @@ entities: - 24515 - 15155 - 11151 - - 24513 + - 11092 - 24510 + - uid: 11440 + components: + - type: Transform + pos: 54.5,32.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11750 + - 15447 + - 24506 - uid: 11455 components: - type: Transform @@ -14752,10 +15314,11 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24328 - 3141 - 231 - 24337 + - 9668 + - 16587 - uid: 11986 components: - type: Transform @@ -14781,16 +15344,16 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 11665 - 11591 + - 23602 - uid: 12383 components: - type: Transform - pos: 70.5,5.5 + pos: 73.5,7.5 parent: 5350 - type: DeviceNetwork deviceLists: - - 11665 + - 23602 - 11591 - uid: 12893 components: @@ -14809,10 +15372,11 @@ entities: deviceLists: - 24459 - 24458 - - 24462 - - 24461 - 24342 - 24340 + - 14507 + - 14417 + - 25995 - uid: 13411 components: - type: Transform @@ -14837,6 +15401,9 @@ entities: - 24554 - 19091 - 19293 + - 15537 + - 10405 + - 16606 - uid: 14392 components: - type: Transform @@ -14850,6 +15417,8 @@ entities: - 3143 - 12898 - 12899 + - 16314 + - 15537 - uid: 14609 components: - type: Transform @@ -14896,7 +15465,11 @@ entities: - 24554 - 23115 - 14854 - - 24328 + - 15053 + - 9668 + - 16587 + - 1164 + - 24575 - uid: 15587 components: - type: Transform @@ -14908,6 +15481,18 @@ entities: - 23115 - 24577 - 24578 + - 24575 + - uid: 15642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 9617 + - 23907 + - 9586 - uid: 16257 components: - type: Transform @@ -14928,6 +15513,15 @@ entities: deviceLists: - 19406 - 19634 + - uid: 16614 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16587 + - 686 - uid: 16624 components: - type: Transform @@ -14941,16 +15535,6 @@ entities: - 15892 - 19075 - 19295 - - uid: 16662 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 18936 - - 23907 - uid: 17677 components: - type: Transform @@ -14963,8 +15547,9 @@ entities: - 6405 - 18618 - 24554 - - 24328 - 23116 + - 9668 + - 16587 - uid: 17738 components: - type: Transform @@ -14998,6 +15583,8 @@ entities: - 12282 - 24588 - 15892 + - 1164 + - 24575 - uid: 18228 components: - type: Transform @@ -15005,7 +15592,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 4041 - 24359 - 15127 - 9758 @@ -15083,6 +15669,14 @@ entities: - type: DeviceNetwork deviceLists: - 19438 + - uid: 19638 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 20700 - uid: 20043 components: - type: Transform @@ -15097,9 +15691,9 @@ entities: deviceLists: - 22044 - 24464 - - 24461 - 24491 - 24490 + - 14507 - uid: 21254 components: - type: Transform @@ -15112,8 +15706,8 @@ entities: - 24458 - 22044 - 24464 - - 16586 - 16580 + - 1303 - uid: 22373 components: - type: Transform @@ -15208,7 +15802,8 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 23905 + - 15447 + - 24506 - uid: 23909 components: - type: Transform @@ -15226,6 +15821,7 @@ entities: deviceLists: - 24491 - 24490 + - 9586 - uid: 23929 components: - type: Transform @@ -15235,7 +15831,7 @@ entities: - type: DeviceNetwork deviceLists: - 24697 - - 13496 + - 25995 - uid: 24271 components: - type: Transform @@ -15248,8 +15844,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 686 + - 1303 - uid: 24323 components: - type: Transform @@ -15257,8 +15854,8 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 1303 - uid: 24338 components: - type: Transform @@ -15266,15 +15863,17 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 - 177 - 10993 - 1327 - - 4159 + - 1303 - 24333 - 3141 - 24337 + - 1914 + - 15867 + - 25987 - uid: 24346 components: - type: Transform @@ -15283,10 +15882,10 @@ entities: - type: DeviceNetwork deviceLists: - 1327 - - 4159 - 24345 - 22928 - 19444 + - 25987 - uid: 24350 components: - type: Transform @@ -15298,8 +15897,8 @@ entities: - 177 - 10993 - 1327 - - 4159 - 24352 + - 25987 - uid: 24367 components: - type: Transform @@ -15307,7 +15906,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 5443 + - 25985 - 5976 - 24363 - 24361 @@ -15332,7 +15931,7 @@ entities: - 24380 - 24363 - 24361 - - 14129 + - 1514 - 9894 - uid: 24379 components: @@ -15367,13 +15966,13 @@ entities: deviceLists: - 24459 - 24458 - - 24462 - - 24461 - 24464 - - 24467 + - 2567 - 24468 - 1369 - - 1164 + - 14507 + - 16453 + - 14417 - uid: 24487 components: - type: Transform @@ -15384,6 +15983,9 @@ entities: - type: Transform pos: 38.5,-7.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 18016 - uid: 24492 components: - type: Transform @@ -15391,12 +15993,13 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - - 24461 - 11151 - - 18936 + - 9617 - 23907 - 24490 + - 11092 + - 14507 + - 14417 - uid: 24496 components: - type: Transform @@ -15414,7 +16017,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 18936 + - 9617 - 23907 - 24491 - 24490 @@ -15431,6 +16034,8 @@ entities: deviceLists: - 24515 - 557 + - 11092 + - 11151 - uid: 24552 components: - type: Transform @@ -15438,14 +16043,15 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24556 - 15537 - 19228 - 137 - 24554 - 23115 - - 24328 - 23116 + - 9668 + - 16587 + - 16314 - uid: 24562 components: - type: Transform @@ -15489,10 +16095,22 @@ entities: - 24324 - 24459 - 24458 - - 7263 + - 15867 - 24337 - 16580 - 231 + - 1914 + - 15212 + - 465 + - 686 + - uid: 25963 + components: + - type: Transform + pos: 115.5,0.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 - uid: 26237 components: - type: Transform @@ -15503,6 +16121,9 @@ entities: - type: Transform pos: 105.5,0.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 - uid: 26239 components: - type: Transform @@ -15549,14 +16170,32 @@ entities: - type: DeviceNetwork deviceLists: - 28012 - - uid: 28116 + - uid: 28218 components: - type: Transform - pos: 46.5,-31.5 + pos: -7.5,37.5 parent: 5350 - type: DeviceNetwork deviceLists: - - 26964 + - 6384 + - 7810 + - 6735 + - uid: 28347 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 28350 + - uid: 28351 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 3881 - proto: AirSensorVox entities: - uid: 14658 @@ -15602,6 +16241,85 @@ entities: - type: Transform pos: 73.29292,8.538181 parent: 5350 +- proto: AmePartFlatpack + entities: + - uid: 14093 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15326 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16554 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23357 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23358 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23359 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23504 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23505 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23506 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23507 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23508 + components: + - type: Transform + parent: 21813 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyScanner entities: - uid: 15985 @@ -15626,7 +16344,7 @@ entities: - uid: 143 components: - type: MetaData - name: West Loop APC + name: Main Loop West APC - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-0.5 @@ -15692,10 +16410,18 @@ entities: rot: 3.141592653589793 rad pos: -3.5,36.5 parent: 5350 + - uid: 1515 + components: + - type: MetaData + name: Mailroom APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 5350 - uid: 1556 components: - type: MetaData - name: East Hallway APC + name: East Corridor APC - type: Transform rot: 3.141592653589793 rad pos: 38.5,1.5 @@ -15724,6 +16450,8 @@ entities: parent: 5350 - uid: 2137 components: + - type: MetaData + name: Botany APC - type: Transform pos: 22.5,-14.5 parent: 5350 @@ -15788,13 +16516,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,41.5 parent: 5350 - - uid: 4557 - components: - - type: MetaData - name: Mail Room APC - - type: Transform - pos: -43.5,7.5 - parent: 5350 - uid: 4580 components: - type: MetaData @@ -15805,7 +16526,7 @@ entities: - uid: 5380 components: - type: MetaData - name: South Arrivals APC + name: Arrivals South APC - type: Transform rot: -1.5707963267948966 rad pos: -53.5,-8.5 @@ -15849,7 +16570,7 @@ entities: - uid: 9896 components: - type: MetaData - name: East Loop APC + name: Loop East APC - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-3.5 @@ -15857,7 +16578,7 @@ entities: - uid: 9962 components: - type: MetaData - name: HOP APC + name: HoP's Office APC - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-1.5 @@ -15902,12 +16623,14 @@ entities: - uid: 11737 components: - type: MetaData - name: North Engineering APC + name: Engineering North APC - type: Transform pos: 53.5,26.5 parent: 5350 - uid: 11747 components: + - type: MetaData + name: AME APC - type: Transform pos: 70.5,9.5 parent: 5350 @@ -15921,7 +16644,7 @@ entities: - uid: 12006 components: - type: MetaData - name: South Engineering APC + name: Engineering South APC - type: Transform rot: 1.5707963267948966 rad pos: 48.5,19.5 @@ -15952,7 +16675,7 @@ entities: - uid: 13049 components: - type: MetaData - name: Dorms APC + name: Dorms Hall APC - type: Transform pos: 33.5,20.5 parent: 5350 @@ -15996,10 +16719,18 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-44.5 parent: 5350 + - uid: 14698 + components: + - type: MetaData + name: Science Lockers APC + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-54.5 + parent: 5350 - uid: 15160 components: - type: MetaData - name: North Arrivals APC + name: Arrivals North APC - type: Transform rot: -1.5707963267948966 rad pos: -53.5,6.5 @@ -16013,7 +16744,7 @@ entities: - uid: 15492 components: - type: MetaData - name: Boxing Ring APC + name: North Dorms APC - type: Transform rot: -1.5707963267948966 rad pos: 38.5,42.5 @@ -16087,18 +16818,10 @@ entities: - uid: 17805 components: - type: MetaData - name: Bathroom APC + name: Washroom West APC - type: Transform pos: -41.5,-3.5 parent: 5350 - - uid: 18414 - components: - - type: MetaData - name: Science Locker Room APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 5350 - uid: 19176 components: - type: MetaData @@ -16133,7 +16856,7 @@ entities: - uid: 19779 components: - type: MetaData - name: Bar APC + name: Bar Backroom APC - type: Transform pos: 23.5,-11.5 parent: 5350 @@ -16145,14 +16868,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-14.5 parent: 5350 - - uid: 20281 - components: - - type: MetaData - name: R&D APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 5350 - uid: 20287 components: - type: MetaData @@ -16176,6 +16891,14 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-58.5 parent: 5350 + - uid: 20977 + components: + - type: MetaData + name: Arcade APC + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-60.5 + parent: 5350 - uid: 21373 components: - type: MetaData @@ -16229,6 +16952,14 @@ entities: rot: 3.141592653589793 rad pos: -31.5,41.5 parent: 5350 + - uid: 23353 + components: + - type: MetaData + name: AI Sat East APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 112.5,1.5 + parent: 5350 - uid: 23427 components: - type: MetaData @@ -16247,58 +16978,72 @@ entities: - uid: 24188 components: - type: MetaData - name: Central Hallway APC + name: Central Hall APC - type: Transform rot: 3.141592653589793 rad pos: 3.5,-9.5 parent: 5350 - - uid: 25946 + - uid: 25948 components: + - type: MetaData + name: AI Sat Core APC - type: Transform - rot: 3.141592653589793 rad - pos: 100.5,-1.5 + pos: 105.5,7.5 parent: 5350 - - uid: 25947 + - uid: 25949 components: + - type: MetaData + name: AI Sat South APC - type: Transform - rot: 3.141592653589793 rad - pos: 108.5,-1.5 + pos: 103.5,-1.5 parent: 5350 - - uid: 25948 + - uid: 25956 components: - type: MetaData - name: AI Core APC + name: Telecomms APC - type: Transform - pos: 105.5,7.5 + rot: 3.141592653589793 rad + pos: 104.5,-14.5 parent: 5350 - - uid: 25949 + - uid: 25968 components: + - type: MetaData + name: AI Sat West APC - type: Transform - pos: 103.5,-1.5 + rot: 3.141592653589793 rad + pos: 98.5,-1.5 parent: 5350 - - uid: 25950 + - uid: 27589 components: + - type: MetaData + name: West Hall APC - type: Transform - pos: 103.5,3.5 + rot: 3.141592653589793 rad + pos: -35.5,-2.5 parent: 5350 - - uid: 25951 + - uid: 28204 components: + - type: MetaData + name: Newsroom APC - type: Transform - pos: 107.5,-6.5 + rot: 1.5707963267948966 rad + pos: -51.5,-10.5 parent: 5350 - - uid: 26006 + - uid: 28239 components: + - type: MetaData + name: AI Sat East APC - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-1.5 + rot: -1.5707963267948966 rad + pos: 101.5,1.5 parent: 5350 - - uid: 27589 + - uid: 28287 components: - type: MetaData - name: West Hallway APC + name: R&D APC - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-2.5 + pos: 1.5,-37.5 parent: 5350 - proto: APCHighCapacity entities: @@ -16477,6 +17222,12 @@ entities: rot: 3.141592653589793 rad pos: 18.5,39.5 parent: 5350 + - uid: 28206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,38.5 + parent: 5350 - proto: AtmosFixBlockerMarker entities: - uid: 1179 @@ -18379,11 +19130,6 @@ entities: - type: Transform pos: -39.5,-72.5 parent: 5350 - - uid: 26774 - components: - - type: Transform - pos: 12.5,-62.5 - parent: 5350 - uid: 26775 components: - type: Transform @@ -20826,11 +21572,6 @@ entities: - type: Transform pos: 30.5,-46.5 parent: 5350 - - uid: 7330 - components: - - type: Transform - pos: -38.5,2.5 - parent: 5350 - uid: 7389 components: - type: Transform @@ -21151,6 +21892,13 @@ entities: - type: Transform pos: -24.5,-15.5 parent: 5350 +- proto: BedsheetWiz + entities: + - uid: 24145 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 5350 - proto: BikeHorn entities: - uid: 3211 @@ -21239,6 +21987,21 @@ entities: - type: Transform pos: 47.5,-33.5 parent: 5350 + - uid: 14390 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 5350 + - uid: 14436 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 5350 + - uid: 15522 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 5350 - uid: 15941 components: - type: Transform @@ -21389,12 +22152,36 @@ entities: parent: 5350 - proto: BlockGameArcade entities: + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 + parent: 5350 + - uid: 5431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-59.5 + parent: 5350 - uid: 6740 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,62.5 parent: 5350 + - uid: 6808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-59.5 + parent: 5350 + - uid: 7172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-55.5 + parent: 5350 - uid: 16831 components: - type: Transform @@ -21409,17 +22196,22 @@ entities: parent: 5350 - type: SpamEmitSound enabled: False - - uid: 22046 + - uid: 17510 components: - type: Transform - pos: -9.5,-60.5 + rot: -1.5707963267948966 rad + pos: 2.5,-59.5 parent: 5350 - - type: SpamEmitSound - enabled: False - - uid: 22606 + - uid: 19243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 5350 + - uid: 22046 components: - type: Transform - pos: 2.5,-64.5 + pos: -9.5,-60.5 parent: 5350 - type: SpamEmitSound enabled: False @@ -21583,7 +22375,7 @@ entities: - uid: 1972 components: - type: Transform - pos: -3.2923856,37.49377 + pos: -3.3350391,37.558666 parent: 5350 - proto: BoozeDispenser entities: @@ -21631,11 +22423,35 @@ entities: - type: Transform pos: 8.5,-41.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 - uid: 13305 components: - type: Transform pos: -7.5,17.5 parent: 5350 + - uid: 16499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-41.5 + parent: 5350 - uid: 16540 components: - type: Transform @@ -21754,6 +22570,13 @@ entities: - type: Transform pos: 12.159029,-26.270096 parent: 5350 +- proto: BoxDarts + entities: + - uid: 10661 + components: + - type: Transform + pos: -8.711798,-54.414413 + parent: 5350 - proto: BoxDonkSoftBox entities: - uid: 8085 @@ -21792,7 +22615,7 @@ entities: - uid: 14348 components: - type: Transform - pos: 8.730378,-44.263786 + pos: 8.694893,-46.44925 parent: 5350 - uid: 16030 components: @@ -21802,7 +22625,7 @@ entities: - uid: 19241 components: - type: Transform - pos: 8.616103,-44.507114 + pos: 8.476143,-46.277374 parent: 5350 - proto: BoxFolderBlack entities: @@ -21872,6 +22695,12 @@ entities: - type: Transform pos: -47.213257,-16.414349 parent: 5350 + - uid: 19478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.507367,-46.45543 + parent: 5350 - proto: BoxFolderGrey entities: - uid: 13526 @@ -21909,7 +22738,7 @@ entities: - uid: 6906 components: - type: Transform - pos: 11.429305,37.587353 + pos: 12.441531,38.514633 parent: 5350 - uid: 8451 components: @@ -21996,15 +22825,10 @@ entities: - type: Transform pos: -8.691526,36.32911 parent: 5350 - - uid: 7572 + - uid: 28210 components: - type: Transform - pos: -8.701942,36.620773 - parent: 5350 - - uid: 7940 - components: - - type: Transform - pos: -8.274859,36.57911 + pos: -3.7100391,37.57429 parent: 5350 - proto: BoxLightbulb entities: @@ -22018,11 +22842,6 @@ entities: - type: Transform pos: -25.721956,25.522692 parent: 5350 - - uid: 22601 - components: - - type: Transform - pos: 3.4836774,-64.40184 - parent: 5350 - proto: BoxLightMixed entities: - uid: 570 @@ -22042,11 +22861,6 @@ entities: - type: Transform pos: -45.725807,-31.611805 parent: 5350 - - uid: 22602 - components: - - type: Transform - pos: 3.5461774,-65.43309 - parent: 5350 - proto: BoxPillCanister entities: - uid: 7025 @@ -22071,6 +22885,18 @@ entities: - type: Transform pos: -15.658107,48.604027 parent: 5350 +- proto: BoxShotgunSlug + entities: + - uid: 1913 + components: + - type: Transform + pos: -8.308382,36.69452 + parent: 5350 + - uid: 15205 + components: + - type: Transform + pos: -8.714632,36.678894 + parent: 5350 - proto: BoxSterileMask entities: - uid: 14952 @@ -22155,6 +22981,8 @@ entities: entities: - uid: 6811 components: + - type: MetaData + name: Cell 2 Timer - type: Transform pos: -8.5,30.5 parent: 5350 @@ -22162,10 +22990,10 @@ entities: linkedPorts: 6803: - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 6845 components: + - type: MetaData + name: Cell 3 Timer - type: Transform pos: -5.5,30.5 parent: 5350 @@ -22173,10 +23001,10 @@ entities: linkedPorts: 7429: - Start: Close - - Timer: AutoClose - - Timer: Open - uid: 7372 components: + - type: MetaData + name: Cell 1 Timer - type: Transform pos: -11.5,30.5 parent: 5350 @@ -22184,8 +23012,6 @@ entities: linkedPorts: 6802: - Start: Close - - Timer: AutoClose - - Timer: Open - proto: Bucket entities: - uid: 1113 @@ -22242,10 +23068,10 @@ entities: parent: 5350 - proto: ButtonFrameCaution entities: - - uid: 2896 + - uid: 2565 components: - type: Transform - pos: -15.5,-0.5 + pos: 48.5,24.5 parent: 5350 - uid: 3064 components: @@ -22264,6 +23090,12 @@ entities: - type: Transform pos: -35.5,36.5 parent: 5350 + - uid: 5405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-28.5 + parent: 5350 - uid: 6499 components: - type: Transform @@ -22276,17 +23108,17 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,22.5 parent: 5350 - - uid: 11867 + - uid: 14570 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-26.5 + pos: -43.5,20.5 parent: 5350 - - uid: 14570 + - uid: 15214 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,20.5 + pos: 65.5,-38.5 parent: 5350 - uid: 15373 components: @@ -22294,11 +23126,23 @@ entities: rot: 1.5707963267948966 rad pos: -43.5,14.5 parent: 5350 - - uid: 17445 + - uid: 16383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-37.5 + pos: -43.5,7.5 + parent: 5350 + - uid: 16457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 5350 + - uid: 16494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-32.5 parent: 5350 - uid: 18349 components: @@ -22323,29 +23167,12 @@ entities: - type: Transform pos: -4.5,-32.5 parent: 5350 - - uid: 21048 - components: - - type: Transform - pos: 9.5,-32.5 - parent: 5350 - uid: 21437 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,36.5 parent: 5350 - - uid: 23956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,24.5 - parent: 5350 - - uid: 23964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 5350 - uid: 23966 components: - type: Transform @@ -22404,6 +23231,12 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,-28.5 parent: 5350 + - uid: 21681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-59.5 + parent: 5350 - proto: ButtonFrameGrey entities: - uid: 3005 @@ -22418,6 +23251,12 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 5350 + - uid: 4186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 5350 - uid: 5864 components: - type: Transform @@ -22435,6 +23274,12 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,34.5 parent: 5350 + - uid: 11078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 5350 - uid: 11578 components: - type: Transform @@ -22494,12 +23339,6 @@ entities: rot: -1.5707963267948966 rad pos: 27.5,10.5 parent: 5350 - - uid: 21468 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 5350 - uid: 21469 components: - type: Transform @@ -22560,12 +23399,30 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 5350 + - uid: 19111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-30.5 + parent: 5350 - uid: 26535 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,-9.5 parent: 5350 + - uid: 28284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 5350 + - uid: 28291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-28.5 + parent: 5350 - proto: CableApcExtension entities: - uid: 2 @@ -23228,6 +24085,11 @@ entities: - type: Transform pos: -34.5,35.5 parent: 5350 + - uid: 1275 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 5350 - uid: 1281 components: - type: Transform @@ -23668,16 +24530,6 @@ entities: - type: Transform pos: 56.5,28.5 parent: 5350 - - uid: 1913 - components: - - type: Transform - pos: 16.5,-19.5 - parent: 5350 - - uid: 1914 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 5350 - uid: 1921 components: - type: Transform @@ -23883,30 +24735,10 @@ entities: - type: Transform pos: -31.5,35.5 parent: 5350 - - uid: 2558 - components: - - type: Transform - pos: 28.5,-22.5 - parent: 5350 - - uid: 2565 - components: - - type: Transform - pos: 24.5,-17.5 - parent: 5350 - - uid: 2566 - components: - - type: Transform - pos: 24.5,-22.5 - parent: 5350 - - uid: 2567 - components: - - type: Transform - pos: 28.5,-18.5 - parent: 5350 - uid: 2569 components: - type: Transform - pos: 28.5,-17.5 + pos: 16.5,-16.5 parent: 5350 - uid: 2575 components: @@ -24073,6 +24905,11 @@ entities: - type: Transform pos: 33.5,-7.5 parent: 5350 + - uid: 2896 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 5350 - uid: 2897 components: - type: Transform @@ -24468,6 +25305,11 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 5350 + - uid: 2999 + components: + - type: Transform + pos: 72.5,6.5 + parent: 5350 - uid: 3001 components: - type: Transform @@ -24598,11 +25440,6 @@ entities: - type: Transform pos: 33.5,-41.5 parent: 5350 - - uid: 3041 - components: - - type: Transform - pos: 28.5,-20.5 - parent: 5350 - uid: 3044 components: - type: Transform @@ -24611,13 +25448,18 @@ entities: - uid: 3045 components: - type: Transform - pos: 24.5,-20.5 + pos: 29.5,-17.5 parent: 5350 - uid: 3048 components: - type: Transform pos: 36.5,-60.5 parent: 5350 + - uid: 3056 + components: + - type: Transform + pos: 69.5,6.5 + parent: 5350 - uid: 3068 components: - type: Transform @@ -24631,18 +25473,13 @@ entities: - uid: 3078 components: - type: Transform - pos: 28.5,-21.5 + pos: 29.5,-23.5 parent: 5350 - uid: 3130 components: - type: Transform pos: 51.5,15.5 parent: 5350 - - uid: 3137 - components: - - type: Transform - pos: 24.5,-21.5 - parent: 5350 - uid: 3271 components: - type: Transform @@ -24923,6 +25760,11 @@ entities: - type: Transform pos: -26.5,32.5 parent: 5350 + - uid: 4159 + components: + - type: Transform + pos: 100.5,1.5 + parent: 5350 - uid: 4168 components: - type: Transform @@ -24998,6 +25840,11 @@ entities: - type: Transform pos: -49.5,3.5 parent: 5350 + - uid: 4361 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 5350 - uid: 4371 components: - type: Transform @@ -25053,6 +25900,11 @@ entities: - type: Transform pos: 29.5,-56.5 parent: 5350 + - uid: 4519 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 5350 - uid: 4522 components: - type: Transform @@ -25073,10 +25925,15 @@ entities: - type: Transform pos: 8.5,-62.5 parent: 5350 - - uid: 4544 + - uid: 4538 components: - type: Transform - pos: 6.5,-47.5 + pos: 4.5,-58.5 + parent: 5350 + - uid: 4539 + components: + - type: Transform + pos: 4.5,-55.5 parent: 5350 - uid: 4549 components: @@ -25093,6 +25950,16 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 5350 + - uid: 4557 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 5350 + - uid: 4559 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 5350 - uid: 4560 components: - type: Transform @@ -25158,25 +26025,10 @@ entities: - type: Transform pos: -32.5,3.5 parent: 5350 - - uid: 4607 - components: - - type: Transform - pos: -43.5,7.5 - parent: 5350 - - uid: 4608 - components: - - type: Transform - pos: -43.5,6.5 - parent: 5350 - - uid: 4609 - components: - - type: Transform - pos: -43.5,5.5 - parent: 5350 - uid: 4611 components: - type: Transform - pos: -42.5,5.5 + pos: -43.5,3.5 parent: 5350 - uid: 4612 components: @@ -25211,12 +26063,12 @@ entities: - uid: 4618 components: - type: Transform - pos: -42.5,4.5 + pos: -42.5,3.5 parent: 5350 - uid: 4619 components: - type: Transform - pos: -42.5,3.5 + pos: -41.5,4.5 parent: 5350 - uid: 4620 components: @@ -25283,11 +26135,6 @@ entities: - type: Transform pos: -53.5,8.5 parent: 5350 - - uid: 4641 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 5350 - uid: 4643 components: - type: Transform @@ -25628,6 +26475,11 @@ entities: - type: Transform pos: -1.5,45.5 parent: 5350 + - uid: 5162 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 5350 - uid: 5219 components: - type: Transform @@ -25648,6 +26500,11 @@ entities: - type: Transform pos: 60.5,-19.5 parent: 5350 + - uid: 5334 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 5350 - uid: 5368 components: - type: Transform @@ -25678,10 +26535,30 @@ entities: - type: Transform pos: -46.5,-4.5 parent: 5350 + - uid: 5406 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 5350 - uid: 5408 components: - type: Transform - pos: -57.5,10.5 + pos: 23.5,-22.5 + parent: 5350 + - uid: 5430 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 5350 + - uid: 5436 + components: + - type: Transform + pos: -2.5,0.5 + parent: 5350 + - uid: 5443 + components: + - type: Transform + pos: 96.5,0.5 parent: 5350 - uid: 5780 components: @@ -26248,6 +27125,11 @@ entities: - type: Transform pos: 66.5,-6.5 parent: 5350 + - uid: 6177 + components: + - type: Transform + pos: 101.5,-4.5 + parent: 5350 - uid: 6185 components: - type: Transform @@ -26413,6 +27295,11 @@ entities: - type: Transform pos: -2.5,53.5 parent: 5350 + - uid: 6547 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 5350 - uid: 6571 components: - type: Transform @@ -26458,6 +27345,11 @@ entities: - type: Transform pos: -9.5,17.5 parent: 5350 + - uid: 6629 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 5350 - uid: 6633 components: - type: Transform @@ -26493,6 +27385,11 @@ entities: - type: Transform pos: 12.5,41.5 parent: 5350 + - uid: 6675 + components: + - type: Transform + pos: -75.5,10.5 + parent: 5350 - uid: 6676 components: - type: Transform @@ -26528,6 +27425,11 @@ entities: - type: Transform pos: -38.5,-53.5 parent: 5350 + - uid: 6731 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 5350 - uid: 6734 components: - type: Transform @@ -26568,6 +27470,11 @@ entities: - type: Transform pos: -8.5,43.5 parent: 5350 + - uid: 6870 + components: + - type: Transform + pos: -74.5,10.5 + parent: 5350 - uid: 6909 components: - type: Transform @@ -26578,6 +27485,11 @@ entities: - type: Transform pos: -16.5,37.5 parent: 5350 + - uid: 6949 + components: + - type: Transform + pos: -73.5,10.5 + parent: 5350 - uid: 6963 components: - type: Transform @@ -26668,6 +27580,21 @@ entities: - type: Transform pos: 22.5,31.5 parent: 5350 + - uid: 7004 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 5350 + - uid: 7009 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 5350 + - uid: 7010 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 5350 - uid: 7018 components: - type: Transform @@ -27363,6 +28290,11 @@ entities: - type: Transform pos: 53.5,-11.5 parent: 5350 + - uid: 8311 + components: + - type: Transform + pos: 71.5,6.5 + parent: 5350 - uid: 8351 components: - type: Transform @@ -27523,16 +28455,6 @@ entities: - type: Transform pos: 8.5,-60.5 parent: 5350 - - uid: 9336 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 5350 - - uid: 9338 - components: - - type: Transform - pos: 3.5,-61.5 - parent: 5350 - uid: 9348 components: - type: Transform @@ -27548,6 +28470,21 @@ entities: - type: Transform pos: 28.5,-32.5 parent: 5350 + - uid: 9415 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 5350 + - uid: 9423 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 5350 + - uid: 9438 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 5350 - uid: 9448 components: - type: Transform @@ -27783,10 +28720,15 @@ entities: - type: Transform pos: 36.5,45.5 parent: 5350 - - uid: 9774 + - uid: 9768 components: - type: Transform - pos: 8.5,-25.5 + pos: 3.5,-54.5 + parent: 5350 + - uid: 9769 + components: + - type: Transform + pos: 3.5,-53.5 parent: 5350 - uid: 9787 components: @@ -28428,6 +29370,16 @@ entities: - type: Transform pos: -2.5,-50.5 parent: 5350 + - uid: 10404 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 5350 + - uid: 10409 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 5350 - uid: 10422 components: - type: Transform @@ -28453,6 +29405,11 @@ entities: - type: Transform pos: -3.5,52.5 parent: 5350 + - uid: 10433 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 5350 - uid: 10451 components: - type: Transform @@ -28888,6 +29845,11 @@ entities: - type: Transform pos: 46.5,-13.5 parent: 5350 + - uid: 11390 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 5350 - uid: 11402 components: - type: Transform @@ -28928,11 +29890,21 @@ entities: - type: Transform pos: -47.5,-28.5 parent: 5350 + - uid: 11422 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 5350 - uid: 11429 components: - type: Transform pos: -36.5,-17.5 parent: 5350 + - uid: 11434 + components: + - type: Transform + pos: -71.5,10.5 + parent: 5350 - uid: 11444 components: - type: Transform @@ -31383,11 +32355,6 @@ entities: - type: Transform pos: 58.5,32.5 parent: 5350 - - uid: 14059 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 5350 - uid: 14106 components: - type: Transform @@ -31543,6 +32510,11 @@ entities: - type: Transform pos: -11.5,-29.5 parent: 5350 + - uid: 14713 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 5350 - uid: 14748 components: - type: Transform @@ -31633,91 +32605,11 @@ entities: - type: Transform pos: -53.5,6.5 parent: 5350 - - uid: 15182 - components: - - type: Transform - pos: -58.5,10.5 - parent: 5350 - uid: 15184 components: - type: Transform pos: -2.5,18.5 parent: 5350 - - uid: 15194 - components: - - type: Transform - pos: -59.5,10.5 - parent: 5350 - - uid: 15195 - components: - - type: Transform - pos: -60.5,10.5 - parent: 5350 - - uid: 15196 - components: - - type: Transform - pos: -61.5,10.5 - parent: 5350 - - uid: 15198 - components: - - type: Transform - pos: -56.5,10.5 - parent: 5350 - - uid: 15199 - components: - - type: Transform - pos: -55.5,10.5 - parent: 5350 - - uid: 15200 - components: - - type: Transform - pos: -54.5,10.5 - parent: 5350 - - uid: 15205 - components: - - type: Transform - pos: -53.5,10.5 - parent: 5350 - - uid: 15207 - components: - - type: Transform - pos: -52.5,10.5 - parent: 5350 - - uid: 15208 - components: - - type: Transform - pos: -51.5,10.5 - parent: 5350 - - uid: 15209 - components: - - type: Transform - pos: -50.5,10.5 - parent: 5350 - - uid: 15210 - components: - - type: Transform - pos: -49.5,10.5 - parent: 5350 - - uid: 15211 - components: - - type: Transform - pos: -48.5,10.5 - parent: 5350 - - uid: 15212 - components: - - type: Transform - pos: -47.5,10.5 - parent: 5350 - - uid: 15213 - components: - - type: Transform - pos: -46.5,10.5 - parent: 5350 - - uid: 15214 - components: - - type: Transform - pos: -45.5,10.5 - parent: 5350 - uid: 15215 components: - type: Transform @@ -31793,11 +32685,6 @@ entities: - type: Transform pos: -33.5,-34.5 parent: 5350 - - uid: 15593 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 5350 - uid: 15609 components: - type: Transform @@ -31823,15 +32710,10 @@ entities: - type: Transform pos: 56.5,-11.5 parent: 5350 - - uid: 15674 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 5350 - - uid: 15711 + - uid: 15703 components: - type: Transform - pos: 3.5,-56.5 + pos: 7.5,-44.5 parent: 5350 - uid: 15754 components: @@ -31978,20 +32860,10 @@ entities: - type: Transform pos: 28.5,-36.5 parent: 5350 - - uid: 15974 - components: - - type: Transform - pos: 3.5,-53.5 - parent: 5350 - uid: 15975 components: - type: Transform - pos: 3.5,-54.5 - parent: 5350 - - uid: 15991 - components: - - type: Transform - pos: 3.5,-52.5 + pos: 1.5,-57.5 parent: 5350 - uid: 15995 components: @@ -32608,6 +33480,36 @@ entities: - type: Transform pos: 4.5,-39.5 parent: 5350 + - uid: 16472 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 5350 + - uid: 16487 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 5350 + - uid: 16546 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 5350 + - uid: 16551 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 5350 + - uid: 16567 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 5350 + - uid: 16571 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 5350 - uid: 16593 components: - type: Transform @@ -32823,11 +33725,6 @@ entities: - type: Transform pos: -42.5,-29.5 parent: 5350 - - uid: 17324 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 5350 - uid: 17348 components: - type: Transform @@ -34148,6 +35045,11 @@ entities: - type: Transform pos: -55.5,-21.5 parent: 5350 + - uid: 18352 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 5350 - uid: 18389 components: - type: Transform @@ -34333,6 +35235,21 @@ entities: - type: Transform pos: 48.5,39.5 parent: 5350 + - uid: 18972 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 5350 + - uid: 19082 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 5350 + - uid: 19096 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 5350 - uid: 19101 components: - type: Transform @@ -34398,6 +35315,11 @@ entities: - type: Transform pos: 29.5,-51.5 parent: 5350 + - uid: 19240 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 5350 - uid: 19244 components: - type: Transform @@ -34433,11 +35355,26 @@ entities: - type: Transform pos: -29.5,29.5 parent: 5350 + - uid: 19294 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 5350 + - uid: 19310 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 5350 - uid: 19365 components: - type: Transform pos: -24.5,28.5 parent: 5350 + - uid: 19367 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 5350 - uid: 19380 components: - type: Transform @@ -34523,6 +35460,11 @@ entities: - type: Transform pos: 24.5,-47.5 parent: 5350 + - uid: 20336 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 5350 - uid: 20378 components: - type: Transform @@ -34723,11 +35665,6 @@ entities: - type: Transform pos: 12.5,-44.5 parent: 5350 - - uid: 20420 - components: - - type: Transform - pos: 11.5,-44.5 - parent: 5350 - uid: 20421 components: - type: Transform @@ -34948,11 +35885,6 @@ entities: - type: Transform pos: 18.5,-48.5 parent: 5350 - - uid: 20470 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 5350 - uid: 20471 components: - type: Transform @@ -35533,51 +36465,6 @@ entities: - type: Transform pos: -32.5,5.5 parent: 5350 - - uid: 20713 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 5350 - - uid: 20714 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 5350 - - uid: 20715 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 5350 - - uid: 20716 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 5350 - - uid: 20717 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 5350 - - uid: 20718 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 5350 - - uid: 20719 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 5350 - - uid: 20720 - components: - - type: Transform - pos: 1.5,-44.5 - parent: 5350 - - uid: 20721 - components: - - type: Transform - pos: 0.5,-44.5 - parent: 5350 - uid: 20722 components: - type: Transform @@ -37033,6 +37920,11 @@ entities: - type: Transform pos: -12.5,47.5 parent: 5350 + - uid: 22601 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 5350 - uid: 22614 components: - type: Transform @@ -37593,51 +38485,26 @@ entities: - type: Transform pos: 70.5,6.5 parent: 5350 - - uid: 23351 - components: - - type: Transform - pos: 71.5,6.5 - parent: 5350 - uid: 23352 components: - type: Transform - pos: 72.5,6.5 - parent: 5350 - - uid: 23353 - components: - - type: Transform - pos: 73.5,6.5 + pos: 103.5,-0.5 parent: 5350 - uid: 23354 components: - type: Transform - pos: 74.5,6.5 + pos: 103.5,1.5 parent: 5350 - uid: 23355 components: - type: Transform - pos: 75.5,6.5 + pos: 104.5,-13.5 parent: 5350 - uid: 23356 components: - type: Transform pos: 76.5,6.5 parent: 5350 - - uid: 23357 - components: - - type: Transform - pos: 70.5,5.5 - parent: 5350 - - uid: 23358 - components: - - type: Transform - pos: 70.5,4.5 - parent: 5350 - - uid: 23359 - components: - - type: Transform - pos: 70.5,3.5 - parent: 5350 - uid: 23364 components: - type: Transform @@ -37673,6 +38540,11 @@ entities: - type: Transform pos: 50.5,7.5 parent: 5350 + - uid: 23403 + components: + - type: Transform + pos: 104.5,2.5 + parent: 5350 - uid: 23423 components: - type: Transform @@ -37863,6 +38735,11 @@ entities: - type: Transform pos: -60.5,-15.5 parent: 5350 + - uid: 23973 + components: + - type: Transform + pos: 73.5,6.5 + parent: 5350 - uid: 23991 components: - type: Transform @@ -37873,6 +38750,11 @@ entities: - type: Transform pos: -59.5,-14.5 parent: 5350 + - uid: 24021 + components: + - type: Transform + pos: 100.5,0.5 + parent: 5350 - uid: 24053 components: - type: Transform @@ -38011,17 +38893,7 @@ entities: - uid: 24473 components: - type: Transform - pos: 28.5,-19.5 - parent: 5350 - - uid: 24477 - components: - - type: Transform - pos: 24.5,-18.5 - parent: 5350 - - uid: 24478 - components: - - type: Transform - pos: 24.5,-19.5 + pos: -72.5,10.5 parent: 5350 - uid: 24501 components: @@ -38088,20 +38960,25 @@ entities: - type: Transform pos: 111.5,-18.5 parent: 5350 - - uid: 25994 + - uid: 25786 components: - type: Transform - pos: 100.5,-1.5 + pos: 104.5,1.5 parent: 5350 - - uid: 25995 + - uid: 25951 components: - type: Transform - pos: 108.5,-0.5 + pos: 104.5,-6.5 parent: 5350 - - uid: 25996 + - uid: 25969 components: - type: Transform - pos: 108.5,-1.5 + pos: 104.5,-14.5 + parent: 5350 + - uid: 25994 + components: + - type: Transform + pos: 100.5,-1.5 parent: 5350 - uid: 25997 components: @@ -38133,11 +39010,6 @@ entities: - type: Transform pos: 99.5,-4.5 parent: 5350 - - uid: 26003 - components: - - type: Transform - pos: 99.5,1.5 - parent: 5350 - uid: 26004 components: - type: Transform @@ -38543,16 +39415,6 @@ entities: - type: Transform pos: 92.5,0.5 parent: 5350 - - uid: 26088 - components: - - type: Transform - pos: 92.5,-0.5 - parent: 5350 - - uid: 26089 - components: - - type: Transform - pos: 92.5,-1.5 - parent: 5350 - uid: 26090 components: - type: Transform @@ -38778,6 +39640,21 @@ entities: - type: Transform pos: 104.5,-19.5 parent: 5350 + - uid: 26141 + components: + - type: Transform + pos: 112.5,1.5 + parent: 5350 + - uid: 26142 + components: + - type: Transform + pos: 101.5,1.5 + parent: 5350 + - uid: 26144 + components: + - type: Transform + pos: 95.5,0.5 + parent: 5350 - uid: 26146 components: - type: Transform @@ -38798,11 +39675,6 @@ entities: - type: Transform pos: 103.5,-4.5 parent: 5350 - - uid: 26150 - components: - - type: Transform - pos: 103.5,3.5 - parent: 5350 - uid: 26151 components: - type: Transform @@ -38833,16 +39705,6 @@ entities: - type: Transform pos: 107.5,-3.5 parent: 5350 - - uid: 26157 - components: - - type: Transform - pos: 107.5,-6.5 - parent: 5350 - - uid: 26158 - components: - - type: Transform - pos: 107.5,-7.5 - parent: 5350 - uid: 26159 components: - type: Transform @@ -38868,11 +39730,6 @@ entities: - type: Transform pos: 107.5,-12.5 parent: 5350 - - uid: 26164 - components: - - type: Transform - pos: 107.5,-13.5 - parent: 5350 - uid: 26165 components: - type: Transform @@ -38973,16 +39830,6 @@ entities: - type: Transform pos: 103.5,-6.5 parent: 5350 - - uid: 26185 - components: - - type: Transform - pos: 103.5,2.5 - parent: 5350 - - uid: 26186 - components: - - type: Transform - pos: 103.5,1.5 - parent: 5350 - uid: 26187 components: - type: Transform @@ -39156,17 +40003,7 @@ entities: - uid: 26842 components: - type: Transform - pos: 76.5,5.5 - parent: 5350 - - uid: 26843 - components: - - type: Transform - pos: 76.5,4.5 - parent: 5350 - - uid: 26844 - components: - - type: Transform - pos: 76.5,3.5 + pos: 74.5,6.5 parent: 5350 - uid: 26980 components: @@ -39743,6 +40580,11 @@ entities: - type: Transform pos: 70.5,-38.5 parent: 5350 + - uid: 28120 + components: + - type: Transform + pos: -19.5,35.5 + parent: 5350 - uid: 28131 components: - type: Transform @@ -39848,6 +40690,121 @@ entities: - type: Transform pos: 49.5,-33.5 parent: 5350 + - uid: 28211 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 5350 + - uid: 28216 + components: + - type: Transform + pos: 75.5,6.5 + parent: 5350 + - uid: 28247 + components: + - type: Transform + pos: -19.5,36.5 + parent: 5350 + - uid: 28248 + components: + - type: Transform + pos: -19.5,37.5 + parent: 5350 + - uid: 28249 + components: + - type: Transform + pos: -19.5,38.5 + parent: 5350 + - uid: 28257 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 5350 + - uid: 28258 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 5350 + - uid: 28259 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 5350 + - uid: 28260 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 5350 + - uid: 28261 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 5350 + - uid: 28262 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 5350 + - uid: 28263 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 5350 + - uid: 28264 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 5350 + - uid: 28267 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 5350 + - uid: 28268 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 5350 + - uid: 28269 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 5350 + - uid: 28270 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 5350 + - uid: 28277 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 5350 + - uid: 28278 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 5350 + - uid: 28289 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 5350 + - uid: 28290 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 5350 + - uid: 28330 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 5350 + - uid: 28333 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 5350 - proto: CableApcStack entities: - uid: 1550 @@ -41652,6 +42609,11 @@ entities: - type: Transform pos: -16.5,35.5 parent: 5350 + - uid: 6690 + components: + - type: Transform + pos: 73.5,4.5 + parent: 5350 - uid: 6693 components: - type: Transform @@ -41777,6 +42739,16 @@ entities: - type: Transform pos: -25.5,54.5 parent: 5350 + - uid: 8244 + components: + - type: Transform + pos: 74.5,4.5 + parent: 5350 + - uid: 8253 + components: + - type: Transform + pos: 75.5,4.5 + parent: 5350 - uid: 8369 components: - type: Transform @@ -42717,6 +43689,11 @@ entities: - type: Transform pos: 43.5,-20.5 parent: 5350 + - uid: 11665 + components: + - type: Transform + pos: 71.5,4.5 + parent: 5350 - uid: 11877 components: - type: Transform @@ -47762,6 +48739,11 @@ entities: - type: Transform pos: 52.5,18.5 parent: 5350 + - uid: 28217 + components: + - type: Transform + pos: 72.5,4.5 + parent: 5350 - proto: CableHVStack entities: - uid: 1551 @@ -47786,11 +48768,6 @@ entities: parent: 5350 - proto: CableMV entities: - - uid: 141 - components: - - type: Transform - pos: -43.5,10.5 - parent: 5350 - uid: 153 components: - type: Transform @@ -49411,6 +50388,11 @@ entities: - type: Transform pos: -43.5,31.5 parent: 5350 + - uid: 3892 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 5350 - uid: 4007 components: - type: Transform @@ -49556,15 +50538,10 @@ entities: - type: Transform pos: -35.5,19.5 parent: 5350 - - uid: 4361 - components: - - type: Transform - pos: 3.5,-59.5 - parent: 5350 - - uid: 4519 + - uid: 4521 components: - type: Transform - pos: 0.5,-50.5 + pos: 6.5,-57.5 parent: 5350 - uid: 4532 components: @@ -49586,21 +50563,6 @@ entities: - type: Transform pos: 13.5,-60.5 parent: 5350 - - uid: 4538 - components: - - type: Transform - pos: 3.5,-61.5 - parent: 5350 - - uid: 4539 - components: - - type: Transform - pos: 3.5,-55.5 - parent: 5350 - - uid: 4540 - components: - - type: Transform - pos: 3.5,-60.5 - parent: 5350 - uid: 4543 components: - type: Transform @@ -49611,16 +50573,6 @@ entities: - type: Transform pos: -31.5,32.5 parent: 5350 - - uid: 4558 - components: - - type: Transform - pos: -43.5,7.5 - parent: 5350 - - uid: 4559 - components: - - type: Transform - pos: -43.5,8.5 - parent: 5350 - uid: 4563 components: - type: Transform @@ -49701,25 +50653,25 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 5350 - - uid: 4670 + - uid: 4608 components: - type: Transform - pos: 13.5,-58.5 + pos: -41.5,3.5 parent: 5350 - - uid: 4709 + - uid: 4609 components: - type: Transform - pos: 0.5,-49.5 + pos: -41.5,4.5 parent: 5350 - - uid: 4710 + - uid: 4670 components: - type: Transform - pos: 0.5,-52.5 + pos: 13.5,-58.5 parent: 5350 - uid: 4714 components: - type: Transform - pos: 2.5,-49.5 + pos: 3.5,-50.5 parent: 5350 - uid: 4718 components: @@ -49729,7 +50681,7 @@ entities: - uid: 4737 components: - type: Transform - pos: 3.5,-49.5 + pos: 3.5,-51.5 parent: 5350 - uid: 4739 components: @@ -49741,10 +50693,35 @@ entities: - type: Transform pos: 0.5,61.5 parent: 5350 + - uid: 4755 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 5350 + - uid: 4759 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 5350 + - uid: 4760 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 5350 - uid: 4762 components: - type: Transform - pos: 0.5,-53.5 + pos: 3.5,-47.5 + parent: 5350 + - uid: 4764 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 5350 + - uid: 4767 + components: + - type: Transform + pos: 3.5,-44.5 parent: 5350 - uid: 4826 components: @@ -49861,6 +50838,11 @@ entities: - type: Transform pos: 54.5,-10.5 parent: 5350 + - uid: 5438 + components: + - type: Transform + pos: 101.5,1.5 + parent: 5350 - uid: 5439 components: - type: Transform @@ -50021,16 +51003,6 @@ entities: - type: Transform pos: 52.5,-7.5 parent: 5350 - - uid: 6126 - components: - - type: Transform - pos: 3.5,-56.5 - parent: 5350 - - uid: 6130 - components: - - type: Transform - pos: 3.5,-57.5 - parent: 5350 - uid: 6140 components: - type: Transform @@ -50041,6 +51013,11 @@ entities: - type: Transform pos: 54.5,-8.5 parent: 5350 + - uid: 6184 + components: + - type: Transform + pos: 104.5,-13.5 + parent: 5350 - uid: 6187 components: - type: Transform @@ -50251,11 +51228,6 @@ entities: - type: Transform pos: -7.5,27.5 parent: 5350 - - uid: 6475 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 5350 - uid: 6480 components: - type: Transform @@ -50461,11 +51433,6 @@ entities: - type: Transform pos: -8.5,33.5 parent: 5350 - - uid: 6731 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 5350 - uid: 6732 components: - type: Transform @@ -50551,11 +51518,6 @@ entities: - type: Transform pos: -9.5,33.5 parent: 5350 - - uid: 6808 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 5350 - uid: 6812 components: - type: Transform @@ -50696,6 +51658,11 @@ entities: - type: Transform pos: 2.5,32.5 parent: 5350 + - uid: 7011 + components: + - type: Transform + pos: -41.5,8.5 + parent: 5350 - uid: 7015 components: - type: Transform @@ -50706,6 +51673,11 @@ entities: - type: Transform pos: 5.5,32.5 parent: 5350 + - uid: 7019 + components: + - type: Transform + pos: -42.5,3.5 + parent: 5350 - uid: 7020 components: - type: Transform @@ -50821,11 +51793,6 @@ entities: - type: Transform pos: -16.5,32.5 parent: 5350 - - uid: 7172 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 5350 - uid: 7174 components: - type: Transform @@ -50896,6 +51863,11 @@ entities: - type: Transform pos: 13.5,45.5 parent: 5350 + - uid: 7263 + components: + - type: Transform + pos: -41.5,5.5 + parent: 5350 - uid: 7276 components: - type: Transform @@ -51086,6 +52058,11 @@ entities: - type: Transform pos: -5.5,61.5 parent: 5350 + - uid: 7572 + components: + - type: Transform + pos: -41.5,9.5 + parent: 5350 - uid: 7643 components: - type: Transform @@ -51176,6 +52153,11 @@ entities: - type: Transform pos: -16.5,26.5 parent: 5350 + - uid: 7792 + components: + - type: Transform + pos: -41.5,7.5 + parent: 5350 - uid: 7793 components: - type: Transform @@ -51406,6 +52388,11 @@ entities: - type: Transform pos: 8.5,-60.5 parent: 5350 + - uid: 9271 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 5350 - uid: 9287 components: - type: Transform @@ -51446,16 +52433,6 @@ entities: - type: Transform pos: 13.5,-59.5 parent: 5350 - - uid: 9320 - components: - - type: Transform - pos: 0.5,-55.5 - parent: 5350 - - uid: 9322 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 5350 - uid: 9325 components: - type: Transform @@ -51506,11 +52483,41 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 5350 + - uid: 9375 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 5350 - uid: 9394 components: - type: Transform pos: -6.5,-50.5 parent: 5350 + - uid: 9397 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 5350 + - uid: 9398 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 5350 + - uid: 9400 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 5350 + - uid: 9403 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 5350 + - uid: 9405 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 5350 - uid: 9413 components: - type: Transform @@ -51521,11 +52528,26 @@ entities: - type: Transform pos: -3.5,62.5 parent: 5350 + - uid: 9419 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 5350 - uid: 9422 components: - type: Transform pos: -7.5,-50.5 parent: 5350 + - uid: 9437 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 5350 + - uid: 9439 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 5350 - uid: 9445 components: - type: Transform @@ -51646,6 +52668,11 @@ entities: - type: Transform pos: -53.5,31.5 parent: 5350 + - uid: 9762 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 5350 - uid: 9775 components: - type: Transform @@ -51851,6 +52878,11 @@ entities: - type: Transform pos: -0.5,65.5 parent: 5350 + - uid: 10401 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 5350 - uid: 10403 components: - type: Transform @@ -52031,11 +53063,6 @@ entities: - type: Transform pos: 16.5,-15.5 parent: 5350 - - uid: 11440 - components: - - type: Transform - pos: 41.5,-20.5 - parent: 5350 - uid: 11441 components: - type: Transform @@ -52884,13 +53911,18 @@ entities: - uid: 14105 components: - type: Transform - pos: 1.5,-49.5 + pos: 2.5,-41.5 parent: 5350 - uid: 14121 components: - type: Transform pos: 51.5,-9.5 parent: 5350 + - uid: 14129 + components: + - type: Transform + pos: 111.5,1.5 + parent: 5350 - uid: 14139 components: - type: Transform @@ -53074,7 +54106,7 @@ entities: - uid: 14502 components: - type: Transform - pos: 6.5,-54.5 + pos: 2.5,-40.5 parent: 5350 - uid: 14509 components: @@ -53106,11 +54138,6 @@ entities: - type: Transform pos: -16.5,-26.5 parent: 5350 - - uid: 14713 - components: - - type: Transform - pos: -42.5,10.5 - parent: 5350 - uid: 14737 components: - type: Transform @@ -53226,11 +54253,6 @@ entities: - type: Transform pos: -14.5,-46.5 parent: 5350 - - uid: 15018 - components: - - type: Transform - pos: -43.5,9.5 - parent: 5350 - uid: 15019 components: - type: Transform @@ -53376,11 +54398,6 @@ entities: - type: Transform pos: -2.5,38.5 parent: 5350 - - uid: 15592 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 5350 - uid: 15595 components: - type: Transform @@ -53406,21 +54423,11 @@ entities: - type: Transform pos: -15.5,-34.5 parent: 5350 - - uid: 15680 - components: - - type: Transform - pos: 2.5,-55.5 - parent: 5350 - uid: 15700 components: - type: Transform pos: -48.5,-6.5 parent: 5350 - - uid: 15703 - components: - - type: Transform - pos: 1.5,-55.5 - parent: 5350 - uid: 15704 components: - type: Transform @@ -53461,6 +54468,11 @@ entities: - type: Transform pos: -13.5,-35.5 parent: 5350 + - uid: 15779 + components: + - type: Transform + pos: 104.5,-14.5 + parent: 5350 - uid: 15781 components: - type: Transform @@ -53686,6 +54698,11 @@ entities: - type: Transform pos: -44.5,-4.5 parent: 5350 + - uid: 15945 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 5350 - uid: 15962 components: - type: Transform @@ -53706,6 +54723,16 @@ entities: - type: Transform pos: -31.5,-35.5 parent: 5350 + - uid: 15974 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 5350 + - uid: 15987 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 5350 - uid: 16149 components: - type: Transform @@ -53781,6 +54808,16 @@ entities: - type: Transform pos: -39.5,-30.5 parent: 5350 + - uid: 16317 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 5350 + - uid: 16340 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 5350 - uid: 16343 components: - type: Transform @@ -53791,20 +54828,15 @@ entities: - type: Transform pos: 8.5,-62.5 parent: 5350 - - uid: 16394 - components: - - type: Transform - pos: 7.5,-62.5 - parent: 5350 - - uid: 16397 + - uid: 16375 components: - type: Transform - pos: 6.5,-49.5 + pos: 104.5,1.5 parent: 5350 - - uid: 16398 + - uid: 16394 components: - type: Transform - pos: 0.5,-51.5 + pos: 7.5,-62.5 parent: 5350 - uid: 16474 components: @@ -53891,15 +54923,10 @@ entities: - type: Transform pos: -36.5,32.5 parent: 5350 - - uid: 17503 - components: - - type: Transform - pos: 4.5,-55.5 - parent: 5350 - - uid: 17510 + - uid: 17256 components: - type: Transform - pos: 6.5,-55.5 + pos: 104.5,-10.5 parent: 5350 - uid: 17511 components: @@ -54011,11 +55038,6 @@ entities: - type: Transform pos: -41.5,-3.5 parent: 5350 - - uid: 18352 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 5350 - uid: 18391 components: - type: Transform @@ -54146,15 +55168,15 @@ entities: - type: Transform pos: 6.5,-62.5 parent: 5350 - - uid: 19389 + - uid: 19314 components: - type: Transform - pos: 4.5,-62.5 + pos: 2.5,-39.5 parent: 5350 - - uid: 19478 + - uid: 19389 components: - type: Transform - pos: 5.5,-55.5 + pos: 4.5,-62.5 parent: 5350 - uid: 19744 components: @@ -54326,36 +55348,6 @@ entities: - type: Transform pos: 7.5,-34.5 parent: 5350 - - uid: 20280 - components: - - type: Transform - pos: 7.5,-33.5 - parent: 5350 - - uid: 20282 - components: - - type: Transform - pos: 7.5,-32.5 - parent: 5350 - - uid: 20283 - components: - - type: Transform - pos: 7.5,-31.5 - parent: 5350 - - uid: 20284 - components: - - type: Transform - pos: 7.5,-30.5 - parent: 5350 - - uid: 20285 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 5350 - - uid: 20286 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 5350 - uid: 20288 components: - type: Transform @@ -54461,11 +55453,6 @@ entities: - type: Transform pos: 26.5,-50.5 parent: 5350 - - uid: 20332 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 5350 - uid: 20359 components: - type: Transform @@ -54531,56 +55518,6 @@ entities: - type: Transform pos: 3.5,-39.5 parent: 5350 - - uid: 20659 - components: - - type: Transform - pos: 3.5,-40.5 - parent: 5350 - - uid: 20661 - components: - - type: Transform - pos: 3.5,-41.5 - parent: 5350 - - uid: 20663 - components: - - type: Transform - pos: 3.5,-42.5 - parent: 5350 - - uid: 20667 - components: - - type: Transform - pos: 3.5,-43.5 - parent: 5350 - - uid: 20669 - components: - - type: Transform - pos: 3.5,-44.5 - parent: 5350 - - uid: 20678 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 5350 - - uid: 20689 - components: - - type: Transform - pos: 5.5,-44.5 - parent: 5350 - - uid: 20700 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 5350 - - uid: 20706 - components: - - type: Transform - pos: 5.5,-46.5 - parent: 5350 - - uid: 20710 - components: - - type: Transform - pos: 5.5,-47.5 - parent: 5350 - uid: 20729 components: - type: Transform @@ -54616,11 +55553,6 @@ entities: - type: Transform pos: 14.5,-58.5 parent: 5350 - - uid: 20872 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 5350 - uid: 20873 components: - type: Transform @@ -54631,15 +55563,10 @@ entities: - type: Transform pos: -22.5,28.5 parent: 5350 - - uid: 20977 - components: - - type: Transform - pos: 3.5,-58.5 - parent: 5350 - - uid: 20981 + - uid: 20978 components: - type: Transform - pos: 6.5,-47.5 + pos: 1.5,-35.5 parent: 5350 - uid: 20983 components: @@ -54831,6 +55758,11 @@ entities: - type: Transform pos: 21.5,21.5 parent: 5350 + - uid: 22692 + components: + - type: Transform + pos: 104.5,-11.5 + parent: 5350 - uid: 22833 components: - type: Transform @@ -54951,6 +55883,11 @@ entities: - type: Transform pos: 26.5,18.5 parent: 5350 + - uid: 23351 + components: + - type: Transform + pos: 103.5,0.5 + parent: 5350 - uid: 23360 components: - type: Transform @@ -55581,6 +56518,11 @@ entities: - type: Transform pos: -60.5,-12.5 parent: 5350 + - uid: 23957 + components: + - type: Transform + pos: 102.5,1.5 + parent: 5350 - uid: 23963 components: - type: Transform @@ -55796,6 +56738,11 @@ entities: - type: Transform pos: 16.5,12.5 parent: 5350 + - uid: 24477 + components: + - type: Transform + pos: -43.5,3.5 + parent: 5350 - uid: 24732 components: - type: Transform @@ -55811,95 +56758,80 @@ entities: - type: Transform pos: 22.5,13.5 parent: 5350 - - uid: 25953 - components: - - type: Transform - pos: 108.5,2.5 - parent: 5350 - - uid: 25954 + - uid: 25792 components: - type: Transform - pos: 108.5,1.5 + pos: 104.5,2.5 parent: 5350 - - uid: 25955 + - uid: 25796 components: - type: Transform - pos: 108.5,0.5 + pos: 104.5,-4.5 parent: 5350 - - uid: 25956 + - uid: 25852 components: - type: Transform - pos: 108.5,-0.5 + pos: 104.5,-6.5 parent: 5350 - - uid: 25957 + - uid: 25946 components: - type: Transform - pos: 108.5,-1.5 + pos: 104.5,-5.5 parent: 5350 - - uid: 25958 + - uid: 25947 components: - type: Transform - pos: 107.5,0.5 + pos: 104.5,-7.5 parent: 5350 - - uid: 25959 + - uid: 25950 components: - type: Transform - pos: 106.5,0.5 + pos: 104.5,-8.5 parent: 5350 - - uid: 25960 + - uid: 25953 components: - type: Transform - pos: 105.5,0.5 + pos: 108.5,2.5 parent: 5350 - - uid: 25961 + - uid: 25954 components: - type: Transform - pos: 104.5,0.5 + pos: 108.5,1.5 parent: 5350 - - uid: 25962 + - uid: 25955 components: - type: Transform - pos: 103.5,0.5 + pos: 108.5,0.5 parent: 5350 - - uid: 25963 + - uid: 25958 components: - type: Transform - pos: 102.5,0.5 + pos: 107.5,0.5 parent: 5350 - - uid: 25964 + - uid: 25959 components: - type: Transform - pos: 101.5,0.5 + pos: 106.5,0.5 parent: 5350 - - uid: 25965 + - uid: 25960 components: - type: Transform - pos: 100.5,0.5 + pos: 105.5,0.5 parent: 5350 - - uid: 25966 + - uid: 25961 components: - type: Transform - pos: 100.5,-0.5 + pos: 104.5,0.5 parent: 5350 - uid: 25967 components: - type: Transform pos: 100.5,-1.5 parent: 5350 - - uid: 25968 - components: - - type: Transform - pos: 103.5,1.5 - parent: 5350 - - uid: 25969 - components: - - type: Transform - pos: 103.5,2.5 - parent: 5350 - uid: 25970 components: - type: Transform - pos: 103.5,3.5 + pos: 103.5,1.5 parent: 5350 - uid: 25971 components: @@ -55951,85 +56883,20 @@ entities: - type: Transform pos: 103.5,-4.5 parent: 5350 - - uid: 25982 - components: - - type: Transform - pos: 103.5,-5.5 - parent: 5350 - - uid: 25983 - components: - - type: Transform - pos: 105.5,-5.5 - parent: 5350 - - uid: 25984 - components: - - type: Transform - pos: 104.5,-5.5 - parent: 5350 - - uid: 25985 - components: - - type: Transform - pos: 106.5,-5.5 - parent: 5350 - - uid: 25986 - components: - - type: Transform - pos: 107.5,-5.5 - parent: 5350 - - uid: 25987 - components: - - type: Transform - pos: 107.5,-6.5 - parent: 5350 - - uid: 26136 - components: - - type: Transform - pos: 92.5,-1.5 - parent: 5350 - - uid: 26137 - components: - - type: Transform - pos: 92.5,-0.5 - parent: 5350 - - uid: 26138 - components: - - type: Transform - pos: 92.5,0.5 - parent: 5350 - - uid: 26139 - components: - - type: Transform - pos: 93.5,0.5 - parent: 5350 - - uid: 26140 - components: - - type: Transform - pos: 94.5,0.5 - parent: 5350 - - uid: 26141 - components: - - type: Transform - pos: 95.5,0.5 - parent: 5350 - - uid: 26142 - components: - - type: Transform - pos: 96.5,0.5 - parent: 5350 - - uid: 26143 + - uid: 26145 components: - type: Transform - pos: 97.5,0.5 + pos: 104.5,-9.5 parent: 5350 - - uid: 26144 + - uid: 26150 components: - type: Transform - pos: 98.5,0.5 + pos: 104.5,-12.5 parent: 5350 - - uid: 26145 + - uid: 26185 components: - type: Transform - pos: 99.5,0.5 + pos: -41.5,6.5 parent: 5350 - uid: 26628 components: @@ -56161,6 +57028,51 @@ entities: - type: Transform pos: 69.5,-29.5 parent: 5350 + - uid: 28240 + components: + - type: Transform + pos: 109.5,0.5 + parent: 5350 + - uid: 28241 + components: + - type: Transform + pos: 110.5,0.5 + parent: 5350 + - uid: 28242 + components: + - type: Transform + pos: 111.5,0.5 + parent: 5350 + - uid: 28244 + components: + - type: Transform + pos: 112.5,1.5 + parent: 5350 + - uid: 28254 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 5350 + - uid: 28255 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 5350 + - uid: 28256 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 5350 + - uid: 28288 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 5350 + - uid: 28332 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 5350 - proto: CableMVStack entities: - uid: 1548 @@ -58240,21 +59152,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-56.5 parent: 5350 - - uid: 2999 - components: - - type: Transform - pos: 70.5,4.5 - parent: 5350 - - uid: 3055 - components: - - type: Transform - pos: 70.5,6.5 - parent: 5350 - - uid: 3056 - components: - - type: Transform - pos: 70.5,5.5 - parent: 5350 - uid: 3246 components: - type: Transform @@ -58265,11 +59162,6 @@ entities: - type: Transform pos: -58.5,31.5 parent: 5350 - - uid: 3544 - components: - - type: Transform - pos: 70.5,7.5 - parent: 5350 - uid: 3701 components: - type: Transform @@ -62274,24 +63166,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,36.5 parent: 5350 - - uid: 9269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-58.5 - parent: 5350 - - uid: 9270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-58.5 - parent: 5350 - - uid: 9283 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-57.5 - parent: 5350 - uid: 10079 components: - type: Transform @@ -62332,12 +63206,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-10.5 parent: 5350 - - uid: 11390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-58.5 - parent: 5350 - uid: 12497 components: - type: Transform @@ -62448,12 +63316,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,2.5 parent: 5350 - - uid: 15698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-57.5 - parent: 5350 - uid: 16534 components: - type: Transform @@ -62538,18 +63400,6 @@ entities: - type: Transform pos: 7.5,-23.5 parent: 5350 - - uid: 20163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-57.5 - parent: 5350 - - uid: 20337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-57.5 - parent: 5350 - uid: 20355 components: - type: Transform @@ -62560,12 +63410,6 @@ entities: - type: Transform pos: 22.5,-42.5 parent: 5350 - - uid: 20824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-58.5 - parent: 5350 - uid: 21365 components: - type: Transform @@ -62995,6 +63839,24 @@ entities: - type: Transform pos: -12.5,-23.5 parent: 5350 + - uid: 26157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,27.5 + parent: 5350 + - uid: 26158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,27.5 + parent: 5350 + - uid: 26164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,27.5 + parent: 5350 - uid: 26348 components: - type: Transform @@ -63337,6 +64199,12 @@ entities: rot: 3.141592653589793 rad pos: 62.5,36.5 parent: 5350 + - uid: 20834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5052776,-59.376762 + parent: 5350 - uid: 21821 components: - type: Transform @@ -63475,11 +64343,10 @@ entities: rot: 3.141592653589793 rad pos: 44.5,8.5 parent: 5350 - - uid: 9439 + - uid: 11462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.511628,-44.420036 + pos: 9.521511,-45.364662 parent: 5350 - uid: 13919 components: @@ -63546,6 +64413,11 @@ entities: rot: 1.5707963267948966 rad pos: 20.582586,-59.239254 parent: 5350 + - uid: 22682 + components: + - type: Transform + pos: 6.502756,-45.434143 + parent: 5350 - uid: 22707 components: - type: Transform @@ -64019,7 +64891,7 @@ entities: - uid: 22675 components: - type: Transform - pos: 26.540525,-58.43066 + pos: 26.766293,-58.368557 parent: 5350 - uid: 28065 components: @@ -64338,11 +65210,6 @@ entities: - 0 - 0 - 0 - - uid: 14878 - components: - - type: Transform - pos: -40.5,24.5 - parent: 5350 - uid: 15321 components: - type: Transform @@ -64604,21 +65471,16 @@ entities: - 0 - 0 - 0 - - uid: 15326 + - uid: 15120 components: - type: Transform - pos: 45.5,26.5 + pos: 18.5,-59.5 parent: 5350 - uid: 15608 components: - type: Transform pos: -19.5,-60.5 parent: 5350 - - uid: 16457 - components: - - type: Transform - pos: 16.5,-59.5 - parent: 5350 - uid: 17581 components: - type: Transform @@ -64979,6 +65841,11 @@ entities: - 0 - 0 - 0 + - uid: 19196 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 5350 - uid: 20818 components: - type: Transform @@ -65035,29 +65902,6 @@ entities: - type: Transform pos: -39.5,-52.5 parent: 5350 - - uid: 22971 - components: - - type: Transform - pos: -8.5,-53.5 - parent: 5350 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.848459 - - 14.477538 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 23086 components: - type: Transform @@ -65356,11 +66200,6 @@ entities: parent: 5350 - proto: ClothingBeltSecurityFilled entities: - - uid: 2148 - components: - - type: Transform - pos: 9.560054,24.202663 - parent: 5350 - uid: 7218 components: - type: Transform @@ -65389,7 +66228,7 @@ entities: - uid: 5395 components: - type: Transform - pos: 5.4474216,-42.31921 + pos: 5.489552,-48.32825 parent: 5350 - uid: 22343 components: @@ -65434,16 +66273,6 @@ entities: parent: 5350 - proto: ClothingEyesGlasses entities: - - uid: 3881 - components: - - type: Transform - pos: 1.4063983,-42.29719 - parent: 5350 - - uid: 3925 - components: - - type: Transform - pos: 1.5157733,-42.51594 - parent: 5350 - uid: 24177 components: - type: Transform @@ -65582,18 +66411,8 @@ entities: - type: Transform pos: 31.204893,42.958855 parent: 5350 - - uid: 15896 - components: - - type: Transform - pos: 0.5055747,-59.429768 - parent: 5350 - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 9265 - components: - - type: Transform - pos: 0.5055747,-59.039143 - parent: 5350 - uid: 13622 components: - type: Transform @@ -65708,19 +66527,12 @@ entities: - type: Transform pos: 20.52728,22.507175 parent: 5350 -- proto: ClothingHeadHatAnimalMonkey - entities: - - uid: 24117 - components: - - type: Transform - pos: 45.50863,41.570244 - parent: 5350 - proto: ClothingHeadHatBeretBrigmedic entities: - uid: 10732 components: - type: Transform - pos: -15.6410675,28.801224 + pos: -18.300854,27.927118 parent: 5350 - proto: ClothingHeadHatBeretWarden entities: @@ -65798,6 +66610,13 @@ entities: - type: Transform pos: -7.4309044,-16.489243 parent: 5350 +- proto: ClothingHeadHatRedwizard + entities: + - uid: 6128 + components: + - type: Transform + pos: -50.70865,-38.195942 + parent: 5350 - proto: ClothingHeadHatSkub entities: - uid: 10493 @@ -65874,6 +66693,13 @@ entities: - type: Transform pos: -40.532333,-25.270031 parent: 5350 +- proto: ClothingHeadHatWizard + entities: + - uid: 17456 + components: + - type: Transform + pos: -50.3649,-38.227192 + parent: 5350 - proto: ClothingHeadHelmetBasic entities: - uid: 7377 @@ -65898,37 +66724,128 @@ entities: parent: 5350 - proto: ClothingHeadHelmetEVA entities: - - uid: 7010 + - uid: 7026 components: - type: Transform - parent: 6996 + pos: -18.649746,-13.1577835 + parent: 5350 + - uid: 7808 + components: + - type: Transform + parent: 7801 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7795 + - uid: 7940 components: - type: Transform - parent: 7774 + parent: 7801 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 9617 + - uid: 11097 + components: + - type: Transform + pos: -18.29037,-13.4859085 + parent: 5350 + - uid: 15196 components: - type: Transform - parent: 9506 + parent: 15195 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15114 + - uid: 15200 components: - type: Transform - pos: -18.6413,-13.200754 - parent: 5350 - - uid: 15115 + parent: 15195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22229 components: - type: Transform - pos: -18.3288,-13.591379 - parent: 5350 + parent: 1488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22348 + components: + - type: Transform + parent: 1488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23051 + components: + - type: Transform + parent: 1489 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23098 + components: + - type: Transform + parent: 1489 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23407 + components: + - type: Transform + parent: 4104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23472 + components: + - type: Transform + parent: 4104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23712 + components: + - type: Transform + parent: 7165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23905 + components: + - type: Transform + parent: 7165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24056 + components: + - type: Transform + parent: 2617 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24057 + components: + - type: Transform + parent: 2617 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24248 + components: + - type: Transform + parent: 11032 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24266 + components: + - type: Transform + parent: 11032 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHelmetRiot entities: - uid: 4927 @@ -66036,12 +66953,12 @@ entities: - uid: 10442 components: - type: Transform - pos: 12.440818,38.680107 + pos: 0.5781207,44.49513 parent: 5350 - uid: 10443 components: - type: Transform - pos: 12.628318,38.398857 + pos: 0.17187071,44.68263 parent: 5350 - proto: ClothingMaskJoy entities: @@ -66074,12 +66991,59 @@ entities: - type: Transform pos: 6.498452,-14.246428 parent: 5350 +- proto: ClothingNeckCloakAdmin + entities: + - uid: 28325 + components: + - type: Transform + pos: 49.558456,-13.3518505 + parent: 5350 +- proto: ClothingNeckCloakAro + entities: + - uid: 28327 + components: + - type: Transform + pos: 48.4059,34.733707 + parent: 5350 +- proto: ClothingNeckCloakBi + entities: + - uid: 28322 + components: + - type: Transform + pos: -45.293335,5.678726 + parent: 5350 + - uid: 28323 + components: + - type: Transform + pos: -39.36795,-12.329826 + parent: 5350 +- proto: ClothingNeckCloakEnby + entities: + - uid: 28324 + components: + - type: Transform + pos: -10.296133,-53.285557 + parent: 5350 +- proto: ClothingNeckCloakGay + entities: + - uid: 16726 + components: + - type: Transform + pos: 26.360043,-58.493557 + parent: 5350 +- proto: ClothingNeckCloakLesbian + entities: + - uid: 28320 + components: + - type: Transform + pos: -26.34226,41.685402 + parent: 5350 - proto: ClothingNeckCloakTrans entities: - uid: 24116 components: - type: Transform - pos: -12.481159,-67.51491 + pos: 0.42782736,-64.34981 parent: 5350 - proto: ClothingNeckHeadphones entities: @@ -66243,26 +67207,117 @@ entities: - type: Transform pos: -23.450022,38.487732 parent: 5350 -- proto: ClothingOuterHardsuitEVAPrisoner +- proto: ClothingOuterHardsuitEVA entities: - - uid: 7009 + - uid: 8865 components: - type: Transform - parent: 6996 + parent: 7801 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7808 + - uid: 8883 components: - type: Transform - parent: 7774 + parent: 7801 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 9537 + - uid: 15198 + components: + - type: Transform + parent: 15195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15199 + components: + - type: Transform + parent: 15195 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22167 + components: + - type: Transform + parent: 1488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22168 + components: + - type: Transform + parent: 1488 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 22911 + components: + - type: Transform + parent: 1489 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23099 + components: + - type: Transform + parent: 1489 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23284 + components: + - type: Transform + parent: 4104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23406 + components: + - type: Transform + parent: 4104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23956 + components: + - type: Transform + parent: 7165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23964 + components: + - type: Transform + parent: 7165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24058 + components: + - type: Transform + parent: 2617 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24244 components: - type: Transform - parent: 9506 + parent: 2617 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24321 + components: + - type: Transform + parent: 11032 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24328 + components: + - type: Transform + parent: 11032 - type: Physics canCollide: False - type: InsideEntityStorage @@ -66324,19 +67379,26 @@ entities: - type: Transform pos: 8.5866995,27.615423 parent: 5350 -- proto: ClothingOuterSuitMonkey +- proto: ClothingOuterVestHazard entities: - - uid: 24111 + - uid: 3073 components: - type: Transform - pos: 45.551994,40.766094 + pos: 35.48533,-43.42037 parent: 5350 -- proto: ClothingOuterVestHazard +- proto: ClothingOuterWizard entities: - - uid: 3073 + - uid: 804 components: - type: Transform - pos: 35.48533,-43.42037 + pos: -50.349274,-38.461567 + parent: 5350 +- proto: ClothingOuterWizardRed + entities: + - uid: 23047 + components: + - type: Transform + pos: -50.70865,-38.445942 parent: 5350 - proto: ClothingShoesBootsJackFilled entities: @@ -66352,28 +67414,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesBootsMag - entities: - - uid: 1514 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 5350 - - uid: 1515 - components: - - type: Transform - pos: -18.5,-15.5 - parent: 5350 - - uid: 1516 - components: - - type: Transform - pos: -18.62109,-15.408751 - parent: 5350 - - uid: 1517 - components: - - type: Transform - pos: -18.62109,-16.361876 - parent: 5350 - proto: ClothingShoesBootsPerformer entities: - uid: 9989 @@ -66465,13 +67505,6 @@ entities: - type: Transform pos: -21.437214,36.348232 parent: 5350 -- proto: ClothingShoesWizard - entities: - - uid: 22607 - components: - - type: Transform - pos: 0.5097017,-65.83838 - parent: 5350 - proto: ClothingUnderSocksBee entities: - uid: 24067 @@ -67025,6 +68058,12 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,28.5 parent: 5350 + - uid: 14884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 5350 - uid: 15372 components: - type: Transform @@ -67037,12 +68076,30 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-5.5 parent: 5350 + - uid: 15593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 5350 + - uid: 15600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-45.5 + parent: 5350 - uid: 15612 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-44.5 parent: 5350 + - uid: 15687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 5350 - uid: 16349 components: - type: Transform @@ -67589,12 +68646,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-30.5 parent: 5350 - - uid: 16606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-45.5 - parent: 5350 - uid: 18247 components: - type: Transform @@ -67606,6 +68657,11 @@ entities: rot: 1.5707963267948966 rad pos: 22.5,-45.5 parent: 5350 + - uid: 28344 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 5350 - proto: ComputerRoboticsControl entities: - uid: 20338 @@ -67716,12 +68772,6 @@ entities: - type: Transform pos: 9.5,48.5 parent: 5350 - - uid: 6749 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,28.5 - parent: 5350 - uid: 7591 components: - type: Transform @@ -67739,6 +68789,12 @@ entities: - type: Transform pos: 4.5,2.5 parent: 5350 + - uid: 11467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,28.5 + parent: 5350 - uid: 26449 components: - type: Transform @@ -68024,8 +69080,6 @@ entities: - type: Transform pos: -23.5,43.5 parent: 5350 - - type: Conveyor - speed: 4 - uid: 9256 components: - type: Transform @@ -68194,15 +69248,11 @@ entities: - type: Transform pos: -23.5,44.5 parent: 5350 - - type: Conveyor - speed: 4 - uid: 13342 components: - type: Transform pos: -23.5,45.5 parent: 5350 - - type: Conveyor - speed: 4 - uid: 17828 components: - type: Transform @@ -68335,10 +69385,10 @@ entities: - type: Transform pos: 14.5,-42.5 parent: 5350 - - uid: 15325 + - uid: 28295 components: - type: Transform - pos: 13.5,-42.5 + pos: 12.5,-42.5 parent: 5350 - proto: CrateCoffin entities: @@ -68369,10 +69419,10 @@ entities: parent: 5350 - proto: CrateContrabandStorageSecure entities: - - uid: 7225 + - uid: 1706 components: - type: Transform - pos: -3.5,35.5 + pos: -1.5,38.5 parent: 5350 - proto: CrateEmptySpawner entities: @@ -68423,6 +69473,45 @@ entities: - type: Transform pos: 72.5,8.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: + - 14093 + - 15326 + - 16554 + - 23357 + - 23358 + - 23359 + - 23504 + - 23505 + - 23506 + - 23507 + - 23508 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringCableBulk entities: - uid: 3248 @@ -68713,10 +69802,10 @@ entities: parent: 5350 - proto: CrateSecurityTrackingMindshieldImplants entities: - - uid: 6614 + - uid: 28265 components: - type: Transform - pos: -1.5,38.5 + pos: -6.5,44.5 parent: 5350 - proto: CrateServiceBox entities: @@ -68820,7 +69909,7 @@ entities: - uid: 6700 components: - type: Transform - pos: -3.4244092,38.467068 + pos: -3.5133927,38.61675 parent: 5350 - uid: 10811 components: @@ -68955,34 +70044,41 @@ entities: - type: Transform pos: -27.551458,-25.298742 parent: 5350 -- proto: CurtainsWhiteOpen +- proto: CurtainsRedOpen entities: - - uid: 8039 + - uid: 24450 components: - type: Transform - pos: 6.5,2.5 + pos: 8.5,43.5 parent: 5350 -- proto: CutterMachine - entities: - - uid: 22692 + - uid: 26481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,5.5 + pos: 11.5,43.5 parent: 5350 -- proto: DawInstrumentMachineCircuitboard + - uid: 26774 + components: + - type: Transform + pos: 7.5,43.5 + parent: 5350 + - uid: 28200 + components: + - type: Transform + pos: 10.5,43.5 + parent: 5350 +- proto: CurtainsWhiteOpen entities: - - uid: 3224 + - uid: 8039 components: - type: Transform - pos: 41.470444,-8.386417 + pos: 6.5,2.5 parent: 5350 -- proto: DefaultStationBeacon +- proto: DawInstrumentMachineCircuitboard entities: - - uid: 1706 + - uid: 3224 components: - type: Transform - pos: -48.5,-11.5 + pos: 41.470444,-8.386417 parent: 5350 - proto: DefaultStationBeaconAICore entities: @@ -69156,25 +70252,33 @@ entities: text: NW Pod - type: WarpPoint location: NW Pod - - uid: 9406 + - uid: 3634 components: - type: Transform pos: -39.5,-46.5 parent: 5350 - - uid: 17456 + - type: NavMapBeacon + text: SW Pod + - type: WarpPoint + location: SW Pod + - uid: 3927 components: - type: Transform pos: 17.5,-60.5 parent: 5350 - - uid: 24145 + - type: NavMapBeacon + text: SE Pod + - type: WarpPoint + location: SE Pod + - uid: 4448 components: - type: Transform pos: -63.5,-13.5 parent: 5350 - type: NavMapBeacon - text: Pod + text: NW Pod - type: WarpPoint - location: Pod + location: NW Pod - proto: DefaultStationBeaconEvac entities: - uid: 3602 @@ -69198,10 +70302,10 @@ entities: parent: 5350 - proto: DefaultStationBeaconHOSRoom entities: - - uid: 26688 + - uid: 1517 components: - type: Transform - pos: 8.5,45.5 + pos: 10.5,45.5 parent: 5350 - proto: DefaultStationBeaconJanitorsCloset entities: @@ -69252,6 +70356,13 @@ entities: - type: Transform pos: -4.5,58.5 parent: 5350 +- proto: DefaultStationBeaconReporter + entities: + - uid: 2148 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 5350 - proto: DefaultStationBeaconRND entities: - uid: 19289 @@ -69434,6 +70545,11 @@ entities: - type: Transform pos: 5.5,26.5 parent: 5350 + - uid: 25986 + components: + - type: Transform + pos: 5.5,24.5 + parent: 5350 - proto: DeskBell entities: - uid: 1374 @@ -69454,18 +70570,15 @@ entities: - type: Transform pos: 25.549889,-6.2730985 parent: 5350 - - uid: 5331 + - uid: 4512 components: - type: Transform - pos: -11.5,-5.5 + pos: 20.513496,-19.329103 parent: 5350 - - type: Physics - canCollide: False - bodyType: Static - - uid: 5334 + - uid: 5331 components: - type: Transform - pos: 20.5,-19.5 + pos: -11.5,-5.5 parent: 5350 - type: Physics canCollide: False @@ -69899,6 +71012,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-20.5 parent: 5350 + - uid: 16434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 + parent: 5350 - uid: 17707 components: - type: Transform @@ -69958,12 +71077,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-39.5 parent: 5350 - - uid: 19608 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-47.5 - parent: 5350 - uid: 20945 components: - type: Transform @@ -70176,6 +71289,18 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 5350 + - uid: 28306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-55.5 + parent: 5350 + - uid: 28307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 5350 - proto: DisposalJunction entities: - uid: 1407 @@ -70292,6 +71417,12 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,17.5 parent: 5350 + - uid: 14299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-57.5 + parent: 5350 - uid: 14463 components: - type: Transform @@ -70341,6 +71472,12 @@ entities: - type: Transform pos: -33.5,7.5 parent: 5350 + - uid: 4709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 5350 - uid: 4825 components: - type: Transform @@ -70445,12 +71582,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-46.5 parent: 5350 - - uid: 14698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-29.5 - parent: 5350 - uid: 14761 components: - type: Transform @@ -72802,12 +73933,30 @@ entities: - type: Transform pos: -31.5,33.5 parent: 5350 + - uid: 9269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-53.5 + parent: 5350 + - uid: 9283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-50.5 + parent: 5350 - uid: 9306 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,13.5 parent: 5350 + - uid: 9318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-52.5 + parent: 5350 - uid: 9401 components: - type: Transform @@ -73620,6 +74769,12 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 5350 + - uid: 13736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-47.5 + parent: 5350 - uid: 13747 components: - type: Transform @@ -73748,11 +74903,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,23.5 parent: 5350 - - uid: 14742 - components: - - type: Transform - pos: 6.5,-30.5 - parent: 5350 - uid: 14752 components: - type: Transform @@ -74329,6 +75479,12 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-35.5 parent: 5350 + - uid: 15991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-53.5 + parent: 5350 - uid: 16130 components: - type: Transform @@ -74352,6 +75508,18 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-42.5 parent: 5350 + - uid: 16335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-51.5 + parent: 5350 + - uid: 16390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 5350 - uid: 16413 components: - type: Transform @@ -74653,6 +75821,12 @@ entities: - type: Transform pos: 7.5,-29.5 parent: 5350 + - uid: 18562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-49.5 + parent: 5350 - uid: 19420 components: - type: Transform @@ -74859,18 +76033,6 @@ entities: - type: Transform pos: 3.5,-46.5 parent: 5350 - - uid: 19604 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-47.5 - parent: 5350 - - uid: 19605 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 - parent: 5350 - uid: 19610 components: - type: Transform @@ -75019,6 +76181,12 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-13.5 parent: 5350 + - uid: 20714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-48.5 + parent: 5350 - uid: 20960 components: - type: Transform @@ -75231,11 +76399,6 @@ entities: - type: Transform pos: -2.5,-56.5 parent: 5350 - - uid: 21217 - components: - - type: Transform - pos: -2.5,-57.5 - parent: 5350 - uid: 21218 components: - type: Transform @@ -77110,6 +78273,53 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 5350 + - uid: 28298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-57.5 + parent: 5350 + - uid: 28299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 5350 + - uid: 28300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 + parent: 5350 + - uid: 28301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-57.5 + parent: 5350 + - uid: 28302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-57.5 + parent: 5350 + - uid: 28303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-57.5 + parent: 5350 + - uid: 28304 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 5350 + - uid: 28305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-55.5 + parent: 5350 - proto: DisposalPipeBroken entities: - uid: 20064 @@ -77333,6 +78543,12 @@ entities: - type: Transform pos: 15.5,11.5 parent: 5350 + - uid: 9270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-53.5 + parent: 5350 - uid: 9550 components: - type: Transform @@ -77522,12 +78738,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-29.5 parent: 5350 - - uid: 19606 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 - parent: 5350 - uid: 19616 components: - type: Transform @@ -77655,6 +78865,12 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 5350 + - uid: 28308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 5350 - proto: DisposalUnit entities: - uid: 316 @@ -77732,6 +78948,11 @@ entities: - type: Transform pos: -46.5,-2.5 parent: 5350 + - uid: 6475 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 5350 - uid: 6770 components: - type: Transform @@ -77777,11 +78998,6 @@ entities: - type: Transform pos: 10.5,17.5 parent: 5350 - - uid: 10404 - components: - - type: Transform - pos: 0.5,-47.5 - parent: 5350 - uid: 11521 components: - type: Transform @@ -77822,6 +79038,11 @@ entities: - type: Transform pos: -5.5,-26.5 parent: 5350 + - uid: 14559 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 5350 - uid: 14669 components: - type: Transform @@ -77917,11 +79138,6 @@ entities: - type: Transform pos: 25.5,-37.5 parent: 5350 - - uid: 19615 - components: - - type: Transform - pos: 4.5,-29.5 - parent: 5350 - uid: 20357 components: - type: Transform @@ -78083,6 +79299,11 @@ entities: - type: Transform pos: -16.5,-40.5 parent: 5350 + - uid: 16397 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 5350 - uid: 23992 components: - type: Transform @@ -78222,6 +79443,22 @@ entities: - type: Transform pos: -1.5,39.5 parent: 5350 + - type: Storage + storedItems: + 6607: + position: 6,3 + _rotation: South + 12703: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 6607 + - 12703 - proto: DrinkBottleOfNothingFull entities: - uid: 3219 @@ -78368,11 +79605,6 @@ entities: - type: Transform pos: 22.160711,-59.489254 parent: 5350 - - uid: 1454 - components: - - type: Transform - pos: 18.483305,-61.360317 - parent: 5350 - proto: DrinkWineBottleFull entities: - uid: 21260 @@ -78461,12 +79693,6 @@ entities: rot: 3.141592653589793 rad pos: -12.5,-31.5 parent: 5350 - - uid: 3808 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-53.5 - parent: 5350 - uid: 3809 components: - type: Transform @@ -78674,6 +79900,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 5350 + - uid: 19155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-54.5 + parent: 5350 - uid: 20181 components: - type: Transform @@ -79020,6 +80252,13 @@ entities: - type: Transform pos: 12.5,-34.5 parent: 5350 +- proto: ExplosivesSignMed + entities: + - uid: 28281 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 5350 - proto: ExtinguisherCabinetFilled entities: - uid: 3 @@ -79303,13 +80542,11 @@ entities: parent: 5350 - type: FaxMachine name: Confrence Room - - uid: 19314 + - uid: 28349 components: - type: Transform - pos: 10.5,-43.5 + pos: 10.5,-45.5 parent: 5350 - - type: FaxMachine - name: XenoArcheology Lab - proto: FaxMachineCaptain entities: - uid: 5362 @@ -79368,10 +80605,10 @@ entities: - type: Transform pos: -15.5,-51.5 parent: 5350 - - uid: 16511 + - uid: 20326 components: - type: Transform - pos: 8.5,-46.5 + pos: 25.5,-33.5 parent: 5350 - uid: 21012 components: @@ -79385,9 +80622,6 @@ entities: parent: 5350 - type: Storage storedItems: - 6607: - position: 7,2 - _rotation: South 6609: position: 0,0 _rotation: South @@ -79404,7 +80638,6 @@ entities: occludes: True ents: - 6609 - - 6607 - 6613 - 6610 - uid: 23002 @@ -79412,6 +80645,11 @@ entities: - type: Transform pos: -10.5,-54.5 parent: 5350 + - uid: 28338 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 5350 - proto: filingCabinetDrawerRandom entities: - uid: 1377 @@ -79507,6 +80745,8 @@ entities: - 5660 - 5661 - 11860 + - 9615 + - 8379 - uid: 557 components: - type: Transform @@ -79545,21 +80785,43 @@ entities: - uid: 1164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-9.5 + rot: 3.141592653589793 rad + pos: -13.5,-32.5 parent: 5350 - type: DeviceList devices: - - 2353 - - 3105 - - 2756 - - 2755 - - 3243 - - 2458 - - 3172 - - 3134 - - 2352 - - 24466 + - 5538 + - 5662 + - 19516 + - 14161 + - 14694 + - 18017 + - 15438 + - uid: 1303 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 5350 + - type: DeviceList + devices: + - 2106 + - 4085 + - 2107 + - 21254 + - 2109 + - 2108 + - 24323 + - 20608 + - 24322 + - 27669 + - 27668 + - 27666 + - 27667 + - 24338 + - 8379 + - 24213 + - 142 + - 27 - uid: 1327 components: - type: Transform @@ -79584,6 +80846,44 @@ entities: - 15079 - 14877 - 352 + - uid: 1514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-10.5 + parent: 5350 + - type: DeviceList + devices: + - 5808 + - 5807 + - 24376 + - uid: 1914 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 5350 + - type: DeviceList + devices: + - 9615 + - 24338 + - 24213 + - 24580 + - uid: 2567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 5350 + - type: DeviceList + devices: + - 24466 + - 2402 + - 2403 + - 2404 + - 2405 + - 2406 + - 2407 + - 2408 - uid: 2835 components: - type: Transform @@ -79601,33 +80901,6 @@ entities: - 10481 - 22540 - 7338 - - uid: 4041 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,2.5 - parent: 5350 - - type: DeviceList - devices: - - 5427 - - 18228 - - 14766 - - 1123 - - 27588 - - 5567 - - 14958 - - 5565 - - 5564 - - uid: 5443 - components: - - type: Transform - pos: -75.5,9.5 - parent: 5350 - - type: DeviceList - devices: - - 5810 - - 5809 - - 24367 - uid: 7496 components: - type: Transform @@ -79651,7 +80924,7 @@ entities: - type: DeviceList devices: - 6946 - - 7683 + - 28218 - 6806 - 7773 - 7791 @@ -79680,6 +80953,46 @@ entities: - 24562 - 10794 - 24564 + - uid: 9617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,1.5 + parent: 5350 + - type: DeviceList + devices: + - 14047 + - 17676 + - 18938 + - 12078 + - 23268 + - 24492 + - 24509 + - 15642 + - uid: 9668 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 5350 + - type: DeviceList + devices: + - 5668 + - 5669 + - 5671 + - 14210 + - 14209 + - 11860 + - 9749 + - 9750 + - 5670 + - 5672 + - 5673 + - 26531 + - 26533 + - 26532 + - 15438 + - 17677 + - 24552 - uid: 9758 components: - type: Transform @@ -79697,46 +81010,65 @@ entities: - 5565 - 5564 - 718 - - uid: 12898 + - uid: 11076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-37.5 + rot: -1.5707963267948966 rad + pos: 18.5,10.5 parent: 5350 - type: DeviceList devices: - - 23121 - - 11231 - - 146 - - 774 - - 19073 - - 14392 - - uid: 14093 + - 3263 + - 3264 + - 3265 + - 27659 + - 27660 + - 27661 + - 11217 + - 11218 + - 2125 + - 2127 + - 2126 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,7.5 + pos: 53.5,-4.5 parent: 5350 - type: DeviceList devices: - - 5809 - - 5810 - - 1303 - - 5574 - - 5573 - - 5572 - - 718 - - uid: 14129 + - 8895 + - 24492 + - 7675 + - 23281 + - 11150 + - 6728 + - 24512 + - uid: 11750 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-10.5 + pos: 55.5,23.5 parent: 5350 - type: DeviceList devices: - - 5808 - - 5807 - - 24376 + - 11440 + - 989 + - 15357 + - 1513 + - uid: 12898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-37.5 + parent: 5350 + - type: DeviceList + devices: + - 23121 + - 11231 + - 146 + - 774 + - 19073 + - 14392 - uid: 14191 components: - type: Transform @@ -79758,6 +81090,24 @@ entities: - 11231 - 23121 - 1214 + - uid: 14417 + components: + - type: Transform + pos: 24.5,5.5 + parent: 5350 + - type: DeviceList + devices: + - 27660 + - 27661 + - 24466 + - 23444 + - 23448 + - 27659 + - 24492 + - 4983 + - 6926 + - 13155 + - 13409 - uid: 15155 components: - type: Transform @@ -79773,6 +81123,19 @@ entities: - 10445 - 6728 - 24509 + - uid: 15212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 5350 + - type: DeviceList + devices: + - 27667 + - 27666 + - 24580 + - 27668 + - 27669 - uid: 15223 components: - type: Transform @@ -79785,40 +81148,59 @@ entities: - 11213 - 11217 - 11218 - - uid: 16586 + - uid: 16314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 + rot: 1.5707963267948966 rad + pos: -4.5,-46.5 parent: 5350 - type: DeviceList devices: - - 2106 - - 4085 - - 2107 - - 21254 - - 2109 - - 2108 - - 24323 - - 20608 - - 24322 - - 27669 - - 27668 - - 27666 - - 27667 - - 24338 - - 8379 - - 24213 - - 142 - - 27 - - uid: 16614 + - 8959 + - 15984 + - 15655 + - 18620 + - 19079 + - 9755 + - 16450 + - 16442 + - 24552 + - 14392 + - 784 + - uid: 16453 components: - type: Transform - pos: -12.5,0.5 + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 parent: 5350 - type: DeviceList devices: - - 24213 + - 2353 + - 3105 + - 2756 + - 2755 + - 3243 + - 2458 + - 3172 + - 3134 + - 2352 + - 24466 + - uid: 16606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-51.5 + parent: 5350 + - type: DeviceList + devices: + - 14771 + - 14772 + - 14770 + - 656 + - 8959 + - 15984 + - 15655 + - 14300 - uid: 17739 components: - type: Transform @@ -79855,22 +81237,6 @@ entities: - 14300 - 17677 - 15438 - - uid: 18936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,4.5 - parent: 5350 - - type: DeviceList - devices: - - 14047 - - 17676 - - 18938 - - 12078 - - 23268 - - 24492 - - 24509 - - 16662 - uid: 19075 components: - type: Transform @@ -80048,48 +81414,6 @@ entities: - 15305 - 3134 - 21254 - - uid: 24328 - components: - - type: Transform - pos: -11.5,-17.5 - parent: 5350 - - type: DeviceList - devices: - - 5668 - - 5669 - - 5671 - - 14210 - - 14209 - - 11860 - - 9749 - - 9750 - - 5670 - - 5672 - - 5673 - - 26531 - - 26533 - - 26532 - - 15438 - - 17677 - - 24552 - - uid: 24329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-21.5 - parent: 5350 - - type: DeviceList - devices: - - 5668 - - 5669 - - 5671 - - 14210 - - 14209 - - 9749 - - 9750 - - 5670 - - 5672 - - 5673 - uid: 24333 components: - type: Transform @@ -80172,25 +81496,6 @@ entities: - 24376 - 18335 - 18336 - - uid: 24450 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 5350 - - type: DeviceList - devices: - - 3263 - - 3264 - - 3265 - - 27659 - - 27660 - - 27661 - - 11217 - - 11218 - - 2125 - - 2127 - - 2126 - uid: 24459 components: - type: Transform @@ -80213,40 +81518,6 @@ entities: - 2108 - 2109 - 24580 - - uid: 24462 - components: - - type: Transform - pos: 31.5,5.5 - parent: 5350 - - type: DeviceList - devices: - - 27660 - - 27661 - - 24466 - - 23444 - - 23448 - - 27659 - - 24492 - - 4983 - - 6926 - - 13155 - - 13409 - - uid: 24467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-8.5 - parent: 5350 - - type: DeviceList - devices: - - 24466 - - 2402 - - 2403 - - 2404 - - 2405 - - 2406 - - 2407 - - 2408 - uid: 24491 components: - type: Transform @@ -80264,46 +81535,6 @@ entities: - 24509 - 23910 - 23268 - - uid: 24513 - components: - - type: Transform - pos: 56.5,-17.5 - parent: 5350 - - type: DeviceList - devices: - - 28102 - - 11150 - - 14937 - - 4447 - - 22363 - - 10445 - - 28103 - - 11752 - - 7675 - - 23281 - - uid: 24556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 5350 - - type: DeviceList - devices: - - 9755 - - 24552 - - 16450 - - 16442 - - uid: 24558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-56.5 - parent: 5350 - - type: DeviceList - devices: - - 14771 - - 14772 - - 14770 - uid: 24577 components: - type: Transform @@ -80345,18 +81576,16 @@ entities: - 18017 - 308 - 307 - - uid: 26481 + - uid: 25985 components: - type: Transform - pos: -13.5,-27.5 + pos: -72.5,9.5 parent: 5350 - type: DeviceList devices: - - 5538 - - 5662 - - 19516 - - 14161 - - 14694 + - 5810 + - 5809 + - 24367 - uid: 26994 components: - type: Transform @@ -80380,6 +81609,21 @@ entities: - 1642 - 15185 - 15190 + - uid: 28222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,5.5 + parent: 5350 + - type: DeviceList + devices: + - 5809 + - 5810 + - 4041 + - 5574 + - 5573 + - 5572 + - 718 - proto: FireAxeCabinetFilled entities: - uid: 1096 @@ -80466,6 +81710,14 @@ entities: - 3143 - proto: FirelockGlass entities: + - uid: 141 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 686 - uid: 225 components: - type: Transform @@ -80505,6 +81757,17 @@ entities: - 24352 - 21221 - 24349 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,31.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11750 + - 15447 + - 24506 - uid: 1123 components: - type: Transform @@ -80516,7 +81779,6 @@ entities: - 9758 - 177 - 10993 - - 4041 - 24359 - uid: 1161 components: @@ -80612,9 +81874,9 @@ entities: - type: DeviceNetwork deviceLists: - 16580 - - 16586 - 24337 - 231 + - 1303 - uid: 2107 components: - type: Transform @@ -80623,9 +81885,9 @@ entities: - type: DeviceNetwork deviceLists: - 16580 - - 16586 - 24337 - 231 + - 1303 - uid: 2108 components: - type: Transform @@ -80634,9 +81896,9 @@ entities: - type: DeviceNetwork deviceLists: - 16580 - - 16586 - 24459 - 24458 + - 1303 - uid: 2109 components: - type: Transform @@ -80645,9 +81907,9 @@ entities: - type: DeviceNetwork deviceLists: - 16580 - - 16586 - 24459 - 24458 + - 1303 - uid: 2125 components: - type: Transform @@ -80658,8 +81920,7 @@ entities: - 24342 - 24340 - 27662 - - 24450 - - 24449 + - 11076 - uid: 2126 components: - type: Transform @@ -80670,8 +81931,7 @@ entities: - 24342 - 24340 - 27662 - - 24450 - - 24449 + - 11076 - uid: 2127 components: - type: Transform @@ -80682,8 +81942,7 @@ entities: - 24342 - 24340 - 27662 - - 24450 - - 24449 + - 11076 - uid: 2352 components: - type: Transform @@ -80694,7 +81953,7 @@ entities: - 1369 - 6209 - 7496 - - 1164 + - 16453 - uid: 2353 components: - type: Transform @@ -80705,7 +81964,7 @@ entities: - 1369 - 6209 - 7496 - - 1164 + - 16453 - uid: 2360 components: - type: Transform @@ -80750,7 +82009,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80761,7 +82020,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80772,7 +82031,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80783,7 +82042,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80794,7 +82053,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80805,7 +82064,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80816,7 +82075,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24467 + - 2567 - 24468 - 22044 - 24464 @@ -80830,7 +82089,7 @@ entities: - 22044 - 1369 - 24464 - - 1164 + - 16453 - uid: 2665 components: - type: Transform @@ -80847,7 +82106,7 @@ entities: - 22044 - 1369 - 24464 - - 1164 + - 16453 - uid: 2756 components: - type: Transform @@ -80858,7 +82117,7 @@ entities: - 22044 - 1369 - 24464 - - 1164 + - 16453 - uid: 3105 components: - type: Transform @@ -80870,7 +82129,7 @@ entities: - 1369 - 6209 - 7496 - - 1164 + - 16453 - uid: 3172 components: - type: Transform @@ -80881,7 +82140,7 @@ entities: - 22044 - 1369 - 24464 - - 1164 + - 16453 - uid: 3243 components: - type: Transform @@ -80892,7 +82151,7 @@ entities: - 22044 - 1369 - 24464 - - 1164 + - 16453 - uid: 3263 components: - type: Transform @@ -80901,7 +82160,8 @@ entities: - type: DeviceNetwork deviceLists: - 24459 - - 24450 + - 24446 + - 11076 - uid: 3264 components: - type: Transform @@ -80910,7 +82170,8 @@ entities: - type: DeviceNetwork deviceLists: - 24459 - - 24450 + - 24446 + - 11076 - uid: 3265 components: - type: Transform @@ -80919,7 +82180,8 @@ entities: - type: DeviceNetwork deviceLists: - 24459 - - 24450 + - 24446 + - 11076 - uid: 3501 components: - type: Transform @@ -80952,7 +82214,7 @@ entities: - 21221 - 24349 - 1327 - - 4159 + - 25987 - uid: 3504 components: - type: Transform @@ -80963,7 +82225,7 @@ entities: - 21221 - 24349 - 1327 - - 4159 + - 25987 - uid: 3624 components: - type: Transform @@ -81000,6 +82262,7 @@ entities: - type: DeviceNetwork deviceLists: - 24324 + - 1303 - uid: 4447 components: - type: Transform @@ -81007,7 +82270,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 15155 - 24510 - 24515 @@ -81019,8 +82281,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - 24490 + - 14507 + - 14417 - uid: 5427 components: - type: Transform @@ -81030,7 +82293,6 @@ entities: - type: DeviceNetwork deviceLists: - 15127 - - 4041 - 24359 - 9758 - uid: 5538 @@ -81040,10 +82302,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 26481 - 24577 - 24578 - 24575 + - 1164 - uid: 5564 components: - type: Transform @@ -81053,7 +82315,6 @@ entities: deviceLists: - 24363 - 24361 - - 4041 - 24359 - 9758 - uid: 5565 @@ -81065,7 +82326,6 @@ entities: deviceLists: - 24363 - 24361 - - 4041 - 24359 - 9758 - uid: 5567 @@ -81077,7 +82337,6 @@ entities: deviceLists: - 24363 - 24361 - - 4041 - 24359 - 9758 - uid: 5572 @@ -81087,10 +82346,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 14093 - - 5438 - 24363 - 24361 + - 25984 + - 28222 - uid: 5573 components: - type: Transform @@ -81098,10 +82357,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 14093 - - 5438 - 24363 - 24361 + - 25984 + - 28222 - uid: 5574 components: - type: Transform @@ -81109,10 +82368,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 14093 - - 5438 - 24363 - 24361 + - 25984 + - 28222 - uid: 5575 components: - type: Transform @@ -81183,9 +82442,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 26481 - 24577 - 24578 + - 1164 - uid: 5665 components: - type: Transform @@ -81197,7 +82456,7 @@ entities: - 24340 - 27662 - 1327 - - 4159 + - 25987 - uid: 5666 components: - type: Transform @@ -81209,7 +82468,7 @@ entities: - 24340 - 27662 - 1327 - - 4159 + - 25987 - uid: 5667 components: - type: Transform @@ -81221,7 +82480,7 @@ entities: - 24340 - 27662 - 1327 - - 4159 + - 25987 - uid: 5668 components: - type: Transform @@ -81230,6 +82489,8 @@ entities: - type: DeviceNetwork deviceLists: - 3141 + - 9668 + - 16587 - uid: 5669 components: - type: Transform @@ -81238,6 +82499,8 @@ entities: - type: DeviceNetwork deviceLists: - 3141 + - 9668 + - 16587 - uid: 5670 components: - type: Transform @@ -81246,6 +82509,8 @@ entities: - type: DeviceNetwork deviceLists: - 1072 + - 9668 + - 16587 - uid: 5671 components: - type: Transform @@ -81254,6 +82519,8 @@ entities: - type: DeviceNetwork deviceLists: - 3141 + - 9668 + - 16587 - uid: 5672 components: - type: Transform @@ -81262,6 +82529,8 @@ entities: - type: DeviceNetwork deviceLists: - 1072 + - 9668 + - 16587 - uid: 5673 components: - type: Transform @@ -81270,6 +82539,8 @@ entities: - type: DeviceNetwork deviceLists: - 1072 + - 9668 + - 16587 - uid: 5807 components: - type: Transform @@ -81278,7 +82549,7 @@ entities: - type: DeviceNetwork deviceLists: - 1308 - - 14129 + - 1514 - 9894 - 13729 - uid: 5808 @@ -81289,7 +82560,7 @@ entities: - type: DeviceNetwork deviceLists: - 1308 - - 14129 + - 1514 - 9894 - 13729 - uid: 5809 @@ -81299,10 +82570,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 5443 + - 25985 - 5976 - - 14093 - - 5438 + - 25984 + - 28222 - uid: 5810 components: - type: Transform @@ -81310,10 +82581,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 5443 + - 25985 - 5976 - - 14093 - - 5438 + - 25984 + - 28222 - uid: 6493 components: - type: Transform @@ -81367,15 +82638,6 @@ entities: - 6300 - 22928 - 19444 - - uid: 6547 - components: - - type: Transform - pos: -10.5,52.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 17740 - - 22575 - uid: 6728 components: - type: Transform @@ -81386,6 +82648,7 @@ entities: - 15155 - 11151 - 24510 + - 11092 - uid: 6733 components: - type: Transform @@ -81429,8 +82692,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - 24490 + - 14507 + - 14417 - uid: 6946 components: - type: Transform @@ -81441,18 +82705,6 @@ entities: - 6384 - 7810 - 6735 - - uid: 7026 - components: - - type: Transform - pos: -10.5,51.5 - parent: 5350 - - type: Door - secondsUntilStateChange: -62151.48 - state: Closing - - type: DeviceNetwork - deviceLists: - - 17740 - - 22575 - uid: 7217 components: - type: Transform @@ -81473,7 +82725,7 @@ entities: deviceLists: - 557 - 11151 - - 24513 + - 11092 - 24515 - uid: 7719 components: @@ -81546,12 +82798,19 @@ entities: deviceLists: - 11151 - 24490 + - 11092 - uid: 8959 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-48.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16314 + - 15537 + - 10405 + - 16606 - uid: 9516 components: - type: Transform @@ -81567,6 +82826,20 @@ entities: - type: Transform pos: 31.5,-33.5 parent: 5350 + - type: Door + secondsUntilStateChange: -7236.8936 + state: Closing + - uid: 9615 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 231 + - 24337 + - 1914 + - 15867 - uid: 9749 components: - type: Transform @@ -81576,6 +82849,8 @@ entities: deviceLists: - 137 - 23116 + - 9668 + - 16587 - uid: 9750 components: - type: Transform @@ -81585,6 +82860,8 @@ entities: deviceLists: - 137 - 23116 + - 9668 + - 16587 - uid: 9755 components: - type: Transform @@ -81593,9 +82870,9 @@ entities: - type: DeviceNetwork deviceLists: - 15537 - - 24556 - 24554 - 18618 + - 16314 - uid: 9949 components: - type: Transform @@ -81625,7 +82902,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 15155 - 24510 - 24515 @@ -81665,7 +82941,7 @@ entities: deviceLists: - 15223 - 20624 - - 13496 + - 25995 - uid: 11214 components: - type: Transform @@ -81675,7 +82951,7 @@ entities: deviceLists: - 15223 - 20624 - - 13496 + - 25995 - uid: 11217 components: - type: Transform @@ -81684,9 +82960,9 @@ entities: - type: DeviceNetwork deviceLists: - 15223 - - 24450 - - 24449 - - 13496 + - 25995 + - 24446 + - 11076 - uid: 11218 components: - type: Transform @@ -81695,9 +82971,9 @@ entities: - type: DeviceNetwork deviceLists: - 15223 - - 24450 - - 24449 - - 13496 + - 25995 + - 24446 + - 11076 - uid: 11223 components: - type: Transform @@ -81716,6 +82992,15 @@ entities: deviceLists: - 24697 - 20624 + - uid: 11366 + components: + - type: Transform + pos: -10.5,52.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 22575 + - 17740 - uid: 11487 components: - type: Transform @@ -81743,7 +83028,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 15155 - 24510 - 24515 @@ -81755,8 +83039,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 18936 + - 9617 - 23907 + - 9586 - uid: 12368 components: - type: Transform @@ -81770,8 +83055,17 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 11665 - 11591 + - 23602 + - uid: 12450 + components: + - type: Transform + pos: -10.5,51.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 22575 + - 17740 - uid: 12646 components: - type: Transform @@ -81786,9 +83080,9 @@ entities: - type: DeviceNetwork deviceLists: - 24491 - - 24462 - - 24461 - 24490 + - 14507 + - 14417 - uid: 14047 components: - type: Transform @@ -81797,7 +83091,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 18936 + - 9617 - 23907 - 24491 - 24490 @@ -81809,10 +83103,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 26481 - 24575 - 19228 - 23115 + - 1164 - uid: 14177 components: - type: Transform @@ -81896,6 +83190,8 @@ entities: deviceLists: - 23115 - 19228 + - 9668 + - 16587 - uid: 14210 components: - type: Transform @@ -81905,6 +83201,8 @@ entities: deviceLists: - 23115 - 19228 + - 9668 + - 16587 - uid: 14297 components: - type: Transform @@ -81963,10 +83261,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 26481 - 24575 - 19228 - 23115 + - 1164 - uid: 14766 components: - type: Transform @@ -81978,7 +83276,6 @@ entities: - 9758 - 177 - 10993 - - 4041 - 24359 - uid: 14770 components: @@ -81988,10 +83285,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24558 - - 14774 + - 10405 - 9577 - 22178 + - 16606 - uid: 14771 components: - type: Transform @@ -82000,10 +83297,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24558 - - 14774 + - 10405 - 9577 - 22178 + - 16606 - uid: 14772 components: - type: Transform @@ -82012,10 +83309,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24558 - - 14774 + - 10405 - 9577 - 22178 + - 16606 - uid: 14776 components: - type: Transform @@ -82087,8 +83384,8 @@ entities: - type: DeviceNetwork deviceLists: - 1327 - - 4159 - 15191 + - 25987 - uid: 14926 components: - type: Transform @@ -82129,7 +83426,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 15155 - 24510 - 24515 @@ -82142,7 +83438,6 @@ entities: - type: DeviceNetwork deviceLists: - 24359 - - 4041 - 24363 - 24361 - 9758 @@ -82166,8 +83461,8 @@ entities: - type: DeviceNetwork deviceLists: - 1327 - - 4159 - 15191 + - 25987 - uid: 15179 components: - type: Transform @@ -82191,7 +83486,7 @@ entities: - 27596 - 24345 - 1327 - - 4159 + - 25987 - uid: 15190 components: - type: Transform @@ -82203,7 +83498,15 @@ entities: - 27596 - 24345 - 1327 - - 4159 + - 25987 + - uid: 15213 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 686 - uid: 15242 components: - type: Transform @@ -82221,6 +83524,16 @@ entities: - 24327 - 1072 - 7496 + - uid: 15357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 11750 + - 15447 - uid: 15370 components: - type: Transform @@ -82236,6 +83549,12 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,-48.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16314 + - 15537 + - 10405 + - 16606 - uid: 15886 components: - type: Transform @@ -82254,6 +83573,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-48.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16314 + - 15537 + - 10405 + - 16606 - uid: 16132 components: - type: Transform @@ -82296,9 +83621,9 @@ entities: - type: DeviceNetwork deviceLists: - 15537 - - 24556 - 24554 - 18618 + - 16314 - uid: 16450 components: - type: Transform @@ -82307,9 +83632,9 @@ entities: - type: DeviceNetwork deviceLists: - 15537 - - 24556 - 24554 - 18618 + - 16314 - uid: 17676 components: - type: Transform @@ -82318,7 +83643,7 @@ entities: - type: DeviceNetwork deviceLists: - 23907 - - 18936 + - 9617 - 24491 - 24490 - uid: 18225 @@ -82438,6 +83763,8 @@ entities: deviceLists: - 19091 - 19293 + - 16314 + - 15537 - uid: 18938 components: - type: Transform @@ -82446,8 +83773,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 18936 + - 9617 - 23907 + - 9586 - uid: 19073 components: - type: Transform @@ -82469,6 +83797,8 @@ entities: deviceLists: - 19091 - 19293 + - 16314 + - 15537 - uid: 19149 components: - type: Transform @@ -82482,10 +83812,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 26481 - 24577 - 24578 - 24575 + - 1164 - uid: 19729 components: - type: Transform @@ -82576,8 +83906,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 686 + - 1303 - uid: 20774 components: - type: Transform @@ -82632,7 +83963,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 15155 - 24510 - 24515 @@ -82669,6 +83999,7 @@ entities: deviceLists: - 20627 - 24443 + - 25995 - uid: 22544 components: - type: Transform @@ -82722,6 +84053,7 @@ entities: - type: DeviceNetwork deviceLists: - 24419 + - 25995 - uid: 22788 components: - type: Transform @@ -82740,7 +84072,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 18936 + - 9617 - 23907 - 24491 - 24490 @@ -82753,7 +84085,7 @@ entities: deviceLists: - 557 - 11151 - - 24513 + - 11092 - 24515 - uid: 23444 components: @@ -82762,9 +84094,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - 22044 - 24464 + - 14507 + - 14417 - uid: 23448 components: - type: Transform @@ -82772,9 +84105,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - 22044 - 24464 + - 14507 + - 14417 - uid: 23736 components: - type: Transform @@ -82807,9 +84141,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 - - 7263 + - 15867 + - 1914 + - 1303 - uid: 24740 components: - type: Transform @@ -82835,6 +84170,34 @@ entities: - type: Transform pos: -36.5,-25.5 parent: 5350 + - uid: 25957 + components: + - type: Transform + pos: 101.5,0.5 + parent: 5350 + - uid: 25962 + components: + - type: Transform + pos: 107.5,0.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 + - uid: 25964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 97.5,0.5 + parent: 5350 + - uid: 25965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,0.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 - uid: 26483 components: - type: Transform @@ -82844,8 +84207,8 @@ entities: deviceLists: - 24337 - 1327 - - 4159 - 231 + - 25987 - uid: 26484 components: - type: Transform @@ -82855,8 +84218,8 @@ entities: deviceLists: - 24337 - 1327 - - 4159 - 231 + - 25987 - uid: 26485 components: - type: Transform @@ -82866,8 +84229,8 @@ entities: deviceLists: - 24337 - 1327 - - 4159 - 231 + - 25987 - uid: 26531 components: - type: Transform @@ -82877,6 +84240,8 @@ entities: deviceLists: - 24554 - 18618 + - 9668 + - 16587 - uid: 26532 components: - type: Transform @@ -82886,6 +84251,8 @@ entities: deviceLists: - 24554 - 18618 + - 9668 + - 16587 - uid: 26533 components: - type: Transform @@ -82895,6 +84262,8 @@ entities: deviceLists: - 24554 - 18618 + - 9668 + - 16587 - uid: 27588 components: - type: Transform @@ -82906,7 +84275,6 @@ entities: - 9758 - 177 - 10993 - - 4041 - 24359 - uid: 27659 components: @@ -82915,10 +84283,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - - 24461 - - 24450 - - 24449 + - 24446 + - 11076 + - 14507 + - 14417 - uid: 27660 components: - type: Transform @@ -82926,10 +84294,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - - 24461 - - 24450 - - 24449 + - 24446 + - 11076 + - 14507 + - 14417 - uid: 27661 components: - type: Transform @@ -82937,10 +84305,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24462 - - 24461 - - 24450 - - 24449 + - 24446 + - 11076 + - 14507 + - 14417 - uid: 27666 components: - type: Transform @@ -82949,8 +84317,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 15212 + - 465 + - 1303 - uid: 27667 components: - type: Transform @@ -82959,8 +84329,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 15212 + - 465 + - 1303 - uid: 27668 components: - type: Transform @@ -82969,8 +84341,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 15212 + - 465 + - 1303 - uid: 27669 components: - type: Transform @@ -82979,8 +84353,10 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 16586 - 16580 + - 15212 + - 465 + - 1303 - uid: 28102 components: - type: Transform @@ -82989,7 +84365,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 26994 - 557 - 24515 @@ -83001,7 +84376,6 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24513 - 26994 - 557 - 24515 @@ -83057,16 +84431,6 @@ entities: parent: 5350 - proto: FlashlightLantern entities: - - uid: 1119 - components: - - type: Transform - pos: 0.7813983,-42.500317 - parent: 5350 - - uid: 1144 - components: - - type: Transform - pos: 0.5938983,-42.312817 - parent: 5350 - uid: 3779 components: - type: Transform @@ -83112,6 +84476,44 @@ entities: - type: Transform pos: 60.427505,1.5878983 parent: 5350 + - uid: 28314 + components: + - type: Transform + pos: 0.747241,-48.310314 + parent: 5350 + - type: HandheldLight + toggleActionEntity: 28315 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 28315 + - type: ActionsContainer + - uid: 28316 + components: + - type: Transform + pos: 0.48161602,-48.51344 + parent: 5350 + - type: HandheldLight + toggleActionEntity: 28317 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 28317 + - type: ActionsContainer - proto: FlashlightSeclite entities: - uid: 7385 @@ -83138,7 +84540,7 @@ entities: - uid: 9670 components: - type: Transform - pos: 9.5775385,23.53675 + pos: 9.450002,23.638304 parent: 5350 - type: HandheldLight toggleActionEntity: 9671 @@ -83381,10 +84783,11 @@ entities: parent: 5350 - proto: FloraTreeStump entities: - - uid: 12703 + - uid: 28236 components: - type: Transform - pos: 43.227524,37.81923 + rot: -1.5707963267948966 rad + pos: 43.244347,38.68111 parent: 5350 - proto: FluteInstrument entities: @@ -83478,13 +84881,6 @@ entities: - type: Transform pos: 35.559807,-15.350866 parent: 5350 -- proto: FoodDonutBungo - entities: - - uid: 16335 - components: - - type: Transform - pos: 6.5949593,-47.352787 - parent: 5350 - proto: FoodFrozenSnowconeClown entities: - uid: 16683 @@ -83684,7 +85080,7 @@ entities: pos: 14.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasFilterFlipped entities: - uid: 14354 @@ -83694,7 +85090,7 @@ entities: pos: -26.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19455 components: - type: MetaData @@ -83704,7 +85100,7 @@ entities: pos: 18.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 11615 @@ -83809,14 +85205,30 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' - - uid: 28118 + - uid: 23061 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-30.5 parent: 5350 +- proto: GasPassiveGate + entities: + - uid: 15115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-50.5 + parent: 5350 - type: AtmosPipeColor - color: '#947507FF' + color: '#0055CCFF' + - uid: 15592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-50.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 10829 @@ -83883,6 +85295,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 11867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 19206 components: - type: Transform @@ -84025,14 +85445,14 @@ entities: pos: 3.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 752 components: - type: Transform pos: -12.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 753 components: - type: Transform @@ -84040,7 +85460,7 @@ entities: pos: -13.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 756 components: - type: Transform @@ -84071,14 +85491,14 @@ entities: pos: -20.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1440 components: - type: Transform pos: 30.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2315 components: - type: Transform @@ -84086,7 +85506,7 @@ entities: pos: 40.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2649 components: - type: Transform @@ -84114,7 +85534,7 @@ entities: pos: 40.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2697 components: - type: Transform @@ -84122,7 +85542,7 @@ entities: pos: 41.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2995 components: - type: Transform @@ -84137,7 +85557,7 @@ entities: pos: 35.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3132 components: - type: Transform @@ -84160,7 +85580,7 @@ entities: pos: -26.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3785 components: - type: Transform @@ -84168,7 +85588,7 @@ entities: pos: -28.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4008 components: - type: Transform @@ -84176,7 +85596,7 @@ entities: pos: -45.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4090 components: - type: Transform @@ -84190,7 +85610,7 @@ entities: pos: -45.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4131 components: - type: Transform @@ -84229,7 +85649,7 @@ entities: pos: -17.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4270 components: - type: Transform @@ -84237,14 +85657,14 @@ entities: pos: -22.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4271 components: - type: Transform pos: -17.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4290 components: - type: Transform @@ -84252,7 +85672,7 @@ entities: pos: -33.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4470 components: - type: Transform @@ -84260,7 +85680,7 @@ entities: pos: 31.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4688 components: - type: Transform @@ -84268,7 +85688,7 @@ entities: pos: 11.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5339 components: - type: Transform @@ -84277,6 +85697,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-34.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5489 components: - type: Transform @@ -84284,7 +85712,7 @@ entities: pos: -55.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5490 components: - type: Transform @@ -84299,7 +85727,7 @@ entities: pos: -55.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5827 components: - type: Transform @@ -84307,7 +85735,7 @@ entities: pos: -60.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5828 components: - type: Transform @@ -84323,7 +85751,7 @@ entities: pos: -26.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7123 components: - type: Transform @@ -84339,7 +85767,7 @@ entities: pos: 2.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7290 components: - type: Transform @@ -84347,7 +85775,7 @@ entities: pos: -8.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7293 components: - type: Transform @@ -84371,7 +85799,7 @@ entities: pos: 29.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8750 components: - type: Transform @@ -84379,7 +85807,7 @@ entities: pos: 29.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8751 components: - type: Transform @@ -84394,7 +85822,7 @@ entities: pos: 35.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8753 components: - type: Transform @@ -84441,7 +85869,7 @@ entities: pos: 46.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9178 components: - type: Transform @@ -84449,7 +85877,7 @@ entities: pos: 46.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9179 components: - type: Transform @@ -84466,11 +85894,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9397 + - uid: 9320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-40.5 + pos: 2.5,-40.5 parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' @@ -84480,7 +85908,7 @@ entities: pos: -21.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9659 components: - type: Transform @@ -84495,7 +85923,7 @@ entities: pos: -6.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9726 components: - type: Transform @@ -84511,7 +85939,7 @@ entities: pos: 46.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9812 components: - type: Transform @@ -84519,14 +85947,14 @@ entities: pos: -16.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9823 components: - type: Transform pos: 15.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9862 components: - type: Transform @@ -84575,14 +86003,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-2.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11096 components: - type: Transform @@ -84606,6 +86026,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11493 components: - type: Transform @@ -84637,7 +86065,7 @@ entities: pos: -20.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11828 components: - type: Transform @@ -84652,7 +86080,7 @@ entities: pos: 54.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11861 components: - type: Transform @@ -84674,7 +86102,7 @@ entities: pos: -20.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12115 components: - type: Transform @@ -84682,7 +86110,7 @@ entities: pos: 7.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12337 components: - type: Transform @@ -84690,7 +86118,7 @@ entities: pos: 42.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12453 components: - type: Transform @@ -84714,7 +86142,7 @@ entities: pos: 33.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13001 components: - type: Transform @@ -84735,14 +86163,14 @@ entities: pos: 31.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14136 components: - type: Transform pos: -43.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14190 components: - type: Transform @@ -84781,7 +86209,7 @@ entities: pos: 8.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14617 components: - type: Transform @@ -84805,7 +86233,7 @@ entities: pos: 1.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14680 components: - type: Transform @@ -84813,7 +86241,15 @@ entities: pos: -40.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-46.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14947 components: - type: Transform @@ -84828,7 +86264,7 @@ entities: pos: -33.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15275 components: - type: Transform @@ -84889,7 +86325,7 @@ entities: pos: -35.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15583 components: - type: Transform @@ -84903,7 +86339,7 @@ entities: pos: 8.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15696 components: - type: Transform @@ -84911,7 +86347,7 @@ entities: pos: -28.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15724 components: - type: Transform @@ -84935,7 +86371,7 @@ entities: pos: -25.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16253 components: - type: Transform @@ -84943,7 +86379,7 @@ entities: pos: 1.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16374 components: - type: Transform @@ -84951,7 +86387,7 @@ entities: pos: 4.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16395 components: - type: Transform @@ -84959,7 +86395,7 @@ entities: pos: 8.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16420 components: - type: Transform @@ -84982,7 +86418,7 @@ entities: pos: -40.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16481 components: - type: Transform @@ -84990,7 +86426,7 @@ entities: pos: 18.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16535 components: - type: Transform @@ -84998,7 +86434,7 @@ entities: pos: -9.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16536 components: - type: Transform @@ -85006,7 +86442,7 @@ entities: pos: -21.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16745 components: - type: Transform @@ -85022,7 +86458,7 @@ entities: pos: -38.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17253 components: - type: Transform @@ -85050,7 +86486,7 @@ entities: pos: -13.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17493 components: - type: Transform @@ -85112,7 +86548,7 @@ entities: pos: -56.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18505 components: - type: Transform @@ -85120,7 +86556,7 @@ entities: pos: -58.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18509 components: - type: Transform @@ -85128,7 +86564,7 @@ entities: pos: -56.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18968 components: - type: Transform @@ -85193,14 +86629,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19166 components: - type: Transform @@ -85246,7 +86674,7 @@ entities: pos: 29.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20823 components: - type: Transform @@ -85267,7 +86695,7 @@ entities: pos: 28.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20936 components: - type: Transform @@ -85289,7 +86717,7 @@ entities: pos: 32.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21040 components: - type: Transform @@ -85297,7 +86725,7 @@ entities: pos: 29.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21041 components: - type: Transform @@ -85305,7 +86733,7 @@ entities: pos: 29.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21042 components: - type: Transform @@ -85313,7 +86741,7 @@ entities: pos: 32.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21106 components: - type: Transform @@ -85321,7 +86749,7 @@ entities: pos: 15.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21257 components: - type: Transform @@ -85337,7 +86765,7 @@ entities: pos: -11.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21523 components: - type: Transform @@ -85345,14 +86773,14 @@ entities: pos: -16.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21534 components: - type: Transform pos: -11.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21535 components: - type: Transform @@ -85360,7 +86788,7 @@ entities: pos: -20.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21566 components: - type: Transform @@ -85406,7 +86834,7 @@ entities: pos: -4.5,59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21806 components: - type: Transform @@ -85414,7 +86842,7 @@ entities: pos: 52.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22141 components: - type: Transform @@ -85444,7 +86872,15 @@ entities: pos: 2.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 22383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-32.5 + parent: 5350 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 22427 components: - type: Transform @@ -85452,7 +86888,7 @@ entities: pos: -8.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22441 components: - type: Transform @@ -85468,7 +86904,7 @@ entities: pos: 10.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22554 components: - type: Transform @@ -85491,14 +86927,14 @@ entities: pos: 2.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23120 components: - type: Transform pos: 12.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23387 components: - type: Transform @@ -85506,14 +86942,14 @@ entities: pos: 52.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23388 components: - type: Transform pos: 52.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23389 components: - type: Transform @@ -85521,22 +86957,15 @@ entities: pos: 51.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23504 - components: - - type: Transform - pos: 69.5,7.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23505 + color: '#990000FF' + - uid: 23509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,3.5 + rot: -1.5707963267948966 rad + pos: 75.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23525 components: - type: Transform @@ -85777,6 +87206,22 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 28343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-45.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 28345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeFourway entities: - uid: 260 @@ -85792,14 +87237,14 @@ entities: pos: -20.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 500 components: - type: Transform pos: -12.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2545 components: - type: Transform @@ -85827,7 +87272,7 @@ entities: pos: -1.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8131 components: - type: Transform @@ -85855,7 +87300,7 @@ entities: pos: 8.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11769 components: - type: Transform @@ -85876,21 +87321,21 @@ entities: pos: 15.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12120 components: - type: Transform pos: 46.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14251 components: - type: Transform pos: 16.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14727 components: - type: Transform @@ -85932,7 +87377,7 @@ entities: pos: -21.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16625 components: - type: Transform @@ -85953,7 +87398,7 @@ entities: pos: 16.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19747 components: - type: Transform @@ -85982,6 +87427,36 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensor + entities: + - uid: 19748 + components: + - type: MetaData + name: gas pipe sensor (Burn Chamber In) + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: Burn Chamber In + - type: NameModifier + baseName: gas pipe sensor + - uid: 20866 + components: + - type: MetaData + name: gas pipe sensor (Burn Chamber Out) + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-26.5 + parent: 5350 + - type: AtmosPipeColor + color: '#3AB334FF' + - type: Label + currentLabel: Burn Chamber Out + - type: NameModifier + baseName: gas pipe sensor - proto: GasPipeSensorDistribution entities: - uid: 14856 @@ -85991,6 +87466,15 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 11234 + components: + - type: Transform + pos: 66.5,-27.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' - proto: GasPipeSensorTEGCold entities: - uid: 16147 @@ -86013,7 +87497,7 @@ entities: pos: 52.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 69 @@ -86023,7 +87507,7 @@ entities: pos: 5.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 117 components: - type: Transform @@ -86031,7 +87515,7 @@ entities: pos: -22.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 248 components: - type: Transform @@ -86059,7 +87543,7 @@ entities: pos: 32.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 252 components: - type: Transform @@ -86200,7 +87684,7 @@ entities: pos: 21.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 279 components: - type: Transform @@ -86799,147 +88283,147 @@ entities: pos: -20.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 387 components: - type: Transform pos: -20.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 388 components: - type: Transform pos: -20.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 389 components: - type: Transform pos: -20.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 390 components: - type: Transform pos: -20.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 391 components: - type: Transform pos: -20.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 392 components: - type: Transform pos: -20.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 393 components: - type: Transform pos: -20.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 394 components: - type: Transform pos: -20.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 396 components: - type: Transform pos: -20.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 397 components: - type: Transform pos: -20.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 399 components: - type: Transform pos: -20.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 400 components: - type: Transform pos: -20.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 401 components: - type: Transform pos: -20.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 403 components: - type: Transform pos: -20.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 404 components: - type: Transform pos: -20.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 405 components: - type: Transform pos: -20.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 406 components: - type: Transform pos: -20.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 409 components: - type: Transform pos: -20.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 410 components: - type: Transform pos: -20.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 411 components: - type: Transform pos: -20.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform @@ -86947,7 +88431,7 @@ entities: pos: -19.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 413 components: - type: Transform @@ -86955,7 +88439,7 @@ entities: pos: -18.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 415 components: - type: Transform @@ -86963,7 +88447,7 @@ entities: pos: -16.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 419 components: - type: Transform @@ -86971,7 +88455,7 @@ entities: pos: -12.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 420 components: - type: Transform @@ -86979,7 +88463,7 @@ entities: pos: -11.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 421 components: - type: Transform @@ -86987,7 +88471,7 @@ entities: pos: -10.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 423 components: - type: Transform @@ -86995,7 +88479,7 @@ entities: pos: -8.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 424 components: - type: Transform @@ -87003,7 +88487,7 @@ entities: pos: -7.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 425 components: - type: Transform @@ -87011,7 +88495,7 @@ entities: pos: -6.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 426 components: - type: Transform @@ -87019,7 +88503,7 @@ entities: pos: -5.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform @@ -87027,7 +88511,7 @@ entities: pos: -4.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 428 components: - type: Transform @@ -87035,7 +88519,7 @@ entities: pos: -3.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 429 components: - type: Transform @@ -87043,7 +88527,7 @@ entities: pos: -2.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 432 components: - type: Transform @@ -87051,7 +88535,7 @@ entities: pos: 0.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 433 components: - type: Transform @@ -87059,7 +88543,7 @@ entities: pos: 1.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 434 components: - type: Transform @@ -87067,7 +88551,7 @@ entities: pos: 2.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 435 components: - type: Transform @@ -87075,7 +88559,7 @@ entities: pos: 3.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 436 components: - type: Transform @@ -87083,7 +88567,7 @@ entities: pos: 4.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 437 components: - type: Transform @@ -87091,7 +88575,7 @@ entities: pos: 5.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 438 components: - type: Transform @@ -87099,7 +88583,7 @@ entities: pos: 6.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 439 components: - type: Transform @@ -87107,7 +88591,7 @@ entities: pos: 7.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 440 components: - type: Transform @@ -87115,7 +88599,7 @@ entities: pos: 8.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 441 components: - type: Transform @@ -87123,7 +88607,7 @@ entities: pos: 9.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 442 components: - type: Transform @@ -87131,7 +88615,7 @@ entities: pos: 10.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 443 components: - type: Transform @@ -87139,7 +88623,7 @@ entities: pos: 11.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 445 components: - type: Transform @@ -87147,7 +88631,7 @@ entities: pos: 13.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 446 components: - type: Transform @@ -87155,7 +88639,7 @@ entities: pos: 14.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 448 components: - type: Transform @@ -87163,7 +88647,7 @@ entities: pos: 15.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 449 components: - type: Transform @@ -87171,7 +88655,7 @@ entities: pos: 15.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 450 components: - type: Transform @@ -87179,7 +88663,7 @@ entities: pos: 15.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 451 components: - type: Transform @@ -87187,7 +88671,7 @@ entities: pos: 15.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 453 components: - type: Transform @@ -87195,7 +88679,7 @@ entities: pos: 15.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 454 components: - type: Transform @@ -87203,7 +88687,7 @@ entities: pos: 15.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 455 components: - type: Transform @@ -87211,7 +88695,7 @@ entities: pos: 15.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 456 components: - type: Transform @@ -87219,7 +88703,7 @@ entities: pos: 15.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 457 components: - type: Transform @@ -87227,7 +88711,7 @@ entities: pos: 15.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 459 components: - type: Transform @@ -87235,7 +88719,7 @@ entities: pos: 15.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 461 components: - type: Transform @@ -87243,7 +88727,7 @@ entities: pos: 5.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 463 components: - type: Transform @@ -87259,7 +88743,7 @@ entities: pos: 15.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 466 components: - type: Transform @@ -87267,7 +88751,7 @@ entities: pos: 24.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 467 components: - type: Transform @@ -87275,7 +88759,7 @@ entities: pos: 15.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 468 components: - type: Transform @@ -87283,7 +88767,7 @@ entities: pos: 15.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 469 components: - type: Transform @@ -87291,7 +88775,7 @@ entities: pos: 15.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 470 components: - type: Transform @@ -87299,7 +88783,7 @@ entities: pos: 15.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 471 components: - type: Transform @@ -87307,7 +88791,7 @@ entities: pos: 15.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 472 components: - type: Transform @@ -87315,7 +88799,7 @@ entities: pos: 15.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 473 components: - type: Transform @@ -87323,7 +88807,7 @@ entities: pos: 14.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 474 components: - type: Transform @@ -87331,7 +88815,7 @@ entities: pos: 13.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 476 components: - type: Transform @@ -87339,7 +88823,7 @@ entities: pos: 11.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 477 components: - type: Transform @@ -87347,7 +88831,7 @@ entities: pos: 10.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 478 components: - type: Transform @@ -87355,7 +88839,7 @@ entities: pos: 9.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 479 components: - type: Transform @@ -87363,7 +88847,7 @@ entities: pos: 8.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 480 components: - type: Transform @@ -87371,7 +88855,7 @@ entities: pos: 7.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 481 components: - type: Transform @@ -87379,7 +88863,7 @@ entities: pos: 6.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 482 components: - type: Transform @@ -87387,7 +88871,7 @@ entities: pos: 5.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 484 components: - type: Transform @@ -87395,7 +88879,7 @@ entities: pos: 3.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 485 components: - type: Transform @@ -87403,7 +88887,7 @@ entities: pos: 2.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 486 components: - type: Transform @@ -87411,7 +88895,7 @@ entities: pos: 1.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 487 components: - type: Transform @@ -87419,7 +88903,7 @@ entities: pos: 0.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 488 components: - type: Transform @@ -87427,7 +88911,7 @@ entities: pos: -0.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 490 components: - type: Transform @@ -87435,14 +88919,14 @@ entities: pos: -2.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 492 components: - type: Transform pos: 32.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 494 components: - type: Transform @@ -87450,7 +88934,7 @@ entities: pos: -6.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 495 components: - type: Transform @@ -87458,7 +88942,7 @@ entities: pos: -7.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 498 components: - type: Transform @@ -87466,7 +88950,7 @@ entities: pos: -10.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 501 components: - type: Transform @@ -87474,7 +88958,7 @@ entities: pos: -13.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 502 components: - type: Transform @@ -87482,14 +88966,14 @@ entities: pos: -14.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 503 components: - type: Transform pos: 32.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 505 components: - type: Transform @@ -87497,7 +88981,7 @@ entities: pos: -17.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 506 components: - type: Transform @@ -87505,14 +88989,14 @@ entities: pos: -18.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 509 components: - type: Transform pos: 32.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 511 components: - type: Transform @@ -87520,7 +89004,7 @@ entities: pos: 25.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 516 components: - type: Transform @@ -87560,7 +89044,7 @@ entities: pos: -5.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 524 components: - type: Transform @@ -87688,7 +89172,7 @@ entities: pos: 14.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 556 components: - type: Transform @@ -87696,7 +89180,7 @@ entities: pos: 13.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 558 components: - type: Transform @@ -87704,7 +89188,7 @@ entities: pos: 11.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 560 components: - type: Transform @@ -87712,7 +89196,7 @@ entities: pos: 9.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 561 components: - type: Transform @@ -87720,7 +89204,7 @@ entities: pos: 8.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 563 components: - type: Transform @@ -87728,7 +89212,7 @@ entities: pos: 6.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 565 components: - type: Transform @@ -87736,7 +89220,7 @@ entities: pos: 4.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 579 components: - type: Transform @@ -87744,7 +89228,7 @@ entities: pos: -9.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 580 components: - type: Transform @@ -87752,7 +89236,7 @@ entities: pos: -10.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 581 components: - type: Transform @@ -87760,7 +89244,7 @@ entities: pos: -11.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 583 components: - type: Transform @@ -87768,7 +89252,7 @@ entities: pos: -13.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 584 components: - type: Transform @@ -87776,7 +89260,7 @@ entities: pos: -14.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 585 components: - type: Transform @@ -87784,7 +89268,7 @@ entities: pos: -15.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 586 components: - type: Transform @@ -87792,7 +89276,7 @@ entities: pos: -16.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 587 components: - type: Transform @@ -87800,7 +89284,7 @@ entities: pos: -17.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 588 components: - type: Transform @@ -87808,7 +89292,7 @@ entities: pos: -18.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 589 components: - type: Transform @@ -87816,7 +89300,7 @@ entities: pos: -19.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 590 components: - type: Transform @@ -88000,7 +89484,7 @@ entities: pos: -8.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 622 components: - type: Transform @@ -88008,7 +89492,7 @@ entities: pos: -8.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 623 components: - type: Transform @@ -88016,7 +89500,7 @@ entities: pos: -8.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 624 components: - type: Transform @@ -88024,7 +89508,7 @@ entities: pos: -8.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 625 components: - type: Transform @@ -88032,7 +89516,7 @@ entities: pos: -8.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 626 components: - type: Transform @@ -88040,7 +89524,7 @@ entities: pos: -8.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 627 components: - type: Transform @@ -88048,7 +89532,7 @@ entities: pos: -8.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 629 components: - type: Transform @@ -88056,7 +89540,7 @@ entities: pos: 3.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 630 components: - type: Transform @@ -88064,7 +89548,7 @@ entities: pos: 3.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 633 components: - type: Transform @@ -88072,7 +89556,7 @@ entities: pos: 3.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 634 components: - type: Transform @@ -88080,7 +89564,7 @@ entities: pos: 3.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 635 components: - type: Transform @@ -88088,7 +89572,7 @@ entities: pos: 3.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 636 components: - type: Transform @@ -88096,7 +89580,7 @@ entities: pos: 3.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 637 components: - type: Transform @@ -88104,7 +89588,7 @@ entities: pos: 2.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 645 components: - type: Transform @@ -88112,7 +89596,7 @@ entities: pos: -5.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 646 components: - type: Transform @@ -88120,7 +89604,7 @@ entities: pos: -6.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 647 components: - type: Transform @@ -88128,7 +89612,7 @@ entities: pos: -7.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 685 components: - type: Transform @@ -88144,7 +89628,7 @@ entities: pos: 4.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 735 components: - type: Transform @@ -88240,7 +89724,7 @@ entities: pos: -12.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 749 components: - type: Transform @@ -88248,7 +89732,7 @@ entities: pos: -12.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 750 components: - type: Transform @@ -88256,7 +89740,7 @@ entities: pos: -12.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 751 components: - type: Transform @@ -88264,7 +89748,7 @@ entities: pos: -12.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 754 components: - type: Transform @@ -88272,7 +89756,7 @@ entities: pos: -13.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 757 components: - type: Transform @@ -88376,49 +89860,49 @@ entities: pos: 11.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 796 components: - type: Transform pos: 11.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 797 components: - type: Transform pos: 11.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 798 components: - type: Transform pos: 11.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 799 components: - type: Transform pos: 11.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 800 components: - type: Transform pos: 11.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 801 components: - type: Transform pos: 11.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 807 components: - type: Transform @@ -88483,6 +89967,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 819 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 5350 - uid: 821 components: - type: Transform @@ -88498,7 +89987,7 @@ entities: pos: 2.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 829 components: - type: Transform @@ -88562,7 +90051,7 @@ entities: pos: -19.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 839 components: - type: Transform @@ -88570,7 +90059,7 @@ entities: pos: -18.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 840 components: - type: Transform @@ -88578,7 +90067,7 @@ entities: pos: -17.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 863 components: - type: Transform @@ -88593,7 +90082,7 @@ entities: pos: -9.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1091 components: - type: Transform @@ -88601,7 +90090,7 @@ entities: pos: -3.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1187 components: - type: Transform @@ -88609,7 +90098,7 @@ entities: pos: 11.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1199 components: - type: Transform @@ -88617,14 +90106,14 @@ entities: pos: 5.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1206 components: - type: Transform pos: 16.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1211 components: - type: Transform @@ -88656,7 +90145,7 @@ entities: pos: -23.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1288 components: - type: Transform @@ -88664,7 +90153,7 @@ entities: pos: -25.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1290 components: - type: Transform @@ -88672,7 +90161,7 @@ entities: pos: -27.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1305 components: - type: Transform @@ -88704,6 +90193,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-29.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1518 components: - type: Transform @@ -88711,7 +90208,7 @@ entities: pos: 39.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1538 components: - type: Transform @@ -88806,7 +90303,7 @@ entities: pos: -5.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1600 components: - type: Transform @@ -88814,7 +90311,7 @@ entities: pos: -5.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1601 components: - type: Transform @@ -88822,7 +90319,7 @@ entities: pos: -5.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1603 components: - type: Transform @@ -88830,7 +90327,7 @@ entities: pos: -5.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1604 components: - type: Transform @@ -88838,7 +90335,7 @@ entities: pos: -5.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1605 components: - type: Transform @@ -88846,7 +90343,7 @@ entities: pos: -5.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1609 components: - type: Transform @@ -88870,7 +90367,7 @@ entities: pos: -12.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1676 components: - type: Transform @@ -88878,7 +90375,7 @@ entities: pos: -12.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1677 components: - type: Transform @@ -88886,7 +90383,7 @@ entities: pos: -12.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1679 components: - type: Transform @@ -88894,7 +90391,7 @@ entities: pos: -12.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1680 components: - type: Transform @@ -88902,7 +90399,7 @@ entities: pos: -12.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1681 components: - type: Transform @@ -88910,7 +90407,7 @@ entities: pos: -12.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1682 components: - type: Transform @@ -88918,7 +90415,7 @@ entities: pos: -12.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1683 components: - type: Transform @@ -88926,7 +90423,7 @@ entities: pos: -12.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1741 components: - type: Transform @@ -88934,7 +90431,7 @@ entities: pos: -3.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1744 components: - type: Transform @@ -88950,21 +90447,21 @@ entities: pos: -20.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2059 components: - type: Transform pos: -28.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2146 components: - type: Transform pos: 5.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2296 components: - type: Transform @@ -88972,7 +90469,7 @@ entities: pos: 40.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2299 components: - type: Transform @@ -88980,7 +90477,7 @@ entities: pos: 40.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2361 components: - type: Transform @@ -88988,7 +90485,7 @@ entities: pos: 40.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2362 components: - type: Transform @@ -88996,7 +90493,7 @@ entities: pos: 40.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2363 components: - type: Transform @@ -89004,7 +90501,7 @@ entities: pos: 40.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2372 components: - type: Transform @@ -89012,7 +90509,7 @@ entities: pos: 40.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2489 components: - type: Transform @@ -89060,7 +90557,7 @@ entities: pos: 17.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2501 components: - type: Transform @@ -89068,7 +90565,7 @@ entities: pos: 18.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2502 components: - type: Transform @@ -89076,7 +90573,7 @@ entities: pos: 19.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2504 components: - type: Transform @@ -89092,7 +90589,7 @@ entities: pos: 23.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2507 components: - type: Transform @@ -89100,7 +90597,7 @@ entities: pos: 24.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2510 components: - type: Transform @@ -89108,7 +90605,7 @@ entities: pos: 27.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2513 components: - type: Transform @@ -89116,7 +90613,7 @@ entities: pos: 16.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2514 components: - type: Transform @@ -89124,7 +90621,7 @@ entities: pos: 17.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2515 components: - type: Transform @@ -89132,7 +90629,7 @@ entities: pos: 18.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2516 components: - type: Transform @@ -89140,7 +90637,7 @@ entities: pos: 19.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2518 components: - type: Transform @@ -89148,7 +90645,7 @@ entities: pos: 21.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2519 components: - type: Transform @@ -89156,7 +90653,7 @@ entities: pos: 22.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2520 components: - type: Transform @@ -89164,7 +90661,7 @@ entities: pos: 23.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2521 components: - type: Transform @@ -89172,35 +90669,35 @@ entities: pos: 24.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2522 components: - type: Transform pos: 25.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2523 components: - type: Transform pos: 25.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2524 components: - type: Transform pos: 25.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2526 components: - type: Transform pos: 25.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2527 components: - type: Transform @@ -89386,77 +90883,77 @@ entities: pos: 28.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2594 components: - type: Transform pos: 28.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2595 components: - type: Transform pos: 28.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2597 components: - type: Transform pos: 28.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2598 components: - type: Transform pos: 28.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2599 components: - type: Transform pos: 28.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2600 components: - type: Transform pos: 28.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2601 components: - type: Transform pos: 28.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2602 components: - type: Transform pos: 28.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2603 components: - type: Transform pos: 28.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2604 components: - type: Transform pos: 28.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2606 components: - type: Transform @@ -89464,7 +90961,7 @@ entities: pos: 26.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2607 components: - type: Transform @@ -89472,7 +90969,7 @@ entities: pos: 27.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2610 components: - type: Transform @@ -89527,7 +91024,7 @@ entities: pos: 20.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2633 components: - type: Transform @@ -89535,7 +91032,7 @@ entities: pos: 20.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2634 components: - type: Transform @@ -89543,7 +91040,7 @@ entities: pos: 20.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2635 components: - type: Transform @@ -89551,7 +91048,7 @@ entities: pos: 20.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2636 components: - type: Transform @@ -89559,7 +91056,7 @@ entities: pos: 20.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2637 components: - type: Transform @@ -89567,7 +91064,7 @@ entities: pos: 20.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2638 components: - type: Transform @@ -89575,7 +91072,7 @@ entities: pos: 20.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2643 components: - type: Transform @@ -89751,7 +91248,7 @@ entities: pos: -4.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2682 components: - type: Transform @@ -89767,28 +91264,28 @@ entities: pos: 36.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2689 components: - type: Transform pos: 40.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2690 components: - type: Transform pos: 40.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2691 components: - type: Transform pos: 40.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2692 components: - type: Transform @@ -89796,7 +91293,7 @@ entities: pos: 39.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2693 components: - type: Transform @@ -89804,7 +91301,7 @@ entities: pos: 38.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2694 components: - type: Transform @@ -89812,7 +91309,7 @@ entities: pos: 40.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2695 components: - type: Transform @@ -89820,7 +91317,7 @@ entities: pos: 40.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2701 components: - type: Transform @@ -89828,7 +91325,7 @@ entities: pos: 30.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2702 components: - type: Transform @@ -89836,7 +91333,7 @@ entities: pos: 31.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2703 components: - type: Transform @@ -89844,7 +91341,7 @@ entities: pos: 32.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2705 components: - type: Transform @@ -89852,7 +91349,7 @@ entities: pos: 34.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2706 components: - type: Transform @@ -89860,7 +91357,7 @@ entities: pos: 35.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2761 components: - type: Transform @@ -89868,7 +91365,7 @@ entities: pos: -32.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2771 components: - type: Transform @@ -89892,7 +91389,7 @@ entities: pos: 33.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3003 components: - type: Transform @@ -89900,7 +91397,7 @@ entities: pos: 32.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3008 components: - type: Transform @@ -89908,7 +91405,15 @@ entities: pos: 38.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 3041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-31.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3060 components: - type: Transform @@ -89916,7 +91421,7 @@ entities: pos: 34.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3062 components: - type: Transform @@ -89924,7 +91429,15 @@ entities: pos: 35.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 3137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-32.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3142 components: - type: Transform @@ -89971,7 +91484,7 @@ entities: pos: 9.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3400 components: - type: Transform @@ -89979,14 +91492,14 @@ entities: pos: 7.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3411 components: - type: Transform pos: -28.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3412 components: - type: Transform @@ -90008,6 +91521,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 3423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-33.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3430 components: - type: Transform @@ -90057,7 +91578,7 @@ entities: pos: -29.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3463 components: - type: Transform @@ -90080,7 +91601,7 @@ entities: pos: -28.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3528 components: - type: Transform @@ -90088,14 +91609,14 @@ entities: pos: -33.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3543 components: - type: Transform pos: -28.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3637 components: - type: Transform @@ -90111,7 +91632,7 @@ entities: pos: -23.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3644 components: - type: Transform @@ -90119,28 +91640,28 @@ entities: pos: -31.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3656 components: - type: Transform pos: -28.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3709 components: - type: Transform pos: -17.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3739 components: - type: Transform pos: -33.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3742 components: - type: Transform @@ -90171,7 +91692,7 @@ entities: pos: 1.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3818 components: - type: Transform @@ -90186,7 +91707,7 @@ entities: pos: -38.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3820 components: - type: Transform @@ -90202,7 +91723,7 @@ entities: pos: -33.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3825 components: - type: Transform @@ -90210,7 +91731,7 @@ entities: pos: -33.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3828 components: - type: Transform @@ -90224,7 +91745,7 @@ entities: pos: -45.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3840 components: - type: Transform @@ -90263,7 +91784,7 @@ entities: pos: -47.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3847 components: - type: Transform @@ -90271,7 +91792,7 @@ entities: pos: -49.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3848 components: - type: Transform @@ -90279,7 +91800,7 @@ entities: pos: -51.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3852 components: - type: Transform @@ -90327,7 +91848,7 @@ entities: pos: -46.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3858 components: - type: Transform @@ -90335,7 +91856,7 @@ entities: pos: -48.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3859 components: - type: Transform @@ -90343,7 +91864,7 @@ entities: pos: -50.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3867 components: - type: Transform @@ -90351,7 +91872,7 @@ entities: pos: -52.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3879 components: - type: Transform @@ -90359,7 +91880,7 @@ entities: pos: -28.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3880 components: - type: Transform @@ -90375,7 +91896,7 @@ entities: pos: -30.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3914 components: - type: Transform @@ -90383,7 +91904,7 @@ entities: pos: -33.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3946 components: - type: Transform @@ -90391,7 +91912,7 @@ entities: pos: -23.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3952 components: - type: Transform @@ -90567,7 +92088,7 @@ entities: pos: -22.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3984 components: - type: Transform @@ -90575,7 +92096,7 @@ entities: pos: -24.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3985 components: - type: Transform @@ -90583,7 +92104,7 @@ entities: pos: -25.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3986 components: - type: Transform @@ -90591,7 +92112,7 @@ entities: pos: -26.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3988 components: - type: Transform @@ -90599,7 +92120,7 @@ entities: pos: -28.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3989 components: - type: Transform @@ -90607,7 +92128,7 @@ entities: pos: -29.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3990 components: - type: Transform @@ -90615,7 +92136,7 @@ entities: pos: -30.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3992 components: - type: Transform @@ -90623,7 +92144,7 @@ entities: pos: -32.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3993 components: - type: Transform @@ -90631,7 +92152,7 @@ entities: pos: -33.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3994 components: - type: Transform @@ -90639,7 +92160,7 @@ entities: pos: -34.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3995 components: - type: Transform @@ -90647,7 +92168,7 @@ entities: pos: -35.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3996 components: - type: Transform @@ -90655,7 +92176,7 @@ entities: pos: -36.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3997 components: - type: Transform @@ -90663,7 +92184,7 @@ entities: pos: -37.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3998 components: - type: Transform @@ -90671,7 +92192,7 @@ entities: pos: -38.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4000 components: - type: Transform @@ -90679,7 +92200,7 @@ entities: pos: -40.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4001 components: - type: Transform @@ -90687,7 +92208,7 @@ entities: pos: -41.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4002 components: - type: Transform @@ -90695,7 +92216,7 @@ entities: pos: -42.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4003 components: - type: Transform @@ -90703,7 +92224,7 @@ entities: pos: -43.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4010 components: - type: Transform @@ -90743,7 +92264,7 @@ entities: pos: -45.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4015 components: - type: Transform @@ -90751,7 +92272,7 @@ entities: pos: -45.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4016 components: - type: Transform @@ -90759,14 +92280,14 @@ entities: pos: -45.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4018 components: - type: Transform pos: -33.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4029 components: - type: Transform @@ -90838,7 +92359,7 @@ entities: pos: -46.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4042 components: - type: Transform @@ -90846,7 +92367,7 @@ entities: pos: -48.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4043 components: - type: Transform @@ -90854,7 +92375,7 @@ entities: pos: -49.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4045 components: - type: Transform @@ -90862,7 +92383,7 @@ entities: pos: -51.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4046 components: - type: Transform @@ -90870,7 +92391,7 @@ entities: pos: -52.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4047 components: - type: Transform @@ -90878,14 +92399,14 @@ entities: pos: -53.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4053 components: - type: Transform pos: -28.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4056 components: - type: Transform @@ -90893,7 +92414,7 @@ entities: pos: -54.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4062 components: - type: Transform @@ -90908,7 +92429,7 @@ entities: pos: -39.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4077 components: - type: Transform @@ -90916,7 +92437,7 @@ entities: pos: -53.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4095 components: - type: Transform @@ -90930,7 +92451,7 @@ entities: pos: 2.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4120 components: - type: Transform @@ -90938,7 +92459,7 @@ entities: pos: -44.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4121 components: - type: Transform @@ -91355,7 +92876,7 @@ entities: pos: -1.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4231 components: - type: Transform @@ -91363,7 +92884,7 @@ entities: pos: -1.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4232 components: - type: Transform @@ -91371,7 +92892,7 @@ entities: pos: -1.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4233 components: - type: Transform @@ -91379,7 +92900,7 @@ entities: pos: -1.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4234 components: - type: Transform @@ -91387,7 +92908,7 @@ entities: pos: -1.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4237 components: - type: Transform @@ -91395,7 +92916,7 @@ entities: pos: -1.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4238 components: - type: Transform @@ -91403,7 +92924,7 @@ entities: pos: -1.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4239 components: - type: Transform @@ -91411,7 +92932,7 @@ entities: pos: -1.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4240 components: - type: Transform @@ -91419,7 +92940,7 @@ entities: pos: -1.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4241 components: - type: Transform @@ -91427,7 +92948,7 @@ entities: pos: -1.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4242 components: - type: Transform @@ -91435,7 +92956,7 @@ entities: pos: -1.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4243 components: - type: Transform @@ -91443,7 +92964,7 @@ entities: pos: -1.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4245 components: - type: Transform @@ -91451,7 +92972,7 @@ entities: pos: -2.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4247 components: - type: Transform @@ -91459,7 +92980,7 @@ entities: pos: -4.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4248 components: - type: Transform @@ -91467,7 +92988,7 @@ entities: pos: -5.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4249 components: - type: Transform @@ -91475,7 +92996,7 @@ entities: pos: -6.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4250 components: - type: Transform @@ -91483,7 +93004,7 @@ entities: pos: -7.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4252 components: - type: Transform @@ -91491,7 +93012,7 @@ entities: pos: -9.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4253 components: - type: Transform @@ -91499,7 +93020,7 @@ entities: pos: -10.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4254 components: - type: Transform @@ -91507,7 +93028,7 @@ entities: pos: -11.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4255 components: - type: Transform @@ -91515,7 +93036,7 @@ entities: pos: -12.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4256 components: - type: Transform @@ -91523,7 +93044,7 @@ entities: pos: -13.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4257 components: - type: Transform @@ -91531,7 +93052,7 @@ entities: pos: -14.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4259 components: - type: Transform @@ -91539,14 +93060,14 @@ entities: pos: -16.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4263 components: - type: Transform pos: -17.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4265 components: - type: Transform @@ -91554,7 +93075,7 @@ entities: pos: -19.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4266 components: - type: Transform @@ -91562,7 +93083,7 @@ entities: pos: -20.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4268 components: - type: Transform @@ -91570,7 +93091,7 @@ entities: pos: -22.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4269 components: - type: Transform @@ -91578,7 +93099,7 @@ entities: pos: -22.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4272 components: - type: Transform @@ -91586,7 +93107,7 @@ entities: pos: -21.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4274 components: - type: Transform @@ -91594,7 +93115,7 @@ entities: pos: -19.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4275 components: - type: Transform @@ -91602,7 +93123,7 @@ entities: pos: -18.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4276 components: - type: Transform @@ -91610,7 +93131,7 @@ entities: pos: -17.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4277 components: - type: Transform @@ -91618,7 +93139,7 @@ entities: pos: -17.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4278 components: - type: Transform @@ -91626,7 +93147,7 @@ entities: pos: -17.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4279 components: - type: Transform @@ -91634,7 +93155,7 @@ entities: pos: -17.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4280 components: - type: Transform @@ -91642,7 +93163,7 @@ entities: pos: -17.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4281 components: - type: Transform @@ -91650,7 +93171,7 @@ entities: pos: -17.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4282 components: - type: Transform @@ -91658,7 +93179,7 @@ entities: pos: -17.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4283 components: - type: Transform @@ -91666,7 +93187,7 @@ entities: pos: -17.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4286 components: - type: Transform @@ -91674,7 +93195,7 @@ entities: pos: -27.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4287 components: - type: Transform @@ -91682,7 +93203,7 @@ entities: pos: -27.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4288 components: - type: Transform @@ -91690,7 +93211,7 @@ entities: pos: -27.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4292 components: - type: Transform @@ -91698,7 +93219,7 @@ entities: pos: -29.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4293 components: - type: Transform @@ -91706,7 +93227,7 @@ entities: pos: -30.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4294 components: - type: Transform @@ -91714,56 +93235,56 @@ entities: pos: -31.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4297 components: - type: Transform pos: -33.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4298 components: - type: Transform pos: -33.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4299 components: - type: Transform pos: -33.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4300 components: - type: Transform pos: -33.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4301 components: - type: Transform pos: -33.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4306 components: - type: Transform pos: -33.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4307 components: - type: Transform pos: -33.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4313 components: - type: Transform @@ -91771,14 +93292,14 @@ entities: pos: 11.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4314 components: - type: Transform pos: -28.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4331 components: - type: Transform @@ -91786,7 +93307,7 @@ entities: pos: -34.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4332 components: - type: Transform @@ -91794,7 +93315,7 @@ entities: pos: -35.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4333 components: - type: Transform @@ -91802,7 +93323,7 @@ entities: pos: -36.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4343 components: - type: Transform @@ -91831,7 +93352,7 @@ entities: pos: -28.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4362 components: - type: Transform @@ -91879,7 +93400,7 @@ entities: pos: 8.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4428 components: - type: Transform @@ -91983,14 +93504,14 @@ entities: pos: 16.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4517 components: - type: Transform pos: -40.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4526 components: - type: Transform @@ -92006,7 +93527,7 @@ entities: pos: -27.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4536 components: - type: Transform @@ -92014,7 +93535,7 @@ entities: pos: -24.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4545 components: - type: Transform @@ -92029,7 +93550,7 @@ entities: pos: 28.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4631 components: - type: Transform @@ -92082,7 +93603,7 @@ entities: pos: -24.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4734 components: - type: Transform @@ -92090,7 +93611,7 @@ entities: pos: 27.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4736 components: - type: Transform @@ -92112,7 +93633,7 @@ entities: pos: -28.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4797 components: - type: Transform @@ -92120,7 +93641,7 @@ entities: pos: 11.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4871 components: - type: Transform @@ -92128,7 +93649,7 @@ entities: pos: 26.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4962 components: - type: Transform @@ -92224,7 +93745,7 @@ entities: pos: 43.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4978 components: - type: Transform @@ -92232,7 +93753,7 @@ entities: pos: 42.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4979 components: - type: Transform @@ -92240,7 +93761,7 @@ entities: pos: 41.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4980 components: - type: Transform @@ -92248,7 +93769,7 @@ entities: pos: 40.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4981 components: - type: Transform @@ -92256,7 +93777,7 @@ entities: pos: 39.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4982 components: - type: Transform @@ -92264,7 +93785,7 @@ entities: pos: 38.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4984 components: - type: Transform @@ -92272,7 +93793,7 @@ entities: pos: 36.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4985 components: - type: Transform @@ -92280,7 +93801,7 @@ entities: pos: 35.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4986 components: - type: Transform @@ -92288,7 +93809,7 @@ entities: pos: 34.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4987 components: - type: Transform @@ -92296,7 +93817,7 @@ entities: pos: 33.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4988 components: - type: Transform @@ -92304,7 +93825,7 @@ entities: pos: 32.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4989 components: - type: Transform @@ -92312,7 +93833,7 @@ entities: pos: 31.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4990 components: - type: Transform @@ -92320,7 +93841,7 @@ entities: pos: 30.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4991 components: - type: Transform @@ -92328,7 +93849,7 @@ entities: pos: 29.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4992 components: - type: Transform @@ -92336,7 +93857,7 @@ entities: pos: 28.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5016 components: - type: Transform @@ -92352,7 +93873,7 @@ entities: pos: -46.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5078 components: - type: Transform @@ -92457,42 +93978,42 @@ entities: pos: -55.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5470 components: - type: Transform pos: -55.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5471 components: - type: Transform pos: -55.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5472 components: - type: Transform pos: -55.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5473 components: - type: Transform pos: -55.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5474 components: - type: Transform pos: -55.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5475 components: - type: Transform @@ -92520,21 +94041,21 @@ entities: pos: -55.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5480 components: - type: Transform pos: -55.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5481 components: - type: Transform pos: -55.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5482 components: - type: Transform @@ -92562,21 +94083,21 @@ entities: pos: -55.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5487 components: - type: Transform pos: -55.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5488 components: - type: Transform pos: -55.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5493 components: - type: Transform @@ -92584,7 +94105,7 @@ entities: pos: -56.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5494 components: - type: Transform @@ -92592,7 +94113,7 @@ entities: pos: -57.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5496 components: - type: Transform @@ -92600,7 +94121,7 @@ entities: pos: -59.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5497 components: - type: Transform @@ -92608,7 +94129,7 @@ entities: pos: -60.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5498 components: - type: Transform @@ -92616,7 +94137,7 @@ entities: pos: -61.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5499 components: - type: Transform @@ -92624,7 +94145,7 @@ entities: pos: -62.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5500 components: - type: Transform @@ -92632,7 +94153,7 @@ entities: pos: -63.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5501 components: - type: Transform @@ -92640,7 +94161,7 @@ entities: pos: -64.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5502 components: - type: Transform @@ -92648,7 +94169,7 @@ entities: pos: -65.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5504 components: - type: Transform @@ -92808,7 +94329,7 @@ entities: pos: -56.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5527 components: - type: Transform @@ -92816,7 +94337,7 @@ entities: pos: -57.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5529 components: - type: Transform @@ -92824,7 +94345,7 @@ entities: pos: -59.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5531 components: - type: Transform @@ -92832,7 +94353,7 @@ entities: pos: -61.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5532 components: - type: Transform @@ -92840,7 +94361,7 @@ entities: pos: -62.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5533 components: - type: Transform @@ -92848,7 +94369,7 @@ entities: pos: -63.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5534 components: - type: Transform @@ -92856,7 +94377,7 @@ entities: pos: -64.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5535 components: - type: Transform @@ -92864,7 +94385,7 @@ entities: pos: -65.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5546 components: - type: Transform @@ -92967,7 +94488,7 @@ entities: pos: -47.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5811 components: - type: Transform @@ -93023,56 +94544,56 @@ entities: pos: -60.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5819 components: - type: Transform pos: -60.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5820 components: - type: Transform pos: -60.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5821 components: - type: Transform pos: -60.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5822 components: - type: Transform pos: -60.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5823 components: - type: Transform pos: -60.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5824 components: - type: Transform pos: -60.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5826 components: - type: Transform pos: -60.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5829 components: - type: Transform @@ -93080,7 +94601,7 @@ entities: pos: -61.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5830 components: - type: Transform @@ -93088,7 +94609,7 @@ entities: pos: -62.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5831 components: - type: Transform @@ -93096,7 +94617,7 @@ entities: pos: -63.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5832 components: - type: Transform @@ -93104,7 +94625,7 @@ entities: pos: -64.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5833 components: - type: Transform @@ -93112,7 +94633,7 @@ entities: pos: -65.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5834 components: - type: Transform @@ -93178,7 +94699,7 @@ entities: pos: -45.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5911 components: - type: Transform @@ -93202,7 +94723,7 @@ entities: pos: 55.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6113 components: - type: Transform @@ -93210,7 +94731,7 @@ entities: pos: -25.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6137 components: - type: Transform @@ -93218,20 +94739,22 @@ entities: pos: -26.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6162 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-8.5 parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6206 components: - type: Transform pos: -28.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6213 components: - type: Transform @@ -93278,7 +94801,7 @@ entities: pos: 2.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6435 components: - type: Transform @@ -93286,7 +94809,7 @@ entities: pos: 7.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6443 components: - type: Transform @@ -93309,7 +94832,7 @@ entities: pos: 1.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6454 components: - type: Transform @@ -93317,7 +94840,7 @@ entities: pos: -6.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6455 components: - type: Transform @@ -93333,7 +94856,7 @@ entities: pos: 8.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6579 components: - type: Transform @@ -93341,7 +94864,7 @@ entities: pos: 6.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6623 components: - type: Transform @@ -93365,7 +94888,7 @@ entities: pos: 54.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6685 components: - type: Transform @@ -93373,7 +94896,7 @@ entities: pos: 10.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6691 components: - type: Transform @@ -93381,7 +94904,7 @@ entities: pos: 2.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6763 components: - type: Transform @@ -93389,7 +94912,7 @@ entities: pos: 2.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6764 components: - type: Transform @@ -93397,7 +94920,7 @@ entities: pos: 2.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6765 components: - type: Transform @@ -93453,7 +94976,7 @@ entities: pos: -12.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6828 components: - type: Transform @@ -93477,7 +95000,7 @@ entities: pos: -12.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6832 components: - type: Transform @@ -93485,21 +95008,21 @@ entities: pos: -6.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6837 components: - type: Transform pos: 5.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6838 components: - type: Transform pos: -31.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6844 components: - type: Transform @@ -93507,7 +95030,7 @@ entities: pos: 2.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6858 components: - type: Transform @@ -93515,7 +95038,7 @@ entities: pos: -9.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6860 components: - type: Transform @@ -93523,7 +95046,7 @@ entities: pos: 2.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6878 components: - type: Transform @@ -93531,7 +95054,7 @@ entities: pos: 4.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6879 components: - type: Transform @@ -93562,7 +95085,7 @@ entities: pos: -1.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6883 components: - type: Transform @@ -93570,7 +95093,7 @@ entities: pos: 9.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6884 components: - type: Transform @@ -93578,7 +95101,7 @@ entities: pos: 10.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6887 components: - type: Transform @@ -93586,7 +95109,7 @@ entities: pos: 13.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6888 components: - type: Transform @@ -93594,7 +95117,7 @@ entities: pos: 14.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6889 components: - type: Transform @@ -93602,7 +95125,7 @@ entities: pos: 15.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6890 components: - type: Transform @@ -93610,7 +95133,7 @@ entities: pos: 2.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6907 components: - type: Transform @@ -93618,7 +95141,7 @@ entities: pos: -0.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6908 components: - type: Transform @@ -93626,7 +95149,7 @@ entities: pos: 0.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6910 components: - type: Transform @@ -93640,42 +95163,42 @@ entities: pos: 2.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6914 components: - type: Transform pos: 2.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6922 components: - type: Transform pos: 12.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6923 components: - type: Transform pos: 12.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6924 components: - type: Transform pos: 12.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6925 components: - type: Transform pos: 12.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6927 components: - type: Transform @@ -93683,7 +95206,7 @@ entities: pos: 14.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6928 components: - type: Transform @@ -93691,7 +95214,7 @@ entities: pos: 15.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6929 components: - type: Transform @@ -93699,7 +95222,7 @@ entities: pos: 16.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6930 components: - type: Transform @@ -93707,7 +95230,7 @@ entities: pos: 17.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6931 components: - type: Transform @@ -93715,7 +95238,7 @@ entities: pos: 18.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6933 components: - type: Transform @@ -93763,7 +95286,7 @@ entities: pos: 12.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6940 components: - type: Transform @@ -93771,7 +95294,7 @@ entities: pos: 12.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6941 components: - type: Transform @@ -93779,7 +95302,7 @@ entities: pos: 12.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6942 components: - type: Transform @@ -93787,7 +95310,7 @@ entities: pos: 12.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6944 components: - type: Transform @@ -93811,7 +95334,7 @@ entities: pos: 11.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7001 components: - type: Transform @@ -93819,7 +95342,7 @@ entities: pos: 2.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7002 components: - type: Transform @@ -93859,7 +95382,7 @@ entities: pos: -0.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7050 components: - type: Transform @@ -93867,7 +95390,7 @@ entities: pos: 0.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7051 components: - type: Transform @@ -93875,7 +95398,7 @@ entities: pos: -0.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7118 components: - type: Transform @@ -93937,7 +95460,7 @@ entities: pos: -1.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7300 components: - type: Transform @@ -94022,14 +95545,14 @@ entities: pos: 1.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7375 components: - type: Transform pos: 1.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7376 components: - type: Transform @@ -94037,7 +95560,7 @@ entities: pos: -9.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7387 components: - type: Transform @@ -94060,7 +95583,7 @@ entities: pos: 8.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7402 components: - type: Transform @@ -94100,7 +95623,7 @@ entities: pos: -30.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7411 components: - type: Transform @@ -94115,7 +95638,7 @@ entities: pos: 3.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7415 components: - type: Transform @@ -94137,7 +95660,7 @@ entities: pos: 1.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7434 components: - type: Transform @@ -94176,14 +95699,14 @@ entities: pos: -10.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7488 components: - type: Transform pos: 2.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7493 components: - type: Transform @@ -94197,7 +95720,7 @@ entities: pos: 1.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7508 components: - type: Transform @@ -94213,7 +95736,7 @@ entities: pos: -28.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7528 components: - type: Transform @@ -94244,7 +95767,7 @@ entities: pos: -1.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7646 components: - type: Transform @@ -94273,7 +95796,7 @@ entities: pos: 0.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7698 components: - type: Transform @@ -94289,7 +95812,7 @@ entities: pos: -0.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7799 components: - type: Transform @@ -94312,7 +95835,7 @@ entities: pos: -12.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7844 components: - type: Transform @@ -94359,20 +95882,6 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,-7.5 parent: 5350 - - uid: 8244 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,1.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8366 @@ -94390,7 +95899,7 @@ entities: pos: 54.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8417 components: - type: Transform @@ -94398,7 +95907,7 @@ entities: pos: -9.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8431 components: - type: Transform @@ -94406,7 +95915,7 @@ entities: pos: -7.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8453 components: - type: Transform @@ -94414,21 +95923,21 @@ entities: pos: -8.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8515 components: - type: Transform pos: 12.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8517 components: - type: Transform pos: 10.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8672 components: - type: Transform @@ -94436,7 +95945,7 @@ entities: pos: 19.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8674 components: - type: Transform @@ -94444,7 +95953,7 @@ entities: pos: 21.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8675 components: - type: Transform @@ -94452,7 +95961,7 @@ entities: pos: 22.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8676 components: - type: Transform @@ -94460,7 +95969,7 @@ entities: pos: 23.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8677 components: - type: Transform @@ -94468,7 +95977,7 @@ entities: pos: 24.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8678 components: - type: Transform @@ -94476,7 +95985,7 @@ entities: pos: 25.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8680 components: - type: Transform @@ -94484,7 +95993,7 @@ entities: pos: 27.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8682 components: - type: Transform @@ -94492,7 +96001,7 @@ entities: pos: 29.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8683 components: - type: Transform @@ -94500,7 +96009,7 @@ entities: pos: 29.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8684 components: - type: Transform @@ -94508,7 +96017,7 @@ entities: pos: 29.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8685 components: - type: Transform @@ -94516,7 +96025,7 @@ entities: pos: 30.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8686 components: - type: Transform @@ -94524,7 +96033,7 @@ entities: pos: 31.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8687 components: - type: Transform @@ -94532,7 +96041,7 @@ entities: pos: 32.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8689 components: - type: Transform @@ -94540,105 +96049,105 @@ entities: pos: 34.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8691 components: - type: Transform pos: 35.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8692 components: - type: Transform pos: 35.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8693 components: - type: Transform pos: 35.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8694 components: - type: Transform pos: 35.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8696 components: - type: Transform pos: 35.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8698 components: - type: Transform pos: 35.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8700 components: - type: Transform pos: 35.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8701 components: - type: Transform pos: 35.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8702 components: - type: Transform pos: 35.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8703 components: - type: Transform pos: 35.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8704 components: - type: Transform pos: 35.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8706 components: - type: Transform pos: 35.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8707 components: - type: Transform pos: 35.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8709 components: - type: Transform pos: 35.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8710 components: - type: Transform @@ -94849,7 +96358,7 @@ entities: pos: 34.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8756 components: - type: Transform @@ -94857,7 +96366,7 @@ entities: pos: 33.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8757 components: - type: Transform @@ -94865,7 +96374,7 @@ entities: pos: 32.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8758 components: - type: Transform @@ -94873,7 +96382,7 @@ entities: pos: 31.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8759 components: - type: Transform @@ -94881,7 +96390,7 @@ entities: pos: 30.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8760 components: - type: Transform @@ -94889,7 +96398,7 @@ entities: pos: 29.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8761 components: - type: Transform @@ -94897,7 +96406,7 @@ entities: pos: 29.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8762 components: - type: Transform @@ -94905,7 +96414,7 @@ entities: pos: 29.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8764 components: - type: Transform @@ -94913,7 +96422,7 @@ entities: pos: 29.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8765 components: - type: Transform @@ -94921,7 +96430,7 @@ entities: pos: 30.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8767 components: - type: Transform @@ -94929,7 +96438,7 @@ entities: pos: 32.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8768 components: - type: Transform @@ -94937,7 +96446,7 @@ entities: pos: 33.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8769 components: - type: Transform @@ -94945,28 +96454,28 @@ entities: pos: 34.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8772 components: - type: Transform pos: 35.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8773 components: - type: Transform pos: 35.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8774 components: - type: Transform pos: 35.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8775 components: - type: Transform @@ -95089,7 +96598,7 @@ entities: pos: 28.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8795 components: - type: Transform @@ -95177,7 +96686,7 @@ entities: pos: 29.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8806 components: - type: Transform @@ -95185,7 +96694,7 @@ entities: pos: 29.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8807 components: - type: Transform @@ -95193,7 +96702,7 @@ entities: pos: 29.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8808 components: - type: Transform @@ -95201,7 +96710,7 @@ entities: pos: 29.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8809 components: - type: Transform @@ -95209,7 +96718,7 @@ entities: pos: 29.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8816 components: - type: Transform @@ -95369,7 +96878,7 @@ entities: pos: 36.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8839 components: - type: Transform @@ -95425,7 +96934,7 @@ entities: pos: 56.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8919 components: - type: Transform @@ -95433,7 +96942,7 @@ entities: pos: -47.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8978 components: - type: Transform @@ -95448,28 +96957,28 @@ entities: pos: 46.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8988 components: - type: Transform pos: 46.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8989 components: - type: Transform pos: 46.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8990 components: - type: Transform pos: 46.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8993 components: - type: Transform @@ -95477,7 +96986,7 @@ entities: pos: 45.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8994 components: - type: Transform @@ -95485,21 +96994,21 @@ entities: pos: 44.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9000 components: - type: Transform pos: 46.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9001 components: - type: Transform pos: 46.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9004 components: - type: Transform @@ -95595,7 +97104,7 @@ entities: pos: 47.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9019 components: - type: Transform @@ -95603,7 +97112,7 @@ entities: pos: 48.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9026 components: - type: Transform @@ -95675,7 +97184,7 @@ entities: pos: 49.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9176 components: - type: Transform @@ -95720,7 +97229,7 @@ entities: pos: 8.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9302 components: - type: Transform @@ -95728,7 +97237,7 @@ entities: pos: 18.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9351 components: - type: Transform @@ -95736,7 +97245,7 @@ entities: pos: 15.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9387 components: - type: Transform @@ -95745,44 +97254,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-41.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-43.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9415 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9419 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 9487 components: - type: Transform @@ -95790,7 +97261,7 @@ entities: pos: -21.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9501 components: - type: Transform @@ -95798,7 +97269,7 @@ entities: pos: -21.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9531 components: - type: Transform @@ -95814,28 +97285,28 @@ entities: pos: -3.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9633 components: - type: Transform pos: -1.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9634 components: - type: Transform pos: -1.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9635 components: - type: Transform pos: -1.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9636 components: - type: Transform @@ -95882,7 +97353,7 @@ entities: pos: 4.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9649 components: - type: Transform @@ -95905,7 +97376,7 @@ entities: pos: 6.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9653 components: - type: Transform @@ -95928,7 +97399,7 @@ entities: pos: -40.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9681 components: - type: Transform @@ -95950,7 +97421,7 @@ entities: pos: -13.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9685 components: - type: Transform @@ -95973,7 +97444,7 @@ entities: pos: -10.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9688 components: - type: Transform @@ -95981,7 +97452,7 @@ entities: pos: -8.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9689 components: - type: Transform @@ -95989,21 +97460,21 @@ entities: pos: -7.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9690 components: - type: Transform pos: -11.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9691 components: - type: Transform pos: -11.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9722 components: - type: Transform @@ -96055,14 +97526,14 @@ entities: pos: 46.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9732 components: - type: Transform pos: 46.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9734 components: - type: Transform @@ -96070,7 +97541,7 @@ entities: pos: 47.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9735 components: - type: Transform @@ -96078,7 +97549,7 @@ entities: pos: 48.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9736 components: - type: Transform @@ -96086,7 +97557,7 @@ entities: pos: 49.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9737 components: - type: Transform @@ -96094,7 +97565,7 @@ entities: pos: 50.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9738 components: - type: Transform @@ -96102,7 +97573,7 @@ entities: pos: 51.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9804 components: - type: Transform @@ -96110,7 +97581,7 @@ entities: pos: -14.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9805 components: - type: Transform @@ -96118,7 +97589,7 @@ entities: pos: -15.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9855 components: - type: Transform @@ -96172,7 +97643,7 @@ entities: pos: -11.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9867 components: - type: Transform @@ -96180,7 +97651,7 @@ entities: pos: -11.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9868 components: - type: Transform @@ -96188,7 +97659,7 @@ entities: pos: -11.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9869 components: - type: Transform @@ -96196,7 +97667,7 @@ entities: pos: -11.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9870 components: - type: Transform @@ -96204,7 +97675,7 @@ entities: pos: -11.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9871 components: - type: Transform @@ -96212,7 +97683,7 @@ entities: pos: -11.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9873 components: - type: Transform @@ -96244,7 +97715,7 @@ entities: pos: -14.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9936 components: - type: Transform @@ -96260,14 +97731,14 @@ entities: pos: -11.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10028 components: - type: Transform pos: 54.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10057 components: - type: Transform @@ -96275,7 +97746,7 @@ entities: pos: 32.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10061 components: - type: Transform @@ -96290,7 +97761,7 @@ entities: pos: 2.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10136 components: - type: Transform @@ -96298,7 +97769,7 @@ entities: pos: 31.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10157 components: - type: Transform @@ -96306,7 +97777,7 @@ entities: pos: 15.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10183 components: - type: Transform @@ -96314,7 +97785,7 @@ entities: pos: 15.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10284 components: - type: Transform @@ -96322,7 +97793,7 @@ entities: pos: 15.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10344 components: - type: Transform @@ -96352,6 +97823,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10392 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 5350 - uid: 10425 components: - type: Transform @@ -96374,7 +97850,14 @@ entities: pos: 12.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 10659 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10713 components: - type: Transform @@ -96382,7 +97865,7 @@ entities: pos: -30.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10722 components: - type: Transform @@ -96390,7 +97873,7 @@ entities: pos: -31.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10776 components: - type: Transform @@ -96438,7 +97921,7 @@ entities: pos: -9.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10782 components: - type: Transform @@ -96446,7 +97929,7 @@ entities: pos: -9.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10783 components: - type: Transform @@ -96454,7 +97937,7 @@ entities: pos: -9.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10784 components: - type: Transform @@ -96462,7 +97945,7 @@ entities: pos: -9.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10785 components: - type: Transform @@ -96470,7 +97953,7 @@ entities: pos: -9.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10786 components: - type: Transform @@ -96478,7 +97961,7 @@ entities: pos: -9.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10787 components: - type: Transform @@ -96486,7 +97969,7 @@ entities: pos: -9.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10815 components: - type: Transform @@ -96558,6 +98041,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 10992 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11003 components: - type: Transform @@ -96565,7 +98055,7 @@ entities: pos: 37.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11004 components: - type: Transform @@ -96623,7 +98113,7 @@ entities: pos: 9.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11058 components: - type: Transform @@ -96833,7 +98323,7 @@ entities: pos: 53.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11130 components: - type: Transform @@ -96841,7 +98331,7 @@ entities: pos: 52.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11133 components: - type: Transform @@ -96950,7 +98440,7 @@ entities: pos: 52.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11167 components: - type: Transform @@ -96966,7 +98456,7 @@ entities: pos: -44.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11191 components: - type: Transform @@ -96982,7 +98472,7 @@ entities: pos: 47.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11197 components: - type: Transform @@ -96990,7 +98480,7 @@ entities: pos: 48.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11198 components: - type: Transform @@ -96998,7 +98488,7 @@ entities: pos: 49.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11205 components: - type: Transform @@ -97022,7 +98512,15 @@ entities: pos: 50.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,0.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11261 components: - type: Transform @@ -97037,6 +98535,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-24.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11316 components: - type: Transform @@ -97123,7 +98629,7 @@ entities: pos: 52.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11363 components: - type: Transform @@ -97131,14 +98637,14 @@ entities: pos: 53.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11376 components: - type: Transform pos: 54.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11393 components: - type: Transform @@ -97146,7 +98652,7 @@ entities: pos: 17.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11424 components: - type: Transform @@ -97193,14 +98699,14 @@ entities: pos: 14.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11499 components: - type: Transform pos: 40.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11506 components: - type: Transform @@ -97230,42 +98736,42 @@ entities: pos: 54.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11510 components: - type: Transform pos: 54.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11546 components: - type: Transform pos: 54.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11547 components: - type: Transform pos: 54.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11548 components: - type: Transform pos: 54.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11549 components: - type: Transform pos: 54.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11550 components: - type: Transform @@ -97273,7 +98779,7 @@ entities: pos: 53.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11551 components: - type: Transform @@ -97281,7 +98787,7 @@ entities: pos: 52.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11552 components: - type: Transform @@ -97289,7 +98795,7 @@ entities: pos: 51.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11553 components: - type: Transform @@ -97297,7 +98803,7 @@ entities: pos: 50.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11559 components: - type: Transform @@ -97305,7 +98811,7 @@ entities: pos: 55.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11560 components: - type: Transform @@ -97313,7 +98819,7 @@ entities: pos: 56.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11561 components: - type: Transform @@ -97321,7 +98827,7 @@ entities: pos: 57.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11572 components: - type: Transform @@ -97352,7 +98858,7 @@ entities: pos: 52.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11584 components: - type: Transform @@ -97384,7 +98890,7 @@ entities: pos: 52.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11612 components: - type: Transform @@ -97400,7 +98906,7 @@ entities: pos: 11.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11635 components: - type: Transform @@ -97439,6 +98945,8 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-7.5 parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11724 components: - type: Transform @@ -97478,7 +98986,7 @@ entities: pos: 58.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11809 components: - type: Transform @@ -97494,7 +99002,7 @@ entities: pos: 59.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11831 components: - type: Transform @@ -97510,7 +99018,7 @@ entities: pos: 54.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11837 components: - type: Transform @@ -97518,7 +99026,7 @@ entities: pos: 54.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11838 components: - type: Transform @@ -97526,7 +99034,7 @@ entities: pos: 54.5,1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11839 components: - type: Transform @@ -97716,7 +99224,7 @@ entities: pos: 25.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11932 components: - type: Transform @@ -97724,7 +99232,7 @@ entities: pos: 20.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11971 components: - type: Transform @@ -97732,7 +99240,7 @@ entities: pos: 29.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11972 components: - type: Transform @@ -97748,7 +99256,7 @@ entities: pos: -21.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11977 components: - type: Transform @@ -97771,7 +99279,7 @@ entities: pos: 10.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12032 components: - type: Transform @@ -97868,7 +99376,7 @@ entities: pos: 7.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12113 components: - type: Transform @@ -97876,7 +99384,7 @@ entities: pos: 7.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12114 components: - type: Transform @@ -97884,7 +99392,7 @@ entities: pos: 7.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12118 components: - type: Transform @@ -97892,7 +99400,7 @@ entities: pos: 37.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12121 components: - type: Transform @@ -97900,14 +99408,14 @@ entities: pos: 20.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12125 components: - type: Transform pos: 8.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12135 components: - type: Transform @@ -97915,7 +99423,7 @@ entities: pos: 30.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12136 components: - type: Transform @@ -97923,7 +99431,7 @@ entities: pos: 32.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12138 components: - type: Transform @@ -97931,7 +99439,7 @@ entities: pos: 10.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12140 components: - type: Transform @@ -97946,7 +99454,7 @@ entities: pos: 15.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12150 components: - type: Transform @@ -97962,21 +99470,21 @@ entities: pos: 9.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12327 components: - type: Transform pos: 46.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12328 components: - type: Transform pos: 46.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12331 components: - type: Transform @@ -98011,7 +99519,7 @@ entities: pos: 42.5,9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12339 components: - type: Transform @@ -98019,7 +99527,7 @@ entities: pos: 43.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12340 components: - type: Transform @@ -98027,7 +99535,7 @@ entities: pos: 44.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12341 components: - type: Transform @@ -98035,7 +99543,7 @@ entities: pos: 45.5,10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12376 components: - type: Transform @@ -98057,7 +99565,7 @@ entities: pos: 53.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12399 components: - type: Transform @@ -98065,7 +99573,7 @@ entities: pos: 52.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12404 components: - type: Transform @@ -98201,7 +99709,7 @@ entities: pos: -16.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12520 components: - type: Transform @@ -98273,7 +99781,7 @@ entities: pos: 34.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12687 components: - type: Transform @@ -98281,7 +99789,7 @@ entities: pos: 33.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12689 components: - type: Transform @@ -98296,7 +99804,7 @@ entities: pos: 26.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12695 components: - type: Transform @@ -98311,14 +99819,14 @@ entities: pos: 15.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12712 components: - type: Transform pos: 15.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12714 components: - type: Transform @@ -98326,7 +99834,7 @@ entities: pos: -5.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12726 components: - type: Transform @@ -98334,7 +99842,7 @@ entities: pos: 34.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12727 components: - type: Transform @@ -98342,7 +99850,7 @@ entities: pos: 33.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12728 components: - type: Transform @@ -98350,7 +99858,7 @@ entities: pos: 32.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12747 components: - type: Transform @@ -98358,7 +99866,7 @@ entities: pos: 34.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12748 components: - type: Transform @@ -98366,7 +99874,7 @@ entities: pos: 33.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12749 components: - type: Transform @@ -98374,7 +99882,7 @@ entities: pos: 32.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12750 components: - type: Transform @@ -98382,7 +99890,7 @@ entities: pos: 31.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12751 components: - type: Transform @@ -98390,7 +99898,7 @@ entities: pos: 30.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12752 components: - type: Transform @@ -98398,7 +99906,7 @@ entities: pos: 29.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12753 components: - type: Transform @@ -98406,7 +99914,7 @@ entities: pos: 28.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12755 components: - type: Transform @@ -98414,7 +99922,7 @@ entities: pos: 36.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12756 components: - type: Transform @@ -98422,7 +99930,7 @@ entities: pos: 37.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12784 components: - type: Transform @@ -98486,7 +99994,7 @@ entities: pos: 34.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12826 components: - type: Transform @@ -98494,7 +100002,7 @@ entities: pos: 33.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12827 components: - type: Transform @@ -98502,7 +100010,7 @@ entities: pos: 32.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12828 components: - type: Transform @@ -98510,7 +100018,7 @@ entities: pos: 36.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12829 components: - type: Transform @@ -98518,21 +100026,21 @@ entities: pos: 37.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12830 components: - type: Transform pos: 35.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12831 components: - type: Transform pos: 35.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12832 components: - type: Transform @@ -98540,14 +100048,14 @@ entities: pos: 36.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12897 components: - type: Transform pos: 8.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12989 components: - type: Transform @@ -98555,7 +100063,7 @@ entities: pos: 20.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12991 components: - type: Transform @@ -98571,7 +100079,7 @@ entities: pos: 26.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12993 components: - type: Transform @@ -98603,7 +100111,7 @@ entities: pos: 34.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13002 components: - type: Transform @@ -98617,7 +100125,7 @@ entities: pos: 33.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13006 components: - type: Transform @@ -98625,7 +100133,7 @@ entities: pos: 36.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13007 components: - type: Transform @@ -98633,7 +100141,7 @@ entities: pos: 37.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13008 components: - type: Transform @@ -98641,7 +100149,7 @@ entities: pos: 38.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13009 components: - type: Transform @@ -98649,7 +100157,7 @@ entities: pos: 39.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13010 components: - type: Transform @@ -98657,7 +100165,7 @@ entities: pos: 40.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13011 components: - type: Transform @@ -98665,7 +100173,7 @@ entities: pos: 41.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13012 components: - type: Transform @@ -98673,7 +100181,7 @@ entities: pos: 42.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13013 components: - type: Transform @@ -98681,7 +100189,7 @@ entities: pos: 43.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13014 components: - type: Transform @@ -98689,7 +100197,7 @@ entities: pos: 44.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13015 components: - type: Transform @@ -98697,7 +100205,7 @@ entities: pos: 45.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13016 components: - type: Transform @@ -98801,7 +100309,7 @@ entities: pos: 31.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13040 components: - type: Transform @@ -98809,7 +100317,7 @@ entities: pos: 31.5,46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13041 components: - type: Transform @@ -98817,7 +100325,7 @@ entities: pos: 31.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13042 components: - type: Transform @@ -98825,7 +100333,7 @@ entities: pos: 31.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13043 components: - type: Transform @@ -98833,7 +100341,7 @@ entities: pos: 31.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13164 components: - type: Transform @@ -98841,7 +100349,7 @@ entities: pos: 22.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13165 components: - type: Transform @@ -98855,7 +100363,7 @@ entities: pos: 12.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13327 components: - type: Transform @@ -98878,7 +100386,7 @@ entities: pos: -32.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13407 components: - type: Transform @@ -98886,7 +100394,7 @@ entities: pos: -20.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13412 components: - type: Transform @@ -98942,7 +100450,7 @@ entities: pos: 34.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13703 components: - type: Transform @@ -98958,14 +100466,7 @@ entities: pos: 6.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13907 - components: - - type: Transform - pos: 5.5,-39.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14104 components: - type: Transform @@ -98973,7 +100474,7 @@ entities: pos: -31.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14133 components: - type: Transform @@ -98981,7 +100482,7 @@ entities: pos: -55.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14174 components: - type: Transform @@ -98989,7 +100490,7 @@ entities: pos: -36.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14192 components: - type: Transform @@ -98997,7 +100498,7 @@ entities: pos: -37.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14257 components: - type: Transform @@ -99005,7 +100506,7 @@ entities: pos: 13.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14303 components: - type: Transform @@ -99037,7 +100538,7 @@ entities: pos: -34.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14359 components: - type: Transform @@ -99050,7 +100551,7 @@ entities: pos: 22.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14371 components: - type: Transform @@ -99058,14 +100559,14 @@ entities: pos: 23.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14374 components: - type: Transform pos: -21.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14377 components: - type: Transform @@ -99081,7 +100582,7 @@ entities: pos: -16.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14387 components: - type: Transform @@ -99121,7 +100622,7 @@ entities: pos: -33.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14404 components: - type: Transform @@ -99129,7 +100630,7 @@ entities: pos: -19.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14415 components: - type: Transform @@ -99137,7 +100638,7 @@ entities: pos: 31.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14419 components: - type: Transform @@ -99145,7 +100646,7 @@ entities: pos: -47.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14451 components: - type: Transform @@ -99181,7 +100682,7 @@ entities: pos: -21.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14494 components: - type: Transform @@ -99189,7 +100690,7 @@ entities: pos: -47.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14523 components: - type: Transform @@ -99273,14 +100774,14 @@ entities: pos: -1.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14544 components: - type: Transform pos: -1.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14545 components: - type: Transform @@ -99288,77 +100789,77 @@ entities: pos: -27.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14546 components: - type: Transform pos: -1.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14547 components: - type: Transform pos: -1.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14548 components: - type: Transform pos: -1.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14549 components: - type: Transform pos: -1.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14550 components: - type: Transform pos: -1.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14552 components: - type: Transform pos: -1.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14553 components: - type: Transform pos: -1.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14554 components: - type: Transform pos: -1.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14555 components: - type: Transform pos: -1.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14556 components: - type: Transform pos: -1.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14563 components: - type: Transform @@ -99366,7 +100867,7 @@ entities: pos: -31.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14565 components: - type: Transform @@ -99374,7 +100875,7 @@ entities: pos: -9.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14568 components: - type: Transform @@ -99382,7 +100883,7 @@ entities: pos: -1.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14572 components: - type: Transform @@ -99390,7 +100891,7 @@ entities: pos: -12.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14574 components: - type: Transform @@ -99398,7 +100899,7 @@ entities: pos: -1.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14576 components: - type: Transform @@ -99406,7 +100907,7 @@ entities: pos: -15.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14577 components: - type: Transform @@ -99414,7 +100915,7 @@ entities: pos: -16.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14578 components: - type: Transform @@ -99422,7 +100923,7 @@ entities: pos: -17.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14579 components: - type: Transform @@ -99430,7 +100931,7 @@ entities: pos: -18.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14580 components: - type: Transform @@ -99438,7 +100939,7 @@ entities: pos: -19.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14581 components: - type: Transform @@ -99446,14 +100947,14 @@ entities: pos: 31.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14583 components: - type: Transform pos: -21.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14584 components: - type: Transform @@ -99476,21 +100977,21 @@ entities: pos: -21.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14593 components: - type: Transform pos: -21.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14595 components: - type: Transform pos: -21.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14596 components: - type: Transform @@ -99504,7 +101005,7 @@ entities: pos: -21.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14600 components: - type: Transform @@ -99518,7 +101019,7 @@ entities: pos: -21.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14602 components: - type: Transform @@ -99526,7 +101027,7 @@ entities: pos: -22.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14603 components: - type: Transform @@ -99534,7 +101035,7 @@ entities: pos: -23.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14604 components: - type: Transform @@ -99542,7 +101043,7 @@ entities: pos: -24.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14605 components: - type: Transform @@ -99550,7 +101051,7 @@ entities: pos: -25.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14608 components: - type: Transform @@ -99565,7 +101066,7 @@ entities: pos: -30.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14611 components: - type: Transform @@ -99573,7 +101074,7 @@ entities: pos: 5.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14612 components: - type: Transform @@ -99581,7 +101082,7 @@ entities: pos: -32.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14613 components: - type: Transform @@ -99589,7 +101090,7 @@ entities: pos: -33.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14614 components: - type: Transform @@ -99597,7 +101098,7 @@ entities: pos: -34.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14616 components: - type: Transform @@ -99611,7 +101112,7 @@ entities: pos: -21.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14633 components: - type: Transform @@ -99679,7 +101180,7 @@ entities: pos: -8.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14655 components: - type: Transform @@ -99687,7 +101188,7 @@ entities: pos: -21.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14661 components: - type: Transform @@ -99831,7 +101332,7 @@ entities: pos: -14.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14715 components: - type: Transform @@ -99895,7 +101396,7 @@ entities: pos: -26.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14723 components: - type: Transform @@ -99903,7 +101404,7 @@ entities: pos: -26.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14725 components: - type: Transform @@ -99911,7 +101412,7 @@ entities: pos: -26.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14730 components: - type: Transform @@ -99943,7 +101444,7 @@ entities: pos: -18.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14736 components: - type: Transform @@ -99967,7 +101468,7 @@ entities: pos: -13.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14744 components: - type: Transform @@ -99975,7 +101476,15 @@ entities: pos: -34.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 14774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14780 components: - type: Transform @@ -99983,7 +101492,7 @@ entities: pos: -23.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14799 components: - type: Transform @@ -99991,7 +101500,7 @@ entities: pos: -12.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14828 components: - type: Transform @@ -100014,7 +101523,7 @@ entities: pos: -38.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14930 components: - type: Transform @@ -100022,14 +101531,14 @@ entities: pos: -15.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14936 components: - type: Transform pos: -20.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14948 components: - type: Transform @@ -100044,7 +101553,7 @@ entities: pos: -25.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14973 components: - type: Transform @@ -100060,14 +101569,14 @@ entities: pos: -22.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14981 components: - type: Transform pos: 2.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15049 components: - type: Transform @@ -100083,14 +101592,14 @@ entities: pos: -31.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15082 components: - type: Transform pos: -9.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15087 components: - type: Transform @@ -100106,7 +101615,7 @@ entities: pos: -27.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15117 components: - type: Transform @@ -100130,7 +101639,7 @@ entities: pos: -39.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15166 components: - type: Transform @@ -100138,7 +101647,7 @@ entities: pos: -8.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15167 components: - type: Transform @@ -100169,7 +101678,7 @@ entities: pos: -30.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15202 components: - type: Transform @@ -100177,7 +101686,7 @@ entities: pos: -4.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15230 components: - type: Transform @@ -100185,7 +101694,7 @@ entities: pos: -37.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15243 components: - type: Transform @@ -100201,7 +101710,7 @@ entities: pos: -21.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15258 components: - type: Transform @@ -100209,7 +101718,7 @@ entities: pos: -21.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15261 components: - type: Transform @@ -100217,7 +101726,7 @@ entities: pos: -6.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15274 components: - type: Transform @@ -100280,7 +101789,7 @@ entities: pos: -21.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15298 components: - type: Transform @@ -100296,7 +101805,7 @@ entities: pos: -19.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15313 components: - type: Transform @@ -100304,7 +101813,7 @@ entities: pos: -18.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15314 components: - type: Transform @@ -100312,7 +101821,7 @@ entities: pos: -17.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15315 components: - type: Transform @@ -100320,7 +101829,7 @@ entities: pos: -16.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15323 components: - type: Transform @@ -100328,6 +101837,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15330 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15338 components: - type: Transform @@ -100350,7 +101866,7 @@ entities: pos: 12.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15352 components: - type: Transform @@ -100358,7 +101874,7 @@ entities: pos: -24.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15374 components: - type: Transform @@ -100366,7 +101882,7 @@ entities: pos: 2.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15389 components: - type: Transform @@ -100382,7 +101898,7 @@ entities: pos: -29.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15405 components: - type: Transform @@ -100414,7 +101930,7 @@ entities: pos: -47.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15414 components: - type: Transform @@ -100422,7 +101938,7 @@ entities: pos: 30.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15417 components: - type: Transform @@ -100469,7 +101985,7 @@ entities: pos: -10.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15439 components: - type: Transform @@ -100492,14 +102008,14 @@ entities: pos: -19.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15454 components: - type: Transform pos: -9.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15458 components: - type: Transform @@ -100523,7 +102039,7 @@ entities: pos: -9.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15464 components: - type: Transform @@ -100531,7 +102047,7 @@ entities: pos: -14.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15471 components: - type: Transform @@ -100547,7 +102063,7 @@ entities: pos: -27.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15477 components: - type: Transform @@ -100555,7 +102071,7 @@ entities: pos: -35.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15479 components: - type: Transform @@ -100570,7 +102086,7 @@ entities: pos: -19.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15482 components: - type: Transform @@ -100594,7 +102110,7 @@ entities: pos: -11.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15493 components: - type: Transform @@ -100617,7 +102133,7 @@ entities: pos: -9.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15518 components: - type: Transform @@ -100633,7 +102149,7 @@ entities: pos: -25.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15549 components: - type: Transform @@ -100673,7 +102189,7 @@ entities: pos: -15.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15576 components: - type: Transform @@ -100681,7 +102197,7 @@ entities: pos: -17.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15579 components: - type: Transform @@ -100690,6 +102206,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15581 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15589 components: - type: Transform @@ -100697,7 +102220,7 @@ entities: pos: -47.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15598 components: - type: Transform @@ -100713,7 +102236,14 @@ entities: pos: -23.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 15602 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15629 components: - type: Transform @@ -100721,7 +102251,7 @@ entities: pos: 10.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15630 components: - type: Transform @@ -100729,7 +102259,7 @@ entities: pos: 8.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15668 components: - type: Transform @@ -100746,6 +102276,20 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15674 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15677 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15678 components: - type: Transform @@ -100753,6 +102297,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15680 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15683 components: - type: Transform @@ -100760,7 +102311,7 @@ entities: pos: -1.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15686 components: - type: Transform @@ -100768,7 +102319,7 @@ entities: pos: 8.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15688 components: - type: Transform @@ -100776,7 +102327,7 @@ entities: pos: -27.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15694 components: - type: Transform @@ -100785,6 +102336,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15708 components: - type: Transform @@ -100800,7 +102359,7 @@ entities: pos: 12.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15716 components: - type: Transform @@ -100808,7 +102367,7 @@ entities: pos: 10.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15728 components: - type: Transform @@ -100847,7 +102406,7 @@ entities: pos: 8.5,-58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15749 components: - type: Transform @@ -100862,7 +102421,7 @@ entities: pos: 8.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15757 components: - type: Transform @@ -100877,7 +102436,7 @@ entities: pos: -28.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15774 components: - type: Transform @@ -100885,7 +102444,7 @@ entities: pos: -27.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15775 components: - type: Transform @@ -100900,7 +102459,7 @@ entities: pos: -26.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15809 components: - type: Transform @@ -100941,6 +102500,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15893 components: - type: Transform @@ -100948,7 +102515,7 @@ entities: pos: -21.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15933 components: - type: Transform @@ -100956,7 +102523,14 @@ entities: pos: 8.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 15946 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15952 components: - type: Transform @@ -100964,7 +102538,14 @@ entities: pos: 7.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 15953 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15957 components: - type: Transform @@ -100980,7 +102561,7 @@ entities: pos: -26.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15977 components: - type: Transform @@ -100988,7 +102569,7 @@ entities: pos: -4.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15978 components: - type: Transform @@ -100996,7 +102577,7 @@ entities: pos: -31.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15979 components: - type: Transform @@ -101011,7 +102592,7 @@ entities: pos: -27.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15982 components: - type: Transform @@ -101019,7 +102600,7 @@ entities: pos: -26.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15983 components: - type: Transform @@ -101027,7 +102608,7 @@ entities: pos: -24.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15988 components: - type: Transform @@ -101035,7 +102616,7 @@ entities: pos: 8.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15993 components: - type: Transform @@ -101043,7 +102624,7 @@ entities: pos: -23.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16001 components: - type: Transform @@ -101051,7 +102632,7 @@ entities: pos: -22.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16022 components: - type: Transform @@ -101059,7 +102640,7 @@ entities: pos: -28.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16023 components: - type: Transform @@ -101067,7 +102648,7 @@ entities: pos: -29.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16027 components: - type: Transform @@ -101075,7 +102656,7 @@ entities: pos: -20.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16076 components: - type: Transform @@ -101098,7 +102679,7 @@ entities: pos: 31.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16129 components: - type: Transform @@ -101106,7 +102687,7 @@ entities: pos: 8.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16135 components: - type: Transform @@ -101130,7 +102711,7 @@ entities: pos: 19.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16245 components: - type: Transform @@ -101146,7 +102727,7 @@ entities: pos: 2.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16256 components: - type: Transform @@ -101154,7 +102735,7 @@ entities: pos: 3.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16279 components: - type: Transform @@ -101170,50 +102751,11 @@ entities: pos: -31.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16300 - components: - - type: Transform - pos: 5.5,-40.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16313 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-44.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 16321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-42.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-40.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16340 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-40.5 + pos: 1.5,-50.5 parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' @@ -101263,7 +102805,7 @@ entities: pos: -1.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16356 components: - type: Transform @@ -101303,7 +102845,7 @@ entities: pos: 5.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16378 components: - type: Transform @@ -101311,7 +102853,7 @@ entities: pos: -5.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16379 components: - type: Transform @@ -101319,14 +102861,14 @@ entities: pos: -6.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16386 components: - type: Transform pos: -1.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16388 components: - type: Transform @@ -101334,7 +102876,7 @@ entities: pos: 6.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16389 components: - type: Transform @@ -101342,14 +102884,14 @@ entities: pos: 7.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16396 components: - type: Transform pos: 8.5,-59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16416 components: - type: Transform @@ -101381,7 +102923,7 @@ entities: pos: 8.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16427 components: - type: Transform @@ -101397,7 +102939,7 @@ entities: pos: -21.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16429 components: - type: Transform @@ -101405,7 +102947,7 @@ entities: pos: -36.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16430 components: - type: Transform @@ -101413,7 +102955,7 @@ entities: pos: -33.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16431 components: - type: Transform @@ -101421,7 +102963,7 @@ entities: pos: -26.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16432 components: - type: Transform @@ -101477,7 +103019,7 @@ entities: pos: 12.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16489 components: - type: Transform @@ -101485,7 +103027,7 @@ entities: pos: 15.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16492 components: - type: Transform @@ -101493,7 +103035,15 @@ entities: pos: -4.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 16517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 16522 components: - type: Transform @@ -101501,6 +103051,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#3AB334FF' + - uid: 16543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16558 components: - type: Transform @@ -101508,7 +103066,7 @@ entities: pos: -12.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16566 components: - type: Transform @@ -101516,7 +103074,7 @@ entities: pos: -20.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16568 components: - type: Transform @@ -101524,7 +103082,7 @@ entities: pos: -21.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16581 components: - type: Transform @@ -101546,7 +103104,7 @@ entities: pos: -21.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16607 components: - type: Transform @@ -101577,7 +103135,7 @@ entities: pos: -1.5,-57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16649 components: - type: Transform @@ -101593,7 +103151,7 @@ entities: pos: -1.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16722 components: - type: Transform @@ -101616,7 +103174,7 @@ entities: pos: 6.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16728 components: - type: MetaData @@ -101664,7 +103222,7 @@ entities: pos: 8.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16955 components: - type: Transform @@ -101736,7 +103294,7 @@ entities: pos: 7.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17360 components: - type: Transform @@ -101768,7 +103326,7 @@ entities: pos: 8.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17436 components: - type: Transform @@ -101839,7 +103397,7 @@ entities: pos: -22.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17470 components: - type: Transform @@ -101887,7 +103445,7 @@ entities: pos: -28.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17479 components: - type: Transform @@ -101895,7 +103453,7 @@ entities: pos: -21.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17512 components: - type: Transform @@ -101924,7 +103482,7 @@ entities: pos: -40.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17649 components: - type: Transform @@ -101980,7 +103538,7 @@ entities: pos: -31.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17658 components: - type: Transform @@ -102079,7 +103637,7 @@ entities: pos: -23.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17688 components: - type: Transform @@ -102087,7 +103645,7 @@ entities: pos: -24.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17689 components: - type: Transform @@ -102095,7 +103653,7 @@ entities: pos: -25.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17690 components: - type: Transform @@ -102103,7 +103661,7 @@ entities: pos: -22.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17691 components: - type: Transform @@ -102111,7 +103669,7 @@ entities: pos: -21.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17692 components: - type: Transform @@ -102119,7 +103677,7 @@ entities: pos: -26.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17693 components: - type: Transform @@ -102127,7 +103685,7 @@ entities: pos: -27.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17695 components: - type: Transform @@ -102135,7 +103693,7 @@ entities: pos: -29.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17696 components: - type: Transform @@ -102151,7 +103709,7 @@ entities: pos: -31.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17699 components: - type: Transform @@ -102159,7 +103717,7 @@ entities: pos: -31.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17700 components: - type: Transform @@ -102175,7 +103733,7 @@ entities: pos: -31.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17702 components: - type: Transform @@ -102183,7 +103741,7 @@ entities: pos: -31.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17703 components: - type: Transform @@ -102199,7 +103757,7 @@ entities: pos: -11.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17727 components: - type: Transform @@ -102207,7 +103765,7 @@ entities: pos: -11.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17728 components: - type: Transform @@ -102215,7 +103773,7 @@ entities: pos: -11.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17730 components: - type: Transform @@ -102223,7 +103781,7 @@ entities: pos: -11.5,47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17731 components: - type: Transform @@ -102239,7 +103797,7 @@ entities: pos: -11.5,48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17733 components: - type: Transform @@ -102247,7 +103805,7 @@ entities: pos: -11.5,49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17734 components: - type: Transform @@ -102270,7 +103828,7 @@ entities: pos: -11.5,50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17743 components: - type: Transform @@ -102285,7 +103843,7 @@ entities: pos: -10.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17747 components: - type: Transform @@ -102301,7 +103859,7 @@ entities: pos: -11.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17751 components: - type: Transform @@ -102325,7 +103883,7 @@ entities: pos: -9.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17797 components: - type: Transform @@ -102341,7 +103899,7 @@ entities: pos: 12.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17807 components: - type: Transform @@ -102349,7 +103907,7 @@ entities: pos: -18.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17892 components: - type: Transform @@ -102357,7 +103915,7 @@ entities: pos: -9.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17893 components: - type: Transform @@ -102365,7 +103923,7 @@ entities: pos: -5.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17910 components: - type: Transform @@ -102373,7 +103931,7 @@ entities: pos: -0.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17921 components: - type: Transform @@ -102381,7 +103939,7 @@ entities: pos: -3.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17958 components: - type: Transform @@ -102389,7 +103947,7 @@ entities: pos: -5.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18072 components: - type: Transform @@ -102397,7 +103955,7 @@ entities: pos: 1.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18073 components: - type: Transform @@ -102413,7 +103971,7 @@ entities: pos: 0.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18075 components: - type: Transform @@ -102421,7 +103979,7 @@ entities: pos: -2.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18222 components: - type: Transform @@ -102437,7 +103995,7 @@ entities: pos: -1.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18246 components: - type: Transform @@ -102445,7 +104003,7 @@ entities: pos: -24.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18263 components: - type: Transform @@ -102453,7 +104011,7 @@ entities: pos: -47.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18314 components: - type: Transform @@ -102469,7 +104027,7 @@ entities: pos: -1.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18351 components: - type: Transform @@ -102667,7 +104225,7 @@ entities: pos: -28.5,26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18402 components: - type: Transform @@ -102868,7 +104426,7 @@ entities: pos: -59.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18499 components: - type: Transform @@ -102876,7 +104434,7 @@ entities: pos: -58.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18500 components: - type: Transform @@ -102884,36 +104442,28 @@ entities: pos: -57.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18501 components: - type: Transform pos: -56.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18502 components: - type: Transform pos: -56.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18503 components: - type: Transform pos: -56.5,-13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-38.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18570 components: - type: Transform @@ -102929,7 +104479,7 @@ entities: pos: -7.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18580 components: - type: Transform @@ -102976,7 +104526,7 @@ entities: pos: 12.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18624 components: - type: Transform @@ -102984,7 +104534,7 @@ entities: pos: 12.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18939 components: - type: Transform @@ -102992,7 +104542,7 @@ entities: pos: 12.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18973 components: - type: Transform @@ -103457,7 +105007,7 @@ entities: pos: 12.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19065 components: - type: Transform @@ -103465,7 +105015,7 @@ entities: pos: 12.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19066 components: - type: Transform @@ -103496,7 +105046,7 @@ entities: pos: 16.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19077 components: - type: Transform @@ -103512,7 +105062,7 @@ entities: pos: 8.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19086 components: - type: Transform @@ -103520,7 +105070,7 @@ entities: pos: 8.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19088 components: - type: Transform @@ -103528,7 +105078,7 @@ entities: pos: -3.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19089 components: - type: Transform @@ -103608,7 +105158,7 @@ entities: pos: -1.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19214 components: - type: Transform @@ -103616,7 +105166,7 @@ entities: pos: 16.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19216 components: - type: Transform @@ -103624,7 +105174,7 @@ entities: pos: 16.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19220 components: - type: Transform @@ -103662,7 +105212,7 @@ entities: pos: -18.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19296 components: - type: Transform @@ -103679,14 +105229,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19299 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-50.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19301 components: - type: Transform @@ -103701,14 +105243,14 @@ entities: pos: -1.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19304 components: - type: Transform pos: -1.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19305 components: - type: Transform @@ -103722,7 +105264,7 @@ entities: pos: 16.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19309 components: - type: Transform @@ -103761,7 +105303,7 @@ entities: pos: 16.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19331 components: - type: Transform @@ -103769,7 +105311,7 @@ entities: pos: 9.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19333 components: - type: Transform @@ -103785,7 +105327,7 @@ entities: pos: 14.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19345 components: - type: Transform @@ -103849,7 +105391,7 @@ entities: pos: 17.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19373 components: - type: Transform @@ -103881,7 +105423,7 @@ entities: pos: 17.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19383 components: - type: Transform @@ -103930,14 +105472,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' - - uid: 19407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-50.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19412 components: - type: Transform @@ -103985,7 +105519,7 @@ entities: pos: 13.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19443 components: - type: Transform @@ -104049,7 +105583,7 @@ entities: pos: 14.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19475 components: - type: Transform @@ -104057,7 +105591,7 @@ entities: pos: 17.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19485 components: - type: Transform @@ -104065,7 +105599,7 @@ entities: pos: 11.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19486 components: - type: Transform @@ -104073,7 +105607,7 @@ entities: pos: 10.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19487 components: - type: Transform @@ -104128,7 +105662,7 @@ entities: pos: 11.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19502 components: - type: Transform @@ -104150,7 +105684,7 @@ entities: pos: 16.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19506 components: - type: Transform @@ -104158,7 +105692,7 @@ entities: pos: 16.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19507 components: - type: Transform @@ -104166,7 +105700,7 @@ entities: pos: 12.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19512 components: - type: Transform @@ -104174,7 +105708,7 @@ entities: pos: 16.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19513 components: - type: Transform @@ -104182,7 +105716,7 @@ entities: pos: 15.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19514 components: - type: Transform @@ -104198,7 +105732,7 @@ entities: pos: 16.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19517 components: - type: Transform @@ -104213,7 +105747,7 @@ entities: pos: 13.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19524 components: - type: Transform @@ -104221,7 +105755,7 @@ entities: pos: 15.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19527 components: - type: Transform @@ -104229,7 +105763,7 @@ entities: pos: 16.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19534 components: - type: Transform @@ -104237,7 +105771,7 @@ entities: pos: -21.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19542 components: - type: Transform @@ -104291,7 +105825,7 @@ entities: pos: -2.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19636 components: - type: Transform @@ -104299,7 +105833,7 @@ entities: pos: -3.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19737 components: - type: Transform @@ -104307,7 +105841,7 @@ entities: pos: -6.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19738 components: - type: Transform @@ -104315,7 +105849,7 @@ entities: pos: -7.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19742 components: - type: Transform @@ -104323,7 +105857,7 @@ entities: pos: -8.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19781 components: - type: Transform @@ -104331,7 +105865,7 @@ entities: pos: 30.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19835 components: - type: Transform @@ -104347,7 +105881,7 @@ entities: pos: 18.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19837 components: - type: Transform @@ -104355,7 +105889,7 @@ entities: pos: 19.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20015 components: - type: Transform @@ -104379,7 +105913,7 @@ entities: pos: 20.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20018 components: - type: Transform @@ -104387,7 +105921,7 @@ entities: pos: 21.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20050 components: - type: Transform @@ -104395,7 +105929,7 @@ entities: pos: 6.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20098 components: - type: Transform @@ -104417,6 +105951,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 20163 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 20164 components: - type: Transform @@ -104431,7 +105972,7 @@ entities: pos: 22.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20178 components: - type: Transform @@ -104439,7 +105980,7 @@ entities: pos: 22.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20179 components: - type: Transform @@ -104447,7 +105988,7 @@ entities: pos: 22.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20180 components: - type: Transform @@ -104455,7 +105996,7 @@ entities: pos: 22.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20186 components: - type: Transform @@ -104494,7 +106035,7 @@ entities: pos: 23.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20191 components: - type: Transform @@ -104502,7 +106043,7 @@ entities: pos: 24.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20192 components: - type: Transform @@ -104548,7 +106089,12 @@ entities: pos: 17.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 20281 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 5350 - uid: 20531 components: - type: Transform @@ -104563,21 +106109,21 @@ entities: pos: 23.5,-40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20593 components: - type: Transform pos: 23.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20594 components: - type: Transform pos: 23.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20595 components: - type: Transform @@ -104607,7 +106153,7 @@ entities: pos: 25.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20622 components: - type: Transform @@ -104649,28 +106195,28 @@ entities: pos: 4.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20642 components: - type: Transform pos: 4.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20643 components: - type: Transform pos: 4.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20644 components: - type: Transform pos: 4.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20662 components: - type: Transform @@ -104803,133 +106349,145 @@ entities: pos: -1.5,-61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20686 components: - type: Transform pos: -1.5,-60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20687 components: - type: Transform pos: -1.5,-59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20690 components: - type: Transform pos: -1.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20691 components: - type: Transform pos: -1.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20692 components: - type: Transform pos: -1.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20693 components: - type: Transform pos: -1.5,-53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20694 components: - type: Transform pos: -1.5,-52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20695 components: - type: Transform pos: -1.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20696 components: - type: Transform pos: -1.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20697 components: - type: Transform pos: -1.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20698 components: - type: Transform pos: -1.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20699 components: - type: Transform pos: -1.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20701 components: - type: Transform pos: -1.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20702 components: - type: Transform pos: -1.5,-44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20703 components: - type: Transform pos: -1.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20704 components: - type: Transform pos: -1.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20705 components: - type: Transform pos: -1.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20709 components: - type: Transform pos: -1.5,-37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 20713 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20716 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 5350 - uid: 20724 components: - type: Transform @@ -104952,7 +106510,7 @@ entities: pos: 26.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20877 components: - type: Transform @@ -104975,7 +106533,7 @@ entities: pos: 27.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20897 components: - type: Transform @@ -104983,7 +106541,7 @@ entities: pos: 28.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20938 components: - type: Transform @@ -104999,7 +106557,7 @@ entities: pos: -4.5,52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20970 components: - type: Transform @@ -105007,7 +106565,7 @@ entities: pos: -4.5,53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20971 components: - type: Transform @@ -105015,7 +106573,7 @@ entities: pos: -4.5,54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20972 components: - type: Transform @@ -105023,7 +106581,7 @@ entities: pos: -4.5,55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20973 components: - type: Transform @@ -105031,14 +106589,14 @@ entities: pos: -4.5,56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20996 components: - type: Transform pos: 32.5,-41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21003 components: - type: Transform @@ -105046,7 +106604,7 @@ entities: pos: 20.5,-56.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21009 components: - type: Transform @@ -105069,7 +106627,7 @@ entities: pos: 29.5,-55.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21029 components: - type: Transform @@ -105077,7 +106635,7 @@ entities: pos: -0.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21030 components: - type: Transform @@ -105085,7 +106643,7 @@ entities: pos: 0.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21031 components: - type: Transform @@ -105093,7 +106651,7 @@ entities: pos: 1.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21032 components: - type: Transform @@ -105101,7 +106659,7 @@ entities: pos: 2.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21033 components: - type: Transform @@ -105109,7 +106667,7 @@ entities: pos: 3.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21034 components: - type: Transform @@ -105117,42 +106675,42 @@ entities: pos: 4.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21035 components: - type: Transform pos: 29.5,-54.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21036 components: - type: Transform pos: 29.5,-53.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21037 components: - type: Transform pos: 29.5,-52.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21038 components: - type: Transform pos: 29.5,-51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21039 components: - type: Transform pos: 29.5,-50.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21043 components: - type: Transform @@ -105160,7 +106718,7 @@ entities: pos: 30.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21044 components: - type: Transform @@ -105168,7 +106726,7 @@ entities: pos: 31.5,-49.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21045 components: - type: Transform @@ -105176,7 +106734,7 @@ entities: pos: 32.5,-47.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21046 components: - type: Transform @@ -105184,7 +106742,7 @@ entities: pos: 32.5,-48.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21047 components: - type: Transform @@ -105192,7 +106750,7 @@ entities: pos: 32.5,-46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21077 components: - type: Transform @@ -105207,42 +106765,42 @@ entities: pos: 15.5,-20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21109 components: - type: Transform pos: 15.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21110 components: - type: Transform pos: 15.5,-22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21111 components: - type: Transform pos: 15.5,-23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21112 components: - type: Transform pos: 15.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21113 components: - type: Transform pos: 15.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21114 components: - type: Transform @@ -105250,7 +106808,7 @@ entities: pos: 16.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21116 components: - type: Transform @@ -105258,7 +106816,7 @@ entities: pos: 18.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21117 components: - type: Transform @@ -105266,7 +106824,7 @@ entities: pos: 19.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21118 components: - type: Transform @@ -105274,7 +106832,7 @@ entities: pos: 20.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21119 components: - type: Transform @@ -105282,7 +106840,7 @@ entities: pos: 21.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21120 components: - type: Transform @@ -105290,7 +106848,7 @@ entities: pos: 22.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21121 components: - type: Transform @@ -105298,7 +106856,7 @@ entities: pos: 23.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21122 components: - type: Transform @@ -105306,7 +106864,7 @@ entities: pos: 24.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21123 components: - type: Transform @@ -105314,7 +106872,7 @@ entities: pos: 25.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21124 components: - type: Transform @@ -105322,7 +106880,7 @@ entities: pos: 26.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21125 components: - type: Transform @@ -105330,7 +106888,7 @@ entities: pos: 27.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21126 components: - type: Transform @@ -105338,7 +106896,7 @@ entities: pos: 28.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21127 components: - type: Transform @@ -105346,7 +106904,7 @@ entities: pos: 29.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21128 components: - type: Transform @@ -105354,7 +106912,7 @@ entities: pos: 30.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21129 components: - type: Transform @@ -105362,7 +106920,7 @@ entities: pos: 31.5,-27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21130 components: - type: Transform @@ -105370,7 +106928,7 @@ entities: pos: 31.5,-28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21131 components: - type: Transform @@ -105378,7 +106936,7 @@ entities: pos: 31.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21132 components: - type: Transform @@ -105386,7 +106944,7 @@ entities: pos: 31.5,-30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21133 components: - type: Transform @@ -105394,7 +106952,7 @@ entities: pos: 31.5,-31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21134 components: - type: Transform @@ -105402,7 +106960,7 @@ entities: pos: 31.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21135 components: - type: Transform @@ -105410,7 +106968,7 @@ entities: pos: 31.5,-33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21136 components: - type: Transform @@ -105418,7 +106976,7 @@ entities: pos: 31.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21137 components: - type: Transform @@ -105426,7 +106984,7 @@ entities: pos: 31.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21138 components: - type: Transform @@ -105434,7 +106992,7 @@ entities: pos: 31.5,-36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21144 components: - type: Transform @@ -105442,7 +107000,7 @@ entities: pos: 21.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21146 components: - type: Transform @@ -105450,7 +107008,7 @@ entities: pos: 21.5,5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21147 components: - type: Transform @@ -105458,7 +107016,7 @@ entities: pos: 21.5,6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21148 components: - type: Transform @@ -105482,7 +107040,7 @@ entities: pos: -4.5,57.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21375 components: - type: Transform @@ -105490,7 +107048,7 @@ entities: pos: -4.5,58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21413 components: - type: Transform @@ -105498,7 +107056,7 @@ entities: pos: -3.5,59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21442 components: - type: Transform @@ -105506,7 +107064,7 @@ entities: pos: -1.5,59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21464 components: - type: Transform @@ -105514,7 +107072,7 @@ entities: pos: 29.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21465 components: - type: Transform @@ -105522,7 +107080,7 @@ entities: pos: 30.5,-17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21490 components: - type: Transform @@ -105530,7 +107088,7 @@ entities: pos: -0.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21491 components: - type: Transform @@ -105538,42 +107096,42 @@ entities: pos: 0.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21492 components: - type: Transform pos: -1.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21493 components: - type: Transform pos: -1.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21494 components: - type: Transform pos: -1.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21495 components: - type: Transform pos: -1.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21496 components: - type: Transform pos: -1.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21498 components: - type: Transform @@ -105581,7 +107139,7 @@ entities: pos: -2.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21499 components: - type: Transform @@ -105589,7 +107147,7 @@ entities: pos: -3.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21500 components: - type: Transform @@ -105597,7 +107155,7 @@ entities: pos: -4.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21501 components: - type: Transform @@ -105605,7 +107163,7 @@ entities: pos: -5.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21502 components: - type: Transform @@ -105613,7 +107171,7 @@ entities: pos: -6.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21504 components: - type: Transform @@ -105621,7 +107179,7 @@ entities: pos: -8.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21505 components: - type: Transform @@ -105629,7 +107187,7 @@ entities: pos: -9.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21506 components: - type: Transform @@ -105637,7 +107195,7 @@ entities: pos: -10.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21509 components: - type: Transform @@ -105645,7 +107203,7 @@ entities: pos: -2.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21510 components: - type: Transform @@ -105653,7 +107211,7 @@ entities: pos: -3.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21511 components: - type: Transform @@ -105661,7 +107219,7 @@ entities: pos: -4.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21513 components: - type: Transform @@ -105669,7 +107227,7 @@ entities: pos: -6.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21514 components: - type: Transform @@ -105677,7 +107235,7 @@ entities: pos: -7.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21515 components: - type: Transform @@ -105685,7 +107243,7 @@ entities: pos: -8.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21516 components: - type: Transform @@ -105693,7 +107251,7 @@ entities: pos: -9.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21517 components: - type: Transform @@ -105701,7 +107259,7 @@ entities: pos: -10.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21519 components: - type: Transform @@ -105709,7 +107267,7 @@ entities: pos: -11.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21520 components: - type: Transform @@ -105717,7 +107275,7 @@ entities: pos: -11.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21521 components: - type: Transform @@ -105725,7 +107283,7 @@ entities: pos: -11.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21522 components: - type: Transform @@ -105733,7 +107291,7 @@ entities: pos: -11.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21524 components: - type: Transform @@ -105741,7 +107299,7 @@ entities: pos: -12.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21525 components: - type: Transform @@ -105749,7 +107307,7 @@ entities: pos: -13.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21526 components: - type: Transform @@ -105757,7 +107315,7 @@ entities: pos: -14.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21527 components: - type: Transform @@ -105765,49 +107323,49 @@ entities: pos: -15.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21528 components: - type: Transform pos: -16.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21529 components: - type: Transform pos: -16.5,-68.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21530 components: - type: Transform pos: -16.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21531 components: - type: Transform pos: -16.5,-70.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21532 components: - type: Transform pos: -16.5,-71.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21533 components: - type: Transform pos: -16.5,-72.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21540 components: - type: Transform @@ -105815,7 +107373,7 @@ entities: pos: -19.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21541 components: - type: Transform @@ -105823,7 +107381,7 @@ entities: pos: -18.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21542 components: - type: Transform @@ -105831,7 +107389,7 @@ entities: pos: -17.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21543 components: - type: Transform @@ -105839,7 +107397,7 @@ entities: pos: -16.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21544 components: - type: Transform @@ -105847,7 +107405,7 @@ entities: pos: -15.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21545 components: - type: Transform @@ -105855,7 +107413,7 @@ entities: pos: -14.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21546 components: - type: Transform @@ -105863,7 +107421,7 @@ entities: pos: -13.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21547 components: - type: Transform @@ -105871,35 +107429,35 @@ entities: pos: -12.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21553 components: - type: Transform pos: -25.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21554 components: - type: Transform pos: -25.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21555 components: - type: Transform pos: -25.5,-64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21556 components: - type: Transform pos: -25.5,-65.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21559 components: - type: Transform @@ -105907,7 +107465,7 @@ entities: pos: -27.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21560 components: - type: Transform @@ -105915,7 +107473,7 @@ entities: pos: -28.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21561 components: - type: Transform @@ -105923,7 +107481,7 @@ entities: pos: -29.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21571 components: - type: Transform @@ -106336,7 +107894,7 @@ entities: pos: -5.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21642 components: - type: Transform @@ -106344,7 +107902,7 @@ entities: pos: -7.5,-70.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21652 components: - type: Transform @@ -106352,7 +107910,7 @@ entities: pos: -5.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21874 components: - type: Transform @@ -106414,7 +107972,7 @@ entities: pos: -2.5,60.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22144 components: - type: Transform @@ -106422,7 +107980,7 @@ entities: pos: -2.5,61.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22150 components: - type: Transform @@ -106430,7 +107988,7 @@ entities: pos: -2.5,62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22151 components: - type: Transform @@ -106438,7 +107996,7 @@ entities: pos: -2.5,63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22152 components: - type: Transform @@ -106446,7 +108004,7 @@ entities: pos: -2.5,64.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22153 components: - type: Transform @@ -106547,14 +108105,14 @@ entities: pos: -3.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22380 components: - type: Transform pos: 2.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22382 components: - type: Transform @@ -106562,7 +108120,7 @@ entities: pos: 1.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22384 components: - type: Transform @@ -106570,7 +108128,7 @@ entities: pos: -6.5,35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22385 components: - type: Transform @@ -106578,7 +108136,7 @@ entities: pos: -6.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22386 components: - type: Transform @@ -106586,7 +108144,7 @@ entities: pos: -6.5,37.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22403 components: - type: Transform @@ -106640,7 +108198,7 @@ entities: pos: -7.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22429 components: - type: Transform @@ -106648,7 +108206,7 @@ entities: pos: -6.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22430 components: - type: Transform @@ -106656,7 +108214,7 @@ entities: pos: -5.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22432 components: - type: Transform @@ -106664,7 +108222,7 @@ entities: pos: -4.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22436 components: - type: Transform @@ -106672,7 +108230,7 @@ entities: pos: -2.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22437 components: - type: Transform @@ -106680,7 +108238,7 @@ entities: pos: -1.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22438 components: - type: Transform @@ -106688,7 +108246,7 @@ entities: pos: -0.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22439 components: - type: Transform @@ -106696,7 +108254,7 @@ entities: pos: 0.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22440 components: - type: Transform @@ -106740,35 +108298,35 @@ entities: pos: -3.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22448 components: - type: Transform pos: -3.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22449 components: - type: Transform pos: -3.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22450 components: - type: Transform pos: -3.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22451 components: - type: Transform pos: -3.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22452 components: - type: Transform @@ -106790,7 +108348,7 @@ entities: pos: 10.5,41.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22472 components: - type: Transform @@ -106861,14 +108419,14 @@ entities: pos: 10.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22500 components: - type: Transform pos: 10.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22529 components: - type: Transform @@ -106876,7 +108434,7 @@ entities: pos: 9.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22530 components: - type: Transform @@ -106884,7 +108442,7 @@ entities: pos: 8.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22531 components: - type: Transform @@ -106892,7 +108450,7 @@ entities: pos: 7.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22532 components: - type: Transform @@ -106900,7 +108458,7 @@ entities: pos: 6.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22535 components: - type: Transform @@ -106908,7 +108466,7 @@ entities: pos: 4.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22536 components: - type: Transform @@ -106916,7 +108474,7 @@ entities: pos: 3.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22538 components: - type: Transform @@ -106988,7 +108546,7 @@ entities: pos: -13.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22563 components: - type: Transform @@ -106996,7 +108554,7 @@ entities: pos: -14.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22564 components: - type: Transform @@ -107004,7 +108562,7 @@ entities: pos: -15.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22568 components: - type: Transform @@ -107012,7 +108570,7 @@ entities: pos: -16.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22569 components: - type: Transform @@ -107020,7 +108578,7 @@ entities: pos: -17.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22571 components: - type: Transform @@ -107028,7 +108586,7 @@ entities: pos: -18.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22573 components: - type: Transform @@ -107036,7 +108594,7 @@ entities: pos: -19.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22574 components: - type: Transform @@ -107084,7 +108642,7 @@ entities: pos: -26.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23107 components: - type: Transform @@ -107092,7 +108650,7 @@ entities: pos: -26.5,-70.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23117 components: - type: Transform @@ -107107,7 +108665,7 @@ entities: pos: 3.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23328 components: - type: Transform @@ -107161,7 +108719,7 @@ entities: pos: 52.5,15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23391 components: - type: Transform @@ -107169,7 +108727,7 @@ entities: pos: 51.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23392 components: - type: Transform @@ -107177,7 +108735,7 @@ entities: pos: 51.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23393 components: - type: Transform @@ -107185,7 +108743,7 @@ entities: pos: 51.5,19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23394 components: - type: Transform @@ -107193,7 +108751,7 @@ entities: pos: 51.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23396 components: - type: Transform @@ -107201,7 +108759,7 @@ entities: pos: 51.5,22.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23397 components: - type: Transform @@ -107209,7 +108767,7 @@ entities: pos: 51.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23484 components: - type: Transform @@ -107217,7 +108775,7 @@ entities: pos: 55.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23485 components: - type: Transform @@ -107225,7 +108783,7 @@ entities: pos: 56.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23486 components: - type: Transform @@ -107233,7 +108791,7 @@ entities: pos: 57.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23487 components: - type: Transform @@ -107241,7 +108799,7 @@ entities: pos: 58.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23488 components: - type: Transform @@ -107249,7 +108807,7 @@ entities: pos: 59.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23489 components: - type: Transform @@ -107257,7 +108815,7 @@ entities: pos: 60.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23492 components: - type: Transform @@ -107265,7 +108823,7 @@ entities: pos: 62.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23493 components: - type: Transform @@ -107273,7 +108831,7 @@ entities: pos: 63.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23494 components: - type: Transform @@ -107281,7 +108839,7 @@ entities: pos: 64.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23495 components: - type: Transform @@ -107289,7 +108847,7 @@ entities: pos: 65.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23501 components: - type: Transform @@ -107297,7 +108855,7 @@ entities: pos: 66.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23502 components: - type: Transform @@ -107305,7 +108863,7 @@ entities: pos: 67.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23503 components: - type: Transform @@ -107313,31 +108871,7 @@ entities: pos: 68.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,4.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,5.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23508 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,6.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23511 components: - type: Transform @@ -107502,7 +109036,7 @@ entities: pos: 50.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23569 components: - type: Transform @@ -107510,7 +109044,7 @@ entities: pos: 49.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23570 components: - type: Transform @@ -107518,7 +109052,7 @@ entities: pos: 48.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23571 components: - type: Transform @@ -107526,7 +109060,7 @@ entities: pos: 47.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23572 components: - type: Transform @@ -107534,7 +109068,7 @@ entities: pos: 46.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23841 components: - type: Transform @@ -107645,6 +109179,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#990000FF' + - uid: 24461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-28.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 24517 components: - type: Transform @@ -107652,7 +109194,7 @@ entities: pos: -4.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24523 components: - type: Transform @@ -109082,6 +110624,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 26843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 27070 components: - type: Transform @@ -109101,7 +110651,7 @@ entities: pos: 53.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 27156 components: - type: Transform @@ -109124,11 +110674,6 @@ entities: - type: Transform pos: 73.5,-38.5 parent: 5350 - - uid: 27196 - components: - - type: Transform - pos: 71.5,-38.5 - parent: 5350 - uid: 27201 components: - type: Transform @@ -109180,13 +110725,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#947507FF' - - uid: 27208 - components: - - type: Transform - pos: 66.5,-27.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - uid: 27209 components: - type: Transform @@ -109388,22 +110926,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 28119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-31.5 - parent: 5350 - - type: AtmosPipeColor - color: '#3AB334FF' - - uid: 28120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-30.5 - parent: 5350 - - type: AtmosPipeColor - color: '#3AB334FF' - uid: 28121 components: - type: Transform @@ -109428,30 +110950,6 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#3AB334FF' - - uid: 28124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-26.5 - parent: 5350 - - type: AtmosPipeColor - color: '#3AB334FF' - - uid: 28125 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-26.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 28126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-28.5 - parent: 5350 - - type: AtmosPipeColor - color: '#947507FF' - uid: 28127 components: - type: Transform @@ -109475,7 +110973,7 @@ entities: pos: -3.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28181 components: - type: Transform @@ -109483,7 +110981,7 @@ entities: pos: -2.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28182 components: - type: Transform @@ -109491,7 +110989,7 @@ entities: pos: -1.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28183 components: - type: Transform @@ -109499,7 +110997,7 @@ entities: pos: 0.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28184 components: - type: Transform @@ -109507,7 +111005,7 @@ entities: pos: 1.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28185 components: - type: Transform @@ -109515,7 +111013,47 @@ entities: pos: -0.5,0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 28354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 73.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 28358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,7.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 179 @@ -109555,7 +111093,7 @@ entities: pos: -9.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 296 components: - type: Transform @@ -109579,7 +111117,7 @@ entities: pos: 15.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 363 components: - type: Transform @@ -109587,14 +111125,14 @@ entities: pos: -5.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 367 components: - type: Transform pos: -1.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 402 components: - type: Transform @@ -109602,7 +111140,7 @@ entities: pos: -20.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 414 components: - type: Transform @@ -109610,7 +111148,7 @@ entities: pos: -17.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 422 components: - type: Transform @@ -109626,7 +111164,7 @@ entities: pos: -1.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 444 components: - type: Transform @@ -109634,7 +111172,7 @@ entities: pos: 12.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 452 components: - type: Transform @@ -109704,7 +111242,7 @@ entities: pos: -8.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 578 components: - type: Transform @@ -109712,7 +111250,7 @@ entities: pos: 3.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 582 components: - type: Transform @@ -109720,7 +111258,7 @@ entities: pos: -12.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 596 components: - type: Transform @@ -109736,7 +111274,7 @@ entities: pos: 3.5,-4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 602 components: - type: Transform @@ -109759,7 +111297,7 @@ entities: pos: -8.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 632 components: - type: Transform @@ -109807,7 +111345,7 @@ entities: pos: -5.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1602 components: - type: Transform @@ -109830,7 +111368,7 @@ entities: pos: 25.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2499 components: - type: Transform @@ -109860,14 +111398,14 @@ entities: pos: 25.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2517 components: - type: Transform pos: 20.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2541 components: - type: Transform @@ -109890,14 +111428,14 @@ entities: pos: -12.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2568 components: - type: Transform pos: 33.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2596 components: - type: Transform @@ -109905,14 +111443,14 @@ entities: pos: 28.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2605 components: - type: Transform pos: 28.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2631 components: - type: Transform @@ -109920,7 +111458,7 @@ entities: pos: 20.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2639 components: - type: Transform @@ -109950,7 +111488,7 @@ entities: pos: 40.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2715 components: - type: Transform @@ -109971,7 +111509,7 @@ entities: pos: 31.5,-26.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3484 components: - type: Transform @@ -109979,7 +111517,7 @@ entities: pos: -29.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3623 components: - type: Transform @@ -109987,7 +111525,7 @@ entities: pos: -33.5,11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3708 components: - type: Transform @@ -109995,7 +111533,7 @@ entities: pos: 15.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3843 components: - type: Transform @@ -110010,7 +111548,7 @@ entities: pos: -50.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3969 components: - type: Transform @@ -110025,14 +111563,14 @@ entities: pos: -27.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3991 components: - type: Transform pos: -31.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4004 components: - type: Transform @@ -110048,7 +111586,7 @@ entities: pos: -45.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4009 components: - type: Transform @@ -110063,14 +111601,14 @@ entities: pos: -27.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4227 components: - type: Transform pos: -20.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4273 components: - type: Transform @@ -110118,7 +111656,7 @@ entities: pos: -33.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4673 components: - type: Transform @@ -110150,7 +111688,7 @@ entities: pos: -32.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4689 components: - type: Transform @@ -110159,13 +111697,21 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 4784 components: - type: Transform pos: 4.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4795 components: - type: Transform @@ -110173,7 +111719,7 @@ entities: pos: 7.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4961 components: - type: Transform @@ -110204,7 +111750,7 @@ entities: pos: -55.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5458 components: - type: Transform @@ -110212,14 +111758,14 @@ entities: pos: -55.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5477 components: - type: Transform pos: -58.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5484 components: - type: Transform @@ -110227,7 +111773,7 @@ entities: pos: -58.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5492 components: - type: Transform @@ -110257,7 +111803,7 @@ entities: pos: -60.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5528 components: - type: Transform @@ -110325,19 +111871,21 @@ entities: pos: -47.5,-6.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5868 components: - type: Transform pos: 53.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6266 components: - type: Transform pos: 54.5,-7.5 parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6486 components: - type: Transform @@ -110345,7 +111893,7 @@ entities: pos: 1.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6641 components: - type: Transform @@ -110368,7 +111916,7 @@ entities: pos: -1.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6867 components: - type: Transform @@ -110383,7 +111931,7 @@ entities: pos: 5.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6891 components: - type: Transform @@ -110391,7 +111939,7 @@ entities: pos: 2.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6892 components: - type: Transform @@ -110399,7 +111947,7 @@ entities: pos: 2.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6920 components: - type: Transform @@ -110415,7 +111963,7 @@ entities: pos: 12.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6943 components: - type: Transform @@ -110431,7 +111979,7 @@ entities: pos: 2.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7034 components: - type: Transform @@ -110447,7 +111995,7 @@ entities: pos: -15.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7095 components: - type: Transform @@ -110455,14 +112003,14 @@ entities: pos: -17.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7104 components: - type: Transform pos: -22.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7124 components: - type: Transform @@ -110476,7 +112024,7 @@ entities: pos: -28.5,32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7294 components: - type: Transform @@ -110484,7 +112032,7 @@ entities: pos: -31.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7308 components: - type: Transform @@ -110564,14 +112112,14 @@ entities: pos: -1.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7625 components: - type: Transform pos: 5.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7669 components: - type: Transform @@ -110579,7 +112127,7 @@ entities: pos: 13.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7715 components: - type: Transform @@ -110594,7 +112142,7 @@ entities: pos: 2.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7840 components: - type: Transform @@ -110602,14 +112150,14 @@ entities: pos: -6.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7845 components: - type: Transform pos: 12.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7870 components: - type: Transform @@ -110625,7 +112173,7 @@ entities: pos: -11.5,43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7996 components: - type: Transform @@ -110640,7 +112188,7 @@ entities: pos: 31.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8533 components: - type: Transform @@ -110656,7 +112204,7 @@ entities: pos: -20.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8551 components: - type: Transform @@ -110687,7 +112235,7 @@ entities: pos: 28.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8690 components: - type: Transform @@ -110695,7 +112243,7 @@ entities: pos: 35.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8695 components: - type: Transform @@ -110703,7 +112251,7 @@ entities: pos: 20.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8697 components: - type: Transform @@ -110711,7 +112259,7 @@ entities: pos: 26.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8699 components: - type: Transform @@ -110719,7 +112267,7 @@ entities: pos: 29.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8705 components: - type: Transform @@ -110734,7 +112282,7 @@ entities: pos: 35.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8711 components: - type: Transform @@ -110742,7 +112290,7 @@ entities: pos: 35.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8716 components: - type: Transform @@ -110750,7 +112298,7 @@ entities: pos: 29.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8717 components: - type: Transform @@ -110758,7 +112306,7 @@ entities: pos: 35.5,25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8722 components: - type: Transform @@ -110766,7 +112314,7 @@ entities: pos: 35.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8723 components: - type: Transform @@ -110774,7 +112322,7 @@ entities: pos: 35.5,33.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8731 components: - type: Transform @@ -110790,7 +112338,7 @@ entities: pos: 33.5,17.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8746 components: - type: Transform @@ -110805,7 +112353,7 @@ entities: pos: 35.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8749 components: - type: Transform @@ -110851,7 +112399,7 @@ entities: pos: 29.5,42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8788 components: - type: Transform @@ -110859,7 +112407,7 @@ entities: pos: 31.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8791 components: - type: Transform @@ -110882,7 +112430,7 @@ entities: pos: 35.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8887 components: - type: Transform @@ -110914,7 +112462,7 @@ entities: pos: 35.5,39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8991 components: - type: Transform @@ -110922,7 +112470,7 @@ entities: pos: 46.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8992 components: - type: Transform @@ -110930,7 +112478,7 @@ entities: pos: 46.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9002 components: - type: Transform @@ -111021,7 +112569,7 @@ entities: pos: 7.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9570 components: - type: Transform @@ -111029,7 +112577,7 @@ entities: pos: 3.5,-5.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9573 components: - type: Transform @@ -111037,14 +112585,14 @@ entities: pos: -20.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9613 components: - type: Transform pos: -2.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9650 components: - type: Transform @@ -111052,7 +112600,7 @@ entities: pos: -13.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9692 components: - type: Transform @@ -111060,7 +112608,7 @@ entities: pos: -11.5,34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9693 components: - type: Transform @@ -111068,14 +112616,14 @@ entities: pos: -11.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9708 components: - type: Transform pos: -12.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9727 components: - type: Transform @@ -111091,14 +112639,14 @@ entities: pos: -60.5,-16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9810 components: - type: Transform pos: -9.5,31.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10055 components: - type: Transform @@ -111114,7 +112662,7 @@ entities: pos: 52.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10156 components: - type: Transform @@ -111122,7 +112670,7 @@ entities: pos: -15.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10184 components: - type: Transform @@ -111130,14 +112678,14 @@ entities: pos: 15.5,-10.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10335 components: - type: Transform pos: -15.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10356 components: - type: Transform @@ -111145,7 +112693,7 @@ entities: pos: 12.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10370 components: - type: Transform @@ -111153,7 +112701,7 @@ entities: pos: 10.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10377 components: - type: Transform @@ -111161,7 +112709,7 @@ entities: pos: 33.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10382 components: - type: Transform @@ -111169,7 +112717,7 @@ entities: pos: -21.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10415 components: - type: Transform @@ -111200,7 +112748,7 @@ entities: pos: -12.5,-25.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10725 components: - type: Transform @@ -111208,14 +112756,14 @@ entities: pos: 21.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10795 components: - type: Transform pos: 7.5,-34.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10951 components: - type: Transform @@ -111238,7 +112786,7 @@ entities: pos: -54.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11055 components: - type: Transform @@ -111247,10 +112795,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11076 + - uid: 11099 components: - type: Transform - pos: 60.5,0.5 + rot: 3.141592653589793 rad + pos: 59.5,-2.5 parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' @@ -111285,7 +112834,7 @@ entities: pos: 51.5,13.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11494 components: - type: Transform @@ -111293,7 +112842,7 @@ entities: pos: 16.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11495 components: - type: Transform @@ -111316,7 +112865,7 @@ entities: pos: 54.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11545 components: - type: Transform @@ -111324,7 +112873,7 @@ entities: pos: 54.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11557 components: - type: Transform @@ -111332,7 +112881,7 @@ entities: pos: 54.5,2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11558 components: - type: Transform @@ -111340,7 +112889,7 @@ entities: pos: 54.5,-1.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11594 components: - type: Transform @@ -111355,7 +112904,7 @@ entities: pos: 61.5,7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11639 components: - type: Transform @@ -111406,7 +112955,7 @@ entities: pos: 30.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12410 components: - type: Transform @@ -111437,7 +112986,7 @@ entities: pos: 52.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12788 components: - type: Transform @@ -111453,14 +113002,14 @@ entities: pos: 35.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12900 components: - type: Transform pos: -26.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12904 components: - type: Transform @@ -111476,7 +113025,7 @@ entities: pos: 35.5,40.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13243 components: - type: Transform @@ -111499,7 +113048,7 @@ entities: pos: -27.5,-0.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14120 components: - type: Transform @@ -111515,7 +113064,7 @@ entities: pos: -47.5,-7.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14294 components: - type: Transform @@ -111537,7 +113086,7 @@ entities: pos: -40.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14472 components: - type: Transform @@ -111561,7 +113110,7 @@ entities: pos: 8.5,-24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14582 components: - type: Transform @@ -111569,7 +113118,7 @@ entities: pos: -21.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14594 components: - type: Transform @@ -111577,7 +113126,7 @@ entities: pos: -21.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14623 components: - type: Transform @@ -111585,14 +113134,14 @@ entities: pos: -21.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14626 components: - type: Transform pos: -31.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14647 components: - type: Transform @@ -111653,7 +113202,7 @@ entities: pos: -21.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15318 components: - type: Transform @@ -111676,7 +113225,7 @@ entities: pos: -5.5,-8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15422 components: - type: Transform @@ -111700,14 +113249,14 @@ entities: pos: -12.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15467 components: - type: Transform pos: -20.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15472 components: - type: Transform @@ -111723,7 +113272,14 @@ entities: pos: -26.5,-29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 15490 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 5350 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15532 components: - type: Transform @@ -111739,7 +113295,7 @@ entities: pos: -26.5,-32.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15656 components: - type: Transform @@ -111770,7 +113326,7 @@ entities: pos: -2.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16368 components: - type: Transform @@ -111794,21 +113350,21 @@ entities: pos: -1.5,-58.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16414 components: - type: Transform pos: -9.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16532 components: - type: Transform pos: -11.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16557 components: - type: Transform @@ -111816,7 +113372,7 @@ entities: pos: -21.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16724 components: - type: Transform @@ -111824,7 +113380,7 @@ entities: pos: -1.5,-35.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17341 components: - type: Transform @@ -111832,21 +113388,21 @@ entities: pos: 8.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17390 components: - type: Transform pos: -31.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17427 components: - type: Transform pos: -27.5,-45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17484 components: - type: Transform @@ -111862,7 +113418,7 @@ entities: pos: -35.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17526 components: - type: Transform @@ -111870,7 +113426,7 @@ entities: pos: -39.5,20.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17694 components: - type: Transform @@ -111893,7 +113449,7 @@ entities: pos: -11.5,46.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17749 components: - type: Transform @@ -111901,7 +113457,7 @@ entities: pos: -11.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17750 components: - type: Transform @@ -111917,7 +113473,7 @@ entities: pos: -9.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18215 components: - type: Transform @@ -111940,7 +113496,7 @@ entities: pos: -47.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18401 components: - type: Transform @@ -111948,7 +113504,7 @@ entities: pos: -5.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18403 components: - type: Transform @@ -111956,7 +113512,7 @@ entities: pos: -1.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18458 components: - type: Transform @@ -111972,7 +113528,7 @@ entities: pos: -57.5,-12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18563 components: - type: Transform @@ -111980,7 +113536,7 @@ entities: pos: 29.5,-39.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18967 components: - type: Transform @@ -112011,7 +113567,7 @@ entities: pos: 12.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19070 components: - type: Transform @@ -112032,7 +113588,15 @@ entities: pos: 16.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 19299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 5350 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 19302 components: - type: Transform @@ -112040,7 +113604,7 @@ entities: pos: -1.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19306 components: - type: Transform @@ -112065,6 +113629,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 19407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 5350 + - type: AtmosPipeColor + color: '#3AB334FF' - uid: 19473 components: - type: Transform @@ -112072,7 +113644,7 @@ entities: pos: 18.5,-43.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19525 components: - type: Transform @@ -112112,7 +113684,7 @@ entities: pos: -4.5,51.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19841 components: - type: Transform @@ -112121,20 +113693,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20049 - components: - - type: Transform - pos: 5.5,-38.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 20195 components: - type: Transform pos: 23.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20206 components: - type: Transform @@ -112150,7 +113715,7 @@ entities: pos: 22.5,-38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20361 components: - type: Transform @@ -112181,7 +113746,7 @@ entities: pos: 53.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20613 components: - type: Transform @@ -112235,7 +113800,7 @@ entities: pos: -1.5,-62.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21105 components: - type: Transform @@ -112251,7 +113816,7 @@ entities: pos: 21.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21168 components: - type: Transform @@ -112259,7 +113824,7 @@ entities: pos: 52.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21253 components: - type: Transform @@ -112275,7 +113840,7 @@ entities: pos: -2.5,59.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21466 components: - type: Transform @@ -112283,7 +113848,7 @@ entities: pos: 30.5,-21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21489 components: - type: Transform @@ -112291,7 +113856,7 @@ entities: pos: -1.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21497 components: - type: Transform @@ -112299,7 +113864,7 @@ entities: pos: -1.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21503 components: - type: Transform @@ -112314,7 +113879,7 @@ entities: pos: -11.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21512 components: - type: Transform @@ -112322,7 +113887,7 @@ entities: pos: -5.5,-63.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21518 components: - type: Transform @@ -112330,7 +113895,7 @@ entities: pos: -11.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21557 components: - type: Transform @@ -112338,7 +113903,7 @@ entities: pos: -25.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21565 components: - type: Transform @@ -112393,7 +113958,7 @@ entities: pos: -7.5,-69.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21592 components: - type: Transform @@ -112441,7 +114006,7 @@ entities: pos: 2.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22377 components: - type: Transform @@ -112456,7 +114021,7 @@ entities: pos: 2.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22424 components: - type: Transform @@ -112471,7 +114036,7 @@ entities: pos: -3.5,45.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22468 components: - type: Transform @@ -112493,7 +114058,7 @@ entities: pos: 5.5,38.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23375 components: - type: Transform @@ -112509,7 +114074,7 @@ entities: pos: 51.5,14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23395 components: - type: Transform @@ -112517,7 +114082,7 @@ entities: pos: 51.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23533 components: - type: Transform @@ -112549,7 +114114,7 @@ entities: pos: 15.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25558 components: - type: Transform @@ -112714,7 +114279,7 @@ entities: pos: 45.5,-3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8996 components: - type: Transform @@ -112722,7 +114287,7 @@ entities: pos: 45.5,-2.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10163 components: - type: Transform @@ -112730,7 +114295,7 @@ entities: pos: 28.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10182 components: - type: Transform @@ -112738,7 +114303,7 @@ entities: pos: 29.5,12.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10806 components: - type: Transform @@ -112754,7 +114319,7 @@ entities: pos: 51.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10947 components: - type: Transform @@ -112762,7 +114327,7 @@ entities: pos: 51.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11120 components: - type: Transform @@ -112825,21 +114390,21 @@ entities: pos: -58.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18508 components: - type: Transform pos: -57.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19329 components: - type: Transform pos: 18.5,-42.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19401 components: - type: Transform @@ -112900,7 +114465,7 @@ entities: pos: 52.5,-19.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11225 components: - type: MetaData @@ -112911,6 +114476,13 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11239 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 5350 + - type: AtmosPipeColor + color: '#947507FF' - uid: 12563 components: - type: MetaData @@ -112976,6 +114548,11 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#6F2498FF' + - uid: 19201 + components: + - type: Transform + pos: 71.5,-38.5 + parent: 5350 - uid: 19360 components: - type: MetaData @@ -113043,6 +114620,22 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 25996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,1.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 27071 components: - type: Transform @@ -113096,6 +114689,15 @@ entities: rot: -1.5707963267948966 rad pos: 29.5,-35.5 parent: 5350 + - type: GasThermoMachine + targetTemperature: 200.15 + - type: ApcPowerReceiver + powerDisabled: False + - uid: 22353 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 5350 - uid: 26312 components: - type: Transform @@ -113109,15 +114711,28 @@ entities: parent: 5350 - proto: GasThermoMachineHeater entities: - - uid: 11366 + - uid: 11797 components: - type: Transform - pos: 56.5,-18.5 + pos: 45.5,-13.5 parent: 5350 - - uid: 11797 + - uid: 28273 components: - type: Transform - pos: 45.5,-13.5 + rot: 1.5707963267948966 rad + pos: 58.5,-4.5 + parent: 5350 + - uid: 28274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-5.5 + parent: 5350 + - uid: 28276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,-6.5 parent: 5350 - proto: GasValve entities: @@ -113195,7 +114810,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 7263 + - 15867 - type: AtmosPipeColor color: '#0055CCFF' - uid: 771 @@ -113206,7 +114821,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 1455 + - 465 - type: AtmosPipeColor color: '#0055CCFF' - uid: 837 @@ -113314,6 +114929,9 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-6.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 18016 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3268 @@ -113341,6 +114959,9 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24453 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4244 @@ -113503,6 +115124,8 @@ entities: - type: DeviceNetwork deviceLists: - 24510 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6453 components: - type: Transform @@ -113658,15 +115281,6 @@ entities: - type: DeviceNetwork deviceLists: - 24515 - - uid: 7955 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-45.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 16342 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8070 @@ -113697,6 +115311,9 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-14.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 686 - type: AtmosPipeColor color: '#0055CCFF' - uid: 9614 @@ -113794,7 +115411,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 5438 + - 25984 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10793 @@ -113809,14 +115426,6 @@ entities: - 13729 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-0.5 - parent: 5350 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11105 components: - type: Transform @@ -113828,17 +115437,6 @@ entities: - 24361 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-24.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 28106 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11929 components: - type: Transform @@ -113955,7 +115553,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 4159 + - 25987 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12709 @@ -113977,7 +115575,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24461 + - 14507 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12792 @@ -114001,6 +115599,9 @@ entities: rot: 3.141592653589793 rad pos: 10.5,13.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25995 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12990 @@ -114011,7 +115612,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 13496 + - 25995 - type: AtmosPipeColor color: '#0055CCFF' - uid: 12994 @@ -114022,7 +115623,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 13496 + - 25995 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13004 @@ -114140,6 +115741,14 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-51.5 + parent: 5350 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14128 components: - type: Transform @@ -114212,6 +115821,17 @@ entities: parent: 5350 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-25.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 28106 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 15328 components: - type: Transform @@ -114261,6 +115881,19 @@ entities: - type: Transform pos: -16.5,-30.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24575 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15591 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 28350 - type: AtmosPipeColor color: '#0055CCFF' - uid: 15603 @@ -114285,6 +115918,17 @@ entities: - 176 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 3881 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 16371 components: - type: Transform @@ -114299,6 +115943,9 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-50.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 10405 - type: AtmosPipeColor color: '#0055CCFF' - uid: 16422 @@ -114306,6 +115953,9 @@ entities: - type: Transform pos: 7.5,-19.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16587 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17267 @@ -114393,6 +116043,9 @@ entities: rot: 3.141592653589793 rad pos: -30.5,-15.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25983 - type: AtmosPipeColor color: '#0055CCFF' - uid: 17705 @@ -114503,6 +116156,9 @@ entities: - type: Transform pos: -7.5,-29.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 15053 - type: AtmosPipeColor color: '#0055CCFF' - uid: 18471 @@ -114568,12 +116224,26 @@ entities: - 6209 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 18936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-2.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 9586 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 19001 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,32.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24506 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19002 @@ -114604,6 +116274,9 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-46.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 15537 - type: AtmosPipeColor color: '#0055CCFF' - uid: 19366 @@ -114617,17 +116290,6 @@ entities: - 19406 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-46.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 19310 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 19618 components: - type: Transform @@ -114910,7 +116572,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 23905 + - 15447 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23379 @@ -114918,6 +116580,9 @@ entities: - type: Transform pos: 50.5,28.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 15447 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23380 @@ -114938,7 +116603,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 23905 + - 15447 - type: AtmosPipeColor color: '#0055CCFF' - uid: 23510 @@ -114949,7 +116614,7 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 11665 + - 23602 - type: AtmosPipeColor color: '#0055CCFF' - uid: 24630 @@ -115027,6 +116692,9 @@ entities: - type: Transform pos: 109.5,1.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 - type: AtmosPipeColor color: '#0055CCFF' - uid: 25916 @@ -115102,7 +116770,7 @@ entities: pos: 16.5,3.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 717 components: - type: Transform @@ -115113,7 +116781,7 @@ entities: deviceLists: - 5056 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 755 components: - type: Transform @@ -115121,9 +116789,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 7263 + - 15867 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 772 components: - type: Transform @@ -115132,9 +116800,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 1455 + - 465 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 827 components: - type: Transform @@ -115142,7 +116810,7 @@ entities: pos: -41.5,24.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 841 components: - type: Transform @@ -115153,7 +116821,7 @@ entities: deviceLists: - 15191 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 851 components: - type: Transform @@ -115164,7 +116832,18 @@ entities: deviceLists: - 12282 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-44.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 3881 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1151 components: - type: Transform @@ -115175,7 +116854,7 @@ entities: deviceLists: - 24578 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1188 components: - type: Transform @@ -115186,7 +116865,7 @@ entities: deviceLists: - 23104 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1581 components: - type: Transform @@ -115201,7 +116880,7 @@ entities: pos: -11.5,-14.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2640 components: - type: Transform @@ -115212,7 +116891,7 @@ entities: deviceLists: - 24468 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2641 components: - type: Transform @@ -115223,7 +116902,7 @@ entities: deviceLists: - 5578 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2658 components: - type: Transform @@ -115234,14 +116913,14 @@ entities: deviceLists: - 1369 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2698 components: - type: Transform pos: 41.5,-11.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2699 components: - type: Transform @@ -115249,15 +116928,18 @@ entities: pos: 37.5,-15.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2707 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-3.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 18016 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3028 components: - type: Transform @@ -115268,7 +116950,7 @@ entities: deviceLists: - 24443 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3571 components: - type: Transform @@ -115278,14 +116960,14 @@ entities: deviceLists: - 4375 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4146 components: - type: Transform pos: -28.5,16.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4330 components: - type: Transform @@ -115296,7 +116978,7 @@ entities: deviceLists: - 24349 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4403 components: - type: Transform @@ -115307,7 +116989,7 @@ entities: deviceLists: - 24345 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4418 components: - type: Transform @@ -115318,7 +117000,7 @@ entities: deviceLists: - 24510 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4698 components: - type: Transform @@ -115329,7 +117011,7 @@ entities: deviceLists: - 18226 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4754 components: - type: Transform @@ -115339,7 +117021,7 @@ entities: deviceLists: - 24352 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 4796 components: - type: Transform @@ -115349,7 +117031,7 @@ entities: deviceLists: - 24451 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5015 components: - type: Transform @@ -115359,7 +117041,7 @@ entities: deviceLists: - 24359 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5249 components: - type: Transform @@ -115370,7 +117052,17 @@ entities: deviceLists: - 3141 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 5404 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 28106 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5503 components: - type: Transform @@ -115381,7 +117073,7 @@ entities: deviceLists: - 5976 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5536 components: - type: Transform @@ -115392,7 +117084,7 @@ entities: deviceLists: - 9894 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5839 components: - type: Transform @@ -115400,7 +117092,7 @@ entities: pos: -66.5,-18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6116 components: - type: Transform @@ -115411,7 +117103,7 @@ entities: deviceLists: - 19295 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6456 components: - type: Transform @@ -115422,7 +117114,7 @@ entities: deviceLists: - 6735 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6477 components: - type: Transform @@ -115433,7 +117125,7 @@ entities: deviceLists: - 22543 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6524 components: - type: Transform @@ -115444,14 +117136,14 @@ entities: deviceLists: - 24361 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6661 components: - type: Transform pos: 10.5,44.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6839 components: - type: Transform @@ -115462,7 +117154,7 @@ entities: deviceLists: - 6735 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6919 components: - type: Transform @@ -115470,7 +117162,7 @@ entities: pos: -31.5,-9.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7059 components: - type: Transform @@ -115481,7 +117173,7 @@ entities: deviceLists: - 24515 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7067 components: - type: Transform @@ -115492,7 +117184,7 @@ entities: deviceLists: - 22224 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7083 components: - type: Transform @@ -115502,7 +117194,7 @@ entities: deviceLists: - 19444 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7084 components: - type: Transform @@ -115512,7 +117204,7 @@ entities: deviceLists: - 19444 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7094 components: - type: Transform @@ -115523,7 +117215,7 @@ entities: deviceLists: - 6735 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7098 components: - type: Transform @@ -115531,7 +117223,7 @@ entities: pos: 16.5,30.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7103 components: - type: Transform @@ -115542,7 +117234,7 @@ entities: deviceLists: - 7196 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7114 components: - type: Transform @@ -115552,7 +117244,7 @@ entities: deviceLists: - 24419 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7270 components: - type: Transform @@ -115560,7 +117252,7 @@ entities: pos: -1.5,28.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7340 components: - type: Transform @@ -115570,7 +117262,7 @@ entities: deviceLists: - 22592 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7345 components: - type: Transform @@ -115581,7 +117273,7 @@ entities: deviceLists: - 8409 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7504 components: - type: Transform @@ -115589,7 +117281,7 @@ entities: pos: 1.5,29.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7648 components: - type: Transform @@ -115600,7 +117292,7 @@ entities: deviceLists: - 6735 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7843 components: - type: Transform @@ -115611,15 +117303,18 @@ entities: deviceLists: - 22545 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9292 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-14.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 686 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9360 components: - type: Transform @@ -115630,7 +117325,7 @@ entities: deviceLists: - 19078 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9502 components: - type: Transform @@ -115638,7 +117333,7 @@ entities: pos: -21.5,27.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9676 components: - type: Transform @@ -115650,7 +117345,7 @@ entities: - 1523 - 24566 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9806 components: - type: Transform @@ -115661,7 +117356,7 @@ entities: deviceLists: - 67 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10374 components: - type: Transform @@ -115671,7 +117366,7 @@ entities: deviceLists: - 16580 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10380 components: - type: Transform @@ -115681,7 +117376,7 @@ entities: deviceLists: - 24464 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10411 components: - type: Transform @@ -115689,7 +117384,7 @@ entities: pos: -37.5,4.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10789 components: - type: Transform @@ -115699,7 +117394,7 @@ entities: deviceLists: - 24343 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10790 components: - type: Transform @@ -115708,9 +117403,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 5438 + - 25984 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10792 components: - type: Transform @@ -115721,7 +117416,17 @@ entities: - 1308 - 13729 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 11253 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 9586 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11593 components: - type: Transform @@ -115731,7 +117436,7 @@ entities: deviceLists: - 11591 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11791 components: - type: Transform @@ -115741,15 +117446,7 @@ entities: deviceLists: - 24340 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-1.5 - parent: 5350 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11834 components: - type: MetaData @@ -115762,7 +117459,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - type: Label currentLabel: Engineering - type: NameModifier @@ -115777,7 +117474,7 @@ entities: deviceLists: - 24458 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11926 components: - type: Transform @@ -115787,7 +117484,7 @@ entities: deviceLists: - 24337 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12116 components: - type: Transform @@ -115798,7 +117495,7 @@ entities: deviceLists: - 24324 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12137 components: - type: Transform @@ -115809,7 +117506,7 @@ entities: deviceLists: - 24484 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12401 components: - type: Transform @@ -115817,7 +117514,7 @@ entities: pos: 51.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12586 components: - type: Transform @@ -115825,7 +117522,7 @@ entities: pos: 42.5,8.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12688 components: - type: Transform @@ -115834,9 +117531,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 4159 + - 25987 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12691 components: - type: Transform @@ -115846,7 +117543,7 @@ entities: deviceLists: - 16580 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12701 components: - type: Transform @@ -115856,7 +117553,7 @@ entities: deviceLists: - 24490 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12707 components: - type: Transform @@ -115866,7 +117563,7 @@ entities: deviceLists: - 24340 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12708 components: - type: Transform @@ -115875,9 +117572,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 24461 + - 14507 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12711 components: - type: Transform @@ -115888,7 +117585,7 @@ entities: deviceLists: - 10993 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12729 components: - type: Transform @@ -115899,7 +117596,7 @@ entities: deviceLists: - 24514 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12754 components: - type: Transform @@ -115910,7 +117607,7 @@ entities: deviceLists: - 24525 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12757 components: - type: Transform @@ -115921,21 +117618,24 @@ entities: deviceLists: - 24526 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12794 components: - type: Transform pos: 29.5,23.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12796 components: - type: Transform pos: 13.5,14.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25995 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12833 components: - type: Transform @@ -115943,7 +117643,7 @@ entities: pos: 37.5,18.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12834 components: - type: Transform @@ -115954,7 +117654,7 @@ entities: deviceLists: - 24548 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12835 components: - type: Transform @@ -115965,7 +117665,7 @@ entities: deviceLists: - 24547 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12995 components: - type: Transform @@ -115973,9 +117673,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 13496 + - 25995 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12996 components: - type: Transform @@ -115983,9 +117683,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 13496 + - 25995 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13005 components: - type: Transform @@ -115995,7 +117695,7 @@ entities: deviceLists: - 24697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13026 components: - type: Transform @@ -116003,7 +117703,7 @@ entities: pos: 46.5,36.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13028 components: - type: Transform @@ -116013,7 +117713,7 @@ entities: deviceLists: - 20624 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13029 components: - type: Transform @@ -116024,7 +117724,7 @@ entities: deviceLists: - 24697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13030 components: - type: Transform @@ -116035,7 +117735,7 @@ entities: deviceLists: - 24697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13045 components: - type: Transform @@ -116047,7 +117747,7 @@ entities: - 24696 - 24697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13406 components: - type: Transform @@ -116058,7 +117758,7 @@ entities: deviceLists: - 1072 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14170 components: - type: Transform @@ -116069,7 +117769,7 @@ entities: deviceLists: - 3143 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14242 components: - type: Transform @@ -116080,7 +117780,7 @@ entities: deviceLists: - 12899 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14356 components: - type: Transform @@ -116090,7 +117790,7 @@ entities: deviceLists: - 176 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14368 components: - type: Transform @@ -116101,7 +117801,7 @@ entities: deviceLists: - 6405 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14651 components: - type: Transform @@ -116112,14 +117812,17 @@ entities: deviceLists: - 3509 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14676 components: - type: Transform pos: 1.5,-3.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24453 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14769 components: - type: Transform @@ -116130,29 +117833,32 @@ entities: deviceLists: - 15127 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15343 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,-19.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 16587 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15385 components: - type: Transform pos: -39.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15386 components: - type: Transform pos: -35.5,21.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15421 components: - type: Transform @@ -116163,15 +117869,18 @@ entities: deviceLists: - 12282 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15466 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-30.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 24575 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15484 components: - type: Transform @@ -116182,7 +117891,7 @@ entities: deviceLists: - 353 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15489 components: - type: Transform @@ -116192,7 +117901,7 @@ entities: deviceLists: - 14854 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15883 components: - type: Transform @@ -116203,7 +117912,7 @@ entities: deviceLists: - 6209 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16276 components: - type: Transform @@ -116214,18 +117923,7 @@ entities: deviceLists: - 19091 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16314 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 16342 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16376 components: - type: Transform @@ -116236,7 +117934,7 @@ entities: deviceLists: - 23116 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16387 components: - type: Transform @@ -116247,7 +117945,7 @@ entities: deviceLists: - 2004 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16480 components: - type: Transform @@ -116258,7 +117956,7 @@ entities: deviceLists: - 19634 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16618 components: - type: Transform @@ -116268,7 +117966,7 @@ entities: deviceLists: - 23115 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17342 components: - type: Transform @@ -116279,7 +117977,7 @@ entities: deviceLists: - 21250 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17480 components: - type: Transform @@ -116290,7 +117988,7 @@ entities: deviceLists: - 24597 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17481 components: - type: Transform @@ -116301,7 +117999,7 @@ entities: deviceLists: - 15892 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17483 components: - type: Transform @@ -116312,7 +118010,7 @@ entities: deviceLists: - 928 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17486 components: - type: Transform @@ -116323,7 +118021,7 @@ entities: deviceLists: - 15545 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17487 components: - type: Transform @@ -116333,15 +118031,18 @@ entities: deviceLists: - 15738 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17514 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-35.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 15053 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17681 components: - type: Transform @@ -116352,7 +118053,7 @@ entities: deviceLists: - 17459 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17744 components: - type: Transform @@ -116362,7 +118063,7 @@ entities: deviceLists: - 17740 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17757 components: - type: Transform @@ -116372,7 +118073,7 @@ entities: deviceLists: - 6721 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17758 components: - type: Transform @@ -116382,7 +118083,7 @@ entities: deviceLists: - 6721 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17759 components: - type: Transform @@ -116392,7 +118093,7 @@ entities: deviceLists: - 6721 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18019 components: - type: Transform @@ -116403,7 +118104,7 @@ entities: deviceLists: - 16028 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18423 components: - type: Transform @@ -116413,7 +118114,7 @@ entities: deviceLists: - 24554 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18545 components: - type: Transform @@ -116424,7 +118125,7 @@ entities: deviceLists: - 22575 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19300 components: - type: Transform @@ -116435,7 +118136,7 @@ entities: deviceLists: - 15537 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19324 components: - type: Transform @@ -116446,7 +118147,7 @@ entities: deviceLists: - 19406 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19500 components: - type: Transform @@ -116455,9 +118156,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 19310 + - 28350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20020 components: - type: Transform @@ -116467,15 +118168,24 @@ entities: deviceLists: - 21245 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20335 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-58.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 10405 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 20337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-51.5 + parent: 5350 - uid: 20589 components: - type: Transform @@ -116486,7 +118196,7 @@ entities: deviceLists: - 20858 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21051 components: - type: Transform @@ -116497,7 +118207,7 @@ entities: deviceLists: - 6209 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21143 components: - type: Transform @@ -116507,7 +118217,7 @@ entities: deviceLists: - 27680 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21166 components: - type: Transform @@ -116518,7 +118228,7 @@ entities: deviceLists: - 6721 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21562 components: - type: Transform @@ -116526,7 +118236,7 @@ entities: pos: -30.5,-66.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21563 components: - type: Transform @@ -116534,7 +118244,7 @@ entities: pos: -25.5,-67.5 parent: 5350 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21564 components: - type: Transform @@ -116545,7 +118255,7 @@ entities: deviceLists: - 24565 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21608 components: - type: Transform @@ -116556,7 +118266,7 @@ entities: deviceLists: - 18250 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21645 components: - type: Transform @@ -116566,7 +118276,7 @@ entities: deviceLists: - 22178 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21646 components: - type: Transform @@ -116577,7 +118287,7 @@ entities: deviceLists: - 22178 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21814 components: - type: Transform @@ -116587,7 +118297,7 @@ entities: deviceLists: - 11151 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22155 components: - type: Transform @@ -116597,7 +118307,7 @@ entities: deviceLists: - 6721 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22163 components: - type: Transform @@ -116608,7 +118318,7 @@ entities: deviceLists: - 24437 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22372 components: - type: Transform @@ -116619,7 +118329,7 @@ entities: deviceLists: - 7315 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22390 components: - type: Transform @@ -116629,7 +118339,7 @@ entities: deviceLists: - 6384 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22425 components: - type: Transform @@ -116640,7 +118350,7 @@ entities: deviceLists: - 4213 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22454 components: - type: Transform @@ -116651,7 +118361,7 @@ entities: deviceLists: - 22466 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22534 components: - type: Transform @@ -116662,7 +118372,7 @@ entities: deviceLists: - 22164 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22552 components: - type: Transform @@ -116673,7 +118383,7 @@ entities: deviceLists: - 22590 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23276 components: - type: Transform @@ -116692,7 +118402,7 @@ entities: deviceLists: - 23906 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23383 components: - type: Transform @@ -116700,9 +118410,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 23905 + - 15447 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23384 components: - type: Transform @@ -116710,20 +118420,9 @@ entities: parent: 5350 - type: DeviceNetwork deviceLists: - - 23905 + - 15447 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 23509 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,3.5 - parent: 5350 - - type: DeviceNetwork - deviceLists: - - 11665 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25920 components: - type: Transform @@ -116744,6 +118443,9 @@ entities: rot: 1.5707963267948966 rad pos: 111.5,-0.5 parent: 5350 + - type: DeviceNetwork + deviceLists: + - 25966 - uid: 25923 components: - type: Transform @@ -116755,6 +118457,16 @@ entities: - type: Transform pos: 104.5,-13.5 parent: 5350 + - uid: 26844 + components: + - type: Transform + pos: 75.5,8.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 23602 + - type: AtmosPipeColor + color: '#990000FF' - uid: 28013 components: - type: Transform @@ -116787,11 +118499,33 @@ entities: - 28012 - type: AtmosPipeColor color: '#990000FF' - - uid: 28117 + - uid: 28266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-32.5 + rot: -1.5707963267948966 rad + pos: 46.5,-32.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 26964 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 28271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 5350 + - type: DeviceNetwork + deviceLists: + - 26964 + - type: AtmosPipeColor + color: '#3AB334FF' + - uid: 28272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-31.5 parent: 5350 - type: DeviceNetwork deviceLists: @@ -117104,11 +118838,6 @@ entities: - type: Transform pos: -38.5,23.5 parent: 5350 - - uid: 989 - components: - - type: Transform - pos: -54.5,10.5 - parent: 5350 - uid: 1029 components: - type: Transform @@ -117134,11 +118863,6 @@ entities: - type: Transform pos: -69.5,10.5 parent: 5350 - - uid: 1301 - components: - - type: Transform - pos: -70.5,10.5 - parent: 5350 - uid: 1497 components: - type: Transform @@ -117514,11 +119238,6 @@ entities: - type: Transform pos: -6.5,17.5 parent: 5350 - - uid: 3892 - components: - - type: Transform - pos: 7.5,-43.5 - parent: 5350 - uid: 3904 components: - type: Transform @@ -117584,21 +119303,11 @@ entities: - type: Transform pos: -37.5,23.5 parent: 5350 - - uid: 4186 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 5350 - uid: 4291 components: - type: Transform pos: -59.5,34.5 parent: 5350 - - uid: 4311 - components: - - type: Transform - pos: 0.5,-53.5 - parent: 5350 - uid: 4317 components: - type: Transform @@ -117674,21 +119383,6 @@ entities: - type: Transform pos: -43.5,20.5 parent: 5350 - - uid: 4506 - components: - - type: Transform - pos: 6.5,-49.5 - parent: 5350 - - uid: 4520 - components: - - type: Transform - pos: 1.5,-49.5 - parent: 5350 - - uid: 4521 - components: - - type: Transform - pos: 6.5,-51.5 - parent: 5350 - uid: 4529 components: - type: Transform @@ -117709,36 +119403,11 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 5350 - - uid: 4700 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 5350 - - uid: 4707 - components: - - type: Transform - pos: 3.5,-49.5 - parent: 5350 - - uid: 4755 - components: - - type: Transform - pos: 4.5,-49.5 - parent: 5350 - uid: 4757 components: - type: Transform pos: -21.5,-28.5 parent: 5350 - - uid: 4759 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 5350 - - uid: 4760 - components: - - type: Transform - pos: 6.5,-52.5 - parent: 5350 - uid: 4769 components: - type: Transform @@ -118019,21 +119688,6 @@ entities: - type: Transform pos: -64.5,9.5 parent: 5350 - - uid: 5404 - components: - - type: Transform - pos: -49.5,10.5 - parent: 5350 - - uid: 5405 - components: - - type: Transform - pos: -50.5,10.5 - parent: 5350 - - uid: 5406 - components: - - type: Transform - pos: -51.5,10.5 - parent: 5350 - uid: 5407 components: - type: Transform @@ -118054,21 +119708,6 @@ entities: - type: Transform pos: -76.5,7.5 parent: 5350 - - uid: 5430 - components: - - type: Transform - pos: -59.5,10.5 - parent: 5350 - - uid: 5431 - components: - - type: Transform - pos: -57.5,10.5 - parent: 5350 - - uid: 5436 - components: - - type: Transform - pos: -52.5,10.5 - parent: 5350 - uid: 5717 components: - type: Transform @@ -118289,16 +119928,6 @@ entities: - type: Transform pos: -61.5,36.5 parent: 5350 - - uid: 6134 - components: - - type: Transform - pos: -58.5,34.5 - parent: 5350 - - uid: 6184 - components: - - type: Transform - pos: -60.5,10.5 - parent: 5350 - uid: 6243 components: - type: Transform @@ -118344,11 +119973,6 @@ entities: - type: Transform pos: 7.5,43.5 parent: 5350 - - uid: 6470 - components: - - type: Transform - pos: 0.5,-52.5 - parent: 5350 - uid: 6487 components: - type: Transform @@ -118942,11 +120566,6 @@ entities: - type: Transform pos: 47.5,-23.5 parent: 5350 - - uid: 8865 - components: - - type: Transform - pos: -61.5,10.5 - parent: 5350 - uid: 8866 components: - type: Transform @@ -119027,21 +120646,6 @@ entities: - type: Transform pos: -45.5,30.5 parent: 5350 - - uid: 9318 - components: - - type: Transform - pos: 0.5,-54.5 - parent: 5350 - - uid: 9324 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 5350 - - uid: 9339 - components: - - type: Transform - pos: 5.5,-55.5 - parent: 5350 - uid: 9396 components: - type: Transform @@ -119082,11 +120686,6 @@ entities: - type: Transform pos: -30.5,45.5 parent: 5350 - - uid: 9668 - components: - - type: Transform - pos: -45.5,10.5 - parent: 5350 - uid: 9697 components: - type: Transform @@ -119137,21 +120736,11 @@ entities: - type: Transform pos: 63.5,-2.5 parent: 5350 - - uid: 10659 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 5350 - uid: 10687 components: - type: Transform pos: 10.5,-17.5 parent: 5350 - - uid: 10695 - components: - - type: Transform - pos: 0.5,-50.5 - parent: 5350 - uid: 10748 components: - type: Transform @@ -119277,11 +120866,6 @@ entities: - type: Transform pos: 64.5,-13.5 parent: 5350 - - uid: 11248 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 5350 - uid: 11249 components: - type: Transform @@ -119302,11 +120886,6 @@ entities: - type: Transform pos: 64.5,-7.5 parent: 5350 - - uid: 11253 - components: - - type: Transform - pos: 64.5,-8.5 - parent: 5350 - uid: 11255 components: - type: Transform @@ -119432,11 +121011,6 @@ entities: - type: Transform pos: 66.5,-7.5 parent: 5350 - - uid: 11357 - components: - - type: Transform - pos: 53.5,-9.5 - parent: 5350 - uid: 11358 components: - type: Transform @@ -119452,11 +121026,6 @@ entities: - type: Transform pos: -71.5,-6.5 parent: 5350 - - uid: 11423 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 5350 - uid: 11439 components: - type: Transform @@ -119487,11 +121056,6 @@ entities: - type: Transform pos: 77.5,-24.5 parent: 5350 - - uid: 11482 - components: - - type: Transform - pos: 0.5,-49.5 - parent: 5350 - uid: 11492 components: - type: Transform @@ -120297,10 +121861,10 @@ entities: - type: Transform pos: -57.5,9.5 parent: 5350 - - uid: 14118 + - uid: 14126 components: - type: Transform - pos: -46.5,10.5 + pos: 53.5,-9.5 parent: 5350 - uid: 14131 components: @@ -120417,11 +121981,6 @@ entities: - type: Transform pos: -22.5,-31.5 parent: 5350 - - uid: 14436 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 5350 - uid: 14437 components: - type: Transform @@ -120447,26 +122006,11 @@ entities: - type: Transform pos: -22.5,-66.5 parent: 5350 - - uid: 14507 - components: - - type: Transform - pos: -55.5,10.5 - parent: 5350 - uid: 14535 components: - type: Transform pos: -4.5,-29.5 parent: 5350 - - uid: 14558 - components: - - type: Transform - pos: 6.5,-53.5 - parent: 5350 - - uid: 14559 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 5350 - uid: 14586 components: - type: Transform @@ -120592,26 +122136,11 @@ entities: - type: Transform pos: -3.5,70.5 parent: 5350 - - uid: 15083 - components: - - type: Transform - pos: -47.5,10.5 - parent: 5350 - uid: 15088 components: - type: Transform pos: -55.5,9.5 parent: 5350 - - uid: 15118 - components: - - type: Transform - pos: -56.5,10.5 - parent: 5350 - - uid: 15120 - components: - - type: Transform - pos: -58.5,10.5 - parent: 5350 - uid: 15121 components: - type: Transform @@ -120637,21 +122166,11 @@ entities: - type: Transform pos: -65.5,4.5 parent: 5350 - - uid: 15147 - components: - - type: Transform - pos: -48.5,10.5 - parent: 5350 - uid: 15153 components: - type: Transform pos: -18.5,-43.5 parent: 5350 - - uid: 15156 - components: - - type: Transform - pos: -72.5,10.5 - parent: 5350 - uid: 15157 components: - type: Transform @@ -120687,6 +122206,16 @@ entities: - type: Transform pos: 2.5,69.5 parent: 5350 + - uid: 15208 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 5350 + - uid: 15209 + components: + - type: Transform + pos: 64.5,-12.5 + parent: 5350 - uid: 15251 components: - type: Transform @@ -120737,11 +122266,6 @@ entities: - type: Transform pos: -13.5,-26.5 parent: 5350 - - uid: 15591 - components: - - type: Transform - pos: 1.5,-55.5 - parent: 5350 - uid: 15596 components: - type: Transform @@ -120762,11 +122286,6 @@ entities: - type: Transform pos: -23.5,-40.5 parent: 5350 - - uid: 15699 - components: - - type: Transform - pos: 2.5,-49.5 - parent: 5350 - uid: 15730 components: - type: Transform @@ -120932,16 +122451,6 @@ entities: - type: Transform pos: -40.5,-53.5 parent: 5350 - - uid: 16512 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 5350 - - uid: 16514 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 5350 - uid: 16516 components: - type: Transform @@ -120972,11 +122481,6 @@ entities: - type: Transform pos: 5.5,-29.5 parent: 5350 - - uid: 16546 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 5350 - uid: 16560 components: - type: Transform @@ -121832,11 +123336,6 @@ entities: - type: Transform pos: 2.5,-74.5 parent: 5350 - - uid: 19294 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 5350 - uid: 19313 components: - type: Transform @@ -121857,11 +123356,6 @@ entities: - type: Transform pos: 15.5,-46.5 parent: 5350 - - uid: 19417 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 5350 - uid: 19431 components: - type: Transform @@ -121902,10 +123396,11 @@ entities: - type: Transform pos: 24.5,60.5 parent: 5350 - - uid: 19719 + - uid: 19608 components: - type: Transform - pos: 0.5,-55.5 + rot: 1.5707963267948966 rad + pos: 1.5,-47.5 parent: 5350 - uid: 19849 components: @@ -122387,11 +123882,6 @@ entities: - type: Transform pos: -50.5,34.5 parent: 5350 - - uid: 20326 - components: - - type: Transform - pos: 5.5,-49.5 - parent: 5350 - uid: 20331 components: - type: Transform @@ -122467,6 +123957,12 @@ entities: - type: Transform pos: -31.5,24.5 parent: 5350 + - uid: 20981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 5350 - uid: 21022 components: - type: Transform @@ -122477,6 +123973,12 @@ entities: - type: Transform pos: -35.5,5.5 parent: 5350 + - uid: 21217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 5350 - uid: 21269 components: - type: Transform @@ -122562,6 +124064,24 @@ entities: - type: Transform pos: 10.5,43.5 parent: 5350 + - uid: 22599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 5350 + - uid: 22600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-58.5 + parent: 5350 + - uid: 22602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 5350 - uid: 22632 components: - type: Transform @@ -122587,6 +124107,11 @@ entities: - type: Transform pos: -4.5,38.5 parent: 5350 + - uid: 22938 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 5350 - uid: 22988 components: - type: Transform @@ -122812,6 +124337,12 @@ entities: - type: Transform pos: 79.5,18.5 parent: 5350 + - uid: 23822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-28.5 + parent: 5350 - uid: 23855 components: - type: Transform @@ -123577,6 +125108,21 @@ entities: - type: Transform pos: 64.5,-4.5 parent: 5350 + - uid: 26006 + components: + - type: Transform + pos: -72.5,10.5 + parent: 5350 + - uid: 26088 + components: + - type: Transform + pos: -71.5,10.5 + parent: 5350 + - uid: 26089 + components: + - type: Transform + pos: -70.5,10.5 + parent: 5350 - uid: 26107 components: - type: Transform @@ -124741,12 +126287,24 @@ entities: - type: Transform pos: -47.5,7.5 parent: 5350 + - uid: 7795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,34.5 + parent: 5350 - uid: 11459 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-36.5 parent: 5350 + - uid: 11833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,34.5 + parent: 5350 - uid: 12265 components: - type: Transform @@ -124813,12 +126371,6 @@ entities: - type: Transform pos: 38.5,57.5 parent: 5350 - - uid: 15642 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,34.5 - parent: 5350 - uid: 16262 components: - type: Transform @@ -125228,29 +126780,49 @@ entities: - uid: 7730 components: - type: Transform + anchored: True pos: -8.5,46.5 parent: 5350 + - type: Physics + bodyType: Static - proto: GunSafePistolMk58 entities: - uid: 6369 components: - type: Transform + anchored: True pos: -9.5,46.5 parent: 5350 + - type: Physics + bodyType: Static - proto: GunSafeRifleLecter entities: - uid: 22966 components: - type: Transform + anchored: True pos: -6.5,40.5 parent: 5350 + - type: Physics + bodyType: Static - proto: GunSafeSubMachineGunDrozd entities: - uid: 13851 components: - type: Transform + anchored: True pos: -5.5,40.5 parent: 5350 + - type: Physics + bodyType: Static +- proto: GyroscopeUnanchored + entities: + - uid: 28209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,33.5 + parent: 5350 - proto: HandheldGPSBasic entities: - uid: 3632 @@ -125313,15 +126885,15 @@ entities: - type: Transform pos: -34.51438,3.6169534 parent: 5350 - - uid: 6870 + - uid: 10976 components: - type: Transform - pos: 18.514555,-61.391567 + pos: 55.526382,-6.473477 parent: 5350 - - uid: 10976 + - uid: 15118 components: - type: Transform - pos: 55.526382,-6.473477 + pos: -3.5133927,38.2105 parent: 5350 - uid: 15638 components: @@ -125444,6 +127016,17 @@ entities: currentLabel: Atmos - TEG Breakroom - type: NameModifier baseName: holopad + - uid: 28223 + components: + - type: MetaData + name: holopad (Callbox) + - type: Transform + pos: 28.5,32.5 + parent: 5350 + - type: Label + currentLabel: Callbox + - type: NameModifier + baseName: holopad - proto: HolopadAiChute entities: - uid: 6131 @@ -125537,10 +127120,10 @@ entities: parent: 5350 - proto: HolopadCommandCaptain entities: - - uid: 16494 + - uid: 24009 components: - type: Transform - pos: 7.5,-2.5 + pos: 9.5,-2.5 parent: 5350 - proto: HolopadCommandCe entities: @@ -125598,19 +127181,12 @@ entities: - type: Transform pos: 9.5,-13.5 parent: 5350 -- proto: HolopadEngineeringAtmosFront - entities: - - uid: 686 - components: - - type: Transform - pos: 49.5,-7.5 - parent: 5350 - proto: HolopadEngineeringAtmosMain entities: - - uid: 21681 + - uid: 7547 components: - type: Transform - pos: 58.5,-20.5 + pos: 53.5,-11.5 parent: 5350 - proto: HolopadEngineeringAtmosTeg entities: @@ -125633,6 +127209,11 @@ entities: - type: Transform pos: 52.5,-1.5 parent: 5350 + - uid: 15042 + components: + - type: Transform + pos: 44.5,3.5 + parent: 5350 - proto: HolopadEngineeringMain entities: - uid: 9429 @@ -125656,11 +127237,18 @@ entities: parent: 5350 - proto: HolopadEngineeringTelecoms entities: - - uid: 8311 + - uid: 26136 components: - type: Transform pos: 104.5,-12.5 parent: 5350 +- proto: HolopadGeneralArcade + entities: + - uid: 17326 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 5350 - proto: HolopadGeneralArrivals entities: - uid: 19497 @@ -125724,13 +127312,6 @@ entities: - type: Transform pos: -19.5,-25.5 parent: 5350 -- proto: HolopadMedicalCryopods - entities: - - uid: 4448 - components: - - type: Transform - pos: -27.5,-26.5 - parent: 5350 - proto: HolopadMedicalFront entities: - uid: 11587 @@ -125782,10 +127363,10 @@ entities: parent: 5350 - proto: HolopadScienceBreakroom entities: - - uid: 4767 + - uid: 19719 components: - type: Transform - pos: 3.5,-43.5 + pos: 2.5,-44.5 parent: 5350 - proto: HolopadScienceFront entities: @@ -125808,6 +127389,13 @@ entities: - type: Transform pos: 12.5,-31.5 parent: 5350 +- proto: HolopadSecurityArmory + entities: + - uid: 3055 + components: + - type: Transform + pos: -7.5,38.5 + parent: 5350 - proto: HolopadSecurityBreakroom entities: - uid: 16212 @@ -125817,10 +127405,10 @@ entities: parent: 5350 - proto: HolopadSecurityBrig entities: - - uid: 16554 + - uid: 28221 components: - type: Transform - pos: -9.5,32.5 + pos: -11.5,32.5 parent: 5350 - proto: HolopadSecurityBrigMed entities: @@ -125871,6 +127459,13 @@ entities: - type: Transform pos: 13.5,20.5 parent: 5350 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 28220 + components: + - type: Transform + pos: -0.5,43.5 + parent: 5350 - proto: HolopadSecurityPerma entities: - uid: 15126 @@ -125880,10 +127475,10 @@ entities: parent: 5350 - proto: HolopadSecurityWarden entities: - - uid: 8493 + - uid: 24002 components: - type: Transform - pos: -2.5,39.5 + pos: -2.5,29.5 parent: 5350 - proto: HolopadServiceBar entities: @@ -126577,11 +128172,11 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 5350 - - uid: 14696 + - uid: 22971 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-41.5 + pos: 9.5,-41.5 parent: 5350 - proto: IntercomSecurity entities: @@ -126632,6 +128227,12 @@ entities: parent: 5350 - proto: JanitorServiceLight entities: + - uid: 4311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 5350 - uid: 6953 components: - type: Transform @@ -126643,12 +128244,26 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,3.5 parent: 5350 + - uid: 17445 + components: + - type: MetaData + name: Bridge Janitorial Service Light + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 5350 - uid: 19627 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-6.5 parent: 5350 + - uid: 28293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 5350 - proto: JetpackBlue entities: - uid: 24212 @@ -126727,13 +128342,6 @@ entities: - type: Transform pos: 33.5,-9.5 parent: 5350 -- proto: KitchenKnife - entities: - - uid: 20398 - components: - - type: Transform - pos: 19.498922,-29.435482 - parent: 5350 - proto: KitchenMicrowave entities: - uid: 1632 @@ -126756,6 +128364,11 @@ entities: - type: Transform pos: -9.5,59.5 parent: 5350 + - uid: 7955 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 5350 - uid: 9493 components: - type: Transform @@ -126869,16 +128482,23 @@ entities: - type: Transform pos: 43.569237,9.89138 parent: 5350 - - uid: 19315 + - uid: 14561 components: - type: Transform - pos: 8.558503,-43.201286 + rot: -1.5707963267948966 rad + pos: 7.424631,-46.162884 parent: 5350 - uid: 21820 components: - type: Transform pos: -27.522722,-64.31669 parent: 5350 + - uid: 28346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.521511,-46.177162 + parent: 5350 - proto: LampBanana entities: - uid: 3201 @@ -127043,6 +128663,11 @@ entities: - type: Transform pos: -16.55398,50.45403 parent: 5350 + - uid: 28126 + components: + - type: Transform + pos: 6.439226,52.45743 + parent: 5350 - proto: Lantern entities: - uid: 22071 @@ -127097,6 +128722,8 @@ entities: entities: - uid: 1174 components: + - type: MetaData + name: Open Armory - type: Transform rot: 3.141592653589793 rad pos: -7.5,35.5 @@ -127120,7 +128747,7 @@ entities: - uid: 18348 components: - type: MetaData - name: Space Tank 1 + name: Vent Tank 1 - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-10.5 @@ -127132,7 +128759,7 @@ entities: - uid: 18353 components: - type: MetaData - name: Space Tank 2 + name: Vent Tank 2 - type: Transform rot: -1.5707963267948966 rad pos: 64.5,-6.5 @@ -127160,10 +128787,18 @@ entities: - Pressed: Toggle - uid: 10414 components: + - type: MetaData + name: Exit - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-33.5 parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 14445: + - Pressed: Open + 14444: + - Pressed: Open - uid: 13783 components: - type: MetaData @@ -127178,6 +128813,24 @@ entities: - Pressed: Open 24195: - Pressed: Open +- proto: LockableButtonResearch + entities: + - uid: 792 + components: + - type: MetaData + name: Garage Doors + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 15522: + - Pressed: Toggle + 14390: + - Pressed: Toggle + 14436: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 11751 @@ -127459,14 +129112,24 @@ entities: entities: - uid: 6372 components: + - type: MetaData + name: Cell 1 Personal Items - type: Transform + anchored: True pos: -10.5,34.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 6856 components: + - type: MetaData + name: Cell 2 Personal Items - type: Transform + anchored: True pos: -9.5,34.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 6978 components: - type: Transform @@ -127484,9 +129147,14 @@ entities: parent: 5350 - uid: 7371 components: + - type: MetaData + name: Cell Three Personal Items - type: Transform + anchored: True pos: -8.5,34.5 parent: 5350 + - type: Physics + bodyType: Static - uid: 9631 components: - type: Transform @@ -127498,8 +129166,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -127653,11 +129321,6 @@ entities: parent: 5350 - proto: LockerMedicineFilled entities: - - uid: 9395 - components: - - type: Transform - pos: -37.5,-30.5 - parent: 5350 - uid: 10336 components: - type: Transform @@ -127665,15 +129328,33 @@ entities: parent: 5350 - type: Lock locked: False + - 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: 15604 components: - type: Transform pos: -36.5,-30.5 parent: 5350 - - uid: 19460 + - uid: 24329 components: - type: Transform - pos: -31.5,-29.5 + pos: -30.5,-29.5 parent: 5350 - proto: LockerParamedicFilled entities: @@ -127720,45 +129401,45 @@ entities: parent: 5350 - proto: LockerScienceFilled entities: - - uid: 9762 + - uid: 6110 components: - type: Transform - pos: 6.5,-43.5 + pos: 6.5,-50.5 parent: 5350 - - uid: 9768 + - uid: 6470 components: - type: Transform - pos: 6.5,-46.5 + pos: 6.5,-49.5 parent: 5350 - - uid: 9769 + - uid: 6749 components: - type: Transform - pos: 6.5,-45.5 + pos: 0.5,-51.5 parent: 5350 - - uid: 10405 + - uid: 9322 components: - type: Transform - pos: 0.5,-44.5 + pos: 6.5,-52.5 parent: 5350 - - uid: 10408 + - uid: 15760 components: - type: Transform - pos: 0.5,-46.5 + pos: 0.5,-49.5 parent: 5350 - - uid: 10495 + - uid: 15986 components: - type: Transform - pos: 0.5,-45.5 + pos: 0.5,-52.5 parent: 5350 - - uid: 14689 + - uid: 15989 components: - type: Transform - pos: 0.5,-43.5 + pos: 0.5,-50.5 parent: 5350 - - uid: 16499 + - uid: 16313 components: - type: Transform - pos: 6.5,-44.5 + pos: 6.5,-51.5 parent: 5350 - proto: LockerSecurityFilled entities: @@ -127847,8 +129528,11 @@ entities: - uid: 6696 components: - type: Transform + anchored: True pos: -3.5,40.5 parent: 5350 + - type: Physics + bodyType: Static - type: EntityStorage air: volume: 200 @@ -127874,15 +129558,15 @@ entities: occludes: True ents: - 7939 - - 7757 - - 7545 - - 7131 - - 7191 - - 7209 - - 7218 - - 7224 - - 7384 - 7385 + - 7384 + - 7224 + - 7218 + - 7209 + - 7191 + - 7131 + - 7545 + - 7757 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -128029,7 +129713,7 @@ entities: - uid: 22344 components: - type: Transform - pos: -15.652702,43.59749 + pos: -15.720936,42.71257 parent: 5350 - proto: MagazinePistolPractice entities: @@ -128197,6 +129881,11 @@ entities: - type: Transform pos: -45.5,5.5 parent: 5350 + - uid: 9537 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 5350 - uid: 13757 components: - type: Transform @@ -128396,6 +130085,11 @@ entities: - type: Transform pos: -17.53931,-3.3987079 parent: 5350 + - uid: 9395 + components: + - type: Transform + pos: -37.640137,-30.283024 + parent: 5350 - proto: MaterialDiamond1 entities: - uid: 1956 @@ -128514,6 +130208,11 @@ entities: - type: Transform pos: -33.78732,-36.61879 parent: 5350 + - uid: 26186 + components: + - type: Transform + pos: -40.403725,26.493193 + parent: 5350 - proto: MedkitBurnFilled entities: - uid: 14637 @@ -128553,7 +130252,7 @@ entities: - uid: 7447 components: - type: Transform - pos: -39.35714,30.311928 + pos: -40.60685,26.711943 parent: 5350 - uid: 7724 components: @@ -128689,10 +130388,10 @@ entities: parent: 5350 - proto: MMI entities: - - uid: 6128 + - uid: 7225 components: - type: Transform - pos: 19.246477,-29.23119 + pos: 19.462631,-29.383411 parent: 5350 - proto: MonkeyCube entities: @@ -128787,11 +130486,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-47.5 parent: 5350 - - uid: 9242 - components: - - type: Transform - pos: -18.5,32.5 - parent: 5350 - uid: 9471 components: - type: Transform @@ -129042,7 +130736,7 @@ entities: - uid: 4742 components: - type: Transform - pos: -3.6637068,38.560562 + pos: -3.2946427,38.4605 parent: 5350 - uid: 12072 components: @@ -129073,6 +130767,13 @@ entities: - type: Transform pos: -7.4754887,-15.527573 parent: 5350 +- proto: MysteryFigureBoxTrash + entities: + - uid: 28319 + components: + - type: Transform + pos: 5.4238987,-58.93128 + parent: 5350 - proto: NewtonCradle entities: - uid: 8034 @@ -129179,27 +130880,6 @@ entities: - type: Transform pos: -36.68396,-36.29682 parent: 5350 - - uid: 7004 - components: - - type: Transform - parent: 6996 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7792 - components: - - type: Transform - parent: 7774 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 9586 - components: - - type: Transform - parent: 9506 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 15237 components: - type: Transform @@ -129442,28 +131122,6 @@ entities: - type: Transform pos: -16.506245,-14.163311 parent: 5350 - - uid: 7011 - components: - - type: Transform - parent: 6996 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7797 - components: - - type: Transform - parent: 7774 - - type: GasTank - toggleActionEntity: 7801 - - type: Physics - canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 7801 - - type: InsideEntityStorage - uid: 9284 components: - type: Transform @@ -129477,13 +131135,6 @@ entities: actions: !type:Container ents: - 9404 - - uid: 9615 - components: - - type: Transform - parent: 9506 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 15057 components: - type: Transform @@ -130017,7 +131668,7 @@ entities: desc: There's something written on it.. name: Old Document - type: Transform - parent: 22929 + parent: 1021 - type: Paper content: >- I own a Kammerer for Brig Defense, since thats what Central Command intended. @@ -130438,12 +132089,12 @@ entities: - uid: 22629 components: - type: Transform - pos: 68.02464,-41.181137 + pos: 69.51709,-41.50579 parent: 5350 - uid: 28158 components: - type: Transform - pos: 47.478065,-32.460194 + pos: 47.490967,-31.45882 parent: 5350 - proto: PlushieBee entities: @@ -130498,7 +132149,7 @@ entities: - uid: 22840 components: - type: Transform - pos: 49.476562,-13.534864 + pos: 45.464706,-18.452383 parent: 5350 - uid: 23137 components: @@ -130507,15 +132158,15 @@ entities: parent: 5350 - proto: PlushieMagicarp entities: - - uid: 21361 + - uid: 21771 components: - type: Transform - pos: 4.7179227,-28.535545 + pos: -42.23168,-37.79344 parent: 5350 - - uid: 21771 + - uid: 28294 components: - type: Transform - pos: -42.23168,-37.79344 + pos: 4.455008,-30.325493 parent: 5350 - proto: PlushieNuke entities: @@ -130614,6 +132265,16 @@ entities: parent: 5350 - proto: PortableFlasher entities: + - uid: 3544 + components: + - type: Transform + anchored: False + pos: 7.5,24.5 + parent: 5350 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - uid: 6535 components: - type: Transform @@ -130781,6 +132442,14 @@ entities: - type: Transform pos: -24.5,30.5 parent: 5350 +- proto: PosterContrabandCC64KAd + entities: + - uid: 4304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-58.5 + parent: 5350 - proto: PosterContrabandClown entities: - uid: 3220 @@ -130869,6 +132538,14 @@ entities: - type: Transform pos: -59.5,-18.5 parent: 5350 +- proto: PosterContrabandSpaceCube + entities: + - uid: 3925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-60.5 + parent: 5350 - proto: PosterContrabandSyndicateRecruitment entities: - uid: 22520 @@ -130968,10 +132645,10 @@ entities: parent: 5350 - proto: PosterLegitFoamForceAd entities: - - uid: 8088 + - uid: 28228 components: - type: Transform - pos: -19.5,42.5 + pos: -18.5,40.5 parent: 5350 - proto: PosterLegitHereForYourSafety entities: @@ -131009,6 +132686,12 @@ entities: rot: 3.141592653589793 rad pos: -19.5,0.5 parent: 5350 + - uid: 17503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 5350 - uid: 22932 components: - type: Transform @@ -131172,16 +132855,16 @@ entities: parent: 5350 - proto: PosterLegitVacation entities: - - uid: 11209 + - uid: 10407 components: - type: Transform - pos: -24.5,-12.5 + rot: 1.5707963267948966 rad + pos: -4.5,-45.5 parent: 5350 - - uid: 15330 + - uid: 11209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + pos: -24.5,-12.5 parent: 5350 - proto: PosterMapMetaRight entities: @@ -131252,11 +132935,6 @@ entities: - type: Transform pos: 11.5,42.5 parent: 5350 - - uid: 23973 - components: - - type: Transform - pos: 49.5,-3.5 - parent: 5350 - proto: PottedPlant18 entities: - uid: 16286 @@ -131366,6 +133044,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 1154 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 5350 - uid: 1411 components: - type: Transform @@ -131430,11 +133113,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 3927 - components: - - type: Transform - pos: -22.5,-39.5 - parent: 5350 - uid: 4087 components: - type: Transform @@ -131586,13 +133264,6 @@ entities: - type: Transform pos: -23.5,-57.5 parent: 5350 -- proto: PottedPlantRD - entities: - - uid: 6675 - components: - - type: Transform - pos: 24.5,-46.5 - parent: 5350 - proto: PowerCellHigh entities: - uid: 7462 @@ -131622,7 +133293,7 @@ entities: - uid: 15619 components: - type: Transform - pos: 10.7237835,-36.26899 + pos: 10.683721,-36.267838 parent: 5350 - uid: 16496 components: @@ -131632,7 +133303,7 @@ entities: - uid: 16604 components: - type: Transform - pos: 10.7550335,-36.48774 + pos: 10.761846,-36.549088 parent: 5350 - proto: PowerCellRecharger entities: @@ -131705,15 +133376,15 @@ entities: - type: Transform pos: -40.5,-25.5 parent: 5350 - - uid: 22167 + - uid: 23860 components: - type: Transform - pos: -30.5,-29.5 + pos: 53.5,22.5 parent: 5350 - - uid: 23860 + - uid: 24462 components: - type: Transform - pos: 53.5,22.5 + pos: -29.5,-29.5 parent: 5350 - uid: 27077 components: @@ -131830,6 +133501,12 @@ entities: rot: 1.5707963267948966 rad pos: -38.5,-50.5 parent: 5350 + - uid: 24558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-37.5 + parent: 5350 - uid: 28100 components: - type: Transform @@ -132190,12 +133867,6 @@ entities: parent: 5350 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3890 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 - parent: 5350 - uid: 4051 components: - type: Transform @@ -132460,6 +134131,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,36.5 parent: 5350 + - uid: 7683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,3.5 + parent: 5350 - uid: 7742 components: - type: Transform @@ -132736,6 +134413,12 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-25.5 parent: 5350 + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-59.5 + parent: 5350 - uid: 11728 components: - type: Transform @@ -133282,6 +134965,11 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-15.5 parent: 5350 + - uid: 16641 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 5350 - uid: 16663 components: - type: Transform @@ -133961,12 +135649,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,9.5 parent: 5350 - - uid: 23602 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,3.5 - parent: 5350 - uid: 23814 components: - type: Transform @@ -134216,12 +135898,29 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,34.5 parent: 5350 + - uid: 28119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 5350 - uid: 28157 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-27.5 parent: 5350 + - uid: 28252 + components: + - type: Transform + pos: -6.5,40.5 + parent: 5350 + - uid: 28296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-59.5 + parent: 5350 - proto: PoweredlightExterior entities: - uid: 11238 @@ -134547,6 +136246,18 @@ entities: rot: 3.141592653589793 rad pos: -46.5,29.5 parent: 5350 + - uid: 4558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 + parent: 5350 + - uid: 4607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,5.5 + parent: 5350 - uid: 4761 components: - type: Transform @@ -134969,6 +136680,18 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,27.5 parent: 5350 + - uid: 15182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 5350 + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,9.5 + parent: 5350 - uid: 15228 components: - type: Transform @@ -135004,12 +136727,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-50.5 parent: 5350 - - uid: 15873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,3.5 - parent: 5350 - uid: 15947 components: - type: Transform @@ -135020,18 +136737,6 @@ entities: - type: Transform pos: 68.5,-5.5 parent: 5350 - - uid: 15989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-59.5 - parent: 5350 - - uid: 16201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-59.5 - parent: 5350 - uid: 16233 components: - type: Transform @@ -135747,13 +137452,22 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-31.5 parent: 5350 -- proto: PoweredSmallLightEmpty - entities: - - uid: 7019 + - uid: 28250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,3.5 + rot: 3.141592653589793 rad + pos: 25.5,-35.5 + parent: 5350 + - uid: 28253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-35.5 + parent: 5350 + - uid: 28297 + components: + - type: Transform + pos: 6.5,-55.5 parent: 5350 - proto: PrefilledSyringe entities: @@ -135778,20 +137492,10 @@ entities: parent: 5350 - proto: Rack entities: - - uid: 1275 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 5350 - - uid: 1512 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 5350 - - uid: 1513 + - uid: 1569 components: - type: Transform - pos: -18.5,-15.5 + pos: -8.5,36.5 parent: 5350 - uid: 2081 components: @@ -135854,11 +137558,6 @@ entities: - type: Transform pos: -18.5,41.5 parent: 5350 - - uid: 7547 - components: - - type: Transform - pos: -8.5,36.5 - parent: 5350 - uid: 7778 components: - type: Transform @@ -136117,11 +137816,6 @@ entities: - type: Transform pos: 48.5,35.5 parent: 5350 - - uid: 18972 - components: - - type: Transform - pos: -8.5,-55.5 - parent: 5350 - uid: 19018 components: - type: Transform @@ -136195,16 +137889,6 @@ entities: - type: Transform pos: 36.5,-51.5 parent: 5350 - - uid: 22599 - components: - - type: Transform - pos: 3.5,-65.5 - parent: 5350 - - uid: 22600 - components: - - type: Transform - pos: 3.5,-64.5 - parent: 5350 - uid: 22676 components: - type: Transform @@ -136309,6 +137993,16 @@ entities: - type: Transform pos: 77.5,-29.5 parent: 5350 + - uid: 28321 + components: + - type: Transform + pos: -26.5,41.5 + parent: 5350 + - uid: 28326 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 5350 - proto: RadiationCollectorFullTank entities: - uid: 2472 @@ -136424,18 +138118,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,10.5 parent: 5350 - - uid: 9271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 - parent: 5350 - - uid: 9279 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-56.5 - parent: 5350 - uid: 10710 components: - type: Transform @@ -136468,18 +138150,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,26.5 parent: 5350 - - uid: 15490 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-56.5 - parent: 5350 - - uid: 16726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-55.5 - parent: 5350 - uid: 16867 components: - type: Transform @@ -136594,24 +138264,12 @@ entities: parent: 5350 - proto: RailingCorner entities: - - uid: 4764 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-55.5 - parent: 5350 - uid: 11026 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 5350 - - uid: 14561 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 5350 - uid: 23201 components: - type: Transform @@ -136665,11 +138323,6 @@ entities: - type: Transform pos: 35.5,-18.5 parent: 5350 - - uid: 15760 - components: - - type: Transform - pos: 2.5,-56.5 - parent: 5350 - uid: 16873 components: - type: Transform @@ -136681,12 +138334,6 @@ entities: rot: 1.5707963267948966 rad pos: -66.5,-39.5 parent: 5350 - - uid: 17513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 5350 - uid: 26993 components: - type: Transform @@ -137599,11 +139246,6 @@ entities: - type: Transform pos: 44.5,-32.5 parent: 5350 - - uid: 12450 - components: - - type: Transform - pos: 48.5,-30.5 - parent: 5350 - uid: 12518 components: - type: Transform @@ -137624,6 +139266,12 @@ entities: - type: Transform pos: 46.5,-29.5 parent: 5350 + - uid: 15114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 5350 - uid: 16539 components: - type: Transform @@ -139376,11 +141024,6 @@ entities: - type: Transform pos: 45.5,-4.5 parent: 5350 - - uid: 8883 - components: - - type: Transform - pos: 53.5,-9.5 - parent: 5350 - uid: 8884 components: - type: Transform @@ -139631,21 +141274,11 @@ entities: - type: Transform pos: 52.5,-25.5 parent: 5350 - - uid: 11097 - components: - - type: Transform - pos: 64.5,-11.5 - parent: 5350 - uid: 11098 components: - type: Transform pos: 64.5,-10.5 parent: 5350 - - uid: 11099 - components: - - type: Transform - pos: 64.5,-12.5 - parent: 5350 - uid: 11100 components: - type: Transform @@ -139701,11 +141334,6 @@ entities: - type: Transform pos: 64.5,-6.5 parent: 5350 - - uid: 11286 - components: - - type: Transform - pos: 64.5,-8.5 - parent: 5350 - uid: 11378 components: - type: Transform @@ -139731,6 +141359,11 @@ entities: - type: Transform pos: 70.5,-28.5 parent: 5350 + - uid: 12131 + components: + - type: Transform + pos: 64.5,-8.5 + parent: 5350 - uid: 12345 components: - type: Transform @@ -139981,6 +141614,11 @@ entities: - type: Transform pos: -78.5,7.5 parent: 5350 + - uid: 14118 + components: + - type: Transform + pos: 64.5,-12.5 + parent: 5350 - uid: 14228 components: - type: Transform @@ -140071,11 +141709,6 @@ entities: - type: Transform pos: -28.5,-24.5 parent: 5350 - - uid: 14390 - components: - - type: Transform - pos: -22.5,-33.5 - parent: 5350 - uid: 14408 components: - type: Transform @@ -140091,6 +141724,12 @@ entities: - type: Transform pos: -31.5,27.5 parent: 5350 + - uid: 14560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 5350 - uid: 14620 components: - type: Transform @@ -140111,11 +141750,6 @@ entities: - type: Transform pos: -4.5,16.5 parent: 5350 - - uid: 14879 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 5350 - uid: 14946 components: - type: Transform @@ -140151,6 +141785,16 @@ entities: - type: Transform pos: -1.5,-6.5 parent: 5350 + - uid: 15207 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 5350 + - uid: 15210 + components: + - type: Transform + pos: 64.5,-11.5 + parent: 5350 - uid: 15273 components: - type: Transform @@ -140246,6 +141890,12 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 5350 + - uid: 16512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 5350 - uid: 16526 components: - type: Transform @@ -140656,11 +142306,6 @@ entities: - type: Transform pos: 10.5,-62.5 parent: 5350 - - uid: 19724 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 5350 - uid: 19756 components: - type: Transform @@ -140766,11 +142411,6 @@ entities: - type: Transform pos: -42.5,40.5 parent: 5350 - - uid: 20884 - components: - - type: Transform - pos: -0.5,-42.5 - parent: 5350 - uid: 20933 components: - type: Transform @@ -140806,6 +142446,12 @@ entities: - type: Transform pos: 24.5,-55.5 parent: 5350 + - uid: 22674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 5350 - uid: 22693 components: - type: Transform @@ -141421,7 +143067,7 @@ entities: - uid: 16621 components: - type: Transform - pos: 25.480854,-33.56362 + pos: 24.597183,-35.339874 parent: 5350 - uid: 23133 components: @@ -141530,11 +143176,6 @@ entities: - type: Transform pos: 42.547264,-3.4866009 parent: 5350 - - uid: 11588 - components: - - type: Transform - pos: -5.4954705,38.59668 - parent: 5350 - uid: 14506 components: - type: Transform @@ -141592,11 +143233,6 @@ entities: parent: 5350 - proto: SheetSteel1 entities: - - uid: 5354 - components: - - type: Transform - pos: -21.5,17.5 - parent: 5350 - uid: 23001 components: - type: Transform @@ -141606,6 +143242,16 @@ entities: count: 4 - proto: SheetSteel10 entities: + - uid: 6645 + components: + - type: Transform + pos: -5.3954077,38.543777 + parent: 5350 + - uid: 11588 + components: + - type: Transform + pos: -5.5672827,38.590652 + parent: 5350 - uid: 16467 components: - type: Transform @@ -141651,6 +143297,11 @@ entities: - type: Transform pos: -43.439026,26.539034 parent: 5350 + - uid: 28215 + components: + - type: Transform + pos: -43.287315,26.442478 + parent: 5350 - proto: ShowcaseRobot entities: - uid: 1971 @@ -141696,21 +143347,6 @@ entities: - type: Transform pos: -40.5,7.5 parent: 5350 - - uid: 791 - components: - - type: Transform - pos: 9.5,-34.5 - parent: 5350 - - uid: 792 - components: - - type: Transform - pos: 9.5,-35.5 - parent: 5350 - - uid: 804 - components: - - type: Transform - pos: 9.5,-33.5 - parent: 5350 - uid: 1576 components: - type: Transform @@ -142008,6 +143644,11 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-27.5 parent: 5350 + - uid: 16334 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 5350 - uid: 16466 components: - type: Transform @@ -142031,21 +143672,29 @@ entities: - type: Transform pos: 12.5,-46.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 19740 components: - type: Transform pos: 13.5,-46.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 19741 components: - type: Transform pos: 15.5,-46.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 19745 components: - type: Transform pos: 16.5,-46.5 parent: 5350 + - type: DeviceLinkSink + invokeCounter: 4 - uid: 20926 components: - type: Transform @@ -142066,15 +143715,10 @@ entities: - type: Transform pos: -15.5,-27.5 parent: 5350 - - uid: 24244 - components: - - type: Transform - pos: -12.5,-6.5 - parent: 5350 - - uid: 24248 + - uid: 28212 components: - type: Transform - pos: -17.5,-6.5 + pos: -17.5,-4.5 parent: 5350 - proto: ShuttersRadiationOpen entities: @@ -142109,6 +143753,13 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-34.5 parent: 5350 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 28205 + components: + - type: Transform + pos: -43.58703,33.41721 + parent: 5350 - proto: SignAi entities: - uid: 9089 @@ -142161,16 +143812,6 @@ entities: - Pressed: Toggle 5045: - Pressed: Toggle - - uid: 6629 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,30.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 6953: - - Pressed: Toggle - uid: 8209 components: - type: MetaData @@ -142185,68 +143826,6 @@ entities: - Pressed: Toggle 4145: - Pressed: Toggle - - uid: 9008 - components: - - type: MetaData - name: Space Burn Chamber - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-37.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 27135: - - Pressed: Toggle - 27136: - - Pressed: Toggle - - uid: 11234 - components: - - type: MetaData - name: Blast Doors - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,24.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 23567: - - Pressed: Toggle - 23566: - - Pressed: Toggle - 23565: - - Pressed: Toggle - - uid: 11239 - components: - - type: MetaData - name: Blast Doors - - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,24.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 23567: - - Pressed: Toggle - 23566: - - Pressed: Toggle - 23565: - - Pressed: Toggle - - uid: 11434 - components: - - type: MetaData - name: Space Burn Chamber - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-26.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 13934: - - Pressed: Toggle - 13163: - - Pressed: Toggle - 13781: - - Pressed: Toggle - uid: 11517 components: - type: MetaData @@ -142307,25 +143886,6 @@ entities: linkedPorts: 8656: - Pressed: DoorBolt - - uid: 15581 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,2.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 15954: - - Pressed: Toggle - - uid: 15949 - components: - - type: MetaData - name: Window Shutters - - type: Transform - pos: -15.5,-0.5 - parent: 5350 - uid: 16024 components: - type: MetaData @@ -142354,18 +143914,6 @@ entities: - Pressed: Open 16470: - Pressed: Open - - uid: 22258 - components: - - type: MetaData - name: Janitorial Service Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-9.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 19627: - - Pressed: Toggle - proto: SignalButtonDirectional entities: - uid: 6536 @@ -142415,6 +143963,18 @@ entities: linkedPorts: 17275: - Pressed: DoorBolt + - uid: 11423 + components: + - type: MetaData + name: Door Bolt + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-55.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 10406: + - Pressed: DoorBolt - uid: 21082 components: - type: MetaData @@ -142477,22 +144037,41 @@ entities: - Pressed: DoorBolt - proto: SignalSwitch entities: - - uid: 1154 + - uid: 2566 components: - type: MetaData - name: Robotics Garage Doors + name: Blast Doors - type: Transform - pos: 9.5,-32.5 + pos: 48.5,24.5 parent: 5350 - type: DeviceLinkSource linkedPorts: - 804: + 23567: - On: Open - Off: Close - 791: + 23566: - On: Open - Off: Close - 792: + 23565: + - On: Open + - Off: Close + - uid: 15949 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,7.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 7323: + - On: Open + - Off: Close + 14414: + - On: Open + - Off: Close + 499: - On: Open - Off: Close - uid: 16224 @@ -142650,29 +144229,6 @@ entities: 19270: - On: Open - Off: Close - - uid: 19748 - components: - - type: MetaData - name: Shutters - - type: Transform - pos: 17.5,-42.5 - parent: 5350 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 19745: - - On: Open - - Off: Close - 19741: - - Off: Close - - On: Open - 19740: - - On: Open - - Off: Close - 19736: - - On: Open - - Off: Close - uid: 22352 components: - type: MetaData @@ -142733,6 +144289,56 @@ entities: - Off: Off - proto: SignalSwitchDirectional entities: + - uid: 1301 + components: + - type: MetaData + name: Front Shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 5350 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2415: + - On: Open + - Off: Close + 2416: + - On: Open + - Off: Close + 2417: + - On: Open + - Off: Close + 2418: + - On: Open + - Off: Close + 2419: + - On: Open + - Off: Close + 2420: + - On: Open + - Off: Close + 2421: + - On: Open + - Off: Close + - uid: 2558 + components: + - type: MetaData + desc: Vent the burn chamber into space. + name: Vent Burn Chamber + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-38.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 27135: + - On: Open + - Off: Close + 27136: + - On: Open + - Off: Close - uid: 4758 components: - type: MetaData @@ -142782,6 +144388,8 @@ entities: rot: 3.141592653589793 rad pos: 0.5,41.5 parent: 5350 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 6335: @@ -142809,6 +144417,25 @@ entities: 9630: - On: Open - Off: Close + - uid: 7797 + components: + - type: MetaData + name: Pod Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-58.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 6818: + - On: Open + - Off: Close + 4161: + - On: Open + - Off: Close + 15903: + - On: Open + - Off: Close - uid: 9373 components: - type: MetaData @@ -142889,23 +144516,6 @@ entities: 1576: - On: Open - Off: Close - - uid: 10433 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-59.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 6818: - - On: Open - - Off: Close - 4161: - - On: Open - - Off: Close - 15903: - - On: Open - - Off: Close - uid: 10468 components: - type: MetaData @@ -142914,6 +144524,8 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,34.5 parent: 5350 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 7594: @@ -142947,98 +144559,43 @@ entities: 11733: - On: Open - Off: Close - - uid: 14417 - components: - - type: Transform - pos: -39.5,7.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 499: - - On: Open - - Off: Close - 14414: - - On: Open - - Off: Close - 7323: - - On: Open - - Off: Close - - uid: 15042 + - uid: 12130 components: - type: MetaData - name: Window Blast Door - - type: Transform - rot: 3.141592653589793 rad - pos: -11.821655,-4.497631 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 15096: - - On: Open - - Off: Close - - uid: 15867 - components: + desc: Empty the burn chamber into space. + name: Vent Burn Chamber - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,7.5 + rot: -1.5707963267948966 rad + pos: 48.5,-28.5 parent: 5350 - type: DeviceLinkSource linkedPorts: - 499: + 13934: - On: Open - Off: Close - 14414: + 13163: - On: Open - Off: Close - 7323: + 13781: - On: Open - Off: Close - - uid: 16334 + - uid: 14901 components: - type: MetaData - name: Front Shutters + name: Pod Shutters - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 5350 - - type: DeviceLinkSource - linkedPorts: - 2421: - - On: Open - - Off: Close - 2420: - - On: Open - - Off: Close - 2419: - - On: Open - - Off: Close - 2418: - - On: Open - - Off: Close - 2417: - - On: Open - - Off: Close - 2416: - - On: Open - - Off: Close - 2415: - - On: Open - - Off: Close - - uid: 16383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-58.5 + pos: 15.5,-59.5 parent: 5350 - type: DeviceLinkSource linkedPorts: - 6818: + 15903: - On: Open - Off: Close 4161: - On: Open - Off: Close - 15903: + 6818: - On: Open - Off: Close - uid: 17321 @@ -143063,6 +144620,45 @@ entities: 21785: - On: On - Off: Off + - uid: 19106 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,30.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 6953: + - On: On + - Off: Off + - uid: 19107 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 15954: + - On: On + - Off: Off + - uid: 19110 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 19627: + - Off: Off + - On: On - uid: 20315 components: - type: MetaData @@ -143104,6 +144700,8 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-12.5 parent: 5350 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 2460: @@ -143200,22 +144798,89 @@ entities: 21786: - On: On - Off: Off + - uid: 23365 + components: + - type: MetaData + name: Window Shutters + - type: Transform + pos: 17.5,-42.5 + parent: 5350 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 19745: + - On: Open + - Off: Close + 19741: + - On: Open + - Off: Close + 19740: + - On: Open + - Off: Close + 19736: + - On: Open + - Off: Close - uid: 24265 components: - type: MetaData - name: HoP Line Shutter + name: Window Shutters - type: Transform rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 5350 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: - 24244: + 15096: + - On: Open + - Off: Close + 16334: - On: Open - Off: Close - 24248: + 28212: - On: Open - Off: Close + - uid: 28285 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 17445: + - On: On + - Off: Off + - uid: 28286 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-30.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 4311: + - On: On + - Off: Off + - uid: 28292 + components: + - type: MetaData + name: Custodial Service + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-28.5 + parent: 5350 + - type: DeviceLinkSource + linkedPorts: + 28293: + - On: On + - Off: Off - proto: SignAnomaly entities: - uid: 19445 @@ -143230,6 +144895,14 @@ entities: - type: Transform pos: 21.5,-36.5 parent: 5350 +- proto: SignArcade + entities: + - uid: 4520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-55.5 + parent: 5350 - proto: SignArmory entities: - uid: 6573 @@ -143511,15 +145184,15 @@ entities: - type: Transform pos: -0.5,-22.5 parent: 5350 - - uid: 20169 + - uid: 19315 components: - type: Transform - pos: -4.5,-59.5 + pos: -0.5,-54.5 parent: 5350 - - uid: 22938 + - uid: 20169 components: - type: Transform - pos: -0.5,-53.5 + pos: -4.5,-59.5 parent: 5350 - uid: 26561 components: @@ -143719,6 +145392,12 @@ entities: - type: Transform pos: -49.5,6.5 parent: 5350 + - uid: 6134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,10.5 + parent: 5350 - uid: 10441 components: - type: Transform @@ -143740,6 +145419,12 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,-38.5 parent: 5350 + - uid: 16662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,10.5 + parent: 5350 - uid: 19151 components: - type: Transform @@ -144196,16 +145881,6 @@ entities: - type: Transform pos: -6.5,-6.5 parent: 5350 - - uid: 24057 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 5350 - - uid: 24058 - components: - - type: Transform - pos: -6.5,-17.5 - parent: 5350 - proto: SignSecureMed entities: - uid: 1958 @@ -144213,12 +145888,6 @@ entities: - type: Transform pos: 7.5,-11.5 parent: 5350 - - uid: 5162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,10.5 - parent: 5350 - uid: 6186 components: - type: Transform @@ -144244,12 +145913,6 @@ entities: - type: Transform pos: 55.5,31.5 parent: 5350 - - uid: 14126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,10.5 - parent: 5350 - uid: 18646 components: - type: Transform @@ -144275,11 +145938,6 @@ entities: parent: 5350 - proto: SignSecureSmall entities: - - uid: 1405 - components: - - type: Transform - pos: -18.5,-4.5 - parent: 5350 - uid: 1408 components: - type: Transform @@ -144456,6 +146114,11 @@ entities: - type: Transform pos: 98.5,-3.5 parent: 5350 + - uid: 15847 + components: + - type: Transform + pos: 105.5,-1.5 + parent: 5350 - proto: SignToolStorage entities: - uid: 3617 @@ -146253,15 +147916,20 @@ entities: parent: 5350 - proto: SpaceHeater entities: - - uid: 23098 + - uid: 24467 components: - type: Transform - pos: 52.5,-5.5 + pos: 57.5,-4.5 parent: 5350 - - uid: 23099 + - uid: 26143 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 5350 + - uid: 28275 components: - type: Transform - pos: 50.5,-5.5 + pos: 57.5,-6.5 parent: 5350 - proto: SpaceHeaterAnchored entities: @@ -146290,6 +147958,30 @@ entities: rot: 3.141592653589793 rad pos: -6.5,62.5 parent: 5350 + - uid: 9265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-58.5 + parent: 5350 + - uid: 9267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-56.5 + parent: 5350 + - uid: 14742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 + parent: 5350 + - uid: 15699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-58.5 + parent: 5350 - uid: 15746 components: - type: Transform @@ -146315,13 +148007,18 @@ entities: parent: 5350 - type: SpamEmitSound enabled: False - - uid: 22605 + - uid: 19242 components: - type: Transform - pos: 0.5,-64.5 + rot: 1.5707963267948966 rad + pos: 0.5,-56.5 + parent: 5350 + - uid: 20280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-58.5 parent: 5350 - - type: SpamEmitSound - enabled: False - uid: 26490 components: - type: Transform @@ -146331,10 +148028,10 @@ entities: enabled: False - proto: SpawnMechRipley entities: - - uid: 15357 + - uid: 9008 components: - type: Transform - pos: -37.5,6.5 + pos: -36.5,6.5 parent: 5350 - proto: SpawnMobAlexander entities: @@ -146345,10 +148042,10 @@ entities: parent: 5350 - proto: SpawnMobBandito entities: - - uid: 6645 + - uid: 20398 components: - type: Transform - pos: 29.5,-45.5 + pos: 29.5,-46.5 parent: 5350 - proto: SpawnMobButterfly entities: @@ -146399,6 +148096,13 @@ entities: - type: Transform pos: 11.5,6.5 parent: 5350 +- proto: SpawnMobFrog + entities: + - uid: 16514 + components: + - type: Transform + pos: 43.5,35.5 + parent: 5350 - proto: SpawnMobGoat entities: - uid: 24890 @@ -146837,6 +148541,16 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 5350 + - uid: 6614 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 5350 + - uid: 24556 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 5350 - proto: SpawnPointObserver entities: - uid: 12604 @@ -146898,6 +148612,21 @@ entities: - type: Transform pos: -19.5,16.5 parent: 5350 + - uid: 8088 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 5350 + - uid: 14929 + components: + - type: Transform + pos: 39.5,37.5 + parent: 5350 + - uid: 16342 + components: + - type: Transform + pos: 32.5,0.5 + parent: 5350 - uid: 16584 components: - type: Transform @@ -146943,10 +148672,75 @@ entities: - type: Transform pos: 34.5,45.5 parent: 5350 - - uid: 23180 + - uid: 24117 + components: + - type: Transform + pos: 42.5,42.5 + parent: 5350 + - uid: 27832 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 5350 + - uid: 28224 + components: + - type: Transform + pos: 28.5,27.5 + parent: 5350 + - uid: 28225 + components: + - type: Transform + pos: 29.5,32.5 + parent: 5350 + - uid: 28226 + components: + - type: Transform + pos: 33.5,50.5 + parent: 5350 + - uid: 28227 + components: + - type: Transform + pos: 29.5,50.5 + parent: 5350 + - uid: 28229 + components: + - type: Transform + pos: 20.5,26.5 + parent: 5350 + - uid: 28230 + components: + - type: Transform + pos: 20.5,21.5 + parent: 5350 + - uid: 28231 + components: + - type: Transform + pos: 27.5,23.5 + parent: 5350 + - uid: 28232 + components: + - type: Transform + pos: 24.5,7.5 + parent: 5350 + - uid: 28233 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 5350 + - uid: 28234 components: - type: Transform - pos: 40.5,37.5 + pos: 27.5,-2.5 + parent: 5350 + - uid: 28237 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 5350 + - uid: 28238 + components: + - type: Transform + pos: 0.5,-11.5 parent: 5350 - proto: SpawnPointQuartermaster entities: @@ -146969,27 +148763,27 @@ entities: parent: 5350 - proto: SpawnPointResearchAssistant entities: - - uid: 13736 + - uid: 4358 components: - type: Transform - pos: 5.5,-46.5 + pos: 5.5,-51.5 parent: 5350 - - uid: 15600 + - uid: 9774 components: - type: Transform - pos: 5.5,-45.5 + pos: 5.5,-52.5 parent: 5350 - - uid: 15602 + - uid: 10396 components: - type: Transform - pos: 5.5,-44.5 + pos: 5.5,-50.5 parent: 5350 - proto: SpawnPointResearchDirector entities: - - uid: 3634 + - uid: 28352 components: - type: Transform - pos: 29.5,-46.5 + pos: 30.5,-46.5 parent: 5350 - proto: SpawnPointSalvageSpecialist entities: @@ -147010,30 +148804,30 @@ entities: parent: 5350 - proto: SpawnPointScientist entities: - - uid: 9423 + - uid: 3890 components: - type: Transform - pos: 1.5,-45.5 + pos: 1.5,-52.5 parent: 5350 - - uid: 10392 + - uid: 4364 components: - type: Transform - pos: 1.5,-44.5 + pos: 1.5,-49.5 parent: 5350 - - uid: 13737 + - uid: 4710 components: - type: Transform - pos: 1.5,-46.5 + pos: 5.5,-49.5 parent: 5350 - - uid: 14672 + - uid: 9412 components: - type: Transform - pos: 5.5,-43.5 + pos: 1.5,-50.5 parent: 5350 - - uid: 14929 + - uid: 20667 components: - type: Transform - pos: 1.5,-43.5 + pos: 1.5,-51.5 parent: 5350 - proto: SpawnPointSecurityCadet entities: @@ -147074,11 +148868,6 @@ entities: parent: 5350 - proto: SpawnPointSecurityOfficer entities: - - uid: 6690 - components: - - type: Transform - pos: -2.5,29.5 - parent: 5350 - uid: 6760 components: - type: Transform @@ -147114,6 +148903,11 @@ entities: - type: Transform pos: -2.5,45.5 parent: 5350 + - uid: 28219 + components: + - type: Transform + pos: -3.5,28.5 + parent: 5350 - proto: SpawnPointServiceWorker entities: - uid: 2753 @@ -147187,7 +148981,19 @@ entities: - uid: 10328 components: - type: Transform - pos: -15.246452,42.265617 + pos: -15.242407,42.34197 + parent: 5350 + - uid: 28198 + components: + - type: Transform + pos: -15.179907,42.46697 + parent: 5350 +- proto: SprayBottle + entities: + - uid: 16601 + components: + - type: Transform + pos: 16.754986,-51.498417 parent: 5350 - proto: SprayBottleSpaceCleaner entities: @@ -147259,6 +149065,11 @@ entities: - type: Transform pos: -23.5,-31.5 parent: 5350 + - uid: 26138 + components: + - type: Transform + pos: -15.5,28.5 + parent: 5350 - proto: StationAiUploadComputer entities: - uid: 996 @@ -147307,11 +149118,21 @@ entities: - type: Transform pos: 33.5,5.5 parent: 5350 + - uid: 9406 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 5350 - uid: 9414 components: - type: Transform pos: 8.5,-6.5 parent: 5350 + - uid: 19460 + components: + - type: Transform + pos: -37.5,7.5 + parent: 5350 - uid: 19495 components: - type: Transform @@ -147327,63 +149148,48 @@ entities: - type: Transform pos: 3.5,34.5 parent: 5350 - - uid: 24056 + - uid: 28279 components: - type: Transform - pos: -38.5,7.5 + pos: -13.5,-27.5 parent: 5350 - proto: SteelBench entities: - - uid: 11422 + - uid: 4540 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-46.5 + pos: 4.5,-51.5 parent: 5350 - - uid: 11462 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-44.5 - parent: 5350 - - uid: 15677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-46.5 - parent: 5350 - - uid: 15687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 - parent: 5350 - - uid: 22674 + - uid: 4544 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-45.5 + pos: 4.5,-52.5 parent: 5350 - - uid: 22682 + - uid: 4641 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-44.5 + pos: 4.5,-50.5 parent: 5350 - - uid: 27831 + - uid: 4700 components: - type: Transform - pos: 40.5,42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-51.5 parent: 5350 - - uid: 27832 + - uid: 6130 components: - type: Transform - pos: 41.5,42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-52.5 parent: 5350 - - uid: 27833 + - uid: 18414 components: - type: Transform - pos: 42.5,42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-50.5 parent: 5350 - proto: Stool entities: @@ -147404,12 +149210,6 @@ entities: - type: Transform pos: -30.496607,20.70544 parent: 5350 - - uid: 4364 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.512099,-47.34225 - parent: 5350 - uid: 9440 components: - type: Transform @@ -147536,12 +149336,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,41.5 parent: 5350 - - uid: 16453 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.483305,-59.313442 - parent: 5350 - uid: 16823 components: - type: Transform @@ -147588,6 +149382,12 @@ entities: rot: 3.141592653589793 rad pos: -51.5,-24.5 parent: 5350 + - uid: 18576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5049057,-53.314056 + parent: 5350 - uid: 19153 components: - type: Transform @@ -148097,11 +149897,67 @@ entities: - type: Transform pos: -18.5,-10.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: + - 22167 + - 22168 + - 22229 + - 22348 - uid: 1489 components: - type: Transform pos: -14.5,-11.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: + - 23099 + - 23098 + - 23051 + - 22911 - uid: 4104 components: - type: Transform @@ -148113,8 +149969,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -148125,11 +149981,49 @@ entities: - 0 - 0 - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23284 + - 23406 + - 23407 + - 23472 - uid: 7165 components: - type: Transform pos: -14.5,-10.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: + - 23712 + - 23905 + - 23956 + - 23964 - proto: SuitStorageEVAAlternate entities: - uid: 2617 @@ -148137,17 +150031,38 @@ entities: - type: Transform pos: -14.5,-16.5 parent: 5350 - - uid: 11032 - components: - - type: Transform - pos: -14.5,-15.5 - parent: 5350 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 6996 + - 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: + - 24056 + - 24057 + - 24058 + - 24244 + - uid: 7801 components: - type: Transform - pos: -0.5,50.5 + pos: -18.5,-16.5 parent: 5350 - type: EntityStorage air: @@ -148155,8 +150070,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -148173,29 +150088,47 @@ entities: showEnts: False occludes: True ents: - - 7011 - - 7010 - - 7009 - - 7004 - - uid: 7774 + - 8883 + - 8865 + - 7940 + - 7808 + - uid: 11032 components: - type: Transform - pos: -1.5,50.5 + pos: -14.5,-15.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: - - 7808 - - 7797 - - 7795 - - 7792 - - uid: 9506 + - 24248 + - 24266 + - 24321 + - 24328 + - uid: 15195 components: - type: Transform - pos: 0.5,50.5 + pos: -18.5,-15.5 parent: 5350 - type: EntityStorage air: @@ -148221,10 +150154,81 @@ entities: showEnts: False occludes: True ents: - - 9537 - - 9586 - - 9615 - - 9617 + - 15196 + - 15198 + - 15199 + - 15200 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6996 + components: + - type: Transform + pos: -0.5,50.5 + parent: 5350 + - 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 + - uid: 7774 + components: + - type: Transform + pos: -1.5,50.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 + - uid: 9506 + components: + - type: Transform + pos: 0.5,50.5 + parent: 5350 + - 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 - proto: SuitStorageHOS entities: - uid: 10385 @@ -148726,6 +150730,27 @@ entities: - SurveillanceCameraCommand nameSet: True id: AI Tunnel 2 + - uid: 28282 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge + - uid: 28283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Conference Room - proto: SurveillanceCameraEngineering entities: - uid: 11516 @@ -149405,17 +151430,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: North Hall 3 - - uid: 23061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-18.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Main Loop South 1 - uid: 23071 components: - type: Transform @@ -149699,6 +151713,17 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Bridge Shop + - uid: 27196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-18.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Main Loop South 1 - proto: SurveillanceCameraMedical entities: - uid: 16656 @@ -149936,6 +151961,16 @@ entities: parent: 5350 - proto: SurveillanceCameraScience entities: + - uid: 14558 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Lockers - uid: 15119 components: - type: Transform @@ -149958,16 +151993,6 @@ entities: - SurveillanceCameraScience nameSet: True id: XenoArch - Chamber One - - uid: 19196 - components: - - type: Transform - pos: 3.5,-47.5 - parent: 5350 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Locker Room - uid: 19197 components: - type: Transform @@ -150001,12 +152026,6 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics - North - - uid: 19201 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-34.5 - parent: 5350 - uid: 19202 components: - type: Transform @@ -150039,27 +152058,27 @@ entities: - SurveillanceCameraScience nameSet: True id: XenoArch - Canisters - - uid: 19638 + - uid: 19639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-44.5 + pos: 16.5,-53.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: XenoArch - Office - - uid: 19639 + id: XenoArch - Test Area + - uid: 20285 components: - type: Transform - pos: 16.5,-53.5 + rot: 3.141592653589793 rad + pos: 7.5,-43.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraScience nameSet: True - id: XenoArch - Test Area + id: Offices - uid: 20857 components: - type: Transform @@ -150100,12 +152119,6 @@ entities: - SurveillanceCameraScience nameSet: True id: East Hall - - uid: 20866 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 5350 - uid: 20901 components: - type: Transform @@ -150128,6 +152141,17 @@ entities: - SurveillanceCameraScience nameSet: True id: Robotics Surgery + - uid: 28117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Central Hall - proto: SurveillanceCameraSecurity entities: - uid: 6549 @@ -150760,31 +152784,55 @@ entities: - SurveillanceCameraEntertainment nameSet: True id: Theatre -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 9888 + - uid: 25982 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-8.5 + pos: -5.5,31.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEntertainment - - uid: 15116 + nameSet: True + id: Prison Life + - uid: 26137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-6.5 + pos: -46.5,-14.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEntertainment - - uid: 17256 + nameSet: True + id: The News + - uid: 26139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-37.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Medical +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 9888 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-14.5 + pos: -46.5,-8.5 + parent: 5350 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + - uid: 15116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-6.5 parent: 5350 - type: SurveillanceCamera setupAvailableNetworks: @@ -151075,22 +153123,12 @@ entities: - type: Transform pos: 0.5,-28.5 parent: 5350 - - uid: 4304 - components: - - type: Transform - pos: 4.5,-30.5 - parent: 5350 - uid: 4324 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-33.5 parent: 5350 - - uid: 4358 - components: - - type: Transform - pos: 6.5,-47.5 - parent: 5350 - uid: 4368 components: - type: Transform @@ -151115,6 +153153,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,-26.5 parent: 5350 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-59.5 + parent: 5350 - uid: 4776 components: - type: Transform @@ -151140,11 +153184,6 @@ entities: - type: Transform pos: -16.5,-31.5 parent: 5350 - - uid: 5540 - components: - - type: Transform - pos: -6.5,44.5 - parent: 5350 - uid: 5743 components: - type: Transform @@ -151363,6 +153402,11 @@ entities: - type: Transform pos: 8.5,39.5 parent: 5350 + - uid: 8493 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 5350 - uid: 8496 components: - type: Transform @@ -151451,6 +153495,12 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-59.5 parent: 5350 + - uid: 9324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-53.5 + parent: 5350 - uid: 9420 components: - type: Transform @@ -151741,6 +153791,12 @@ entities: - type: Transform pos: 28.5,23.5 parent: 5350 + - uid: 13907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-30.5 + parent: 5350 - uid: 14080 components: - type: Transform @@ -151850,31 +153906,11 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-32.5 parent: 5350 - - uid: 15945 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 5350 - - uid: 15946 - components: - - type: Transform - pos: 5.5,-42.5 - parent: 5350 - - uid: 15953 - components: - - type: Transform - pos: 0.5,-42.5 - parent: 5350 - uid: 15968 components: - type: Transform pos: -30.5,-41.5 parent: 5350 - - uid: 16050 - components: - - type: Transform - pos: 6.5,-42.5 - parent: 5350 - uid: 16075 components: - type: Transform @@ -151929,17 +153965,18 @@ entities: - type: Transform pos: -16.5,-40.5 parent: 5350 - - uid: 16375 - components: - - type: Transform - pos: -15.5,28.5 - parent: 5350 - uid: 16380 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-35.5 parent: 5350 + - uid: 16511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-45.5 + parent: 5350 - uid: 16631 components: - type: Transform @@ -152075,6 +154112,18 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-47.5 parent: 5350 + - uid: 20049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 5350 + - uid: 20284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-46.5 + parent: 5350 - uid: 20314 components: - type: Transform @@ -152090,6 +154139,24 @@ entities: - type: Transform pos: 24.5,-44.5 parent: 5350 + - uid: 20420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-48.5 + parent: 5350 + - uid: 20663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 5350 + - uid: 20715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-48.5 + parent: 5350 - uid: 20751 components: - type: Transform @@ -152101,6 +154168,12 @@ entities: - type: Transform pos: 22.5,-44.5 parent: 5350 + - uid: 20884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-58.5 + parent: 5350 - uid: 20905 components: - type: Transform @@ -152168,6 +154241,11 @@ entities: rot: 3.141592653589793 rad pos: 62.5,3.5 parent: 5350 + - uid: 22607 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 5350 - uid: 22668 components: - type: Transform @@ -152223,11 +154301,6 @@ entities: - type: Transform pos: -29.5,41.5 parent: 5350 - - uid: 23403 - components: - - type: Transform - pos: -5.5,31.5 - parent: 5350 - uid: 23804 components: - type: Transform @@ -152449,6 +154522,16 @@ entities: rot: 1.5707963267948966 rad pos: -32.5,16.5 parent: 5350 + - uid: 28331 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 5350 + - uid: 28334 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 5350 - proto: TableCarpet entities: - uid: 693 @@ -152655,11 +154738,6 @@ entities: - type: Transform pos: -29.5,-27.5 parent: 5350 - - uid: 14660 - components: - - type: Transform - pos: 9.5,-43.5 - parent: 5350 - uid: 14885 components: - type: Transform @@ -152726,31 +154804,16 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-36.5 parent: 5350 - - uid: 19240 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 5350 - - uid: 19242 - components: - - type: Transform - pos: 10.5,-43.5 - parent: 5350 - - uid: 19243 - components: - - type: Transform - pos: 8.5,-44.5 - parent: 5350 - uid: 20048 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,-33.5 parent: 5350 - - uid: 22229 + - uid: 20470 components: - type: Transform - pos: -30.5,-29.5 + pos: 7.5,-45.5 parent: 5350 - uid: 22230 components: @@ -152805,6 +154868,38 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 5350 + - uid: 28336 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 5350 + - uid: 28337 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 5350 + - uid: 28340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 5350 + - uid: 28341 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 5350 + - uid: 28342 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 5350 + - uid: 28348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-46.5 + parent: 5350 - proto: TablePlasmaGlass entities: - uid: 11421 @@ -152818,11 +154913,6 @@ entities: - type: Transform pos: 25.5,-35.5 parent: 5350 - - uid: 15986 - components: - - type: Transform - pos: 25.5,-33.5 - parent: 5350 - uid: 16451 components: - type: Transform @@ -153067,12 +155157,6 @@ entities: - type: Transform pos: 43.5,8.5 parent: 5350 - - uid: 9267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-58.5 - parent: 5350 - uid: 9475 components: - type: Transform @@ -153215,12 +155299,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-27.5 parent: 5350 - - uid: 17326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-59.5 - parent: 5350 - uid: 20161 components: - type: Transform @@ -154187,6 +156265,16 @@ entities: - type: Transform pos: 106.5,-5.5 parent: 5350 + - uid: 28328 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 5350 + - uid: 28329 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 5350 - proto: TargetClown entities: - uid: 22356 @@ -154195,6 +156283,13 @@ entities: rot: 3.141592653589793 rad pos: -19.5,43.5 parent: 5350 +- proto: TargetDarts + entities: + - uid: 17324 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 5350 - proto: TargetHuman entities: - uid: 22349 @@ -154218,11 +156313,10 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,41.5 parent: 5350 - - uid: 22353 + - uid: 28246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,48.5 + pos: -23.5,46.5 parent: 5350 - proto: TegCenter entities: @@ -154492,6 +156586,32 @@ entities: - type: Transform pos: 61.5,15.5 parent: 5350 +- proto: ThrusterUnanchored + entities: + - uid: 14878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,33.5 + parent: 5350 + - uid: 21468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,33.5 + parent: 5350 + - uid: 28207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,33.5 + parent: 5350 + - uid: 28208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,33.5 + parent: 5350 - proto: TintedWindow entities: - uid: 2563 @@ -154667,6 +156787,12 @@ entities: occludes: True ents: - 6886 + - uid: 20332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 + parent: 5350 - uid: 21058 components: - type: Transform @@ -154751,7 +156877,7 @@ entities: - uid: 4542 components: - type: Transform - pos: 6.406399,-42.344067 + pos: 6.4426765,-48.3595 parent: 5350 - uid: 8531 components: @@ -154860,6 +156986,34 @@ entities: - type: Transform pos: 10.817179,-14.742743 parent: 5350 +- proto: ToyDeathRipley + entities: + - uid: 28311 + components: + - type: Transform + pos: 5.330079,-58.10044 + parent: 5350 +- proto: ToyFigurineBoxer + entities: + - uid: 22606 + components: + - type: Transform + pos: 29.31499,42.75375 + parent: 5350 +- proto: ToyFigurineChaplain + entities: + - uid: 6126 + components: + - type: Transform + pos: -25.337606,-65.35234 + parent: 5350 +- proto: ToyFigurineHoloClown + entities: + - uid: 28312 + components: + - type: Transform + pos: 5.6844482,-59.384808 + parent: 5350 - proto: ToyFigurineMedicalDoctor entities: - uid: 16235 @@ -154874,6 +157028,13 @@ entities: - type: Transform pos: -9.27002,-32.183598 parent: 5350 +- proto: ToyFigurineWizard + entities: + - uid: 28318 + components: + - type: Transform + pos: 5.6582737,-58.46253 + parent: 5350 - proto: ToyMouse entities: - uid: 14897 @@ -155301,13 +157462,6 @@ entities: - type: Transform pos: -19.5,6.5 parent: 5350 - - uid: 1082 - components: - - type: MetaData - name: cigarette machine - - type: Transform - pos: 6.5,-3.5 - parent: 5350 - uid: 7936 components: - type: MetaData @@ -155320,6 +157474,11 @@ entities: - type: Transform pos: -17.5,21.5 parent: 5350 + - uid: 9248 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 5350 - uid: 10436 components: - type: MetaData @@ -155556,10 +157715,15 @@ entities: - type: Transform pos: -30.5,-43.5 parent: 5350 - - uid: 15522 + - uid: 15083 components: - type: Transform - pos: -29.5,-48.5 + pos: -31.5,-29.5 + parent: 5350 + - uid: 15091 + components: + - type: Transform + pos: -18.5,32.5 parent: 5350 - uid: 15727 components: @@ -155585,6 +157749,13 @@ entities: - type: Transform pos: 25.5,-15.5 parent: 5350 +- proto: VendingMachineRestockMedical + entities: + - uid: 21048 + components: + - type: Transform + pos: -37.35472,-30.501534 + parent: 5350 - proto: VendingMachineRoboDrobe entities: - uid: 14511 @@ -155608,10 +157779,10 @@ entities: parent: 5350 - proto: VendingMachineSciDrobe entities: - - uid: 15987 + - uid: 16628 components: - type: Transform - pos: 2.5,-42.5 + pos: 2.5,-48.5 parent: 5350 - proto: VendingMachineSec entities: @@ -155669,23 +157840,11 @@ entities: parent: 5350 - proto: VendingMachineTankDispenserEngineering entities: - - uid: 1502 - components: - - type: MetaData - name: tank dispenser - - type: Transform - pos: -14.5,-14.5 - parent: 5350 - uid: 16264 components: - type: Transform pos: 53.5,19.5 parent: 5350 - - uid: 23957 - components: - - type: Transform - pos: 48.5,-5.5 - parent: 5350 - proto: VendingMachineTankDispenserEVA entities: - uid: 1486 @@ -155720,6 +157879,21 @@ entities: - type: Transform pos: 18.5,-60.5 parent: 5350 + - uid: 23828 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 5350 + - uid: 24449 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 5350 + - uid: 26140 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 5350 - proto: VendingMachineTheater entities: - uid: 3196 @@ -155744,25 +157918,6 @@ entities: - type: Transform pos: 35.5,6.5 parent: 5350 -- proto: VendingMachineWallMedical - entities: - - uid: 6949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,31.5 - parent: 5350 - - uid: 14901 - components: - - type: Transform - pos: -18.5,-33.5 - parent: 5350 - - uid: 22911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-38.5 - parent: 5350 - proto: VendingMachineWinter entities: - uid: 14691 @@ -155801,11 +157956,15 @@ entities: - type: Transform pos: -1.5,0.5 parent: 5350 - - uid: 24266 + - uid: 15018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-6.5 + pos: 9.5,1.5 + parent: 5350 + - uid: 28280 + components: + - type: Transform + pos: 11.5,37.5 parent: 5350 - proto: WallmountTelevision entities: @@ -156528,11 +158687,6 @@ entities: - type: Transform pos: 29.5,-60.5 parent: 5350 - - uid: 1598 - components: - - type: Transform - pos: 5.5,-48.5 - parent: 5350 - uid: 1628 components: - type: Transform @@ -157948,11 +160102,6 @@ entities: - type: Transform pos: -76.5,10.5 parent: 5350 - - uid: 6177 - components: - - type: Transform - pos: -53.5,10.5 - parent: 5350 - uid: 6224 components: - type: Transform @@ -158128,11 +160277,6 @@ entities: - type: Transform pos: -4.5,46.5 parent: 5350 - - uid: 6400 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 5350 - uid: 6406 components: - type: Transform @@ -159793,11 +161937,6 @@ entities: - type: Transform pos: 35.5,50.5 parent: 5350 - - uid: 9248 - components: - - type: Transform - pos: 6.5,-41.5 - parent: 5350 - uid: 9249 components: - type: Transform @@ -159813,6 +161952,12 @@ entities: - type: Transform pos: 9.5,-65.5 parent: 5350 + - uid: 9279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 5350 - uid: 9280 components: - type: Transform @@ -159828,6 +161973,24 @@ entities: - type: Transform pos: -43.5,34.5 parent: 5350 + - uid: 9336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 + parent: 5350 + - uid: 9338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 + parent: 5350 + - uid: 9339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-54.5 + parent: 5350 - uid: 9340 components: - type: Transform @@ -159908,31 +162071,11 @@ entities: - type: Transform pos: -33.5,41.5 parent: 5350 - - uid: 9400 - components: - - type: Transform - pos: 8.5,-42.5 - parent: 5350 - uid: 9409 components: - type: Transform pos: 52.5,26.5 parent: 5350 - - uid: 9412 - components: - - type: Transform - pos: 6.5,-48.5 - parent: 5350 - - uid: 9437 - components: - - type: Transform - pos: 7.5,-47.5 - parent: 5350 - - uid: 9438 - components: - - type: Transform - pos: 11.5,-42.5 - parent: 5350 - uid: 9442 components: - type: Transform @@ -160263,41 +162406,11 @@ entities: - type: Transform pos: -12.5,55.5 parent: 5350 - - uid: 10394 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 5350 - - uid: 10396 - components: - - type: Transform - pos: 8.5,-47.5 - parent: 5350 - - uid: 10401 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 5350 - uid: 10402 components: - type: Transform pos: -11.5,55.5 parent: 5350 - - uid: 10406 - components: - - type: Transform - pos: 0.5,-41.5 - parent: 5350 - - uid: 10407 - components: - - type: Transform - pos: 7.5,-41.5 - parent: 5350 - - uid: 10409 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 5350 - uid: 10462 components: - type: Transform @@ -160318,11 +162431,6 @@ entities: - type: Transform pos: 11.5,-27.5 parent: 5350 - - uid: 10661 - components: - - type: Transform - pos: 3.5,-48.5 - parent: 5350 - uid: 10691 components: - type: Transform @@ -160668,11 +162776,6 @@ entities: - type: Transform pos: 68.5,-12.5 parent: 5350 - - uid: 10992 - components: - - type: Transform - pos: 4.5,-48.5 - parent: 5350 - uid: 11047 components: - type: Transform @@ -162038,11 +164141,6 @@ entities: - type: Transform pos: 30.5,-41.5 parent: 5350 - - uid: 14884 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 5350 - uid: 14899 components: - type: Transform @@ -162068,11 +164166,6 @@ entities: - type: Transform pos: -52.5,4.5 parent: 5350 - - uid: 15091 - components: - - type: Transform - pos: -71.5,10.5 - parent: 5350 - uid: 15092 components: - type: Transform @@ -162088,6 +164181,12 @@ entities: - type: Transform pos: -14.5,2.5 parent: 5350 + - uid: 15156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 108.5,-1.5 + parent: 5350 - uid: 15178 components: - type: Transform @@ -162248,6 +164347,12 @@ entities: - type: Transform pos: 30.5,-36.5 parent: 5350 + - uid: 16050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 5350 - uid: 16080 components: - type: Transform @@ -162313,6 +164418,12 @@ entities: - type: Transform pos: -40.5,-52.5 parent: 5350 + - uid: 16201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 + parent: 5350 - uid: 16208 components: - type: Transform @@ -162343,6 +164454,12 @@ entities: - type: Transform pos: -39.5,-58.5 parent: 5350 + - uid: 16322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-54.5 + parent: 5350 - uid: 16324 components: - type: Transform @@ -162393,10 +164510,11 @@ entities: - type: Transform pos: 58.5,17.5 parent: 5350 - - uid: 16434 + - uid: 16398 components: - type: Transform - pos: 9.5,-41.5 + rot: -1.5707963267948966 rad + pos: -0.5,-42.5 parent: 5350 - uid: 16437 components: @@ -162433,11 +164551,6 @@ entities: - type: Transform pos: 20.5,-41.5 parent: 5350 - - uid: 16472 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 5350 - uid: 16477 components: - type: Transform @@ -162453,11 +164566,6 @@ entities: - type: Transform pos: 0.5,-27.5 parent: 5350 - - uid: 16517 - components: - - type: Transform - pos: 11.5,-41.5 - parent: 5350 - uid: 16542 components: - type: Transform @@ -162473,21 +164581,11 @@ entities: - type: Transform pos: 0.5,-37.5 parent: 5350 - - uid: 16567 - components: - - type: Transform - pos: 7.5,-42.5 - parent: 5350 - uid: 16569 components: - type: Transform pos: -0.5,-45.5 parent: 5350 - - uid: 16571 - components: - - type: Transform - pos: -0.5,-48.5 - parent: 5350 - uid: 16572 components: - type: Transform @@ -162508,10 +164606,16 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 5350 + - uid: 16586 + components: + - type: Transform + pos: 107.5,-6.5 + parent: 5350 - uid: 16597 components: - type: Transform - pos: 9.5,-42.5 + rot: 1.5707963267948966 rad + pos: 7.5,-47.5 parent: 5350 - uid: 16599 components: @@ -162798,6 +164902,12 @@ entities: - type: Transform pos: -47.5,37.5 parent: 5350 + - uid: 19100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 + parent: 5350 - uid: 19133 components: - type: Transform @@ -163513,11 +165623,6 @@ entities: - type: Transform pos: 40.5,-39.5 parent: 5350 - - uid: 20336 - components: - - type: Transform - pos: 7.5,-56.5 - parent: 5350 - uid: 20341 components: - type: Transform @@ -163603,6 +165708,18 @@ entities: - type: Transform pos: 30.5,-40.5 parent: 5350 + - uid: 20689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 5350 + - uid: 20721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 + parent: 5350 - uid: 20733 components: - type: Transform @@ -163668,6 +165785,12 @@ entities: - type: Transform pos: 14.5,-17.5 parent: 5350 + - uid: 20872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-54.5 + parent: 5350 - uid: 20878 components: - type: Transform @@ -163808,6 +165931,12 @@ entities: - type: Transform pos: 34.5,-39.5 parent: 5350 + - uid: 21361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-50.5 + parent: 5350 - uid: 21370 components: - type: Transform @@ -163823,6 +165952,12 @@ entities: - type: Transform pos: 66.5,10.5 parent: 5350 + - uid: 22258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 5350 - uid: 22265 components: - type: Transform @@ -164361,7 +166496,7 @@ entities: - uid: 25710 components: - type: Transform - pos: 112.5,1.5 + pos: 103.5,3.5 parent: 5350 - uid: 25711 components: @@ -164718,11 +166853,6 @@ entities: - type: Transform pos: 107.5,-1.5 parent: 5350 - - uid: 25786 - components: - - type: Transform - pos: 108.5,-1.5 - parent: 5350 - uid: 25787 components: - type: Transform @@ -164748,11 +166878,6 @@ entities: - type: Transform pos: 107.5,2.5 parent: 5350 - - uid: 25792 - components: - - type: Transform - pos: 107.5,1.5 - parent: 5350 - uid: 25793 components: - type: Transform @@ -164768,11 +166893,6 @@ entities: - type: Transform pos: 103.5,-1.5 parent: 5350 - - uid: 25796 - components: - - type: Transform - pos: 103.5,3.5 - parent: 5350 - uid: 25797 components: - type: Transform @@ -165018,11 +167138,6 @@ entities: - type: Transform pos: 106.5,-6.5 parent: 5350 - - uid: 25852 - components: - - type: Transform - pos: 107.5,-6.5 - parent: 5350 - uid: 25853 components: - type: Transform @@ -165518,6 +167633,23 @@ entities: - type: Transform pos: 74.5,-30.5 parent: 5350 + - uid: 28243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 112.5,1.5 + parent: 5350 + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.5,1.5 + parent: 5350 + - uid: 28313 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 5350 - proto: WallSolid entities: - uid: 57 @@ -165745,11 +167877,6 @@ entities: - type: Transform pos: 8.5,26.5 parent: 5350 - - uid: 819 - components: - - type: Transform - pos: 6.5,-58.5 - parent: 5350 - uid: 824 components: - type: Transform @@ -165770,11 +167897,6 @@ entities: - type: Transform pos: 34.5,47.5 parent: 5350 - - uid: 953 - components: - - type: Transform - pos: -0.5,-54.5 - parent: 5350 - uid: 1011 components: - type: Transform @@ -165785,6 +167907,12 @@ entities: - type: Transform pos: -33.5,24.5 parent: 5350 + - uid: 1144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-60.5 + parent: 5350 - uid: 1221 components: - type: Transform @@ -166050,11 +168178,6 @@ entities: - type: Transform pos: 33.5,-0.5 parent: 5350 - - uid: 2187 - components: - - type: Transform - pos: 33.5,-1.5 - parent: 5350 - uid: 2188 components: - type: Transform @@ -166810,11 +168933,6 @@ entities: - type: Transform pos: -39.5,7.5 parent: 5350 - - uid: 3423 - components: - - type: Transform - pos: -43.5,7.5 - parent: 5350 - uid: 3424 components: - type: Transform @@ -167295,6 +169413,11 @@ entities: - type: Transform pos: -45.5,4.5 parent: 5350 + - uid: 5540 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 5350 - uid: 5566 components: - type: Transform @@ -167805,11 +169928,6 @@ entities: - type: Transform pos: -43.5,-5.5 parent: 5350 - - uid: 6110 - components: - - type: Transform - pos: 6.5,-57.5 - parent: 5350 - uid: 6112 components: - type: Transform @@ -167910,6 +170028,12 @@ entities: - type: Transform pos: 27.5,34.5 parent: 5350 + - uid: 6400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-60.5 + parent: 5350 - uid: 6423 components: - type: Transform @@ -168950,11 +171074,22 @@ entities: - type: Transform pos: -23.5,-44.5 parent: 5350 + - uid: 10394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-58.5 + parent: 5350 - uid: 10397 components: - type: Transform pos: 16.5,-37.5 parent: 5350 + - uid: 10408 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 5350 - uid: 10418 components: - type: Transform @@ -168970,6 +171105,12 @@ entities: - type: Transform pos: 21.5,9.5 parent: 5350 + - uid: 10495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-56.5 + parent: 5350 - uid: 10503 components: - type: Transform @@ -168990,6 +171131,12 @@ entities: - type: Transform pos: -27.5,26.5 parent: 5350 + - uid: 10695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-47.5 + parent: 5350 - uid: 10705 components: - type: Transform @@ -169837,6 +171984,12 @@ entities: - type: Transform pos: -36.5,-48.5 parent: 5350 + - uid: 15147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,7.5 + parent: 5350 - uid: 15171 components: - type: Transform @@ -169912,6 +172065,12 @@ entities: - type: Transform pos: -24.5,25.5 parent: 5350 + - uid: 15325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 5350 - uid: 15332 components: - type: Transform @@ -170157,6 +172316,11 @@ entities: - type: Transform pos: -12.5,-43.5 parent: 5350 + - uid: 15808 + components: + - type: Transform + pos: 92.5,-1.5 + parent: 5350 - uid: 15840 components: - type: Transform @@ -170257,6 +172421,11 @@ entities: - type: Transform pos: -32.5,-36.5 parent: 5350 + - uid: 16300 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 5350 - uid: 16302 components: - type: Transform @@ -170277,11 +172446,6 @@ entities: - type: Transform pos: 28.5,-57.5 parent: 5350 - - uid: 16390 - components: - - type: Transform - pos: 4.5,-60.5 - parent: 5350 - uid: 16391 components: - type: Transform @@ -170307,11 +172471,6 @@ entities: - type: Transform pos: 9.5,-31.5 parent: 5350 - - uid: 16487 - components: - - type: Transform - pos: 5.5,-30.5 - parent: 5350 - uid: 16491 components: - type: Transform @@ -170322,21 +172481,11 @@ entities: - type: Transform pos: 26.5,-57.5 parent: 5350 - - uid: 16543 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 5350 - uid: 16548 components: - type: Transform pos: 14.5,-24.5 parent: 5350 - - uid: 16551 - components: - - type: Transform - pos: -0.5,-49.5 - parent: 5350 - uid: 16552 components: - type: Transform @@ -170367,11 +172516,6 @@ entities: - type: Transform pos: -34.5,-25.5 parent: 5350 - - uid: 16601 - components: - - type: Transform - pos: -0.5,-50.5 - parent: 5350 - uid: 16613 components: - type: Transform @@ -170867,6 +173011,12 @@ entities: - type: Transform pos: -38.5,-26.5 parent: 5350 + - uid: 17513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-60.5 + parent: 5350 - uid: 17539 components: - type: Transform @@ -171282,31 +173432,11 @@ entities: - type: Transform pos: 73.5,34.5 parent: 5350 - - uid: 19096 - components: - - type: Transform - pos: -0.5,-52.5 - parent: 5350 - - uid: 19097 - components: - - type: Transform - pos: -0.5,-53.5 - parent: 5350 - uid: 19099 components: - type: Transform pos: -0.5,-55.5 parent: 5350 - - uid: 19100 - components: - - type: Transform - pos: -0.5,-56.5 - parent: 5350 - - uid: 19106 - components: - - type: Transform - pos: 2.5,-60.5 - parent: 5350 - uid: 19108 components: - type: Transform @@ -171317,16 +173447,6 @@ entities: - type: Transform pos: -0.5,-60.5 parent: 5350 - - uid: 19110 - components: - - type: Transform - pos: -0.5,-58.5 - parent: 5350 - - uid: 19111 - components: - - type: Transform - pos: -0.5,-57.5 - parent: 5350 - uid: 19112 components: - type: Transform @@ -171467,6 +173587,12 @@ entities: - type: Transform pos: -65.5,29.5 parent: 5350 + - uid: 19417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 5350 - uid: 19419 components: - type: Transform @@ -171562,11 +173688,35 @@ entities: - type: Transform pos: 33.5,-30.5 parent: 5350 + - uid: 19604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 5350 + - uid: 19605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-46.5 + parent: 5350 + - uid: 19606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 5350 - uid: 19718 components: - type: Transform pos: -35.5,-41.5 parent: 5350 + - uid: 19724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-30.5 + parent: 5350 - uid: 19739 components: - type: Transform @@ -171872,6 +174022,17 @@ entities: - type: Transform pos: -48.5,4.5 parent: 5350 + - uid: 20282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 5350 + - uid: 20283 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 5350 - uid: 20295 components: - type: Transform @@ -172012,16 +174173,68 @@ entities: - type: Transform pos: -22.5,-51.5 parent: 5350 + - uid: 20659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-42.5 + parent: 5350 - uid: 20660 components: - type: Transform pos: -21.5,-53.5 parent: 5350 + - uid: 20661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 5350 + - uid: 20669 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 5350 + - uid: 20706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-41.5 + parent: 5350 + - uid: 20710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-41.5 + parent: 5350 - uid: 20711 components: - type: Transform pos: -31.5,-43.5 parent: 5350 + - uid: 20717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 5350 + - uid: 20718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 5350 + - uid: 20719 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 5350 + - uid: 20720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 5350 - uid: 20726 components: - type: Transform @@ -172057,6 +174270,18 @@ entities: - type: Transform pos: 8.5,-22.5 parent: 5350 + - uid: 20816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 + parent: 5350 + - uid: 20824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 5350 - uid: 20876 components: - type: Transform @@ -172122,11 +174347,6 @@ entities: - type: Transform pos: -17.5,-52.5 parent: 5350 - - uid: 20978 - components: - - type: Transform - pos: 6.5,-59.5 - parent: 5350 - uid: 20979 components: - type: Transform @@ -172647,6 +174867,11 @@ entities: - type: Transform pos: -25.5,39.5 parent: 5350 + - uid: 23180 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 5350 - uid: 23998 components: - type: Transform @@ -172662,11 +174887,6 @@ entities: - type: Transform pos: 92.5,2.5 parent: 5350 - - uid: 24021 - components: - - type: Transform - pos: 92.5,-1.5 - parent: 5350 - uid: 24065 components: - type: Transform @@ -172807,6 +175027,28 @@ entities: - type: Transform pos: 92.5,6.5 parent: 5350 + - uid: 27833 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 5350 + - uid: 28309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-59.5 + parent: 5350 + - uid: 28310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-60.5 + parent: 5350 + - uid: 28335 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 5350 - proto: WallSolidRust entities: - uid: 2091 @@ -173004,11 +175246,6 @@ entities: - type: Transform pos: -40.5,-38.5 parent: 5350 - - uid: 19107 - components: - - type: Transform - pos: 1.5,-60.5 - parent: 5350 - uid: 19586 components: - type: Transform @@ -173036,29 +175273,35 @@ entities: parent: 5350 - proto: WallWeaponCapacitorRecharger entities: - - uid: 1963 + - uid: 23091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,43.5 + parent: 5350 + - uid: 24478 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,46.5 parent: 5350 - - uid: 22348 + - uid: 24489 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,44.5 parent: 5350 - - uid: 22383 + - uid: 28124 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,34.5 parent: 5350 - - uid: 23091 + - uid: 28251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,43.5 + rot: 3.141592653589793 rad + pos: 0.5,22.5 parent: 5350 - proto: WardrobeBlackFilled entities: @@ -173240,8 +175483,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -173258,24 +175501,24 @@ entities: showEnts: False occludes: True ents: - - 7859 - - 7871 - - 7874 - - 7854 - - 7884 - - 7886 - - 7883 - - 7880 - - 7882 - - 7873 - - 8095 - - 8101 - - 8126 - - 7885 - - 7888 - - 8127 - - 8128 - 8227 + - 8128 + - 8127 + - 7888 + - 7885 + - 8126 + - 8101 + - 8095 + - 7873 + - 7882 + - 7880 + - 7883 + - 7886 + - 7884 + - 7854 + - 7874 + - 7871 + - 7859 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -173304,29 +175547,12 @@ entities: showEnts: False occludes: True ent: null -- proto: WardrobePrisonFilled - entities: - - uid: 15779 - components: - - type: Transform - pos: -13.5,27.5 - parent: 5350 - - uid: 15808 - components: - - type: Transform - pos: -10.5,27.5 - parent: 5350 - - uid: 15847 - components: - - type: Transform - pos: -7.5,27.5 - parent: 5350 - proto: WardrobeScienceFilled entities: - - uid: 14560 + - uid: 19615 components: - type: Transform - pos: 4.5,-42.5 + pos: 4.5,-48.5 parent: 5350 - proto: WardrobeWhiteFilled entities: @@ -173430,6 +175656,11 @@ entities: - type: Transform pos: 10.5,21.5 parent: 5350 + - uid: 14660 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 5350 - uid: 15752 components: - type: Transform @@ -173598,6 +175829,11 @@ entities: - type: Transform pos: -17.5,44.5 parent: 5350 + - uid: 9242 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 5350 - uid: 9756 components: - type: Transform @@ -173614,11 +175850,6 @@ entities: - type: Transform pos: -5.5,38.5 parent: 5350 - - uid: 15146 - components: - - type: Transform - pos: 2.5,-27.5 - parent: 5350 - uid: 22982 components: - type: Transform @@ -173636,12 +175867,17 @@ entities: rot: 3.141592653589793 rad pos: -7.5,44.5 parent: 5350 + - uid: 24513 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 5350 - proto: WeaponDisabler entities: - uid: 794 components: - type: Transform - pos: 9.544429,24.640163 + pos: 9.465627,24.685179 parent: 5350 - uid: 6651 components: @@ -173679,25 +175915,20 @@ entities: parent: 5350 - proto: WeaponLaserCarbine entities: - - uid: 23365 - components: - - type: Transform - pos: -5.4583154,36.902435 - parent: 5350 - uid: 23409 components: - type: Transform pos: -5.437482,36.714935 parent: 5350 - - uid: 23472 + - uid: 26688 components: - type: Transform - pos: -5.4235935,36.541325 + pos: -5.425219,36.507988 parent: 5350 - - uid: 23712 + - uid: 27208 components: - type: Transform - pos: -5.396512,36.34668 + pos: -5.425219,36.320488 parent: 5350 - proto: WeaponLaserCarbinePractice entities: @@ -173740,27 +175971,27 @@ entities: parent: 5350 - proto: WeaponShotgunEnforcer entities: - - uid: 23407 + - uid: 28199 components: - type: Transform - pos: -5.437482,37.270493 + pos: -3.460195,37.94028 parent: 5350 - proto: WeaponShotgunKammerer entities: - - uid: 23051 + - uid: 28201 components: - type: Transform - pos: -5.451371,37.56216 + pos: -5.4668856,37.257988 parent: 5350 - - uid: 23284 + - uid: 28202 components: - type: Transform - pos: -5.4583154,37.694103 + pos: -5.4668856,37.414238 parent: 5350 - - uid: 23406 + - uid: 28203 components: - type: Transform - pos: -5.4583154,37.40938 + pos: -5.4668856,37.570488 parent: 5350 - proto: WeaponSubMachineGunWt550 entities: @@ -173828,6 +176059,11 @@ entities: - type: Transform pos: 55.5,-12.5 parent: 5350 + - uid: 13496 + components: + - type: Transform + pos: 45.5,26.5 + parent: 5350 - uid: 15934 components: - type: Transform @@ -173863,6 +176099,11 @@ entities: - type: Transform pos: 42.5,-28.5 parent: 5350 + - uid: 28353 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 5350 - proto: WetFloorSign entities: - uid: 22726 @@ -173936,34 +176177,6 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,61.5 parent: 5350 - - uid: 12130 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-19.5 - parent: 5350 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 21462: - - DoorStatus: Close - 21461: - - DoorStatus: Close - - uid: 12131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 5350 - - type: DeviceLinkSink - invokeCounter: 2 - - type: DeviceLinkSource - linkedPorts: - 21462: - - DoorStatus: Close - 21461: - - DoorStatus: Close - uid: 13571 components: - type: Transform @@ -174097,6 +176310,34 @@ entities: - type: Transform pos: 112.5,-11.5 parent: 5350 + - uid: 28116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 21462: + - DoorStatus: Close + 21461: + - DoorStatus: Close + - uid: 28118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 5350 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 21462: + - DoorStatus: Close + 21461: + - DoorStatus: Close - proto: WindoorBarLocked entities: - uid: 21054 @@ -174146,12 +176387,12 @@ entities: pos: 20.5,-20.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 4 + invokeCounter: 6 - type: DeviceLinkSource linkedPorts: - 12131: + 28116: - DoorStatus: Close - 12130: + 28118: - DoorStatus: Close - uid: 21462 components: @@ -174160,12 +176401,12 @@ entities: pos: 20.5,-19.5 parent: 5350 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 5 - type: DeviceLinkSource linkedPorts: - 12131: + 28116: - DoorStatus: Close - 12130: + 28118: - DoorStatus: Close - proto: WindoorKitchenHydroponicsLocked entities: @@ -174364,16 +176605,6 @@ entities: - type: Transform pos: -3.5,1.5 parent: 5350 - - uid: 24002 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 5350 - - uid: 24009 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 5350 - uid: 26424 components: - type: Transform @@ -174443,7 +176674,6 @@ entities: linkedPorts: 10668: - DoorStatus: Close - - DoorStatus: Open - uid: 10668 components: - type: Transform @@ -174455,7 +176685,6 @@ entities: linkedPorts: 987: - DoorStatus: Close - - DoorStatus: Open - proto: WindoorSecureMedicalLocked entities: - uid: 15543 @@ -174592,6 +176821,8 @@ entities: entities: - uid: 2744 components: + - type: MetaData + name: Theatre - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-2.5 @@ -174698,6 +176929,11 @@ entities: - type: Transform pos: -25.5,1.5 parent: 5350 + - uid: 3808 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 5350 - uid: 4781 components: - type: Transform @@ -174768,10 +177004,11 @@ entities: - type: Transform pos: -38.5,23.5 parent: 5350 - - uid: 11467 + - uid: 13737 components: - type: Transform - pos: 7.5,-43.5 + rot: 3.141592653589793 rad + pos: 5.5,-28.5 parent: 5350 - uid: 14151 components: @@ -174808,11 +177045,23 @@ entities: - type: Transform pos: -28.5,-28.5 parent: 5350 + - uid: 14672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-58.5 + parent: 5350 - uid: 14674 components: - type: Transform pos: -35.5,5.5 parent: 5350 + - uid: 14689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-47.5 + parent: 5350 - uid: 14733 components: - type: Transform @@ -174858,21 +177107,6 @@ entities: - type: Transform pos: 4.5,-41.5 parent: 5350 - - uid: 16605 - components: - - type: Transform - pos: 1.5,-41.5 - parent: 5350 - - uid: 16628 - components: - - type: Transform - pos: 2.5,-41.5 - parent: 5350 - - uid: 16641 - components: - - type: Transform - pos: 5.5,-41.5 - parent: 5350 - uid: 16643 components: - type: Transform @@ -174948,11 +177182,6 @@ entities: - type: Transform pos: -49.5,-5.5 parent: 5350 - - uid: 19082 - components: - - type: Transform - pos: 5.5,-28.5 - parent: 5350 - uid: 19083 components: - type: Transform @@ -174978,11 +177207,6 @@ entities: - type: Transform pos: -23.5,-6.5 parent: 5350 - - uid: 20834 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 5350 - uid: 20940 components: - type: Transform @@ -175023,6 +177247,12 @@ entities: - type: Transform pos: 33.5,-54.5 parent: 5350 + - uid: 22605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 5350 - proto: WindowDirectional entities: - uid: 22260 @@ -175110,6 +177340,18 @@ entities: parent: 5350 - proto: WindowFrostedDirectional entities: + - uid: 15711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 + parent: 5350 + - uid: 20678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 5350 - uid: 23792 components: - type: Transform @@ -175122,6 +177364,18 @@ entities: rot: 1.5707963267948966 rad pos: -33.5,22.5 parent: 5350 + - uid: 23827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 5350 + - uid: 28339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-46.5 + parent: 5350 - proto: WindowReinforcedDirectional entities: - uid: 997 @@ -175919,6 +178173,12 @@ entities: - type: Transform pos: -0.5,1.5 parent: 5350 + - uid: 15194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 5350 - uid: 15238 components: - type: Transform @@ -176065,21 +178325,6 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,15.5 parent: 5350 - - uid: 23822 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 5350 - - uid: 23827 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 5350 - - uid: 23828 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 5350 - uid: 24147 components: - type: Transform @@ -179032,6 +181277,9 @@ entities: - type: Transform pos: -28.5,-5.5 parent: 5350 + - type: Door + secondsUntilStateChange: -12948.798 + state: Opening - uid: 17570 components: - type: Transform @@ -179068,6 +181316,30 @@ entities: - type: Transform pos: -23.5,-63.5 parent: 5350 +- proto: WoodenBench + entities: + - uid: 16605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,37.5 + parent: 5350 + - uid: 24111 + components: + - type: Transform + pos: 40.5,42.5 + parent: 5350 + - uid: 27831 + components: + - type: Transform + pos: 42.5,42.5 + parent: 5350 + - uid: 28235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,37.5 + parent: 5350 - proto: Wrench entities: - uid: 3663 @@ -179093,7 +181365,7 @@ entities: - uid: 13782 components: - type: Transform - pos: -3.4762068,38.341812 + pos: -3.540452,38.68336 parent: 5350 - uid: 18439 components: @@ -179125,4 +181397,11 @@ entities: - type: Transform pos: 69.87581,-31.5 parent: 5350 +- proto: Zipties + entities: + - uid: 1082 + components: + - type: Transform + pos: 9.543752,24.372679 + parent: 5350 ... diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 88724ae67cf..6326e2d5321 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -12629,7 +12629,7 @@ entities: pos: 38.5,-9.5 parent: 2 - type: Door - secondsUntilStateChange: -9228.058 + secondsUntilStateChange: -10670.9795 state: Opening - type: DeviceLinkSource lastSignals: @@ -14550,7 +14550,7 @@ entities: pos: -22.5,26.5 parent: 2 - type: Door - secondsUntilStateChange: -31280.232 + secondsUntilStateChange: -32723.152 state: Opening - type: DeviceLinkSource lastSignals: @@ -15401,7 +15401,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -130108.836 + secondsUntilStateChange: -131551.77 state: Opening - uid: 6934 components: @@ -15413,7 +15413,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -130111.47 + secondsUntilStateChange: -131554.39 state: Opening - uid: 6935 components: @@ -15425,7 +15425,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -130110.32 + secondsUntilStateChange: -131553.25 state: Opening - uid: 6936 components: @@ -15436,7 +15436,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -130109.54 + secondsUntilStateChange: -131552.47 state: Opening - proto: AirlockTheatreLocked entities: @@ -79207,7 +79207,7 @@ entities: - uid: 8684 components: - type: Transform - pos: 19.562342,-6.1567516 + pos: 19.565006,-6.1101065 parent: 2 - uid: 10965 components: @@ -96269,7 +96269,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -121432.82 + secondsUntilStateChange: -122875.75 - type: DeviceNetwork deviceLists: - 18275 @@ -99734,63 +99734,63 @@ entities: pos: -36.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8631 components: - type: Transform pos: -36.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8632 components: - type: Transform pos: -36.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8633 components: - type: Transform pos: -36.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8634 components: - type: Transform pos: -36.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8635 components: - type: Transform pos: -36.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8636 components: - type: Transform pos: -36.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8637 components: - type: Transform pos: -36.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8638 components: - type: Transform pos: -36.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasFilterFlipped entities: - uid: 15676 @@ -100043,7 +100043,7 @@ entities: pos: -40.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8844 components: - type: Transform @@ -100199,7 +100199,7 @@ entities: pos: -41.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 896 components: - type: Transform @@ -100207,7 +100207,7 @@ entities: pos: -54.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 898 components: - type: Transform @@ -100223,7 +100223,7 @@ entities: pos: 34.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3737 components: - type: Transform @@ -100246,7 +100246,7 @@ entities: pos: -38.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5547 components: - type: Transform @@ -100254,7 +100254,7 @@ entities: pos: -32.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7356 components: - type: Transform @@ -100302,7 +100302,7 @@ entities: pos: -27.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8220 components: - type: Transform @@ -100318,7 +100318,7 @@ entities: pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8561 components: - type: Transform @@ -100338,7 +100338,7 @@ entities: pos: -36.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8572 components: - type: Transform @@ -100388,7 +100388,7 @@ entities: pos: -36.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8666 components: - type: Transform @@ -100417,7 +100417,7 @@ entities: pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8753 components: - type: Transform @@ -100425,7 +100425,7 @@ entities: pos: -24.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8800 components: - type: Transform @@ -100448,7 +100448,7 @@ entities: pos: -21.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8842 components: - type: Transform @@ -100479,7 +100479,7 @@ entities: pos: -31.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8943 components: - type: Transform @@ -100503,14 +100503,14 @@ entities: pos: -29.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9111 components: - type: Transform pos: -27.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9114 components: - type: Transform @@ -100539,14 +100539,14 @@ entities: pos: -12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9390 components: - type: Transform pos: 17.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9397 components: - type: Transform @@ -100554,7 +100554,7 @@ entities: pos: 17.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9405 components: - type: Transform @@ -100585,7 +100585,7 @@ entities: pos: -46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11525 components: - type: Transform @@ -100600,7 +100600,7 @@ entities: pos: 0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12991 components: - type: Transform @@ -100608,14 +100608,14 @@ entities: pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13154 components: - type: Transform pos: -8.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13240 components: - type: Transform @@ -100623,7 +100623,7 @@ entities: pos: -1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13241 components: - type: Transform @@ -100631,14 +100631,14 @@ entities: pos: 2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13242 components: - type: Transform pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13243 components: - type: Transform @@ -100646,7 +100646,7 @@ entities: pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13439 components: - type: Transform @@ -100654,7 +100654,7 @@ entities: pos: 3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13563 components: - type: Transform @@ -100678,7 +100678,7 @@ entities: pos: -10.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13660 components: - type: Transform @@ -100694,14 +100694,14 @@ entities: pos: -8.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13706 components: - type: Transform pos: -12.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13721 components: - type: Transform @@ -100724,7 +100724,7 @@ entities: pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13742 components: - type: Transform @@ -100740,7 +100740,7 @@ entities: pos: -10.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13744 components: - type: Transform @@ -100754,7 +100754,7 @@ entities: pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13746 components: - type: Transform @@ -100777,14 +100777,14 @@ entities: pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13752 components: - type: Transform pos: -7.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13753 components: - type: Transform @@ -100807,7 +100807,7 @@ entities: pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13756 components: - type: Transform @@ -100821,7 +100821,7 @@ entities: pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13758 components: - type: Transform @@ -100829,7 +100829,7 @@ entities: pos: -6.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13766 components: - type: Transform @@ -100858,7 +100858,7 @@ entities: pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13776 components: - type: Transform @@ -100874,7 +100874,7 @@ entities: pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13855 components: - type: Transform @@ -100882,7 +100882,7 @@ entities: pos: -22.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13859 components: - type: Transform @@ -100906,7 +100906,7 @@ entities: pos: -22.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13896 components: - type: Transform @@ -100914,7 +100914,7 @@ entities: pos: 5.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13898 components: - type: Transform @@ -100922,7 +100922,7 @@ entities: pos: 5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13899 components: - type: Transform @@ -100938,7 +100938,7 @@ entities: pos: 8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13902 components: - type: Transform @@ -100954,7 +100954,7 @@ entities: pos: 10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13906 components: - type: Transform @@ -100970,7 +100970,7 @@ entities: pos: 10.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13908 components: - type: Transform @@ -100978,7 +100978,7 @@ entities: pos: 11.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13909 components: - type: Transform @@ -101002,7 +101002,7 @@ entities: pos: 11.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13912 components: - type: Transform @@ -101010,7 +101010,7 @@ entities: pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13914 components: - type: Transform @@ -101026,7 +101026,7 @@ entities: pos: 13.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13917 components: - type: Transform @@ -101042,7 +101042,7 @@ entities: pos: 13.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13919 components: - type: Transform @@ -101058,7 +101058,7 @@ entities: pos: 14.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13942 components: - type: Transform @@ -101073,7 +101073,7 @@ entities: pos: -20.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13948 components: - type: Transform @@ -101081,7 +101081,7 @@ entities: pos: -21.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14027 components: - type: Transform @@ -101129,7 +101129,7 @@ entities: pos: 21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14042 components: - type: Transform @@ -101137,7 +101137,7 @@ entities: pos: 21.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14043 components: - type: Transform @@ -101145,7 +101145,7 @@ entities: pos: 22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14044 components: - type: Transform @@ -101153,7 +101153,7 @@ entities: pos: 22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14045 components: - type: Transform @@ -101161,7 +101161,7 @@ entities: pos: 23.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14062 components: - type: Transform @@ -101169,7 +101169,7 @@ entities: pos: 21.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14068 components: - type: Transform @@ -101191,7 +101191,7 @@ entities: pos: 8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14154 components: - type: Transform @@ -101199,7 +101199,7 @@ entities: pos: 31.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14235 components: - type: Transform @@ -101215,14 +101215,14 @@ entities: pos: 51.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14279 components: - type: Transform pos: 54.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14303 components: - type: Transform @@ -101237,14 +101237,14 @@ entities: pos: 32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14400 components: - type: Transform pos: 32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14406 components: - type: Transform @@ -101260,7 +101260,7 @@ entities: pos: 28.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14425 components: - type: Transform @@ -101275,7 +101275,7 @@ entities: pos: 27.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14428 components: - type: Transform @@ -101299,7 +101299,7 @@ entities: pos: 46.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14520 components: - type: Transform @@ -101307,7 +101307,7 @@ entities: pos: 42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14533 components: - type: Transform @@ -101315,7 +101315,7 @@ entities: pos: 46.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14558 components: - type: Transform @@ -101370,7 +101370,7 @@ entities: pos: 23.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14728 components: - type: Transform @@ -101378,7 +101378,7 @@ entities: pos: 37.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14729 components: - type: Transform @@ -101393,7 +101393,7 @@ entities: pos: 24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14735 components: - type: Transform @@ -101416,7 +101416,7 @@ entities: pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14881 components: - type: Transform @@ -101440,7 +101440,7 @@ entities: pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14930 components: - type: Transform @@ -101455,7 +101455,7 @@ entities: pos: -36.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14984 components: - type: Transform @@ -101469,7 +101469,7 @@ entities: pos: -36.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14986 components: - type: Transform @@ -101477,7 +101477,7 @@ entities: pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15083 components: - type: Transform @@ -101485,7 +101485,7 @@ entities: pos: -55.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15107 components: - type: Transform @@ -101509,7 +101509,7 @@ entities: pos: -48.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15126 components: - type: Transform @@ -101532,7 +101532,7 @@ entities: pos: -42.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15245 components: - type: Transform @@ -101540,7 +101540,7 @@ entities: pos: -40.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15285 components: - type: Transform @@ -101555,7 +101555,7 @@ entities: pos: -30.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15292 components: - type: Transform @@ -101571,7 +101571,7 @@ entities: pos: -40.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15338 components: - type: Transform @@ -101579,7 +101579,7 @@ entities: pos: -7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15346 components: - type: Transform @@ -101587,7 +101587,7 @@ entities: pos: -7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15446 components: - type: Transform @@ -101595,7 +101595,7 @@ entities: pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15456 components: - type: Transform @@ -101610,7 +101610,7 @@ entities: pos: 39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15459 components: - type: Transform @@ -101618,7 +101618,7 @@ entities: pos: 40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15469 components: - type: Transform @@ -101634,7 +101634,7 @@ entities: pos: 32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15488 components: - type: Transform @@ -101642,7 +101642,7 @@ entities: pos: 34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15492 components: - type: Transform @@ -101650,7 +101650,7 @@ entities: pos: 32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15505 components: - type: Transform @@ -101674,7 +101674,7 @@ entities: pos: 56.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15666 components: - type: Transform @@ -101689,14 +101689,14 @@ entities: pos: -19.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15721 components: - type: Transform pos: -13.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15726 components: - type: Transform @@ -101704,7 +101704,7 @@ entities: pos: -17.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15729 components: - type: Transform @@ -101726,7 +101726,7 @@ entities: pos: -6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15807 components: - type: Transform @@ -101757,14 +101757,14 @@ entities: pos: -30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15837 components: - type: Transform pos: -28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15866 components: - type: Transform @@ -101787,7 +101787,7 @@ entities: pos: 3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15923 components: - type: Transform @@ -101795,7 +101795,7 @@ entities: pos: -8.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15924 components: - type: Transform @@ -101817,7 +101817,7 @@ entities: pos: 49.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16124 components: - type: Transform @@ -101840,14 +101840,14 @@ entities: pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16143 components: - type: Transform pos: -16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16144 components: - type: Transform @@ -101862,7 +101862,7 @@ entities: pos: -12.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16235 components: - type: Transform @@ -101877,14 +101877,14 @@ entities: pos: 23.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16255 components: - type: Transform pos: 25.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16256 components: - type: Transform @@ -101907,7 +101907,7 @@ entities: pos: 35.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16322 components: - type: Transform @@ -101931,7 +101931,7 @@ entities: pos: 34.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16352 components: - type: Transform @@ -101968,7 +101968,7 @@ entities: pos: 7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16419 components: - type: Transform @@ -101976,7 +101976,7 @@ entities: pos: 3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16420 components: - type: Transform @@ -101998,7 +101998,7 @@ entities: pos: 5.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16445 components: - type: Transform @@ -102006,7 +102006,7 @@ entities: pos: 3.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16461 components: - type: Transform @@ -102014,14 +102014,14 @@ entities: pos: 3.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16471 components: - type: Transform pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16488 components: - type: Transform @@ -102029,7 +102029,7 @@ entities: pos: 0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16540 components: - type: Transform @@ -102045,7 +102045,7 @@ entities: pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16791 components: - type: Transform @@ -102075,7 +102075,7 @@ entities: pos: 16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17608 components: - type: Transform @@ -102083,7 +102083,7 @@ entities: pos: 17.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18051 components: - type: Transform @@ -102106,7 +102106,7 @@ entities: pos: 60.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18434 components: - type: Transform @@ -102129,7 +102129,7 @@ entities: pos: 53.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18461 components: - type: Transform @@ -102137,7 +102137,7 @@ entities: pos: -20.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18736 components: - type: Transform @@ -102152,7 +102152,7 @@ entities: pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19078 components: - type: Transform @@ -102208,7 +102208,7 @@ entities: pos: -9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22201 components: - type: Transform @@ -102216,7 +102216,7 @@ entities: pos: -5.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22274 components: - type: Transform @@ -102254,7 +102254,7 @@ entities: pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23497 components: - type: Transform @@ -102284,7 +102284,7 @@ entities: pos: -10.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23541 components: - type: Transform @@ -102292,7 +102292,7 @@ entities: pos: -42.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23672 components: - type: Transform @@ -102308,7 +102308,7 @@ entities: pos: -2.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23705 components: - type: Transform @@ -102316,7 +102316,7 @@ entities: pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23896 components: - type: Transform @@ -102332,7 +102332,7 @@ entities: pos: 60.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24293 components: - type: Transform @@ -102543,7 +102543,7 @@ entities: pos: 8.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29694 components: - type: Transform @@ -102559,7 +102559,7 @@ entities: pos: 8.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29700 components: - type: Transform @@ -102589,7 +102589,7 @@ entities: pos: 10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29878 components: - type: Transform @@ -102597,7 +102597,7 @@ entities: pos: 11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 666 @@ -102606,7 +102606,7 @@ entities: pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 667 components: - type: Transform @@ -102690,14 +102690,14 @@ entities: pos: 34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13152 components: - type: Transform pos: -29.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13182 components: - type: Transform @@ -102711,49 +102711,49 @@ entities: pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13216 components: - type: Transform pos: -10.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13268 components: - type: Transform pos: 1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13317 components: - type: Transform pos: 1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13387 components: - type: Transform pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13459 components: - type: Transform pos: -40.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13479 components: - type: Transform pos: -0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13518 components: - type: Transform @@ -102767,7 +102767,7 @@ entities: pos: 40.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13536 components: - type: Transform @@ -102781,7 +102781,7 @@ entities: pos: -31.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13854 components: - type: Transform @@ -102802,14 +102802,14 @@ entities: pos: 23.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14298 components: - type: Transform pos: 42.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14316 components: - type: Transform @@ -102823,7 +102823,7 @@ entities: pos: 42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14477 components: - type: Transform @@ -102844,7 +102844,7 @@ entities: pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14790 components: - type: Transform @@ -102858,7 +102858,7 @@ entities: pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14811 components: - type: Transform @@ -102872,7 +102872,7 @@ entities: pos: -19.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15619 components: - type: Transform @@ -102886,14 +102886,14 @@ entities: pos: -5.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15656 components: - type: Transform pos: -13.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15677 components: - type: Transform @@ -102907,7 +102907,7 @@ entities: pos: -17.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15745 components: - type: Transform @@ -102921,7 +102921,7 @@ entities: pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16019 components: - type: Transform @@ -102979,7 +102979,7 @@ entities: pos: -23.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 46 @@ -103004,7 +103004,7 @@ entities: pos: -42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 50 components: - type: Transform @@ -103055,7 +103055,7 @@ entities: pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 881 components: - type: Transform @@ -103063,7 +103063,7 @@ entities: pos: -43.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 882 components: - type: Transform @@ -103071,7 +103071,7 @@ entities: pos: -44.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 883 components: - type: Transform @@ -103079,7 +103079,7 @@ entities: pos: -45.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 895 components: - type: Transform @@ -103087,7 +103087,7 @@ entities: pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 900 components: - type: Transform @@ -103111,7 +103111,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1093 components: - type: Transform @@ -103119,7 +103119,7 @@ entities: pos: 30.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 1636 components: - type: Transform @@ -103159,7 +103159,7 @@ entities: pos: -43.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2252 components: - type: Transform @@ -103183,7 +103183,7 @@ entities: pos: 29.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2658 components: - type: Transform @@ -103191,7 +103191,7 @@ entities: pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2761 components: - type: Transform @@ -103221,7 +103221,7 @@ entities: pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3205 components: - type: Transform @@ -103237,7 +103237,7 @@ entities: pos: 35.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3586 components: - type: Transform @@ -103307,7 +103307,7 @@ entities: pos: 16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5456 components: - type: Transform @@ -103323,7 +103323,7 @@ entities: pos: -24.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6240 components: - type: Transform @@ -103338,7 +103338,7 @@ entities: pos: 1.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7360 components: - type: Transform @@ -103346,7 +103346,7 @@ entities: pos: 2.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7665 components: - type: Transform @@ -103442,7 +103442,7 @@ entities: pos: -22.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8181 components: - type: Transform @@ -103958,98 +103958,98 @@ entities: pos: -36.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8640 components: - type: Transform pos: -36.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8641 components: - type: Transform pos: -36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8642 components: - type: Transform pos: -36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8643 components: - type: Transform pos: -36.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8644 components: - type: Transform pos: -36.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8645 components: - type: Transform pos: -36.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8646 components: - type: Transform pos: -36.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8647 components: - type: Transform pos: -36.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8648 components: - type: Transform pos: -36.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8649 components: - type: Transform pos: -36.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8650 components: - type: Transform pos: -36.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8651 components: - type: Transform pos: -36.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8653 components: - type: Transform pos: -36.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8664 components: - type: Transform @@ -104103,7 +104103,7 @@ entities: pos: -35.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8678 components: - type: Transform @@ -104111,7 +104111,7 @@ entities: pos: -33.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8679 components: - type: Transform @@ -104119,7 +104119,7 @@ entities: pos: -32.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8681 components: - type: Transform @@ -104127,7 +104127,7 @@ entities: pos: -30.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8682 components: - type: Transform @@ -104150,7 +104150,7 @@ entities: pos: -21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8701 components: - type: Transform @@ -104198,7 +104198,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8707 components: - type: Transform @@ -104365,112 +104365,112 @@ entities: pos: -24.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8733 components: - type: Transform pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8734 components: - type: Transform pos: -24.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8735 components: - type: Transform pos: -24.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8736 components: - type: Transform pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8737 components: - type: Transform pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8741 components: - type: Transform pos: -24.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8742 components: - type: Transform pos: -24.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8743 components: - type: Transform pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8744 components: - type: Transform pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8745 components: - type: Transform pos: -24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8746 components: - type: Transform pos: -24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8747 components: - type: Transform pos: -24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8748 components: - type: Transform pos: -24.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8749 components: - type: Transform pos: -24.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8750 components: - type: Transform pos: -24.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8751 components: - type: Transform @@ -104478,7 +104478,7 @@ entities: pos: -23.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8752 components: - type: Transform @@ -104486,7 +104486,7 @@ entities: pos: -22.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8756 components: - type: Transform @@ -104494,7 +104494,7 @@ entities: pos: -21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8757 components: - type: Transform @@ -104502,7 +104502,7 @@ entities: pos: -21.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8759 components: - type: Transform @@ -104518,7 +104518,7 @@ entities: pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8762 components: - type: Transform @@ -104526,7 +104526,7 @@ entities: pos: -21.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8763 components: - type: Transform @@ -104534,7 +104534,7 @@ entities: pos: -21.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8764 components: - type: Transform @@ -104542,7 +104542,7 @@ entities: pos: -21.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8765 components: - type: Transform @@ -104550,7 +104550,7 @@ entities: pos: -21.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8766 components: - type: Transform @@ -104558,7 +104558,7 @@ entities: pos: -21.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8767 components: - type: Transform @@ -104566,14 +104566,14 @@ entities: pos: -21.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8772 components: - type: Transform pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8773 components: - type: Transform @@ -104667,14 +104667,14 @@ entities: pos: -31.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8832 components: - type: Transform pos: -21.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8839 components: - type: Transform @@ -104721,7 +104721,7 @@ entities: pos: -38.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8856 components: - type: Transform @@ -104729,7 +104729,7 @@ entities: pos: -37.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8859 components: - type: Transform @@ -104857,7 +104857,7 @@ entities: pos: -19.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9122 components: - type: Transform @@ -104918,7 +104918,7 @@ entities: pos: 17.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9391 components: - type: Transform @@ -104926,7 +104926,7 @@ entities: pos: 16.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9392 components: - type: Transform @@ -104934,7 +104934,7 @@ entities: pos: 17.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9408 components: - type: Transform @@ -104957,77 +104957,77 @@ entities: pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9414 components: - type: Transform pos: 0.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9415 components: - type: Transform pos: 0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9416 components: - type: Transform pos: 0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9417 components: - type: Transform pos: 0.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9418 components: - type: Transform pos: 0.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9420 components: - type: Transform pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9421 components: - type: Transform pos: 0.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9611 components: - type: Transform pos: -31.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9613 components: - type: Transform pos: -31.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9614 components: - type: Transform pos: -31.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9620 components: - type: Transform @@ -105047,7 +105047,7 @@ entities: pos: -31.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9624 components: - type: Transform @@ -105066,7 +105066,7 @@ entities: pos: -21.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9628 components: - type: Transform @@ -105082,7 +105082,7 @@ entities: pos: -18.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9631 components: - type: Transform @@ -105118,7 +105118,7 @@ entities: pos: 0.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10183 components: - type: Transform @@ -105142,7 +105142,7 @@ entities: pos: -45.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10390 components: - type: Transform @@ -105248,7 +105248,7 @@ entities: pos: -0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12299 components: - type: Transform @@ -105264,7 +105264,7 @@ entities: pos: 13.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12787 components: - type: Transform @@ -105392,7 +105392,7 @@ entities: pos: -25.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13163 components: - type: Transform @@ -105400,7 +105400,7 @@ entities: pos: -26.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13164 components: - type: Transform @@ -105408,7 +105408,7 @@ entities: pos: -27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13165 components: - type: Transform @@ -105416,7 +105416,7 @@ entities: pos: -28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13167 components: - type: Transform @@ -105424,7 +105424,7 @@ entities: pos: -30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13168 components: - type: Transform @@ -105432,7 +105432,7 @@ entities: pos: -31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13169 components: - type: Transform @@ -105440,7 +105440,7 @@ entities: pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13171 components: - type: Transform @@ -105448,7 +105448,7 @@ entities: pos: -34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13172 components: - type: Transform @@ -105456,7 +105456,7 @@ entities: pos: -35.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13173 components: - type: Transform @@ -105464,7 +105464,7 @@ entities: pos: -36.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13174 components: - type: Transform @@ -105472,7 +105472,7 @@ entities: pos: -37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13176 components: - type: Transform @@ -105480,7 +105480,7 @@ entities: pos: -39.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13179 components: - type: Transform @@ -105488,7 +105488,7 @@ entities: pos: -23.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13181 components: - type: Transform @@ -105496,7 +105496,7 @@ entities: pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13183 components: - type: Transform @@ -105504,7 +105504,7 @@ entities: pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13184 components: - type: Transform @@ -105512,7 +105512,7 @@ entities: pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13185 components: - type: Transform @@ -105520,7 +105520,7 @@ entities: pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13186 components: - type: Transform @@ -105528,7 +105528,7 @@ entities: pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13188 components: - type: Transform @@ -105536,7 +105536,7 @@ entities: pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13189 components: - type: Transform @@ -105544,7 +105544,7 @@ entities: pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13190 components: - type: Transform @@ -105552,7 +105552,7 @@ entities: pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13191 components: - type: Transform @@ -105560,7 +105560,7 @@ entities: pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13193 components: - type: Transform @@ -105568,7 +105568,7 @@ entities: pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13195 components: - type: Transform @@ -105576,7 +105576,7 @@ entities: pos: -7.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13196 components: - type: Transform @@ -105584,7 +105584,7 @@ entities: pos: -6.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13197 components: - type: Transform @@ -105592,7 +105592,7 @@ entities: pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13198 components: - type: Transform @@ -105600,7 +105600,7 @@ entities: pos: -4.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13199 components: - type: Transform @@ -105608,7 +105608,7 @@ entities: pos: -3.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13203 components: - type: Transform @@ -105688,7 +105688,7 @@ entities: pos: -10.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13215 components: - type: Transform @@ -105790,14 +105790,14 @@ entities: pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13233 components: - type: Transform pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13234 components: - type: Transform @@ -105805,7 +105805,7 @@ entities: pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13235 components: - type: Transform @@ -105813,7 +105813,7 @@ entities: pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13236 components: - type: Transform @@ -105821,7 +105821,7 @@ entities: pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13237 components: - type: Transform @@ -105829,7 +105829,7 @@ entities: pos: 2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13238 components: - type: Transform @@ -105837,7 +105837,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13239 components: - type: Transform @@ -105845,7 +105845,7 @@ entities: pos: -0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13248 components: - type: Transform @@ -106155,301 +106155,301 @@ entities: pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13305 components: - type: Transform pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13306 components: - type: Transform pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13307 components: - type: Transform pos: 1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13308 components: - type: Transform pos: 1.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13309 components: - type: Transform pos: 1.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13311 components: - type: Transform pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13312 components: - type: Transform pos: 1.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13314 components: - type: Transform pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13315 components: - type: Transform pos: 1.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13316 components: - type: Transform pos: 1.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13318 components: - type: Transform pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13319 components: - type: Transform pos: 1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13320 components: - type: Transform pos: 1.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13321 components: - type: Transform pos: 1.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13322 components: - type: Transform pos: 1.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13323 components: - type: Transform pos: 1.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13325 components: - type: Transform pos: 1.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13326 components: - type: Transform pos: 1.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13328 components: - type: Transform pos: 1.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13329 components: - type: Transform pos: 1.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13330 components: - type: Transform pos: 1.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13331 components: - type: Transform pos: 1.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13332 components: - type: Transform pos: 1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13333 components: - type: Transform pos: 1.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13334 components: - type: Transform pos: 1.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13336 components: - type: Transform pos: 1.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13337 components: - type: Transform pos: 1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13340 components: - type: Transform pos: 1.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13341 components: - type: Transform pos: 1.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13342 components: - type: Transform pos: 1.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13343 components: - type: Transform pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13344 components: - type: Transform pos: 1.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13346 components: - type: Transform pos: 1.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13348 components: - type: Transform pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13349 components: - type: Transform pos: 1.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13352 components: - type: Transform pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13353 components: - type: Transform pos: 1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13354 components: - type: Transform pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13355 components: - type: Transform pos: 1.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13356 components: - type: Transform pos: 1.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13357 components: - type: Transform pos: 1.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13358 components: - type: Transform pos: 1.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13359 components: - type: Transform @@ -106465,7 +106465,7 @@ entities: pos: -0.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13361 components: - type: Transform @@ -106697,7 +106697,7 @@ entities: pos: -0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13397 components: - type: Transform @@ -106777,7 +106777,7 @@ entities: pos: 52.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13412 components: - type: Transform @@ -106785,7 +106785,7 @@ entities: pos: 50.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13414 components: - type: Transform @@ -106793,7 +106793,7 @@ entities: pos: 48.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13415 components: - type: Transform @@ -106801,7 +106801,7 @@ entities: pos: 47.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13416 components: - type: Transform @@ -106809,7 +106809,7 @@ entities: pos: 46.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13417 components: - type: Transform @@ -106817,7 +106817,7 @@ entities: pos: 45.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13418 components: - type: Transform @@ -106825,7 +106825,7 @@ entities: pos: 44.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13419 components: - type: Transform @@ -106833,7 +106833,7 @@ entities: pos: 43.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13421 components: - type: Transform @@ -106841,7 +106841,7 @@ entities: pos: 41.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13423 components: - type: Transform @@ -106849,7 +106849,7 @@ entities: pos: 39.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13424 components: - type: Transform @@ -106857,7 +106857,7 @@ entities: pos: 38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13425 components: - type: Transform @@ -106865,7 +106865,7 @@ entities: pos: 37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13426 components: - type: Transform @@ -106873,7 +106873,7 @@ entities: pos: 36.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13427 components: - type: Transform @@ -106881,7 +106881,7 @@ entities: pos: 35.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13428 components: - type: Transform @@ -106889,7 +106889,7 @@ entities: pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13429 components: - type: Transform @@ -106897,7 +106897,7 @@ entities: pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13430 components: - type: Transform @@ -106905,7 +106905,7 @@ entities: pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13432 components: - type: Transform @@ -106913,7 +106913,7 @@ entities: pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13433 components: - type: Transform @@ -106921,7 +106921,7 @@ entities: pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13434 components: - type: Transform @@ -106929,7 +106929,7 @@ entities: pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13436 components: - type: Transform @@ -106937,7 +106937,7 @@ entities: pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13437 components: - type: Transform @@ -106945,7 +106945,7 @@ entities: pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13438 components: - type: Transform @@ -106953,7 +106953,7 @@ entities: pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13440 components: - type: Transform @@ -106961,7 +106961,7 @@ entities: pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13442 components: - type: Transform @@ -106969,7 +106969,7 @@ entities: pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13443 components: - type: Transform @@ -106977,7 +106977,7 @@ entities: pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13444 components: - type: Transform @@ -106985,7 +106985,7 @@ entities: pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13445 components: - type: Transform @@ -106993,7 +106993,7 @@ entities: pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13446 components: - type: Transform @@ -107001,7 +107001,7 @@ entities: pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13447 components: - type: Transform @@ -107009,7 +107009,7 @@ entities: pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13449 components: - type: Transform @@ -107017,7 +107017,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13452 components: - type: Transform @@ -107025,7 +107025,7 @@ entities: pos: 10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13453 components: - type: Transform @@ -107033,7 +107033,7 @@ entities: pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13454 components: - type: Transform @@ -107041,7 +107041,7 @@ entities: pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13455 components: - type: Transform @@ -107049,7 +107049,7 @@ entities: pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13456 components: - type: Transform @@ -107057,7 +107057,7 @@ entities: pos: 6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13457 components: - type: Transform @@ -107065,7 +107065,7 @@ entities: pos: 5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13458 components: - type: Transform @@ -107073,7 +107073,7 @@ entities: pos: 4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13460 components: - type: Transform @@ -107369,7 +107369,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13520 components: - type: Transform @@ -107377,7 +107377,7 @@ entities: pos: -0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13523 components: - type: Transform @@ -107385,7 +107385,7 @@ entities: pos: -0.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13525 components: - type: Transform @@ -107393,7 +107393,7 @@ entities: pos: -0.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13526 components: - type: Transform @@ -107401,7 +107401,7 @@ entities: pos: -0.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13527 components: - type: Transform @@ -107409,7 +107409,7 @@ entities: pos: -0.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13528 components: - type: Transform @@ -107417,7 +107417,7 @@ entities: pos: -0.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13529 components: - type: Transform @@ -107425,7 +107425,7 @@ entities: pos: -0.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13530 components: - type: Transform @@ -107433,7 +107433,7 @@ entities: pos: -0.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13534 components: - type: Transform @@ -107441,7 +107441,7 @@ entities: pos: -0.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13535 components: - type: Transform @@ -107449,7 +107449,7 @@ entities: pos: -0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13537 components: - type: Transform @@ -107457,7 +107457,7 @@ entities: pos: -0.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13538 components: - type: Transform @@ -107465,7 +107465,7 @@ entities: pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13539 components: - type: Transform @@ -107473,7 +107473,7 @@ entities: pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13540 components: - type: Transform @@ -107481,7 +107481,7 @@ entities: pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13541 components: - type: Transform @@ -107489,7 +107489,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13542 components: - type: Transform @@ -107497,7 +107497,7 @@ entities: pos: -0.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13543 components: - type: Transform @@ -107505,7 +107505,7 @@ entities: pos: -0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13547 components: - type: Transform @@ -107513,7 +107513,7 @@ entities: pos: -0.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13548 components: - type: Transform @@ -107521,7 +107521,7 @@ entities: pos: -0.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13549 components: - type: Transform @@ -107529,7 +107529,7 @@ entities: pos: -0.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13550 components: - type: Transform @@ -107537,7 +107537,7 @@ entities: pos: -0.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13551 components: - type: Transform @@ -107545,7 +107545,7 @@ entities: pos: -0.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13552 components: - type: Transform @@ -107553,7 +107553,7 @@ entities: pos: -0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13553 components: - type: Transform @@ -107561,7 +107561,7 @@ entities: pos: -0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13554 components: - type: Transform @@ -107707,7 +107707,7 @@ entities: pos: -25.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13591 components: - type: Transform @@ -107715,14 +107715,14 @@ entities: pos: -21.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13592 components: - type: Transform pos: -17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13594 components: - type: Transform @@ -107730,7 +107730,7 @@ entities: pos: -17.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13596 components: - type: Transform @@ -107842,7 +107842,7 @@ entities: pos: -9.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13621 components: - type: Transform @@ -107850,7 +107850,7 @@ entities: pos: -8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13622 components: - type: Transform @@ -107858,7 +107858,7 @@ entities: pos: -7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13623 components: - type: Transform @@ -107866,7 +107866,7 @@ entities: pos: -6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13624 components: - type: Transform @@ -107874,7 +107874,7 @@ entities: pos: -5.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13625 components: - type: Transform @@ -107882,7 +107882,7 @@ entities: pos: -4.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13626 components: - type: Transform @@ -107890,7 +107890,7 @@ entities: pos: -3.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13627 components: - type: Transform @@ -107898,7 +107898,7 @@ entities: pos: -2.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13628 components: - type: Transform @@ -107906,7 +107906,7 @@ entities: pos: -1.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13631 components: - type: Transform @@ -107914,7 +107914,7 @@ entities: pos: -1.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13633 components: - type: Transform @@ -107922,7 +107922,7 @@ entities: pos: -3.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13634 components: - type: Transform @@ -108010,7 +108010,7 @@ entities: pos: -10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13647 components: - type: Transform @@ -108018,7 +108018,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13648 components: - type: Transform @@ -108026,7 +108026,7 @@ entities: pos: -10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13649 components: - type: Transform @@ -108034,7 +108034,7 @@ entities: pos: -10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13650 components: - type: Transform @@ -108042,7 +108042,7 @@ entities: pos: -10.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13651 components: - type: Transform @@ -108050,7 +108050,7 @@ entities: pos: -10.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13652 components: - type: Transform @@ -108058,7 +108058,7 @@ entities: pos: -10.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13654 components: - type: Transform @@ -108066,7 +108066,7 @@ entities: pos: -10.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13655 components: - type: Transform @@ -108074,7 +108074,7 @@ entities: pos: -10.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13658 components: - type: Transform @@ -108082,7 +108082,7 @@ entities: pos: -10.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13659 components: - type: Transform @@ -108105,7 +108105,7 @@ entities: pos: -9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13670 components: - type: Transform @@ -108185,7 +108185,7 @@ entities: pos: -1.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13680 components: - type: Transform @@ -108193,7 +108193,7 @@ entities: pos: -2.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13681 components: - type: Transform @@ -108201,7 +108201,7 @@ entities: pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13682 components: - type: Transform @@ -108209,7 +108209,7 @@ entities: pos: -4.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13683 components: - type: Transform @@ -108217,7 +108217,7 @@ entities: pos: -5.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13684 components: - type: Transform @@ -108225,7 +108225,7 @@ entities: pos: -6.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13685 components: - type: Transform @@ -108233,14 +108233,14 @@ entities: pos: -7.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13686 components: - type: Transform pos: -8.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13687 components: - type: Transform @@ -108263,7 +108263,7 @@ entities: pos: -20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13690 components: - type: Transform @@ -108287,7 +108287,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13693 components: - type: Transform @@ -108295,7 +108295,7 @@ entities: pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13694 components: - type: Transform @@ -108303,7 +108303,7 @@ entities: pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13695 components: - type: Transform @@ -108311,7 +108311,7 @@ entities: pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13696 components: - type: Transform @@ -108398,70 +108398,70 @@ entities: pos: -20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13712 components: - type: Transform pos: -20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13713 components: - type: Transform pos: -20.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13714 components: - type: Transform pos: -20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13715 components: - type: Transform pos: -20.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13716 components: - type: Transform pos: -20.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13717 components: - type: Transform pos: -20.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13718 components: - type: Transform pos: -20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13719 components: - type: Transform pos: -20.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13720 components: - type: Transform pos: -20.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13726 components: - type: Transform @@ -108477,7 +108477,7 @@ entities: pos: -19.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13728 components: - type: Transform @@ -108564,7 +108564,7 @@ entities: pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13769 components: - type: Transform @@ -108580,7 +108580,7 @@ entities: pos: -5.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13771 components: - type: Transform @@ -108596,7 +108596,7 @@ entities: pos: -10.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13779 components: - type: Transform @@ -108604,7 +108604,7 @@ entities: pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13780 components: - type: Transform @@ -108612,7 +108612,7 @@ entities: pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13781 components: - type: Transform @@ -108620,7 +108620,7 @@ entities: pos: -0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13782 components: - type: Transform @@ -108628,7 +108628,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13783 components: - type: Transform @@ -108644,7 +108644,7 @@ entities: pos: 2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13785 components: - type: Transform @@ -108652,7 +108652,7 @@ entities: pos: 3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13786 components: - type: Transform @@ -108660,7 +108660,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13787 components: - type: Transform @@ -108668,7 +108668,7 @@ entities: pos: -0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13788 components: - type: Transform @@ -108676,7 +108676,7 @@ entities: pos: -1.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13790 components: - type: Transform @@ -108684,7 +108684,7 @@ entities: pos: -3.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13791 components: - type: Transform @@ -108692,7 +108692,7 @@ entities: pos: -4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13792 components: - type: Transform @@ -108700,7 +108700,7 @@ entities: pos: -5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13794 components: - type: Transform @@ -108708,7 +108708,7 @@ entities: pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13795 components: - type: Transform @@ -108716,7 +108716,7 @@ entities: pos: -8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13796 components: - type: Transform @@ -108724,7 +108724,7 @@ entities: pos: -9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13797 components: - type: Transform @@ -108732,7 +108732,7 @@ entities: pos: -10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13799 components: - type: Transform @@ -108740,7 +108740,7 @@ entities: pos: -12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13800 components: - type: Transform @@ -108748,7 +108748,7 @@ entities: pos: -13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13801 components: - type: Transform @@ -108756,7 +108756,7 @@ entities: pos: -14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13804 components: - type: Transform @@ -108764,7 +108764,7 @@ entities: pos: -17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13805 components: - type: Transform @@ -108772,7 +108772,7 @@ entities: pos: -18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13806 components: - type: Transform @@ -108780,7 +108780,7 @@ entities: pos: -19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13807 components: - type: Transform @@ -108788,7 +108788,7 @@ entities: pos: -20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13808 components: - type: Transform @@ -108796,7 +108796,7 @@ entities: pos: -21.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13809 components: - type: Transform @@ -108892,7 +108892,7 @@ entities: pos: -2.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13821 components: - type: Transform @@ -108916,7 +108916,7 @@ entities: pos: -2.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13824 components: - type: Transform @@ -109052,7 +109052,7 @@ entities: pos: -22.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13844 components: - type: Transform @@ -109060,7 +109060,7 @@ entities: pos: -22.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13845 components: - type: Transform @@ -109068,7 +109068,7 @@ entities: pos: -22.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13846 components: - type: Transform @@ -109076,7 +109076,7 @@ entities: pos: -22.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13847 components: - type: Transform @@ -109084,7 +109084,7 @@ entities: pos: -22.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13848 components: - type: Transform @@ -109100,7 +109100,7 @@ entities: pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13851 components: - type: Transform @@ -109108,7 +109108,7 @@ entities: pos: -22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13852 components: - type: Transform @@ -109116,7 +109116,7 @@ entities: pos: -22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13853 components: - type: Transform @@ -109124,7 +109124,7 @@ entities: pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13856 components: - type: Transform @@ -109132,7 +109132,7 @@ entities: pos: -21.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13857 components: - type: Transform @@ -109140,7 +109140,7 @@ entities: pos: -20.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13858 components: - type: Transform @@ -109164,7 +109164,7 @@ entities: pos: -20.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13866 components: - type: Transform @@ -109172,14 +109172,14 @@ entities: pos: -21.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13877 components: - type: Transform pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13878 components: - type: Transform @@ -109194,14 +109194,14 @@ entities: pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13880 components: - type: Transform pos: -16.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13881 components: - type: Transform @@ -109215,7 +109215,7 @@ entities: pos: -11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13883 components: - type: Transform @@ -109229,21 +109229,21 @@ entities: pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13885 components: - type: Transform pos: -11.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13886 components: - type: Transform pos: -6.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13889 components: - type: Transform @@ -109251,7 +109251,7 @@ entities: pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13890 components: - type: Transform @@ -109283,7 +109283,7 @@ entities: pos: 4.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13895 components: - type: Transform @@ -109312,28 +109312,28 @@ entities: pos: 13.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13923 components: - type: Transform pos: 13.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13924 components: - type: Transform pos: 14.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13926 components: - type: Transform pos: 14.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13927 components: - type: Transform @@ -109354,14 +109354,14 @@ entities: pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13930 components: - type: Transform pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13935 components: - type: Transform @@ -109377,7 +109377,7 @@ entities: pos: 12.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13940 components: - type: Transform @@ -109385,7 +109385,7 @@ entities: pos: 9.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13941 components: - type: Transform @@ -109401,7 +109401,7 @@ entities: pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13944 components: - type: Transform @@ -109409,7 +109409,7 @@ entities: pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13945 components: - type: Transform @@ -109433,7 +109433,7 @@ entities: pos: -21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13950 components: - type: Transform @@ -109473,7 +109473,7 @@ entities: pos: -20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13955 components: - type: Transform @@ -109481,7 +109481,7 @@ entities: pos: -19.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13956 components: - type: Transform @@ -109489,7 +109489,7 @@ entities: pos: -18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13957 components: - type: Transform @@ -109497,7 +109497,7 @@ entities: pos: -17.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13958 components: - type: Transform @@ -109505,7 +109505,7 @@ entities: pos: -16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13959 components: - type: Transform @@ -109513,7 +109513,7 @@ entities: pos: -15.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13963 components: - type: Transform @@ -109545,7 +109545,7 @@ entities: pos: 0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13967 components: - type: Transform @@ -109553,7 +109553,7 @@ entities: pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13968 components: - type: Transform @@ -109561,7 +109561,7 @@ entities: pos: 2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13970 components: - type: Transform @@ -109593,7 +109593,7 @@ entities: pos: -1.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13974 components: - type: Transform @@ -109601,7 +109601,7 @@ entities: pos: -2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13975 components: - type: Transform @@ -109609,7 +109609,7 @@ entities: pos: -3.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13976 components: - type: Transform @@ -109689,7 +109689,7 @@ entities: pos: 4.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13991 components: - type: Transform @@ -109697,7 +109697,7 @@ entities: pos: 6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13992 components: - type: Transform @@ -109753,7 +109753,7 @@ entities: pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13999 components: - type: Transform @@ -109761,7 +109761,7 @@ entities: pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14000 components: - type: Transform @@ -109769,7 +109769,7 @@ entities: pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14001 components: - type: Transform @@ -109777,7 +109777,7 @@ entities: pos: 8.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14002 components: - type: Transform @@ -109785,7 +109785,7 @@ entities: pos: 7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14004 components: - type: Transform @@ -109793,7 +109793,7 @@ entities: pos: 12.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14007 components: - type: Transform @@ -109808,7 +109808,7 @@ entities: pos: 14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14009 components: - type: Transform @@ -109840,7 +109840,7 @@ entities: pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14013 components: - type: Transform @@ -109856,7 +109856,7 @@ entities: pos: 15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14015 components: - type: Transform @@ -109864,7 +109864,7 @@ entities: pos: 16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14016 components: - type: Transform @@ -109872,7 +109872,7 @@ entities: pos: 17.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14017 components: - type: Transform @@ -109880,7 +109880,7 @@ entities: pos: 18.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14019 components: - type: Transform @@ -109888,7 +109888,7 @@ entities: pos: 19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14021 components: - type: Transform @@ -109984,7 +109984,7 @@ entities: pos: 22.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14039 components: - type: Transform @@ -110000,7 +110000,7 @@ entities: pos: 20.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14046 components: - type: Transform @@ -110008,7 +110008,7 @@ entities: pos: 23.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14047 components: - type: Transform @@ -110016,7 +110016,7 @@ entities: pos: 23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14048 components: - type: Transform @@ -110024,7 +110024,7 @@ entities: pos: 23.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14049 components: - type: Transform @@ -110032,7 +110032,7 @@ entities: pos: 23.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14050 components: - type: Transform @@ -110040,7 +110040,7 @@ entities: pos: 23.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14051 components: - type: Transform @@ -110048,7 +110048,7 @@ entities: pos: 23.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14053 components: - type: Transform @@ -110115,28 +110115,28 @@ entities: pos: 23.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14070 components: - type: Transform pos: 23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14071 components: - type: Transform pos: 23.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14072 components: - type: Transform pos: 23.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14077 components: - type: Transform @@ -110144,7 +110144,7 @@ entities: pos: 24.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14078 components: - type: Transform @@ -110152,7 +110152,7 @@ entities: pos: 25.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14079 components: - type: Transform @@ -110160,7 +110160,7 @@ entities: pos: 26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14082 components: - type: Transform @@ -110181,28 +110181,28 @@ entities: pos: 21.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14085 components: - type: Transform pos: 21.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14086 components: - type: Transform pos: 21.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14087 components: - type: Transform pos: 21.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14090 components: - type: Transform @@ -110286,98 +110286,98 @@ entities: pos: 27.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14102 components: - type: Transform pos: 27.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14103 components: - type: Transform pos: 27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14104 components: - type: Transform pos: 27.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14105 components: - type: Transform pos: 27.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14106 components: - type: Transform pos: 27.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14107 components: - type: Transform pos: 27.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14108 components: - type: Transform pos: 27.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14109 components: - type: Transform pos: 27.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14110 components: - type: Transform pos: 27.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14111 components: - type: Transform pos: 27.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14112 components: - type: Transform pos: 27.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14113 components: - type: Transform pos: 27.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14114 components: - type: Transform pos: 27.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14118 components: - type: Transform @@ -110401,7 +110401,7 @@ entities: pos: 13.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14122 components: - type: Transform @@ -110409,7 +110409,7 @@ entities: pos: 12.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14123 components: - type: Transform @@ -110417,7 +110417,7 @@ entities: pos: 11.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14124 components: - type: Transform @@ -110425,7 +110425,7 @@ entities: pos: 10.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14125 components: - type: Transform @@ -110433,14 +110433,14 @@ entities: pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14126 components: - type: Transform pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14127 components: - type: Transform @@ -110520,63 +110520,63 @@ entities: pos: 31.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14142 components: - type: Transform pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14143 components: - type: Transform pos: 31.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14144 components: - type: Transform pos: 31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14145 components: - type: Transform pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14146 components: - type: Transform pos: 31.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14147 components: - type: Transform pos: 31.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14148 components: - type: Transform pos: 31.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14149 components: - type: Transform pos: 31.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14150 components: - type: Transform @@ -110591,7 +110591,7 @@ entities: pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14156 components: - type: Transform @@ -110599,7 +110599,7 @@ entities: pos: 33.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14157 components: - type: Transform @@ -110607,7 +110607,7 @@ entities: pos: 34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14158 components: - type: Transform @@ -110615,7 +110615,7 @@ entities: pos: 35.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14159 components: - type: Transform @@ -110646,21 +110646,21 @@ entities: pos: 31.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14163 components: - type: Transform pos: 31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14164 components: - type: Transform pos: 31.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14224 components: - type: Transform @@ -110674,49 +110674,49 @@ entities: pos: 42.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14226 components: - type: Transform pos: 42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14227 components: - type: Transform pos: 42.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14228 components: - type: Transform pos: 42.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14229 components: - type: Transform pos: 42.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14231 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14232 components: - type: Transform pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14234 components: - type: Transform @@ -110731,7 +110731,7 @@ entities: pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14241 components: - type: Transform @@ -110754,21 +110754,21 @@ entities: pos: 51.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14245 components: - type: Transform pos: 51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14246 components: - type: Transform pos: 51.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14248 components: - type: Transform @@ -110792,7 +110792,7 @@ entities: pos: 51.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14251 components: - type: Transform @@ -110800,7 +110800,7 @@ entities: pos: 51.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14252 components: - type: Transform @@ -110808,7 +110808,7 @@ entities: pos: 51.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14257 components: - type: Transform @@ -110832,7 +110832,7 @@ entities: pos: 51.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14260 components: - type: Transform @@ -110840,7 +110840,7 @@ entities: pos: 51.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14261 components: - type: Transform @@ -110856,42 +110856,42 @@ entities: pos: 52.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14269 components: - type: Transform pos: 53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14270 components: - type: Transform pos: 53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14271 components: - type: Transform pos: 53.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14272 components: - type: Transform pos: 53.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14274 components: - type: Transform pos: 53.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14280 components: - type: Transform @@ -110899,7 +110899,7 @@ entities: pos: 53.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14281 components: - type: Transform @@ -110907,7 +110907,7 @@ entities: pos: 53.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14282 components: - type: Transform @@ -110915,7 +110915,7 @@ entities: pos: 54.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14283 components: - type: Transform @@ -110923,7 +110923,7 @@ entities: pos: 54.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14284 components: - type: Transform @@ -110931,7 +110931,7 @@ entities: pos: 50.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14285 components: - type: Transform @@ -110939,7 +110939,7 @@ entities: pos: 50.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14286 components: - type: Transform @@ -110947,7 +110947,7 @@ entities: pos: 46.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14287 components: - type: Transform @@ -110955,7 +110955,7 @@ entities: pos: 46.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14290 components: - type: Transform @@ -110963,7 +110963,7 @@ entities: pos: 52.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14291 components: - type: Transform @@ -110971,7 +110971,7 @@ entities: pos: 51.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14292 components: - type: Transform @@ -110979,7 +110979,7 @@ entities: pos: 49.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14293 components: - type: Transform @@ -110987,7 +110987,7 @@ entities: pos: 48.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14294 components: - type: Transform @@ -110995,7 +110995,7 @@ entities: pos: 47.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14295 components: - type: Transform @@ -111003,7 +111003,7 @@ entities: pos: 45.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14296 components: - type: Transform @@ -111011,7 +111011,7 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14297 components: - type: Transform @@ -111019,7 +111019,7 @@ entities: pos: 43.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14301 components: - type: Transform @@ -111166,21 +111166,21 @@ entities: pos: 42.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14332 components: - type: Transform pos: 42.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14333 components: - type: Transform pos: 42.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14335 components: - type: Transform @@ -111188,7 +111188,7 @@ entities: pos: 42.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14336 components: - type: Transform @@ -111196,7 +111196,7 @@ entities: pos: 42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14337 components: - type: Transform @@ -111204,7 +111204,7 @@ entities: pos: 42.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14339 components: - type: Transform @@ -111212,7 +111212,7 @@ entities: pos: 42.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14340 components: - type: Transform @@ -111220,7 +111220,7 @@ entities: pos: 42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14341 components: - type: Transform @@ -111228,7 +111228,7 @@ entities: pos: 42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14342 components: - type: Transform @@ -111236,7 +111236,7 @@ entities: pos: 42.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14343 components: - type: Transform @@ -111244,7 +111244,7 @@ entities: pos: 42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14344 components: - type: Transform @@ -111252,7 +111252,7 @@ entities: pos: 42.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14346 components: - type: Transform @@ -111357,7 +111357,7 @@ entities: pos: 42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14365 components: - type: Transform @@ -111381,7 +111381,7 @@ entities: pos: 41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14368 components: - type: Transform @@ -111389,7 +111389,7 @@ entities: pos: 40.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14369 components: - type: Transform @@ -111397,7 +111397,7 @@ entities: pos: 39.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14370 components: - type: Transform @@ -111405,7 +111405,7 @@ entities: pos: 38.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14372 components: - type: Transform @@ -111453,7 +111453,7 @@ entities: pos: 37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14382 components: - type: Transform @@ -111461,35 +111461,35 @@ entities: pos: 36.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14385 components: - type: Transform pos: 42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14386 components: - type: Transform pos: 42.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14387 components: - type: Transform pos: 42.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14388 components: - type: Transform pos: 42.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14389 components: - type: Transform @@ -111511,7 +111511,7 @@ entities: pos: 52.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14396 components: - type: Transform @@ -111519,14 +111519,14 @@ entities: pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14401 components: - type: Transform pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14402 components: - type: Transform @@ -111558,7 +111558,7 @@ entities: pos: 30.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14407 components: - type: Transform @@ -111566,7 +111566,7 @@ entities: pos: 34.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14408 components: - type: Transform @@ -111574,7 +111574,7 @@ entities: pos: 33.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14409 components: - type: Transform @@ -111582,7 +111582,7 @@ entities: pos: 31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14410 components: - type: Transform @@ -111590,7 +111590,7 @@ entities: pos: 29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14412 components: - type: Transform @@ -111648,35 +111648,35 @@ entities: pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14420 components: - type: Transform pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14421 components: - type: Transform pos: 28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14422 components: - type: Transform pos: 28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14423 components: - type: Transform pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14424 components: - type: Transform @@ -111684,7 +111684,7 @@ entities: pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14430 components: - type: Transform @@ -111780,7 +111780,7 @@ entities: pos: 27.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14443 components: - type: Transform @@ -111788,7 +111788,7 @@ entities: pos: 27.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14444 components: - type: Transform @@ -111796,7 +111796,7 @@ entities: pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14445 components: - type: Transform @@ -111804,7 +111804,7 @@ entities: pos: 27.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14446 components: - type: Transform @@ -111812,7 +111812,7 @@ entities: pos: 27.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14447 components: - type: Transform @@ -111820,7 +111820,7 @@ entities: pos: 27.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14448 components: - type: Transform @@ -111828,7 +111828,7 @@ entities: pos: 27.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14449 components: - type: Transform @@ -111836,7 +111836,7 @@ entities: pos: 27.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14450 components: - type: Transform @@ -111844,7 +111844,7 @@ entities: pos: 27.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14451 components: - type: Transform @@ -111852,7 +111852,7 @@ entities: pos: 27.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14456 components: - type: Transform @@ -111860,7 +111860,7 @@ entities: pos: 42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14457 components: - type: Transform @@ -111891,21 +111891,21 @@ entities: pos: 42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14462 components: - type: Transform pos: 42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14463 components: - type: Transform pos: 42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14464 components: - type: Transform @@ -111959,7 +111959,7 @@ entities: pos: 43.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14472 components: - type: Transform @@ -111967,7 +111967,7 @@ entities: pos: 44.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14473 components: - type: Transform @@ -111975,7 +111975,7 @@ entities: pos: 45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14475 components: - type: Transform @@ -111998,7 +111998,7 @@ entities: pos: 46.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14480 components: - type: Transform @@ -112006,7 +112006,7 @@ entities: pos: 47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14481 components: - type: Transform @@ -112014,7 +112014,7 @@ entities: pos: 48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14482 components: - type: Transform @@ -112022,7 +112022,7 @@ entities: pos: 49.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14483 components: - type: Transform @@ -112064,21 +112064,21 @@ entities: pos: 46.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14490 components: - type: Transform pos: 46.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14491 components: - type: Transform pos: 46.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14492 components: - type: Transform @@ -112142,7 +112142,7 @@ entities: pos: 50.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14500 components: - type: Transform @@ -112150,7 +112150,7 @@ entities: pos: 51.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14501 components: - type: Transform @@ -112158,7 +112158,7 @@ entities: pos: 52.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14502 components: - type: Transform @@ -112166,7 +112166,7 @@ entities: pos: 53.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14503 components: - type: Transform @@ -112174,7 +112174,7 @@ entities: pos: 54.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14504 components: - type: Transform @@ -112197,14 +112197,14 @@ entities: pos: 46.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14509 components: - type: Transform pos: 46.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14510 components: - type: Transform @@ -112212,7 +112212,7 @@ entities: pos: 47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14519 components: - type: Transform @@ -112220,7 +112220,7 @@ entities: pos: 42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14521 components: - type: Transform @@ -112228,7 +112228,7 @@ entities: pos: 41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14522 components: - type: Transform @@ -112236,7 +112236,7 @@ entities: pos: 40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14523 components: - type: Transform @@ -112244,7 +112244,7 @@ entities: pos: 39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14524 components: - type: Transform @@ -112252,7 +112252,7 @@ entities: pos: 38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14525 components: - type: Transform @@ -112276,7 +112276,7 @@ entities: pos: 46.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14534 components: - type: Transform @@ -112284,7 +112284,7 @@ entities: pos: 45.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14535 components: - type: Transform @@ -112292,7 +112292,7 @@ entities: pos: 44.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14536 components: - type: Transform @@ -112300,7 +112300,7 @@ entities: pos: 43.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14537 components: - type: Transform @@ -112308,7 +112308,7 @@ entities: pos: 42.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14538 components: - type: Transform @@ -112316,7 +112316,7 @@ entities: pos: 41.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14539 components: - type: Transform @@ -112324,7 +112324,7 @@ entities: pos: 40.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14540 components: - type: Transform @@ -112332,7 +112332,7 @@ entities: pos: 39.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14541 components: - type: Transform @@ -112340,7 +112340,7 @@ entities: pos: 38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14542 components: - type: Transform @@ -112348,7 +112348,7 @@ entities: pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14544 components: - type: Transform @@ -112664,70 +112664,70 @@ entities: pos: 36.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14593 components: - type: Transform pos: 36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14594 components: - type: Transform pos: 36.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14595 components: - type: Transform pos: 36.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14596 components: - type: Transform pos: 36.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14597 components: - type: Transform pos: 36.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14598 components: - type: Transform pos: 36.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14599 components: - type: Transform pos: 36.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14600 components: - type: Transform pos: 36.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14601 components: - type: Transform pos: 36.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14602 components: - type: Transform @@ -112735,7 +112735,7 @@ entities: pos: 35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14603 components: - type: Transform @@ -112743,7 +112743,7 @@ entities: pos: 34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14604 components: - type: Transform @@ -112751,7 +112751,7 @@ entities: pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14605 components: - type: Transform @@ -112759,7 +112759,7 @@ entities: pos: 32.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14606 components: - type: Transform @@ -112767,7 +112767,7 @@ entities: pos: 31.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14607 components: - type: Transform @@ -112775,7 +112775,7 @@ entities: pos: 30.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14608 components: - type: Transform @@ -112783,7 +112783,7 @@ entities: pos: 29.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14609 components: - type: Transform @@ -112791,7 +112791,7 @@ entities: pos: 28.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14610 components: - type: Transform @@ -112799,7 +112799,7 @@ entities: pos: 27.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14611 components: - type: Transform @@ -112807,35 +112807,35 @@ entities: pos: 26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14616 components: - type: Transform pos: 23.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14617 components: - type: Transform pos: 23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14618 components: - type: Transform pos: 23.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14619 components: - type: Transform pos: 23.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14620 components: - type: Transform @@ -112871,7 +112871,7 @@ entities: pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14633 components: - type: Transform @@ -112919,7 +112919,7 @@ entities: pos: 28.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14639 components: - type: Transform @@ -112927,7 +112927,7 @@ entities: pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14640 components: - type: Transform @@ -112935,7 +112935,7 @@ entities: pos: 26.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14641 components: - type: Transform @@ -112943,7 +112943,7 @@ entities: pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14642 components: - type: Transform @@ -112951,7 +112951,7 @@ entities: pos: 24.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14647 components: - type: Transform @@ -113039,7 +113039,7 @@ entities: pos: 2.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14658 components: - type: Transform @@ -113047,7 +113047,7 @@ entities: pos: 3.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14659 components: - type: Transform @@ -113055,7 +113055,7 @@ entities: pos: 4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14660 components: - type: Transform @@ -113063,7 +113063,7 @@ entities: pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14661 components: - type: Transform @@ -113071,7 +113071,7 @@ entities: pos: 6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14662 components: - type: Transform @@ -113079,7 +113079,7 @@ entities: pos: 7.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14663 components: - type: Transform @@ -113087,7 +113087,7 @@ entities: pos: 8.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14664 components: - type: Transform @@ -113095,7 +113095,7 @@ entities: pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14665 components: - type: Transform @@ -113103,7 +113103,7 @@ entities: pos: 10.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14668 components: - type: Transform @@ -113119,7 +113119,7 @@ entities: pos: 23.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14670 components: - type: Transform @@ -113127,7 +113127,7 @@ entities: pos: 23.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14671 components: - type: Transform @@ -113135,7 +113135,7 @@ entities: pos: 23.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14672 components: - type: Transform @@ -113143,7 +113143,7 @@ entities: pos: 23.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14673 components: - type: Transform @@ -113151,7 +113151,7 @@ entities: pos: 23.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14676 components: - type: Transform @@ -113167,7 +113167,7 @@ entities: pos: 30.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14679 components: - type: Transform @@ -113175,7 +113175,7 @@ entities: pos: 29.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14680 components: - type: Transform @@ -113183,7 +113183,7 @@ entities: pos: 28.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14681 components: - type: Transform @@ -113191,7 +113191,7 @@ entities: pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14682 components: - type: Transform @@ -113199,7 +113199,7 @@ entities: pos: 26.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14684 components: - type: Transform @@ -113259,42 +113259,42 @@ entities: pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14695 components: - type: Transform pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14698 components: - type: Transform pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14699 components: - type: Transform pos: 31.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14700 components: - type: Transform pos: 31.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14701 components: - type: Transform pos: 31.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14702 components: - type: Transform @@ -113356,7 +113356,7 @@ entities: pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14711 components: - type: Transform @@ -113364,7 +113364,7 @@ entities: pos: 33.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14713 components: - type: Transform @@ -113372,7 +113372,7 @@ entities: pos: 31.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14714 components: - type: Transform @@ -113380,7 +113380,7 @@ entities: pos: 30.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14715 components: - type: Transform @@ -113388,7 +113388,7 @@ entities: pos: 29.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14716 components: - type: Transform @@ -113396,7 +113396,7 @@ entities: pos: 28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14717 components: - type: Transform @@ -113441,7 +113441,7 @@ entities: pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14727 components: - type: Transform @@ -113449,7 +113449,7 @@ entities: pos: 36.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14730 components: - type: Transform @@ -113457,7 +113457,7 @@ entities: pos: 27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14731 components: - type: Transform @@ -113465,7 +113465,7 @@ entities: pos: 26.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14732 components: - type: Transform @@ -113473,7 +113473,7 @@ entities: pos: 25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14733 components: - type: Transform @@ -113481,7 +113481,7 @@ entities: pos: 24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14736 components: - type: Transform @@ -113541,21 +113541,21 @@ entities: pos: 31.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14746 components: - type: Transform pos: 31.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14747 components: - type: Transform pos: 31.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14750 components: - type: Transform @@ -113571,7 +113571,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14752 components: - type: Transform @@ -113595,14 +113595,14 @@ entities: pos: 35.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14757 components: - type: Transform pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14758 components: - type: Transform @@ -113630,7 +113630,7 @@ entities: pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14770 components: - type: Transform @@ -113782,7 +113782,7 @@ entities: pos: -40.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14801 components: - type: Transform @@ -113790,7 +113790,7 @@ entities: pos: -40.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14802 components: - type: Transform @@ -113798,7 +113798,7 @@ entities: pos: -40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14803 components: - type: Transform @@ -113806,7 +113806,7 @@ entities: pos: -40.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14807 components: - type: Transform @@ -113814,7 +113814,7 @@ entities: pos: -40.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14809 components: - type: Transform @@ -113822,7 +113822,7 @@ entities: pos: -40.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14810 components: - type: Transform @@ -113830,7 +113830,7 @@ entities: pos: -40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14812 components: - type: Transform @@ -113838,7 +113838,7 @@ entities: pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14814 components: - type: Transform @@ -113846,7 +113846,7 @@ entities: pos: -40.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14815 components: - type: Transform @@ -113854,7 +113854,7 @@ entities: pos: -40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14816 components: - type: Transform @@ -113862,7 +113862,7 @@ entities: pos: -40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14819 components: - type: Transform @@ -113870,7 +113870,7 @@ entities: pos: -40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14820 components: - type: Transform @@ -113878,7 +113878,7 @@ entities: pos: -40.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14821 components: - type: Transform @@ -113886,7 +113886,7 @@ entities: pos: -40.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14822 components: - type: Transform @@ -113894,7 +113894,7 @@ entities: pos: -40.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14823 components: - type: Transform @@ -113902,7 +113902,7 @@ entities: pos: -40.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14824 components: - type: Transform @@ -113910,7 +113910,7 @@ entities: pos: -40.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14825 components: - type: Transform @@ -113918,7 +113918,7 @@ entities: pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14826 components: - type: Transform @@ -113926,7 +113926,7 @@ entities: pos: -40.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14831 components: - type: Transform @@ -113934,7 +113934,7 @@ entities: pos: -0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14832 components: - type: Transform @@ -113942,7 +113942,7 @@ entities: pos: -1.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14833 components: - type: Transform @@ -113966,7 +113966,7 @@ entities: pos: 0.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14837 components: - type: Transform @@ -114030,7 +114030,7 @@ entities: pos: 2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14845 components: - type: Transform @@ -114038,7 +114038,7 @@ entities: pos: 3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14846 components: - type: Transform @@ -114046,7 +114046,7 @@ entities: pos: 4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14847 components: - type: Transform @@ -114054,7 +114054,7 @@ entities: pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14849 components: - type: Transform @@ -114062,7 +114062,7 @@ entities: pos: -16.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14851 components: - type: Transform @@ -114070,7 +114070,7 @@ entities: pos: 7.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14852 components: - type: Transform @@ -114078,7 +114078,7 @@ entities: pos: 8.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14853 components: - type: Transform @@ -114086,7 +114086,7 @@ entities: pos: 9.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14855 components: - type: Transform @@ -114094,7 +114094,7 @@ entities: pos: 11.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14856 components: - type: Transform @@ -114102,7 +114102,7 @@ entities: pos: 12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14857 components: - type: Transform @@ -114110,7 +114110,7 @@ entities: pos: 13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14858 components: - type: Transform @@ -114118,7 +114118,7 @@ entities: pos: 14.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14859 components: - type: Transform @@ -114126,7 +114126,7 @@ entities: pos: -9.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14861 components: - type: Transform @@ -114190,7 +114190,7 @@ entities: pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14871 components: - type: Transform @@ -114198,7 +114198,7 @@ entities: pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14872 components: - type: Transform @@ -114206,7 +114206,7 @@ entities: pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14873 components: - type: Transform @@ -114214,7 +114214,7 @@ entities: pos: 20.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14876 components: - type: Transform @@ -114222,7 +114222,7 @@ entities: pos: 21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14877 components: - type: Transform @@ -114286,7 +114286,7 @@ entities: pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14886 components: - type: Transform @@ -114294,7 +114294,7 @@ entities: pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14887 components: - type: Transform @@ -114302,7 +114302,7 @@ entities: pos: 16.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14888 components: - type: Transform @@ -114310,7 +114310,7 @@ entities: pos: 16.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14889 components: - type: Transform @@ -114318,7 +114318,7 @@ entities: pos: 16.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14892 components: - type: Transform @@ -114390,7 +114390,7 @@ entities: pos: 10.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14903 components: - type: Transform @@ -114398,7 +114398,7 @@ entities: pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14904 components: - type: Transform @@ -114406,7 +114406,7 @@ entities: pos: 12.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14905 components: - type: Transform @@ -114414,7 +114414,7 @@ entities: pos: 13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14906 components: - type: Transform @@ -114422,7 +114422,7 @@ entities: pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14907 components: - type: Transform @@ -114430,7 +114430,7 @@ entities: pos: 15.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14908 components: - type: Transform @@ -114479,35 +114479,35 @@ entities: pos: 16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14916 components: - type: Transform pos: 16.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14917 components: - type: Transform pos: 16.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14918 components: - type: Transform pos: 16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14919 components: - type: Transform pos: 16.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14920 components: - type: Transform @@ -114528,7 +114528,7 @@ entities: pos: 16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14932 components: - type: Transform @@ -114568,7 +114568,7 @@ entities: pos: 17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14937 components: - type: Transform @@ -114576,7 +114576,7 @@ entities: pos: 18.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14940 components: - type: Transform @@ -114584,7 +114584,7 @@ entities: pos: -39.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14941 components: - type: Transform @@ -114640,7 +114640,7 @@ entities: pos: -41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14948 components: - type: Transform @@ -114648,7 +114648,7 @@ entities: pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14949 components: - type: Transform @@ -114656,7 +114656,7 @@ entities: pos: -43.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14950 components: - type: Transform @@ -114664,7 +114664,7 @@ entities: pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14951 components: - type: Transform @@ -114672,7 +114672,7 @@ entities: pos: -45.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14956 components: - type: Transform @@ -114704,7 +114704,7 @@ entities: pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14962 components: - type: Transform @@ -114736,7 +114736,7 @@ entities: pos: -39.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14967 components: - type: Transform @@ -114744,7 +114744,7 @@ entities: pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14970 components: - type: Transform @@ -114752,7 +114752,7 @@ entities: pos: -39.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14971 components: - type: Transform @@ -114784,7 +114784,7 @@ entities: pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14978 components: - type: Transform @@ -114792,7 +114792,7 @@ entities: pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14979 components: - type: Transform @@ -114800,7 +114800,7 @@ entities: pos: -39.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14980 components: - type: Transform @@ -114848,7 +114848,7 @@ entities: pos: -37.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14991 components: - type: Transform @@ -114856,7 +114856,7 @@ entities: pos: -36.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14992 components: - type: Transform @@ -114880,7 +114880,7 @@ entities: pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15002 components: - type: Transform @@ -114888,7 +114888,7 @@ entities: pos: -42.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15003 components: - type: Transform @@ -114896,7 +114896,7 @@ entities: pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15005 components: - type: Transform @@ -114904,7 +114904,7 @@ entities: pos: -45.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15006 components: - type: Transform @@ -114912,7 +114912,7 @@ entities: pos: -46.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15007 components: - type: Transform @@ -114920,7 +114920,7 @@ entities: pos: -47.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15008 components: - type: Transform @@ -114928,7 +114928,7 @@ entities: pos: -48.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15010 components: - type: Transform @@ -114936,7 +114936,7 @@ entities: pos: -50.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15011 components: - type: Transform @@ -114944,7 +114944,7 @@ entities: pos: -51.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15012 components: - type: Transform @@ -114952,7 +114952,7 @@ entities: pos: -52.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15013 components: - type: Transform @@ -114960,7 +114960,7 @@ entities: pos: -53.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15016 components: - type: Transform @@ -114995,42 +114995,42 @@ entities: pos: -54.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15022 components: - type: Transform pos: -54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15023 components: - type: Transform pos: -54.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15024 components: - type: Transform pos: -54.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15025 components: - type: Transform pos: -54.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15027 components: - type: Transform pos: -54.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15051 components: - type: Transform @@ -115078,7 +115078,7 @@ entities: pos: -54.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15063 components: - type: Transform @@ -115086,7 +115086,7 @@ entities: pos: -54.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15064 components: - type: Transform @@ -115094,7 +115094,7 @@ entities: pos: -54.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15065 components: - type: Transform @@ -115102,7 +115102,7 @@ entities: pos: -54.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15066 components: - type: Transform @@ -115110,7 +115110,7 @@ entities: pos: -54.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15067 components: - type: Transform @@ -115118,7 +115118,7 @@ entities: pos: -54.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15068 components: - type: Transform @@ -115126,7 +115126,7 @@ entities: pos: -54.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15069 components: - type: Transform @@ -115134,7 +115134,7 @@ entities: pos: -54.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15084 components: - type: Transform @@ -115218,70 +115218,70 @@ entities: pos: -55.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15096 components: - type: Transform pos: -55.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15097 components: - type: Transform pos: -55.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15098 components: - type: Transform pos: -55.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15099 components: - type: Transform pos: -55.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15100 components: - type: Transform pos: -55.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15101 components: - type: Transform pos: -55.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15102 components: - type: Transform pos: -55.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15103 components: - type: Transform pos: -55.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15104 components: - type: Transform pos: -55.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15111 components: - type: Transform @@ -115289,7 +115289,7 @@ entities: pos: -53.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15112 components: - type: Transform @@ -115297,7 +115297,7 @@ entities: pos: -52.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15113 components: - type: Transform @@ -115305,7 +115305,7 @@ entities: pos: -51.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15114 components: - type: Transform @@ -115313,7 +115313,7 @@ entities: pos: -50.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15115 components: - type: Transform @@ -115336,7 +115336,7 @@ entities: pos: -48.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15120 components: - type: Transform @@ -115344,7 +115344,7 @@ entities: pos: -49.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15122 components: - type: Transform @@ -115360,7 +115360,7 @@ entities: pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15124 components: - type: Transform @@ -115368,7 +115368,7 @@ entities: pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15125 components: - type: Transform @@ -115376,7 +115376,7 @@ entities: pos: -38.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15130 components: - type: Transform @@ -115384,7 +115384,7 @@ entities: pos: -29.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15131 components: - type: Transform @@ -115392,7 +115392,7 @@ entities: pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15132 components: - type: Transform @@ -115400,7 +115400,7 @@ entities: pos: -29.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15133 components: - type: Transform @@ -115408,7 +115408,7 @@ entities: pos: -29.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15134 components: - type: Transform @@ -115416,7 +115416,7 @@ entities: pos: -29.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15135 components: - type: Transform @@ -115496,7 +115496,7 @@ entities: pos: -29.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15145 components: - type: Transform @@ -115504,7 +115504,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15146 components: - type: Transform @@ -115512,7 +115512,7 @@ entities: pos: -29.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15147 components: - type: Transform @@ -115520,7 +115520,7 @@ entities: pos: -29.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15152 components: - type: Transform @@ -115536,7 +115536,7 @@ entities: pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15154 components: - type: Transform @@ -115544,7 +115544,7 @@ entities: pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15155 components: - type: Transform @@ -115552,7 +115552,7 @@ entities: pos: -43.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15158 components: - type: Transform @@ -115584,7 +115584,7 @@ entities: pos: -41.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15162 components: - type: Transform @@ -115592,7 +115592,7 @@ entities: pos: -42.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15163 components: - type: Transform @@ -115600,7 +115600,7 @@ entities: pos: -43.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15164 components: - type: Transform @@ -115608,7 +115608,7 @@ entities: pos: -44.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15165 components: - type: Transform @@ -115616,28 +115616,28 @@ entities: pos: -45.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15169 components: - type: Transform pos: -37.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15170 components: - type: Transform pos: -37.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15171 components: - type: Transform pos: -37.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15172 components: - type: Transform @@ -115680,7 +115680,7 @@ entities: pos: -36.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15180 components: - type: Transform @@ -115688,7 +115688,7 @@ entities: pos: -35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15181 components: - type: Transform @@ -115696,7 +115696,7 @@ entities: pos: -34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15182 components: - type: Transform @@ -115704,7 +115704,7 @@ entities: pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15183 components: - type: Transform @@ -115712,7 +115712,7 @@ entities: pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15184 components: - type: Transform @@ -115768,7 +115768,7 @@ entities: pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15193 components: - type: Transform @@ -115776,7 +115776,7 @@ entities: pos: -37.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15194 components: - type: Transform @@ -115784,7 +115784,7 @@ entities: pos: -37.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15195 components: - type: Transform @@ -115792,7 +115792,7 @@ entities: pos: -37.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15196 components: - type: Transform @@ -115800,7 +115800,7 @@ entities: pos: -37.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15197 components: - type: Transform @@ -115808,7 +115808,7 @@ entities: pos: -37.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15199 components: - type: Transform @@ -115914,7 +115914,7 @@ entities: pos: -36.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15216 components: - type: Transform @@ -115922,7 +115922,7 @@ entities: pos: -35.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15217 components: - type: Transform @@ -115930,7 +115930,7 @@ entities: pos: -34.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15218 components: - type: Transform @@ -115938,7 +115938,7 @@ entities: pos: -33.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15219 components: - type: Transform @@ -115946,7 +115946,7 @@ entities: pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15220 components: - type: Transform @@ -115954,21 +115954,21 @@ entities: pos: -31.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15221 components: - type: Transform pos: -37.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15222 components: - type: Transform pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15223 components: - type: Transform @@ -115976,7 +115976,7 @@ entities: pos: -38.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15224 components: - type: Transform @@ -115984,7 +115984,7 @@ entities: pos: -39.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15225 components: - type: Transform @@ -115992,7 +115992,7 @@ entities: pos: -40.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15226 components: - type: Transform @@ -116000,7 +116000,7 @@ entities: pos: -41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15227 components: - type: Transform @@ -116024,7 +116024,7 @@ entities: pos: -42.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15234 components: - type: Transform @@ -116032,7 +116032,7 @@ entities: pos: -42.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15235 components: - type: Transform @@ -116040,7 +116040,7 @@ entities: pos: -42.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15236 components: - type: Transform @@ -116048,7 +116048,7 @@ entities: pos: -42.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15238 components: - type: Transform @@ -116080,7 +116080,7 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15248 components: - type: Transform @@ -116094,21 +116094,21 @@ entities: pos: -37.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15253 components: - type: Transform pos: -37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15254 components: - type: Transform pos: -37.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15255 components: - type: Transform @@ -116151,7 +116151,7 @@ entities: pos: -38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15263 components: - type: Transform @@ -116159,7 +116159,7 @@ entities: pos: -39.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15264 components: - type: Transform @@ -116167,7 +116167,7 @@ entities: pos: -40.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15265 components: - type: Transform @@ -116183,7 +116183,7 @@ entities: pos: -36.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15271 components: - type: Transform @@ -116239,7 +116239,7 @@ entities: pos: -34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15278 components: - type: Transform @@ -116247,7 +116247,7 @@ entities: pos: -33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15279 components: - type: Transform @@ -116255,7 +116255,7 @@ entities: pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15280 components: - type: Transform @@ -116263,7 +116263,7 @@ entities: pos: -31.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15281 components: - type: Transform @@ -116291,7 +116291,7 @@ entities: pos: -35.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15294 components: - type: Transform @@ -116299,7 +116299,7 @@ entities: pos: -40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15295 components: - type: Transform @@ -116307,7 +116307,7 @@ entities: pos: -41.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15296 components: - type: Transform @@ -116315,7 +116315,7 @@ entities: pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15297 components: - type: Transform @@ -116323,7 +116323,7 @@ entities: pos: -43.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15298 components: - type: Transform @@ -116331,7 +116331,7 @@ entities: pos: -44.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15299 components: - type: Transform @@ -116371,7 +116371,7 @@ entities: pos: -46.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15306 components: - type: Transform @@ -116379,7 +116379,7 @@ entities: pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15307 components: - type: Transform @@ -116387,7 +116387,7 @@ entities: pos: -48.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15308 components: - type: Transform @@ -116395,7 +116395,7 @@ entities: pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15309 components: - type: Transform @@ -116403,7 +116403,7 @@ entities: pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15310 components: - type: Transform @@ -116459,7 +116459,7 @@ entities: pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15317 components: - type: Transform @@ -116467,7 +116467,7 @@ entities: pos: -45.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15322 components: - type: Transform @@ -116491,7 +116491,7 @@ entities: pos: -2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15327 components: - type: Transform @@ -116507,7 +116507,7 @@ entities: pos: -3.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15329 components: - type: Transform @@ -116515,7 +116515,7 @@ entities: pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15330 components: - type: Transform @@ -116523,7 +116523,7 @@ entities: pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15332 components: - type: Transform @@ -116571,7 +116571,7 @@ entities: pos: -6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15340 components: - type: Transform @@ -116579,7 +116579,7 @@ entities: pos: -7.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15341 components: - type: Transform @@ -116587,7 +116587,7 @@ entities: pos: -7.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15342 components: - type: Transform @@ -116595,7 +116595,7 @@ entities: pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15343 components: - type: Transform @@ -116603,7 +116603,7 @@ entities: pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15344 components: - type: Transform @@ -116611,7 +116611,7 @@ entities: pos: -7.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15347 components: - type: Transform @@ -116619,7 +116619,7 @@ entities: pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15348 components: - type: Transform @@ -116627,7 +116627,7 @@ entities: pos: -5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15349 components: - type: Transform @@ -116717,7 +116717,7 @@ entities: pos: -8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15366 components: - type: Transform @@ -116725,7 +116725,7 @@ entities: pos: -9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15367 components: - type: Transform @@ -116733,7 +116733,7 @@ entities: pos: -10.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15368 components: - type: Transform @@ -116741,7 +116741,7 @@ entities: pos: -11.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15369 components: - type: Transform @@ -116749,7 +116749,7 @@ entities: pos: -13.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15370 components: - type: Transform @@ -116757,7 +116757,7 @@ entities: pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15371 components: - type: Transform @@ -116765,7 +116765,7 @@ entities: pos: 6.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15372 components: - type: Transform @@ -116773,7 +116773,7 @@ entities: pos: -17.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15373 components: - type: Transform @@ -116837,7 +116837,7 @@ entities: pos: -18.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15382 components: - type: Transform @@ -116860,35 +116860,35 @@ entities: pos: -19.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15389 components: - type: Transform pos: -19.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15390 components: - type: Transform pos: -19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15392 components: - type: Transform pos: -19.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15393 components: - type: Transform pos: -19.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15394 components: - type: Transform @@ -116916,7 +116916,7 @@ entities: pos: -19.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15398 components: - type: Transform @@ -116924,7 +116924,7 @@ entities: pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15399 components: - type: Transform @@ -116932,7 +116932,7 @@ entities: pos: -17.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15400 components: - type: Transform @@ -116940,7 +116940,7 @@ entities: pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15405 components: - type: Transform @@ -116971,7 +116971,7 @@ entities: pos: -20.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15409 components: - type: Transform @@ -116979,7 +116979,7 @@ entities: pos: -21.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15410 components: - type: Transform @@ -116987,7 +116987,7 @@ entities: pos: -22.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15411 components: - type: Transform @@ -116995,7 +116995,7 @@ entities: pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15412 components: - type: Transform @@ -117003,7 +117003,7 @@ entities: pos: -24.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15413 components: - type: Transform @@ -117051,7 +117051,7 @@ entities: pos: 41.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15431 components: - type: Transform @@ -117059,7 +117059,7 @@ entities: pos: 40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15432 components: - type: Transform @@ -117067,7 +117067,7 @@ entities: pos: 39.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15434 components: - type: Transform @@ -117075,7 +117075,7 @@ entities: pos: 37.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15435 components: - type: Transform @@ -117083,7 +117083,7 @@ entities: pos: 36.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15442 components: - type: Transform @@ -117098,35 +117098,35 @@ entities: pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15448 components: - type: Transform pos: 39.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15449 components: - type: Transform pos: 39.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15450 components: - type: Transform pos: 39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15451 components: - type: Transform pos: 39.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15452 components: - type: Transform @@ -117147,7 +117147,7 @@ entities: pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15460 components: - type: Transform @@ -117155,7 +117155,7 @@ entities: pos: 40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15462 components: - type: Transform @@ -117254,7 +117254,7 @@ entities: pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15479 components: - type: Transform @@ -117262,7 +117262,7 @@ entities: pos: 37.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15480 components: - type: Transform @@ -117270,7 +117270,7 @@ entities: pos: 36.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15481 components: - type: Transform @@ -117278,7 +117278,7 @@ entities: pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15482 components: - type: Transform @@ -117286,28 +117286,28 @@ entities: pos: 33.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15485 components: - type: Transform pos: 34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15486 components: - type: Transform pos: 34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15487 components: - type: Transform pos: 34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15489 components: - type: Transform @@ -117315,7 +117315,7 @@ entities: pos: 32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15490 components: - type: Transform @@ -117323,7 +117323,7 @@ entities: pos: 32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15491 components: - type: Transform @@ -117331,7 +117331,7 @@ entities: pos: 32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15513 components: - type: Transform @@ -117347,7 +117347,7 @@ entities: pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15566 components: - type: Transform @@ -117379,7 +117379,7 @@ entities: pos: 53.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15598 components: - type: Transform @@ -117387,7 +117387,7 @@ entities: pos: 55.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15599 components: - type: Transform @@ -117395,7 +117395,7 @@ entities: pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15604 components: - type: Transform @@ -117403,7 +117403,7 @@ entities: pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15605 components: - type: Transform @@ -117411,7 +117411,7 @@ entities: pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15606 components: - type: Transform @@ -117531,7 +117531,7 @@ entities: pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15629 components: - type: Transform @@ -117539,7 +117539,7 @@ entities: pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15630 components: - type: Transform @@ -117547,7 +117547,7 @@ entities: pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15631 components: - type: Transform @@ -117555,7 +117555,7 @@ entities: pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15632 components: - type: Transform @@ -117563,7 +117563,7 @@ entities: pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15633 components: - type: Transform @@ -117571,35 +117571,35 @@ entities: pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15634 components: - type: Transform pos: -5.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15635 components: - type: Transform pos: -5.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15636 components: - type: Transform pos: -5.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15637 components: - type: Transform pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15638 components: - type: Transform @@ -117635,7 +117635,7 @@ entities: pos: -6.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15643 components: - type: Transform @@ -117643,7 +117643,7 @@ entities: pos: -7.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15644 components: - type: Transform @@ -117651,7 +117651,7 @@ entities: pos: -8.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15645 components: - type: Transform @@ -117659,7 +117659,7 @@ entities: pos: -9.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15646 components: - type: Transform @@ -117667,7 +117667,7 @@ entities: pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15647 components: - type: Transform @@ -117675,7 +117675,7 @@ entities: pos: -11.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15648 components: - type: Transform @@ -117715,7 +117715,7 @@ entities: pos: -13.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15658 components: - type: Transform @@ -117747,14 +117747,14 @@ entities: pos: -14.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15662 components: - type: Transform pos: -13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15664 components: - type: Transform @@ -117762,7 +117762,7 @@ entities: pos: -13.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15665 components: - type: Transform @@ -117786,7 +117786,7 @@ entities: pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15669 components: - type: Transform @@ -117794,7 +117794,7 @@ entities: pos: -15.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15670 components: - type: Transform @@ -117802,7 +117802,7 @@ entities: pos: -16.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15671 components: - type: Transform @@ -117810,7 +117810,7 @@ entities: pos: -17.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15672 components: - type: Transform @@ -117818,7 +117818,7 @@ entities: pos: -18.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15675 components: - type: Transform @@ -117833,21 +117833,21 @@ entities: pos: -19.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15682 components: - type: Transform pos: -19.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15683 components: - type: Transform pos: -19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15684 components: - type: Transform @@ -117876,7 +117876,7 @@ entities: pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15690 components: - type: Transform @@ -117884,7 +117884,7 @@ entities: pos: -21.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15691 components: - type: Transform @@ -117892,7 +117892,7 @@ entities: pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15692 components: - type: Transform @@ -117900,7 +117900,7 @@ entities: pos: -23.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15695 components: - type: Transform @@ -117940,7 +117940,7 @@ entities: pos: -25.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15700 components: - type: Transform @@ -117948,7 +117948,7 @@ entities: pos: -24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15701 components: - type: Transform @@ -117956,7 +117956,7 @@ entities: pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15702 components: - type: Transform @@ -117964,7 +117964,7 @@ entities: pos: -24.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15703 components: - type: Transform @@ -118012,7 +118012,7 @@ entities: pos: -24.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15709 components: - type: Transform @@ -118020,7 +118020,7 @@ entities: pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15715 components: - type: Transform @@ -118035,7 +118035,7 @@ entities: pos: -13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15719 components: - type: Transform @@ -118043,14 +118043,14 @@ entities: pos: -13.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15722 components: - type: Transform pos: -13.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15723 components: - type: Transform @@ -118058,7 +118058,7 @@ entities: pos: -14.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15724 components: - type: Transform @@ -118066,7 +118066,7 @@ entities: pos: -15.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15725 components: - type: Transform @@ -118074,7 +118074,7 @@ entities: pos: -16.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15727 components: - type: Transform @@ -118098,7 +118098,7 @@ entities: pos: -20.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15731 components: - type: Transform @@ -118106,7 +118106,7 @@ entities: pos: -21.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15732 components: - type: Transform @@ -118114,7 +118114,7 @@ entities: pos: -22.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15733 components: - type: Transform @@ -118122,7 +118122,7 @@ entities: pos: -23.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15734 components: - type: Transform @@ -118152,14 +118152,14 @@ entities: pos: -17.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15746 components: - type: Transform pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15747 components: - type: Transform @@ -118215,7 +118215,7 @@ entities: pos: -16.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15755 components: - type: Transform @@ -118223,7 +118223,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15757 components: - type: Transform @@ -118231,7 +118231,7 @@ entities: pos: -13.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15758 components: - type: Transform @@ -118239,7 +118239,7 @@ entities: pos: -18.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15759 components: - type: Transform @@ -118247,7 +118247,7 @@ entities: pos: -19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15760 components: - type: Transform @@ -118255,7 +118255,7 @@ entities: pos: -20.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15762 components: - type: Transform @@ -118263,7 +118263,7 @@ entities: pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15763 components: - type: Transform @@ -118271,7 +118271,7 @@ entities: pos: -23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15765 components: - type: Transform @@ -118335,7 +118335,7 @@ entities: pos: -17.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15774 components: - type: Transform @@ -118343,7 +118343,7 @@ entities: pos: -17.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15777 components: - type: Transform @@ -118375,7 +118375,7 @@ entities: pos: -21.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15781 components: - type: Transform @@ -118383,7 +118383,7 @@ entities: pos: -21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15782 components: - type: Transform @@ -118415,7 +118415,7 @@ entities: pos: -14.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15786 components: - type: Transform @@ -118423,7 +118423,7 @@ entities: pos: -14.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15793 components: - type: Transform @@ -118447,7 +118447,7 @@ entities: pos: -11.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15799 components: - type: Transform @@ -118455,7 +118455,7 @@ entities: pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15800 components: - type: Transform @@ -118463,7 +118463,7 @@ entities: pos: -9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15801 components: - type: Transform @@ -118471,7 +118471,7 @@ entities: pos: -8.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15802 components: - type: Transform @@ -118479,7 +118479,7 @@ entities: pos: -7.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15804 components: - type: Transform @@ -118511,7 +118511,7 @@ entities: pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15816 components: - type: Transform @@ -118527,7 +118527,7 @@ entities: pos: -25.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15818 components: - type: Transform @@ -118535,7 +118535,7 @@ entities: pos: -26.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15819 components: - type: Transform @@ -118543,7 +118543,7 @@ entities: pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15821 components: - type: Transform @@ -118604,28 +118604,28 @@ entities: pos: -29.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15834 components: - type: Transform pos: -28.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15835 components: - type: Transform pos: -28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15836 components: - type: Transform pos: -28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15838 components: - type: Transform @@ -118667,28 +118667,28 @@ entities: pos: -29.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15845 components: - type: Transform pos: -29.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15846 components: - type: Transform pos: -29.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15847 components: - type: Transform pos: -29.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15859 components: - type: Transform @@ -118696,7 +118696,7 @@ entities: pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15860 components: - type: Transform @@ -118704,7 +118704,7 @@ entities: pos: -28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15861 components: - type: Transform @@ -118751,63 +118751,63 @@ entities: pos: -26.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15868 components: - type: Transform pos: -26.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15869 components: - type: Transform pos: -26.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15870 components: - type: Transform pos: -26.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15871 components: - type: Transform pos: -29.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15872 components: - type: Transform pos: -29.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15873 components: - type: Transform pos: -29.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15874 components: - type: Transform pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15875 components: - type: Transform pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15876 components: - type: Transform @@ -118842,28 +118842,28 @@ entities: pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15881 components: - type: Transform pos: -32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15882 components: - type: Transform pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15883 components: - type: Transform pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15884 components: - type: Transform @@ -118915,7 +118915,7 @@ entities: pos: -30.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15891 components: - type: Transform @@ -118923,7 +118923,7 @@ entities: pos: -31.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15892 components: - type: Transform @@ -118931,7 +118931,7 @@ entities: pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15893 components: - type: Transform @@ -118939,7 +118939,7 @@ entities: pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15895 components: - type: Transform @@ -118947,7 +118947,7 @@ entities: pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15896 components: - type: Transform @@ -118991,14 +118991,14 @@ entities: pos: -26.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15910 components: - type: Transform pos: -26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15914 components: - type: Transform @@ -119022,7 +119022,7 @@ entities: pos: 1.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15919 components: - type: Transform @@ -119030,7 +119030,7 @@ entities: pos: 1.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15920 components: - type: Transform @@ -119038,7 +119038,7 @@ entities: pos: 1.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15921 components: - type: Transform @@ -119046,7 +119046,7 @@ entities: pos: 2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15926 components: - type: Transform @@ -119054,7 +119054,7 @@ entities: pos: -0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15927 components: - type: Transform @@ -119286,7 +119286,7 @@ entities: pos: 3.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15959 components: - type: Transform @@ -119294,7 +119294,7 @@ entities: pos: -8.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15960 components: - type: Transform @@ -119302,7 +119302,7 @@ entities: pos: -8.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15961 components: - type: Transform @@ -119310,7 +119310,7 @@ entities: pos: -8.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15962 components: - type: Transform @@ -119318,7 +119318,7 @@ entities: pos: -8.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15963 components: - type: Transform @@ -119326,7 +119326,7 @@ entities: pos: -8.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15964 components: - type: Transform @@ -119334,7 +119334,7 @@ entities: pos: -8.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15965 components: - type: Transform @@ -119342,7 +119342,7 @@ entities: pos: -8.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15966 components: - type: Transform @@ -119350,7 +119350,7 @@ entities: pos: -8.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15967 components: - type: Transform @@ -119358,7 +119358,7 @@ entities: pos: -8.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15969 components: - type: Transform @@ -119366,7 +119366,7 @@ entities: pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15970 components: - type: Transform @@ -119374,7 +119374,7 @@ entities: pos: -8.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15971 components: - type: Transform @@ -119382,7 +119382,7 @@ entities: pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15972 components: - type: Transform @@ -119390,7 +119390,7 @@ entities: pos: -8.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15973 components: - type: Transform @@ -119398,7 +119398,7 @@ entities: pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15974 components: - type: Transform @@ -119406,7 +119406,7 @@ entities: pos: -8.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15975 components: - type: Transform @@ -119414,7 +119414,7 @@ entities: pos: -8.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15976 components: - type: Transform @@ -119422,7 +119422,7 @@ entities: pos: -8.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15977 components: - type: Transform @@ -119430,7 +119430,7 @@ entities: pos: -8.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15978 components: - type: Transform @@ -119438,7 +119438,7 @@ entities: pos: -8.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15979 components: - type: Transform @@ -119446,7 +119446,7 @@ entities: pos: 3.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15980 components: - type: Transform @@ -119454,7 +119454,7 @@ entities: pos: 3.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15981 components: - type: Transform @@ -119462,7 +119462,7 @@ entities: pos: 3.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15982 components: - type: Transform @@ -119470,7 +119470,7 @@ entities: pos: 3.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15983 components: - type: Transform @@ -119478,7 +119478,7 @@ entities: pos: 3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15984 components: - type: Transform @@ -119486,7 +119486,7 @@ entities: pos: 3.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15985 components: - type: Transform @@ -119494,7 +119494,7 @@ entities: pos: 3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15986 components: - type: Transform @@ -119502,7 +119502,7 @@ entities: pos: 3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15987 components: - type: Transform @@ -119510,7 +119510,7 @@ entities: pos: 3.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15989 components: - type: Transform @@ -119518,7 +119518,7 @@ entities: pos: 3.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15990 components: - type: Transform @@ -119526,7 +119526,7 @@ entities: pos: 3.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15991 components: - type: Transform @@ -119534,7 +119534,7 @@ entities: pos: 3.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15992 components: - type: Transform @@ -119542,7 +119542,7 @@ entities: pos: 3.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15993 components: - type: Transform @@ -119550,7 +119550,7 @@ entities: pos: 3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15994 components: - type: Transform @@ -119558,7 +119558,7 @@ entities: pos: 3.5,-77.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15995 components: - type: Transform @@ -119566,7 +119566,7 @@ entities: pos: 3.5,-78.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15996 components: - type: Transform @@ -119574,7 +119574,7 @@ entities: pos: 3.5,-79.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15997 components: - type: Transform @@ -119582,7 +119582,7 @@ entities: pos: 3.5,-80.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15998 components: - type: Transform @@ -119758,7 +119758,7 @@ entities: pos: -1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16022 components: - type: Transform @@ -119766,7 +119766,7 @@ entities: pos: -2.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16023 components: - type: Transform @@ -119774,7 +119774,7 @@ entities: pos: -3.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16024 components: - type: Transform @@ -119782,7 +119782,7 @@ entities: pos: -4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16025 components: - type: Transform @@ -119798,7 +119798,7 @@ entities: pos: -7.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16029 components: - type: Transform @@ -119806,7 +119806,7 @@ entities: pos: -6.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16117 components: - type: Transform @@ -119846,7 +119846,7 @@ entities: pos: 49.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16122 components: - type: Transform @@ -119854,7 +119854,7 @@ entities: pos: 49.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16127 components: - type: Transform @@ -119862,7 +119862,7 @@ entities: pos: 40.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16128 components: - type: Transform @@ -119870,7 +119870,7 @@ entities: pos: 40.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16129 components: - type: Transform @@ -119878,7 +119878,7 @@ entities: pos: 40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16130 components: - type: Transform @@ -119926,7 +119926,7 @@ entities: pos: -17.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16139 components: - type: Transform @@ -119934,7 +119934,7 @@ entities: pos: -17.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16140 components: - type: Transform @@ -119957,21 +119957,21 @@ entities: pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16146 components: - type: Transform pos: -16.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16147 components: - type: Transform pos: -16.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16151 components: - type: Transform @@ -120067,7 +120067,7 @@ entities: pos: -1.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16163 components: - type: Transform @@ -120075,7 +120075,7 @@ entities: pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16164 components: - type: Transform @@ -120083,7 +120083,7 @@ entities: pos: -3.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16165 components: - type: Transform @@ -120091,7 +120091,7 @@ entities: pos: -4.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16166 components: - type: Transform @@ -120099,7 +120099,7 @@ entities: pos: -5.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16167 components: - type: Transform @@ -120107,7 +120107,7 @@ entities: pos: -6.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16168 components: - type: Transform @@ -120115,7 +120115,7 @@ entities: pos: -7.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16169 components: - type: Transform @@ -120123,7 +120123,7 @@ entities: pos: -9.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16170 components: - type: Transform @@ -120131,7 +120131,7 @@ entities: pos: -10.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16171 components: - type: Transform @@ -120139,7 +120139,7 @@ entities: pos: -11.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16173 components: - type: Transform @@ -120160,14 +120160,14 @@ entities: pos: -8.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16178 components: - type: Transform pos: -8.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16181 components: - type: Transform @@ -120175,7 +120175,7 @@ entities: pos: -12.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16182 components: - type: Transform @@ -120183,7 +120183,7 @@ entities: pos: -12.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16183 components: - type: Transform @@ -120191,7 +120191,7 @@ entities: pos: -12.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16184 components: - type: Transform @@ -120199,7 +120199,7 @@ entities: pos: -12.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16185 components: - type: Transform @@ -120255,7 +120255,7 @@ entities: pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16194 components: - type: Transform @@ -120263,7 +120263,7 @@ entities: pos: 1.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16195 components: - type: Transform @@ -120271,7 +120271,7 @@ entities: pos: 2.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16196 components: - type: Transform @@ -120279,7 +120279,7 @@ entities: pos: 3.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16197 components: - type: Transform @@ -120287,7 +120287,7 @@ entities: pos: 4.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16198 components: - type: Transform @@ -120295,7 +120295,7 @@ entities: pos: 5.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16199 components: - type: Transform @@ -120303,7 +120303,7 @@ entities: pos: 7.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16200 components: - type: Transform @@ -120311,7 +120311,7 @@ entities: pos: 8.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16201 components: - type: Transform @@ -120319,7 +120319,7 @@ entities: pos: 9.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16202 components: - type: Transform @@ -120327,7 +120327,7 @@ entities: pos: 10.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16203 components: - type: Transform @@ -120335,7 +120335,7 @@ entities: pos: 11.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16204 components: - type: Transform @@ -120343,7 +120343,7 @@ entities: pos: 12.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16205 components: - type: Transform @@ -120423,7 +120423,7 @@ entities: pos: 21.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16223 components: - type: Transform @@ -120431,7 +120431,7 @@ entities: pos: 20.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16224 components: - type: Transform @@ -120439,7 +120439,7 @@ entities: pos: 19.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16225 components: - type: Transform @@ -120447,7 +120447,7 @@ entities: pos: 18.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16230 components: - type: Transform @@ -120495,7 +120495,7 @@ entities: pos: 15.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16241 components: - type: Transform @@ -120503,7 +120503,7 @@ entities: pos: 14.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16243 components: - type: Transform @@ -120511,7 +120511,7 @@ entities: pos: 23.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16244 components: - type: Transform @@ -120519,7 +120519,7 @@ entities: pos: 23.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16245 components: - type: Transform @@ -120527,7 +120527,7 @@ entities: pos: 23.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16246 components: - type: Transform @@ -120567,7 +120567,7 @@ entities: pos: 23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16257 components: - type: Transform @@ -120583,7 +120583,7 @@ entities: pos: 24.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16259 components: - type: Transform @@ -120599,7 +120599,7 @@ entities: pos: 25.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16261 components: - type: Transform @@ -120631,7 +120631,7 @@ entities: pos: 22.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16271 components: - type: Transform @@ -120646,7 +120646,7 @@ entities: pos: 24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16273 components: - type: Transform @@ -120654,7 +120654,7 @@ entities: pos: 25.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16277 components: - type: Transform @@ -120662,7 +120662,7 @@ entities: pos: 26.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16278 components: - type: Transform @@ -120670,7 +120670,7 @@ entities: pos: 26.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16279 components: - type: Transform @@ -120678,7 +120678,7 @@ entities: pos: 26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16280 components: - type: Transform @@ -120686,7 +120686,7 @@ entities: pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16281 components: - type: Transform @@ -120694,7 +120694,7 @@ entities: pos: 26.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16282 components: - type: Transform @@ -120764,7 +120764,7 @@ entities: pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16294 components: - type: Transform @@ -120772,7 +120772,7 @@ entities: pos: 26.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16295 components: - type: Transform @@ -120780,7 +120780,7 @@ entities: pos: 26.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16296 components: - type: Transform @@ -120811,7 +120811,7 @@ entities: pos: 26.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16304 components: - type: Transform @@ -120819,7 +120819,7 @@ entities: pos: 27.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16305 components: - type: Transform @@ -120851,7 +120851,7 @@ entities: pos: 28.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16311 components: - type: Transform @@ -120891,7 +120891,7 @@ entities: pos: 30.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16317 components: - type: Transform @@ -120899,7 +120899,7 @@ entities: pos: 31.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16318 components: - type: Transform @@ -120907,7 +120907,7 @@ entities: pos: 32.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16319 components: - type: Transform @@ -120915,7 +120915,7 @@ entities: pos: 33.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16323 components: - type: Transform @@ -120923,7 +120923,7 @@ entities: pos: 35.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16324 components: - type: Transform @@ -120931,7 +120931,7 @@ entities: pos: 35.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16325 components: - type: Transform @@ -120939,7 +120939,7 @@ entities: pos: 35.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16326 components: - type: Transform @@ -120947,7 +120947,7 @@ entities: pos: 35.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16327 components: - type: Transform @@ -120955,7 +120955,7 @@ entities: pos: 35.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16328 components: - type: Transform @@ -120963,7 +120963,7 @@ entities: pos: 35.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16329 components: - type: Transform @@ -121010,7 +121010,7 @@ entities: pos: 34.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16339 components: - type: Transform @@ -121032,7 +121032,7 @@ entities: pos: 35.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16344 components: - type: Transform @@ -121088,7 +121088,7 @@ entities: pos: 27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16354 components: - type: Transform @@ -121096,7 +121096,7 @@ entities: pos: 28.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16355 components: - type: Transform @@ -121104,7 +121104,7 @@ entities: pos: 29.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16356 components: - type: Transform @@ -121112,7 +121112,7 @@ entities: pos: 30.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16359 components: - type: Transform @@ -121120,7 +121120,7 @@ entities: pos: 25.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16360 components: - type: Transform @@ -121128,7 +121128,7 @@ entities: pos: 24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16361 components: - type: Transform @@ -121136,7 +121136,7 @@ entities: pos: 23.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16362 components: - type: Transform @@ -121144,7 +121144,7 @@ entities: pos: 22.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16363 components: - type: Transform @@ -121152,7 +121152,7 @@ entities: pos: 21.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16364 components: - type: Transform @@ -121160,7 +121160,7 @@ entities: pos: 20.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16365 components: - type: Transform @@ -121168,7 +121168,7 @@ entities: pos: 19.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16368 components: - type: Transform @@ -121294,7 +121294,7 @@ entities: pos: 15.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16390 components: - type: Transform @@ -121302,7 +121302,7 @@ entities: pos: 14.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16391 components: - type: Transform @@ -121310,7 +121310,7 @@ entities: pos: 13.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16392 components: - type: Transform @@ -121318,7 +121318,7 @@ entities: pos: 12.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16393 components: - type: Transform @@ -121326,7 +121326,7 @@ entities: pos: 11.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16395 components: - type: Transform @@ -121334,7 +121334,7 @@ entities: pos: 10.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16396 components: - type: Transform @@ -121342,7 +121342,7 @@ entities: pos: 6.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16398 components: - type: Transform @@ -121364,14 +121364,14 @@ entities: pos: 9.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16405 components: - type: Transform pos: 7.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16408 components: - type: Transform @@ -121427,7 +121427,7 @@ entities: pos: 8.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16421 components: - type: Transform @@ -121451,7 +121451,7 @@ entities: pos: 6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16424 components: - type: Transform @@ -121459,7 +121459,7 @@ entities: pos: 5.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16425 components: - type: Transform @@ -121467,28 +121467,28 @@ entities: pos: 4.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16426 components: - type: Transform pos: 7.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16427 components: - type: Transform pos: 7.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16428 components: - type: Transform pos: 7.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16429 components: - type: Transform @@ -121565,7 +121565,7 @@ entities: pos: 5.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16443 components: - type: Transform @@ -121573,7 +121573,7 @@ entities: pos: 5.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16446 components: - type: Transform @@ -121581,7 +121581,7 @@ entities: pos: 4.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16452 components: - type: Transform @@ -121653,7 +121653,7 @@ entities: pos: 3.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16462 components: - type: Transform @@ -121661,7 +121661,7 @@ entities: pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16463 components: - type: Transform @@ -121669,7 +121669,7 @@ entities: pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16464 components: - type: Transform @@ -121677,7 +121677,7 @@ entities: pos: 6.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16465 components: - type: Transform @@ -121685,7 +121685,7 @@ entities: pos: 7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16466 components: - type: Transform @@ -121693,7 +121693,7 @@ entities: pos: 8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16467 components: - type: Transform @@ -121701,7 +121701,7 @@ entities: pos: 10.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16468 components: - type: Transform @@ -121709,7 +121709,7 @@ entities: pos: 11.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16469 components: - type: Transform @@ -121717,7 +121717,7 @@ entities: pos: 12.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16470 components: - type: Transform @@ -121725,14 +121725,14 @@ entities: pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16473 components: - type: Transform pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16478 components: - type: Transform @@ -121746,7 +121746,7 @@ entities: pos: 3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16480 components: - type: Transform @@ -121760,7 +121760,7 @@ entities: pos: -2.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16494 components: - type: Transform @@ -121768,7 +121768,7 @@ entities: pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16502 components: - type: Transform @@ -121776,7 +121776,7 @@ entities: pos: -49.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16517 components: - type: Transform @@ -121815,7 +121815,7 @@ entities: pos: -20.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16802 components: - type: Transform @@ -121838,7 +121838,7 @@ entities: pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16953 components: - type: Transform @@ -121846,7 +121846,7 @@ entities: pos: -14.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16983 components: - type: Transform @@ -121854,7 +121854,7 @@ entities: pos: -49.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 17108 components: - type: Transform @@ -121878,7 +121878,7 @@ entities: pos: 54.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18033 components: - type: Transform @@ -121926,7 +121926,7 @@ entities: pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18381 components: - type: Transform @@ -121934,7 +121934,7 @@ entities: pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18382 components: - type: Transform @@ -121942,7 +121942,7 @@ entities: pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18383 components: - type: Transform @@ -122046,7 +122046,7 @@ entities: pos: 60.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18396 components: - type: Transform @@ -122054,7 +122054,7 @@ entities: pos: 60.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18397 components: - type: Transform @@ -122062,7 +122062,7 @@ entities: pos: 60.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18398 components: - type: Transform @@ -122070,7 +122070,7 @@ entities: pos: 60.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18399 components: - type: Transform @@ -122078,7 +122078,7 @@ entities: pos: 60.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18400 components: - type: Transform @@ -122086,7 +122086,7 @@ entities: pos: 60.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18401 components: - type: Transform @@ -122094,7 +122094,7 @@ entities: pos: 60.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18402 components: - type: Transform @@ -122102,7 +122102,7 @@ entities: pos: 60.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18403 components: - type: Transform @@ -122110,7 +122110,7 @@ entities: pos: 60.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18404 components: - type: Transform @@ -122118,7 +122118,7 @@ entities: pos: 60.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18413 components: - type: Transform @@ -122206,7 +122206,7 @@ entities: pos: 54.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18424 components: - type: Transform @@ -122214,7 +122214,7 @@ entities: pos: 55.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18425 components: - type: Transform @@ -122222,7 +122222,7 @@ entities: pos: 56.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18426 components: - type: Transform @@ -122230,7 +122230,7 @@ entities: pos: 57.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18427 components: - type: Transform @@ -122238,21 +122238,21 @@ entities: pos: 58.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18428 components: - type: Transform pos: 60.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18429 components: - type: Transform pos: 60.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18908 components: - type: Transform @@ -122260,21 +122260,21 @@ entities: pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19075 components: - type: Transform pos: 31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19076 components: - type: Transform pos: 31.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19079 components: - type: Transform @@ -122296,7 +122296,7 @@ entities: pos: -15.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20980 components: - type: Transform @@ -122619,7 +122619,7 @@ entities: pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22247 components: - type: Transform @@ -122627,7 +122627,7 @@ entities: pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22320 components: - type: Transform @@ -122651,7 +122651,7 @@ entities: pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22362 components: - type: Transform @@ -122659,7 +122659,7 @@ entities: pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22363 components: - type: Transform @@ -122667,7 +122667,7 @@ entities: pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22364 components: - type: Transform @@ -122675,7 +122675,7 @@ entities: pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22365 components: - type: Transform @@ -122683,7 +122683,7 @@ entities: pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22398 components: - type: Transform @@ -122691,7 +122691,7 @@ entities: pos: -8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22450 components: - type: Transform @@ -122830,7 +122830,7 @@ entities: pos: -9.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22661 components: - type: Transform @@ -122958,7 +122958,7 @@ entities: pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23073 components: - type: Transform @@ -122974,7 +122974,7 @@ entities: pos: 12.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23079 components: - type: Transform @@ -123014,14 +123014,14 @@ entities: pos: -44.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23100 components: - type: Transform pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23103 components: - type: Transform @@ -123029,7 +123029,7 @@ entities: pos: -20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23104 components: - type: Transform @@ -123037,7 +123037,7 @@ entities: pos: -19.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23105 components: - type: Transform @@ -123045,7 +123045,7 @@ entities: pos: -18.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23106 components: - type: Transform @@ -123053,7 +123053,7 @@ entities: pos: -17.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23107 components: - type: Transform @@ -123061,7 +123061,7 @@ entities: pos: -16.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23108 components: - type: Transform @@ -123069,7 +123069,7 @@ entities: pos: -15.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23109 components: - type: Transform @@ -123077,7 +123077,7 @@ entities: pos: -14.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23110 components: - type: Transform @@ -123085,7 +123085,7 @@ entities: pos: -13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23111 components: - type: Transform @@ -123093,7 +123093,7 @@ entities: pos: -12.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23112 components: - type: Transform @@ -123101,7 +123101,7 @@ entities: pos: -11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23113 components: - type: Transform @@ -123109,7 +123109,7 @@ entities: pos: -10.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23114 components: - type: Transform @@ -123117,7 +123117,7 @@ entities: pos: -9.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23115 components: - type: Transform @@ -123125,7 +123125,7 @@ entities: pos: -8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23116 components: - type: Transform @@ -123133,7 +123133,7 @@ entities: pos: -7.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23117 components: - type: Transform @@ -123141,7 +123141,7 @@ entities: pos: -6.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23118 components: - type: Transform @@ -123149,7 +123149,7 @@ entities: pos: -5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23119 components: - type: Transform @@ -123157,7 +123157,7 @@ entities: pos: -4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23120 components: - type: Transform @@ -123165,7 +123165,7 @@ entities: pos: -3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23121 components: - type: Transform @@ -123173,7 +123173,7 @@ entities: pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23122 components: - type: Transform @@ -123181,7 +123181,7 @@ entities: pos: -1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23127 components: - type: Transform @@ -123189,7 +123189,7 @@ entities: pos: -11.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23203 components: - type: Transform @@ -123302,7 +123302,7 @@ entities: pos: -39.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23463 components: - type: Transform @@ -123352,7 +123352,7 @@ entities: pos: -10.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23534 components: - type: Transform @@ -123368,7 +123368,7 @@ entities: pos: -40.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23539 components: - type: Transform @@ -123376,7 +123376,7 @@ entities: pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23554 components: - type: Transform @@ -123416,7 +123416,7 @@ entities: pos: -2.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23700 components: - type: Transform @@ -123424,7 +123424,7 @@ entities: pos: -2.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23701 components: - type: Transform @@ -123432,7 +123432,7 @@ entities: pos: -2.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23842 components: - type: Transform @@ -123464,7 +123464,7 @@ entities: pos: 60.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23866 components: - type: Transform @@ -123472,7 +123472,7 @@ entities: pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23869 components: - type: Transform @@ -123480,7 +123480,7 @@ entities: pos: 60.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23870 components: - type: Transform @@ -123488,7 +123488,7 @@ entities: pos: 60.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23871 components: - type: Transform @@ -123496,7 +123496,7 @@ entities: pos: 60.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23872 components: - type: Transform @@ -123504,7 +123504,7 @@ entities: pos: 60.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23873 components: - type: Transform @@ -123512,7 +123512,7 @@ entities: pos: 60.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23874 components: - type: Transform @@ -123520,7 +123520,7 @@ entities: pos: 60.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23875 components: - type: Transform @@ -123528,7 +123528,7 @@ entities: pos: 60.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23876 components: - type: Transform @@ -123536,7 +123536,7 @@ entities: pos: 60.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23877 components: - type: Transform @@ -123544,7 +123544,7 @@ entities: pos: 60.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23878 components: - type: Transform @@ -123552,7 +123552,7 @@ entities: pos: 60.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23879 components: - type: Transform @@ -123560,7 +123560,7 @@ entities: pos: 60.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23880 components: - type: Transform @@ -123568,7 +123568,7 @@ entities: pos: 60.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23881 components: - type: Transform @@ -123576,7 +123576,7 @@ entities: pos: 60.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23882 components: - type: Transform @@ -123584,7 +123584,7 @@ entities: pos: 60.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23883 components: - type: Transform @@ -123696,7 +123696,7 @@ entities: pos: 59.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24039 components: - type: Transform @@ -123726,7 +123726,7 @@ entities: pos: 3.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25219 components: - type: Transform @@ -124079,7 +124079,7 @@ entities: pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25555 components: - type: Transform @@ -124119,7 +124119,7 @@ entities: pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25562 components: - type: Transform @@ -124287,7 +124287,7 @@ entities: pos: -26.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28539 components: - type: Transform @@ -124295,7 +124295,7 @@ entities: pos: -27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28541 components: - type: Transform @@ -124303,7 +124303,7 @@ entities: pos: -27.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28542 components: - type: Transform @@ -124311,7 +124311,7 @@ entities: pos: -27.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28543 components: - type: Transform @@ -124327,7 +124327,7 @@ entities: pos: -27.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28546 components: - type: Transform @@ -124335,7 +124335,7 @@ entities: pos: -27.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28547 components: - type: Transform @@ -124343,7 +124343,7 @@ entities: pos: -27.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28548 components: - type: Transform @@ -124351,7 +124351,7 @@ entities: pos: -27.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28549 components: - type: Transform @@ -124359,7 +124359,7 @@ entities: pos: -27.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28551 components: - type: Transform @@ -124367,7 +124367,7 @@ entities: pos: -28.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28558 components: - type: Transform @@ -124468,7 +124468,7 @@ entities: pos: 2.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28828 components: - type: Transform @@ -124575,28 +124575,28 @@ entities: pos: -8.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28971 components: - type: Transform pos: -8.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28972 components: - type: Transform pos: -8.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28973 components: - type: Transform pos: -8.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29684 components: - type: Transform @@ -124604,7 +124604,7 @@ entities: pos: 4.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29687 components: - type: Transform @@ -124612,7 +124612,7 @@ entities: pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29688 components: - type: Transform @@ -124620,7 +124620,7 @@ entities: pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29689 components: - type: Transform @@ -124628,7 +124628,7 @@ entities: pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29691 components: - type: Transform @@ -124649,7 +124649,7 @@ entities: pos: 8.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29695 components: - type: Transform @@ -124657,7 +124657,7 @@ entities: pos: 8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29697 components: - type: Transform @@ -124697,7 +124697,7 @@ entities: pos: 9.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29703 components: - type: Transform @@ -124705,7 +124705,7 @@ entities: pos: 10.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29704 components: - type: Transform @@ -124713,7 +124713,7 @@ entities: pos: 11.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29705 components: - type: Transform @@ -124721,7 +124721,7 @@ entities: pos: 12.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29728 components: - type: Transform @@ -124776,7 +124776,7 @@ entities: pos: 22.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 17 @@ -124786,7 +124786,7 @@ entities: pos: -40.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 47 components: - type: Transform @@ -124802,7 +124802,7 @@ entities: pos: -24.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2170 components: - type: Transform @@ -124810,7 +124810,7 @@ entities: pos: -8.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2172 components: - type: Transform @@ -124841,7 +124841,7 @@ entities: pos: -38.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3054 components: - type: Transform @@ -124857,7 +124857,7 @@ entities: pos: -0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3284 components: - type: Transform @@ -124865,7 +124865,7 @@ entities: pos: 38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 3285 components: - type: Transform @@ -124921,7 +124921,7 @@ entities: pos: 21.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5423 components: - type: Transform @@ -124929,7 +124929,7 @@ entities: pos: 23.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5633 components: - type: Transform @@ -124945,14 +124945,14 @@ entities: pos: -21.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5635 components: - type: Transform pos: -34.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 5639 components: - type: Transform @@ -124968,7 +124968,7 @@ entities: pos: -21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 6673 components: - type: Transform @@ -124983,7 +124983,7 @@ entities: pos: 0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7343 components: - type: Transform @@ -124999,7 +124999,7 @@ entities: pos: -0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7347 components: - type: Transform @@ -125007,7 +125007,7 @@ entities: pos: -0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7354 components: - type: Transform @@ -125015,7 +125015,7 @@ entities: pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7664 components: - type: Transform @@ -125071,7 +125071,7 @@ entities: pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8739 components: - type: Transform @@ -125079,14 +125079,14 @@ entities: pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8768 components: - type: Transform pos: -2.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8769 components: - type: Transform @@ -125094,7 +125094,7 @@ entities: pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8797 components: - type: Transform @@ -125223,7 +125223,7 @@ entities: pos: -21.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9128 components: - type: Transform @@ -125262,7 +125262,7 @@ entities: pos: 0.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9612 components: - type: Transform @@ -125270,7 +125270,7 @@ entities: pos: -31.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9630 components: - type: Transform @@ -125278,7 +125278,7 @@ entities: pos: -17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9730 components: - type: Transform @@ -125330,7 +125330,7 @@ entities: pos: -2.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11239 components: - type: Transform @@ -125361,7 +125361,7 @@ entities: pos: -49.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11526 components: - type: Transform @@ -125377,7 +125377,7 @@ entities: pos: 60.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11908 components: - type: Transform @@ -125385,7 +125385,7 @@ entities: pos: -0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 11968 components: - type: Transform @@ -125401,7 +125401,7 @@ entities: pos: 1.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12300 components: - type: Transform @@ -125409,7 +125409,7 @@ entities: pos: 1.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12305 components: - type: Transform @@ -125417,7 +125417,7 @@ entities: pos: 1.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12306 components: - type: Transform @@ -125441,7 +125441,7 @@ entities: pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 12935 components: - type: Transform @@ -125456,7 +125456,7 @@ entities: pos: -19.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13030 components: - type: Transform @@ -125464,7 +125464,7 @@ entities: pos: -10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13031 components: - type: Transform @@ -125487,7 +125487,7 @@ entities: pos: -38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13166 components: - type: Transform @@ -125518,7 +125518,7 @@ entities: pos: -40.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13178 components: - type: Transform @@ -125532,14 +125532,14 @@ entities: pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13192 components: - type: Transform pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13194 components: - type: Transform @@ -125547,7 +125547,7 @@ entities: pos: 3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13201 components: - type: Transform @@ -125555,7 +125555,7 @@ entities: pos: -1.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13202 components: - type: Transform @@ -125594,7 +125594,7 @@ entities: pos: -0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13246 components: - type: Transform @@ -125602,14 +125602,14 @@ entities: pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13247 components: - type: Transform pos: 1.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13256 components: - type: Transform @@ -125617,7 +125617,7 @@ entities: pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13259 components: - type: Transform @@ -125625,7 +125625,7 @@ entities: pos: 1.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13270 components: - type: Transform @@ -125641,7 +125641,7 @@ entities: pos: -0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13273 components: - type: Transform @@ -125657,7 +125657,7 @@ entities: pos: 1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13289 components: - type: Transform @@ -125713,7 +125713,7 @@ entities: pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13338 components: - type: Transform @@ -125752,7 +125752,7 @@ entities: pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13381 components: - type: Transform @@ -125760,14 +125760,14 @@ entities: pos: -0.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13383 components: - type: Transform pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13389 components: - type: Transform @@ -125781,7 +125781,7 @@ entities: pos: 42.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13402 components: - type: Transform @@ -125796,7 +125796,7 @@ entities: pos: 51.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13411 components: - type: Transform @@ -125811,7 +125811,7 @@ entities: pos: 49.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13420 components: - type: Transform @@ -125855,7 +125855,7 @@ entities: pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13451 components: - type: Transform @@ -125879,7 +125879,7 @@ entities: pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13482 components: - type: Transform @@ -125887,14 +125887,14 @@ entities: pos: -40.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13491 components: - type: Transform pos: -44.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13494 components: - type: Transform @@ -125902,7 +125902,7 @@ entities: pos: -22.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13495 components: - type: Transform @@ -125910,7 +125910,7 @@ entities: pos: -33.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13499 components: - type: Transform @@ -125932,7 +125932,7 @@ entities: pos: -0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13544 components: - type: Transform @@ -125978,7 +125978,7 @@ entities: pos: -10.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13707 components: - type: Transform @@ -125994,7 +125994,7 @@ entities: pos: -20.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13709 components: - type: Transform @@ -126010,7 +126010,7 @@ entities: pos: -20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13738 components: - type: Transform @@ -126024,7 +126024,7 @@ entities: pos: -8.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13750 components: - type: Transform @@ -126048,7 +126048,7 @@ entities: pos: -4.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13789 components: - type: Transform @@ -126056,7 +126056,7 @@ entities: pos: -2.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13793 components: - type: Transform @@ -126064,7 +126064,7 @@ entities: pos: -6.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13798 components: - type: Transform @@ -126072,7 +126072,7 @@ entities: pos: -11.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13802 components: - type: Transform @@ -126080,7 +126080,7 @@ entities: pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13803 components: - type: Transform @@ -126088,7 +126088,7 @@ entities: pos: -16.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13825 components: - type: Transform @@ -126112,7 +126112,7 @@ entities: pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13850 components: - type: Transform @@ -126120,7 +126120,7 @@ entities: pos: -22.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13888 components: - type: Transform @@ -126159,7 +126159,7 @@ entities: pos: 12.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13925 components: - type: Transform @@ -126167,14 +126167,14 @@ entities: pos: 14.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13932 components: - type: Transform pos: 10.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13939 components: - type: Transform @@ -126182,7 +126182,7 @@ entities: pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13986 components: - type: Transform @@ -126198,7 +126198,7 @@ entities: pos: 5.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14003 components: - type: Transform @@ -126214,7 +126214,7 @@ entities: pos: 19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14034 components: - type: Transform @@ -126230,7 +126230,7 @@ entities: pos: 13.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14061 components: - type: Transform @@ -126262,14 +126262,14 @@ entities: pos: 27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14115 components: - type: Transform pos: 13.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14119 components: - type: Transform @@ -126285,7 +126285,7 @@ entities: pos: 31.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14152 components: - type: Transform @@ -126301,7 +126301,7 @@ entities: pos: 31.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14230 components: - type: Transform @@ -126309,7 +126309,7 @@ entities: pos: 42.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14243 components: - type: Transform @@ -126325,7 +126325,7 @@ entities: pos: 51.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14273 components: - type: Transform @@ -126333,14 +126333,14 @@ entities: pos: 53.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14276 components: - type: Transform pos: 53.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14278 components: - type: Transform @@ -126348,21 +126348,21 @@ entities: pos: 53.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14288 components: - type: Transform pos: 50.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14289 components: - type: Transform pos: 46.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14299 components: - type: Transform @@ -126392,7 +126392,7 @@ entities: pos: 42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14338 components: - type: Transform @@ -126400,7 +126400,7 @@ entities: pos: 42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14345 components: - type: Transform @@ -126408,7 +126408,7 @@ entities: pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14350 components: - type: Transform @@ -126440,7 +126440,7 @@ entities: pos: 42.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14364 components: - type: Transform @@ -126456,7 +126456,7 @@ entities: pos: 35.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14380 components: - type: Transform @@ -126471,7 +126471,7 @@ entities: pos: 28.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14429 components: - type: Transform @@ -126502,7 +126502,7 @@ entities: pos: 46.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14479 components: - type: Transform @@ -126510,7 +126510,7 @@ entities: pos: 46.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14488 components: - type: Transform @@ -126518,7 +126518,7 @@ entities: pos: 46.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14517 components: - type: Transform @@ -126534,7 +126534,7 @@ entities: pos: 42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14529 components: - type: Transform @@ -126542,14 +126542,14 @@ entities: pos: 46.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14543 components: - type: Transform pos: 36.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14571 components: - type: Transform @@ -126573,7 +126573,7 @@ entities: pos: 23.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14622 components: - type: Transform @@ -126589,7 +126589,7 @@ entities: pos: 25.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14677 components: - type: Transform @@ -126613,7 +126613,7 @@ entities: pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14724 components: - type: Transform @@ -126621,7 +126621,7 @@ entities: pos: 35.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14726 components: - type: Transform @@ -126645,7 +126645,7 @@ entities: pos: 35.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14772 components: - type: Transform @@ -126661,7 +126661,7 @@ entities: pos: -40.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14794 components: - type: Transform @@ -126669,7 +126669,7 @@ entities: pos: -40.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14795 components: - type: Transform @@ -126701,7 +126701,7 @@ entities: pos: -40.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14808 components: - type: Transform @@ -126709,7 +126709,7 @@ entities: pos: -40.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14813 components: - type: Transform @@ -126717,7 +126717,7 @@ entities: pos: -40.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14834 components: - type: Transform @@ -126725,7 +126725,7 @@ entities: pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14848 components: - type: Transform @@ -126756,7 +126756,7 @@ entities: pos: 16.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14890 components: - type: Transform @@ -126764,7 +126764,7 @@ entities: pos: 16.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14891 components: - type: Transform @@ -126779,7 +126779,7 @@ entities: pos: 16.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14929 components: - type: Transform @@ -126794,7 +126794,7 @@ entities: pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14969 components: - type: Transform @@ -126809,7 +126809,7 @@ entities: pos: -54.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15020 components: - type: Transform @@ -126825,7 +126825,7 @@ entities: pos: -54.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15055 components: - type: Transform @@ -126841,7 +126841,7 @@ entities: pos: -54.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15177 components: - type: Transform @@ -126849,7 +126849,7 @@ entities: pos: -37.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15178 components: - type: Transform @@ -126865,7 +126865,7 @@ entities: pos: -37.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15205 components: - type: Transform @@ -126889,7 +126889,7 @@ entities: pos: -37.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15233 components: - type: Transform @@ -126897,7 +126897,7 @@ entities: pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15260 components: - type: Transform @@ -126905,7 +126905,7 @@ entities: pos: -37.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15261 components: - type: Transform @@ -126921,7 +126921,7 @@ entities: pos: -35.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15270 components: - type: Transform @@ -126943,7 +126943,7 @@ entities: pos: -45.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15321 components: - type: Transform @@ -126951,7 +126951,7 @@ entities: pos: -2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15331 components: - type: Transform @@ -126966,7 +126966,7 @@ entities: pos: -7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15351 components: - type: Transform @@ -126988,7 +126988,7 @@ entities: pos: -12.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15384 components: - type: Transform @@ -127011,7 +127011,7 @@ entities: pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15391 components: - type: Transform @@ -127033,7 +127033,7 @@ entities: pos: 39.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15470 components: - type: Transform @@ -127071,7 +127071,7 @@ entities: pos: -19.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15681 components: - type: Transform @@ -127085,7 +127085,7 @@ entities: pos: -24.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15694 components: - type: Transform @@ -127108,7 +127108,7 @@ entities: pos: -13.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15740 components: - type: Transform @@ -127124,7 +127124,7 @@ entities: pos: -17.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15750 components: - type: Transform @@ -127132,7 +127132,7 @@ entities: pos: -14.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15756 components: - type: Transform @@ -127148,7 +127148,7 @@ entities: pos: -21.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15767 components: - type: Transform @@ -127172,7 +127172,7 @@ entities: pos: -12.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15815 components: - type: Transform @@ -127188,7 +127188,7 @@ entities: pos: -28.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15833 components: - type: Transform @@ -127196,7 +127196,7 @@ entities: pos: -29.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15840 components: - type: Transform @@ -127252,7 +127252,7 @@ entities: pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15894 components: - type: Transform @@ -127260,7 +127260,7 @@ entities: pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15916 components: - type: Transform @@ -127268,7 +127268,7 @@ entities: pos: 0.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15917 components: - type: Transform @@ -127276,7 +127276,7 @@ entities: pos: 1.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15935 components: - type: Transform @@ -127284,7 +127284,7 @@ entities: pos: -5.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15949 components: - type: Transform @@ -127300,7 +127300,7 @@ entities: pos: 3.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15988 components: - type: Transform @@ -127316,7 +127316,7 @@ entities: pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16026 components: - type: Transform @@ -127337,7 +127337,7 @@ entities: pos: -8.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16236 components: - type: Transform @@ -127345,7 +127345,7 @@ entities: pos: 6.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16242 components: - type: Transform @@ -127361,14 +127361,14 @@ entities: pos: 23.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16264 components: - type: Transform pos: 23.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16266 components: - type: Transform @@ -127376,7 +127376,7 @@ entities: pos: 23.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16274 components: - type: Transform @@ -127391,7 +127391,7 @@ entities: pos: 26.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16287 components: - type: Transform @@ -127399,7 +127399,7 @@ entities: pos: 26.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16288 components: - type: Transform @@ -127421,7 +127421,7 @@ entities: pos: 26.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16308 components: - type: Transform @@ -127436,7 +127436,7 @@ entities: pos: 29.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16315 components: - type: Transform @@ -127450,7 +127450,7 @@ entities: pos: 34.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16373 components: - type: Transform @@ -127466,7 +127466,7 @@ entities: pos: 7.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16397 components: - type: Transform @@ -127489,7 +127489,7 @@ entities: pos: 7.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16406 components: - type: Transform @@ -127497,7 +127497,7 @@ entities: pos: 18.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16407 components: - type: Transform @@ -127505,7 +127505,7 @@ entities: pos: 5.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16434 components: - type: Transform @@ -127527,7 +127527,7 @@ entities: pos: 9.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16492 components: - type: Transform @@ -127543,7 +127543,7 @@ entities: pos: -8.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16544 components: - type: Transform @@ -127551,7 +127551,7 @@ entities: pos: 1.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16545 components: - type: Transform @@ -127567,7 +127567,7 @@ entities: pos: -0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16558 components: - type: Transform @@ -127590,7 +127590,7 @@ entities: pos: 17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18405 components: - type: Transform @@ -127598,7 +127598,7 @@ entities: pos: 60.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18431 components: - type: Transform @@ -127606,7 +127606,7 @@ entities: pos: 59.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18432 components: - type: Transform @@ -127621,7 +127621,7 @@ entities: pos: -9.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19546 components: - type: Transform @@ -127629,7 +127629,7 @@ entities: pos: -4.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21166 components: - type: Transform @@ -127652,7 +127652,7 @@ entities: pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21742 components: - type: Transform @@ -127720,7 +127720,7 @@ entities: pos: -21.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23085 components: - type: Transform @@ -127736,7 +127736,7 @@ entities: pos: -42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23101 components: - type: Transform @@ -127744,7 +127744,7 @@ entities: pos: -13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23125 components: - type: Transform @@ -127760,7 +127760,7 @@ entities: pos: -10.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23495 components: - type: Transform @@ -127773,14 +127773,14 @@ entities: pos: -42.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24165 components: - type: Transform pos: -13.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24284 components: - type: Transform @@ -127788,7 +127788,7 @@ entities: pos: 1.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24289 components: - type: Transform @@ -127865,7 +127865,7 @@ entities: pos: -29.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 28557 components: - type: Transform @@ -128023,7 +128023,7 @@ entities: pos: -25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8771 components: - type: Transform @@ -128031,7 +128031,7 @@ entities: pos: -25.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8799 components: - type: Transform @@ -128097,7 +128097,7 @@ entities: pos: -43.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23543 components: - type: Transform @@ -128105,7 +128105,7 @@ entities: pos: -43.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 24296 components: - type: Transform @@ -128434,7 +128434,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8809 components: - type: Transform @@ -128452,7 +128452,7 @@ entities: pos: -39.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8910 components: - type: Transform @@ -128518,7 +128518,7 @@ entities: pos: -24.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14854 components: - type: Transform @@ -130781,7 +130781,7 @@ entities: pos: -41.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 374 components: - type: Transform @@ -130792,7 +130792,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 412 components: - type: Transform @@ -130803,7 +130803,7 @@ entities: - 5583 - 29997 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 879 components: - type: Transform @@ -130814,7 +130814,7 @@ entities: deviceLists: - 29856 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 2175 components: - type: Transform @@ -130825,7 +130825,7 @@ entities: deviceLists: - 29040 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 7349 components: - type: Transform @@ -130833,7 +130833,7 @@ entities: pos: -12.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 8128 components: - type: Transform @@ -130866,7 +130866,7 @@ entities: - 28611 - 29904 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 9156 components: - type: Transform @@ -130877,7 +130877,7 @@ entities: deviceLists: - 30092 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 10876 components: - type: Transform @@ -130888,7 +130888,7 @@ entities: deviceLists: - 18258 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13281 components: - type: Transform @@ -130899,7 +130899,7 @@ entities: deviceLists: - 18501 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13559 components: - type: Transform @@ -130910,7 +130910,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13560 components: - type: Transform @@ -130921,7 +130921,7 @@ entities: deviceLists: - 18570 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13595 components: - type: Transform @@ -130931,7 +130931,7 @@ entities: deviceLists: - 18564 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13599 components: - type: Transform @@ -130941,7 +130941,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13600 components: - type: Transform @@ -130951,7 +130951,7 @@ entities: deviceLists: - 23679 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13629 components: - type: Transform @@ -130962,7 +130962,7 @@ entities: deviceLists: - 23683 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13656 components: - type: Transform @@ -130972,7 +130972,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13722 components: - type: Transform @@ -130983,7 +130983,7 @@ entities: deviceLists: - 29906 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13725 components: - type: Transform @@ -130994,7 +130994,7 @@ entities: deviceLists: - 29905 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13735 components: - type: Transform @@ -131005,7 +131005,7 @@ entities: deviceLists: - 29883 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13763 components: - type: Transform @@ -131016,7 +131016,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13767 components: - type: Transform @@ -131026,7 +131026,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13860 components: - type: Transform @@ -131034,7 +131034,7 @@ entities: pos: -19.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13872 components: - type: Transform @@ -131042,35 +131042,35 @@ entities: pos: -19.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13873 components: - type: Transform pos: -16.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13874 components: - type: Transform pos: -11.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13875 components: - type: Transform pos: -6.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13876 components: - type: Transform pos: -2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13901 components: - type: Transform @@ -131080,7 +131080,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13933 components: - type: Transform @@ -131091,7 +131091,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13980 components: - type: Transform @@ -131102,7 +131102,7 @@ entities: deviceLists: - 29912 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 13981 components: - type: Transform @@ -131110,7 +131110,7 @@ entities: pos: -4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14005 components: - type: Transform @@ -131120,7 +131120,7 @@ entities: deviceLists: - 28414 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14020 components: - type: Transform @@ -131130,7 +131130,7 @@ entities: deviceLists: - 29924 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14057 components: - type: Transform @@ -131141,7 +131141,7 @@ entities: deviceLists: - 29842 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14060 components: - type: Transform @@ -131152,14 +131152,14 @@ entities: deviceLists: - 29925 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14074 components: - type: Transform pos: 23.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14088 components: - type: Transform @@ -131170,7 +131170,7 @@ entities: deviceLists: - 29886 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14131 components: - type: Transform @@ -131180,7 +131180,7 @@ entities: deviceLists: - 29928 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14167 components: - type: Transform @@ -131191,7 +131191,7 @@ entities: deviceLists: - 29888 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14168 components: - type: Transform @@ -131202,7 +131202,7 @@ entities: deviceLists: - 29890 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14238 components: - type: Transform @@ -131210,7 +131210,7 @@ entities: pos: 42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14239 components: - type: Transform @@ -131218,7 +131218,7 @@ entities: pos: 43.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14254 components: - type: Transform @@ -131229,7 +131229,7 @@ entities: deviceLists: - 30081 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14311 components: - type: Transform @@ -131240,7 +131240,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14312 components: - type: Transform @@ -131251,7 +131251,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14313 components: - type: Transform @@ -131262,7 +131262,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14373 components: - type: Transform @@ -131273,7 +131273,7 @@ entities: deviceLists: - 18645 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14374 components: - type: Transform @@ -131283,7 +131283,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14383 components: - type: Transform @@ -131294,7 +131294,7 @@ entities: - 18650 - 29870 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14392 components: - type: Transform @@ -131304,7 +131304,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14398 components: - type: Transform @@ -131315,14 +131315,14 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14452 components: - type: Transform pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14454 components: - type: Transform @@ -131333,7 +131333,7 @@ entities: deviceLists: - 18652 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14511 components: - type: Transform @@ -131344,7 +131344,7 @@ entities: deviceLists: - 29894 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14514 components: - type: Transform @@ -131355,7 +131355,7 @@ entities: deviceLists: - 29896 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14515 components: - type: Transform @@ -131363,7 +131363,7 @@ entities: pos: 48.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14528 components: - type: Transform @@ -131375,7 +131375,7 @@ entities: - 18658 - 29868 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14532 components: - type: Transform @@ -131386,7 +131386,7 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14615 components: - type: Transform @@ -131397,21 +131397,21 @@ entities: deviceLists: - 23907 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14629 components: - type: Transform pos: 25.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14644 components: - type: Transform pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14646 components: - type: Transform @@ -131419,7 +131419,7 @@ entities: pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14667 components: - type: Transform @@ -131427,7 +131427,7 @@ entities: pos: 11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14674 components: - type: Transform @@ -131438,7 +131438,7 @@ entities: deviceLists: - 29884 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14690 components: - type: Transform @@ -131449,7 +131449,7 @@ entities: deviceLists: - 18463 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14720 components: - type: Transform @@ -131460,7 +131460,7 @@ entities: deviceLists: - 28879 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14740 components: - type: Transform @@ -131470,7 +131470,7 @@ entities: deviceLists: - 18478 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14749 components: - type: Transform @@ -131480,7 +131480,7 @@ entities: deviceLists: - 18480 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14763 components: - type: Transform @@ -131491,7 +131491,7 @@ entities: deviceLists: - 29802 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14766 components: - type: Transform @@ -131501,7 +131501,7 @@ entities: deviceLists: - 29803 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14767 components: - type: Transform @@ -131511,7 +131511,7 @@ entities: deviceLists: - 18482 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14925 components: - type: Transform @@ -131521,7 +131521,7 @@ entities: deviceLists: - 18678 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14926 components: - type: Transform @@ -131531,7 +131531,7 @@ entities: deviceLists: - 18667 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14927 components: - type: Transform @@ -131543,7 +131543,7 @@ entities: - 29873 - 18663 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14939 components: - type: Transform @@ -131554,7 +131554,7 @@ entities: deviceLists: - 29874 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14954 components: - type: Transform @@ -131565,7 +131565,7 @@ entities: deviceLists: - 29773 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14955 components: - type: Transform @@ -131576,7 +131576,7 @@ entities: deviceLists: - 29852 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14960 components: - type: Transform @@ -131587,7 +131587,7 @@ entities: deviceLists: - 29851 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14974 components: - type: Transform @@ -131598,7 +131598,7 @@ entities: deviceLists: - 29853 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 14989 components: - type: Transform @@ -131608,7 +131608,7 @@ entities: deviceLists: - 29849 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15029 components: - type: Transform @@ -131620,7 +131620,7 @@ entities: - 18583 - 18584 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15105 components: - type: Transform @@ -131631,7 +131631,7 @@ entities: deviceLists: - 18587 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15109 components: - type: Transform @@ -131642,7 +131642,7 @@ entities: deviceLists: - 18584 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15118 components: - type: Transform @@ -131652,7 +131652,7 @@ entities: deviceLists: - 29858 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15129 components: - type: Transform @@ -131663,7 +131663,7 @@ entities: deviceLists: - 18328 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15148 components: - type: Transform @@ -131673,7 +131673,7 @@ entities: deviceLists: - 18317 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15149 components: - type: Transform @@ -131684,7 +131684,7 @@ entities: deviceLists: - 29938 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15156 components: - type: Transform @@ -131695,7 +131695,7 @@ entities: deviceLists: - 29854 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15167 components: - type: Transform @@ -131703,7 +131703,7 @@ entities: pos: -46.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15168 components: - type: Transform @@ -131714,7 +131714,7 @@ entities: deviceLists: - 29462 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15191 components: - type: Transform @@ -131722,7 +131722,7 @@ entities: pos: -36.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15237 components: - type: Transform @@ -131732,7 +131732,7 @@ entities: deviceLists: - 15250 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15242 components: - type: Transform @@ -131743,7 +131743,7 @@ entities: deviceLists: - 29911 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15247 components: - type: Transform @@ -131753,7 +131753,7 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15266 components: - type: Transform @@ -131764,21 +131764,21 @@ entities: deviceLists: - 18623 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15287 components: - type: Transform pos: -35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15289 components: - type: Transform pos: -30.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15319 components: - type: Transform @@ -131789,7 +131789,7 @@ entities: deviceLists: - 18338 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15325 components: - type: Transform @@ -131799,7 +131799,7 @@ entities: deviceLists: - 28882 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15357 components: - type: Transform @@ -131812,7 +131812,7 @@ entities: - 18331 - 18332 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15401 components: - type: Transform @@ -131820,7 +131820,7 @@ entities: pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15415 components: - type: Transform @@ -131830,7 +131830,7 @@ entities: deviceLists: - 29814 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15418 components: - type: Transform @@ -131841,7 +131841,7 @@ entities: deviceLists: - 18460 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15420 components: - type: Transform @@ -131852,7 +131852,7 @@ entities: deviceLists: - 18690 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15422 components: - type: Transform @@ -131860,7 +131860,7 @@ entities: pos: -19.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15424 components: - type: Transform @@ -131871,7 +131871,7 @@ entities: deviceLists: - 23927 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15444 components: - type: Transform @@ -131882,14 +131882,14 @@ entities: deviceLists: - 5583 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15461 components: - type: Transform pos: 40.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15493 components: - type: Transform @@ -131897,7 +131897,7 @@ entities: pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15494 components: - type: Transform @@ -131905,7 +131905,7 @@ entities: pos: 35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15549 components: - type: Transform @@ -131913,7 +131913,7 @@ entities: pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15615 components: - type: Transform @@ -131924,7 +131924,7 @@ entities: deviceLists: - 15512 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15653 components: - type: Transform @@ -131935,7 +131935,7 @@ entities: deviceLists: - 18603 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15654 components: - type: Transform @@ -131945,7 +131945,7 @@ entities: deviceLists: - 29921 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15711 components: - type: Transform @@ -131956,7 +131956,7 @@ entities: deviceLists: - 18691 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15712 components: - type: Transform @@ -131967,7 +131967,7 @@ entities: deviceLists: - 14277 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15717 components: - type: Transform @@ -131978,7 +131978,7 @@ entities: deviceLists: - 18606 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15743 components: - type: Transform @@ -131989,7 +131989,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15775 components: - type: Transform @@ -131999,7 +131999,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15787 components: - type: Transform @@ -132009,7 +132009,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15788 components: - type: Transform @@ -132019,7 +132019,7 @@ entities: deviceLists: - 18611 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15797 components: - type: Transform @@ -132029,7 +132029,7 @@ entities: deviceLists: - 29918 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15809 components: - type: Transform @@ -132040,7 +132040,7 @@ entities: deviceLists: - 29917 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15814 components: - type: Transform @@ -132051,7 +132051,7 @@ entities: deviceLists: - 18687 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15828 components: - type: Transform @@ -132061,7 +132061,7 @@ entities: deviceLists: - 29459 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15850 components: - type: Transform @@ -132072,7 +132072,7 @@ entities: deviceLists: - 29460 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15852 components: - type: Transform @@ -132083,7 +132083,7 @@ entities: deviceLists: - 29800 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15902 components: - type: Transform @@ -132094,7 +132094,7 @@ entities: deviceLists: - 18697 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15903 components: - type: Transform @@ -132104,7 +132104,7 @@ entities: deviceLists: - 12885 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15904 components: - type: Transform @@ -132114,7 +132114,7 @@ entities: deviceLists: - 29932 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15905 components: - type: Transform @@ -132124,7 +132124,7 @@ entities: deviceLists: - 29933 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15913 components: - type: Transform @@ -132132,7 +132132,7 @@ entities: pos: -26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 15934 components: - type: Transform @@ -132142,14 +132142,14 @@ entities: deviceLists: - 18240 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16031 components: - type: Transform pos: 0.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16111 components: - type: Transform @@ -132160,7 +132160,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16112 components: - type: Transform @@ -132171,7 +132171,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16115 components: - type: Transform @@ -132182,7 +132182,7 @@ entities: deviceLists: - 18244 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16116 components: - type: Transform @@ -132193,7 +132193,7 @@ entities: deviceLists: - 18242 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16126 components: - type: Transform @@ -132204,7 +132204,7 @@ entities: deviceLists: - 29861 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16137 components: - type: Transform @@ -132214,7 +132214,7 @@ entities: deviceLists: - 29860 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16148 components: - type: Transform @@ -132225,7 +132225,7 @@ entities: deviceLists: - 3220 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16180 components: - type: Transform @@ -132236,7 +132236,7 @@ entities: deviceLists: - 14996 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16189 components: - type: Transform @@ -132247,7 +132247,7 @@ entities: deviceLists: - 29859 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16238 components: - type: Transform @@ -132257,7 +132257,7 @@ entities: deviceLists: - 18530 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16252 components: - type: Transform @@ -132268,7 +132268,7 @@ entities: deviceLists: - 29806 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16263 components: - type: Transform @@ -132279,7 +132279,7 @@ entities: deviceLists: - 29805 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16267 components: - type: Transform @@ -132290,7 +132290,7 @@ entities: deviceLists: - 18536 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16298 components: - type: Transform @@ -132301,7 +132301,7 @@ entities: deviceLists: - 18541 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16336 components: - type: Transform @@ -132311,7 +132311,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16337 components: - type: Transform @@ -132321,7 +132321,7 @@ entities: deviceLists: - 29902 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16345 components: - type: Transform @@ -132332,7 +132332,7 @@ entities: deviceLists: - 29789 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16358 components: - type: Transform @@ -132343,7 +132343,7 @@ entities: deviceLists: - 29792 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16402 components: - type: Transform @@ -132353,7 +132353,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16410 components: - type: Transform @@ -132364,7 +132364,7 @@ entities: deviceLists: - 9410 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16432 components: - type: Transform @@ -132374,7 +132374,7 @@ entities: deviceLists: - 18553 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16449 components: - type: Transform @@ -132385,7 +132385,7 @@ entities: deviceLists: - 29899 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16450 components: - type: Transform @@ -132395,7 +132395,7 @@ entities: deviceLists: - 29900 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16474 components: - type: Transform @@ -132406,7 +132406,7 @@ entities: deviceLists: - 29794 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16475 components: - type: Transform @@ -132417,7 +132417,7 @@ entities: deviceLists: - 29796 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16482 components: - type: Transform @@ -132428,7 +132428,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16483 components: - type: Transform @@ -132438,7 +132438,7 @@ entities: deviceLists: - 18288 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16490 components: - type: Transform @@ -132449,7 +132449,7 @@ entities: deviceLists: - 18273 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16491 components: - type: Transform @@ -132460,7 +132460,7 @@ entities: deviceLists: - 18270 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16496 components: - type: Transform @@ -132471,7 +132471,7 @@ entities: deviceLists: - 18271 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16498 components: - type: Transform @@ -132481,7 +132481,7 @@ entities: deviceLists: - 18303 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16503 components: - type: Transform @@ -132491,7 +132491,7 @@ entities: deviceLists: - 18305 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16512 components: - type: Transform @@ -132499,7 +132499,7 @@ entities: pos: -44.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16522 components: - type: Transform @@ -132510,7 +132510,7 @@ entities: deviceLists: - 18336 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16529 components: - type: Transform @@ -132521,7 +132521,7 @@ entities: deviceLists: - 18366 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16531 components: - type: Transform @@ -132532,7 +132532,7 @@ entities: deviceLists: - 10169 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16543 components: - type: Transform @@ -132543,7 +132543,7 @@ entities: deviceLists: - 18263 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16546 components: - type: Transform @@ -132554,7 +132554,7 @@ entities: deviceLists: - 18247 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16556 components: - type: Transform @@ -132565,7 +132565,7 @@ entities: deviceLists: - 18499 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 16794 components: - type: Transform @@ -132576,7 +132576,7 @@ entities: deviceLists: - 18567 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18304 components: - type: Transform @@ -132586,7 +132586,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18330 components: - type: Transform @@ -132597,7 +132597,7 @@ entities: deviceLists: - 23235 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18408 components: - type: Transform @@ -132608,7 +132608,7 @@ entities: deviceLists: - 18440 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18409 components: - type: Transform @@ -132618,7 +132618,7 @@ entities: deviceLists: - 18443 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18412 components: - type: Transform @@ -132629,7 +132629,7 @@ entities: deviceLists: - 29864 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18655 components: - type: Transform @@ -132640,7 +132640,7 @@ entities: deviceLists: - 18658 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 18936 components: - type: Transform @@ -132648,7 +132648,7 @@ entities: pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19074 components: - type: Transform @@ -132659,7 +132659,7 @@ entities: deviceLists: - 29869 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 19116 components: - type: Transform @@ -132667,7 +132667,7 @@ entities: pos: -13.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 20617 components: - type: Transform @@ -132677,7 +132677,7 @@ entities: deviceLists: - 20717 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 21183 components: - type: Transform @@ -132714,7 +132714,7 @@ entities: pos: -10.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22202 components: - type: Transform @@ -132722,7 +132722,7 @@ entities: pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 22490 components: - type: Transform @@ -132764,7 +132764,7 @@ entities: pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23075 components: - type: Transform @@ -132775,7 +132775,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23077 components: - type: Transform @@ -132785,7 +132785,7 @@ entities: deviceLists: - 2121 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23703 components: - type: Transform @@ -132793,7 +132793,7 @@ entities: pos: -1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23707 components: - type: Transform @@ -132804,7 +132804,7 @@ entities: deviceLists: - 23682 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 23899 components: - type: Transform @@ -132812,7 +132812,7 @@ entities: pos: 58.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 25223 components: - type: Transform @@ -132872,7 +132872,7 @@ entities: pos: -11.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 26474 components: - type: Transform @@ -132891,7 +132891,7 @@ entities: deviceLists: - 29880 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29732 components: - type: Transform @@ -132902,7 +132902,7 @@ entities: deviceLists: - 18285 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29740 components: - type: Transform @@ -132913,7 +132913,7 @@ entities: deviceLists: - 18287 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29741 components: - type: Transform @@ -132924,7 +132924,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29743 components: - type: Transform @@ -132934,7 +132934,7 @@ entities: deviceLists: - 18286 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29813 components: - type: Transform @@ -132944,7 +132944,7 @@ entities: deviceLists: - 29819 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29879 components: - type: Transform @@ -132954,7 +132954,7 @@ entities: deviceLists: - 18663 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 29996 components: - type: Transform @@ -132964,7 +132964,7 @@ entities: deviceLists: - 3714 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVolumePump entities: - uid: 8939 @@ -142217,7 +142217,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -158264.66 + secondsUntilStateChange: -159707.58 state: Opening - uid: 5211 components: @@ -163421,45 +163421,32 @@ entities: - type: Transform pos: -26.5,-38.5 parent: 2 -- proto: SMESBasic +- proto: SMESAdvanced entities: - - uid: 2494 - components: - - type: MetaData - name: SE Solars - - type: Transform - pos: 42.5,-45.5 - parent: 2 - uid: 6414 components: - - type: MetaData - name: AME - type: Transform - pos: 34.5,38.5 + pos: 32.5,38.5 parent: 2 - uid: 6415 components: - - type: MetaData - name: AME - type: Transform pos: 33.5,38.5 parent: 2 - uid: 6416 components: - - type: MetaData - name: AME - type: Transform - pos: 32.5,38.5 + pos: 34.5,38.5 parent: 2 - uid: 6455 components: - type: Transform - pos: -3.5,45.5 + pos: -5.5,45.5 parent: 2 - uid: 6737 components: - type: Transform - pos: -5.5,45.5 + pos: -3.5,45.5 parent: 2 - uid: 6738 components: @@ -163468,24 +163455,27 @@ entities: parent: 2 - uid: 7341 components: - - type: MetaData - name: Main Engine - type: Transform - pos: 12.5,42.5 + pos: 14.5,42.5 parent: 2 - uid: 7342 components: - - type: MetaData - name: Main Engine - type: Transform pos: 13.5,42.5 parent: 2 - uid: 7371 + components: + - type: Transform + pos: 12.5,42.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 2494 components: - type: MetaData - name: Main Engine + name: SE Solars - type: Transform - pos: 14.5,42.5 + pos: 42.5,-45.5 parent: 2 - uid: 10731 components: @@ -166748,7 +166738,7 @@ entities: - uid: 3070 components: - type: Transform - pos: 24.532429,-4.4938884 + pos: 24.54314,-4.5250664 parent: 2 - uid: 3071 components: @@ -192805,6 +192795,11 @@ entities: - type: Transform pos: 6.5,21.5 parent: 2 + - uid: 9675 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 8886 @@ -193047,18 +193042,6 @@ entities: - type: Transform pos: 31.5,-31.5 parent: 21002 -- proto: WetFloorSign - entities: - - uid: 9675 - components: - - type: Transform - pos: 22.803389,-2.1261864 - parent: 2 - - uid: 9676 - components: - - type: Transform - pos: 22.303389,-2.1366029 - parent: 2 - proto: Windoor entities: - uid: 1463 @@ -193346,7 +193329,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -9230.891 + secondsUntilStateChange: -10673.8125 state: Opening - type: Airlock autoClose: False @@ -194780,7 +194763,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -503469.3 + secondsUntilStateChange: -504912.22 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/Corvax/corvax_cuteinstallation.yml b/Resources/Maps/plasma.yml similarity index 52% rename from Resources/Maps/Corvax/corvax_cuteinstallation.yml rename to Resources/Maps/plasma.yml index 545dd946166..e2be97d6f4c 100644 --- a/Resources/Maps/Corvax/corvax_cuteinstallation.yml +++ b/Resources/Maps/plasma.yml @@ -3,421 +3,405 @@ meta: postmapinit: false tilemap: 0: Space - 86: FloorArcadeBlue - 118: FloorAsteroidIronsand - 120: FloorAsteroidIronsandUnvariantized - 28: FloorAsteroidSand - 119: FloorAsteroidSandUnvariantized - 25: FloorBar - 107: FloorBlueCircuit - 36: FloorBoxing - 122: FloorCaveDrought - 11: FloorClown - 44: FloorDark - 16: FloorDarkDiagonal - 2: FloorDarkHerringbone - 6: FloorDarkMini - 10: FloorDarkMono - 3: FloorDarkOffset - 35: FloorDarkPavement - 9: FloorDarkPlastic - 140: FloorDesert - 23: FloorDirt - 67: FloorFreezer - 103: FloorGlass - 101: FloorGold - 109: FloorGrass - 33: FloorGreenCircuit - 93: FloorGym - 69: FloorHydro - 73: FloorKitchen - 31: FloorLaundry - 37: FloorLino - 60: FloorMetalDiamond - 30: FloorMime - 24: FloorPlanetGrass - 20: FloorRGlass - 32: FloorRedCircuit - 5: FloorReinforced - 132: FloorReinforcedHardened - 97: FloorShuttleBlue - 98: FloorShuttleOrange - 99: FloorShuttlePurple - 144: FloorSnow - 19: FloorSteel - 1: FloorSteelCheckerDark - 17: FloorSteelCheckerLight - 39: FloorSteelDirty - 7: FloorSteelHerringbone - 22: FloorSteelMini - 8: FloorSteelMono - 4: FloorSteelOffset - 27: FloorSteelPavementVertical - 34: FloorTechMaint - 29: FloorTechMaint2 - 18: FloorWhite - 12: FloorWhiteHerringbone - 40: FloorWhiteMini - 13: FloorWhiteOffset - 26: FloorWhitePlastic - 38: FloorWood - 15: FloorWoodChessDark - 21: FloorWoodLargeDark - 14: FloorWoodParquetDark - 153: Lattice - 147: Plating - 150: PlatingAsteroid + 28: FloorArcadeRed + 7: FloorAsteroidSand + 10: FloorAsteroidTile + 30: FloorAstroGrass + 21: FloorAstroIce + 22: FloorAstroSnow + 17: FloorBar + 12: FloorBlueCircuit + 39: FloorBoxing + 36: FloorBrokenWood + 25: FloorCarpetClown + 24: FloorClown + 3: FloorDark + 27: FloorDarkPavement + 14: FloorDarkPlastic + 23: FloorDesert + 40: FloorFlesh + 8: FloorFreezer + 31: FloorGlass + 6: FloorGold + 9: FloorGreenCircuit + 19: FloorHullReinforced + 37: FloorJungleAstroGrass + 15: FloorKitchen + 16: FloorLaundry + 26: FloorLino + 20: FloorPlanetGrass + 35: FloorRGlass + 18: FloorReinforced + 32: FloorShowroom + 33: FloorShuttleBlue + 42: FloorSnow + 4: FloorSteel + 29: FloorSteelCheckerLight + 34: FloorSteelMono + 11: FloorTechMaint + 13: FloorWhite + 5: FloorWood + 1: Lattice + 131: Plating + 2: PlatingAsteroid + 38: PlatingDamaged + 41: PlatingSnow entities: - proto: "" entities: - uid: 1 components: - type: MetaData - name: Cute Installation + name: Map Entity - type: Transform - pos: -368.27057,-390.29462 - parent: 446 + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: PlasmaStation + - type: Transform + pos: -3.2317429,-1.9012489 + parent: 1 - type: MapGrid chunks: - 16,23: - ind: 16,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAA - version: 6 - 16,24: - ind: 16,24 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -10,-4: + ind: -10,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAD version: 6 - 17,23: - ind: 17,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 17,24: - ind: 17,24 - tiles: mQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,0: + ind: -1,0 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 - 17,25: - ind: 17,25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-1: + ind: -1,-1 + tiles: gwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAABgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAMBwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAA version: 6 - 18,23: - ind: 18,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 18,24: - ind: 18,24 - tiles: kwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAABkwAAAAAAAQAAAAAAAQAAAAADmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAZwAAAAABkwAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAACkwAAAAAAAQAAAAAAAQAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAZwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAZwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAZwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACkwAAAAAAAQAAAAABAQAAAAABkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAACkwAAAAAAAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -10,1: + ind: -10,1 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 18,25: - ind: 18,25 - tiles: AAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAawAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAawAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAawAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -5,-5: + ind: -5,-5 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAALBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 18,26: - ind: 18,26 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAA + -2,-1: + ind: -2,-1 + tiles: BwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAACwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAALAgAAAAAAAgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAgwAAAAAAAwAAAAADBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAABBAAAAAABgwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAABwAAAAALAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 18,27: - ind: 18,27 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -3,0: + ind: -3,0 + tiles: gwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAADgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAAA version: 6 - 19,23: - ind: 19,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAADEwAAAAADEwAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABFgAAAAAAEwAAAAACkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAABkwAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAADkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAmQAAAAAAkwAAAAAAEwAAAAADFgAAAAAAEwAAAAAAEwAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAABBgAAAAAABgAAAAAAkwAAAAAAAAAAAAAA + -3,-1: + ind: -3,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAAACgAAAAAACgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAADBAAAAAABAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAADBAAAAAACBAAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACAwAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAADgwAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAACgwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAAABAAAAAAAAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACBAAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAADgwAAAAAAAwAAAAACgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 19,24: - ind: 19,24 - tiles: kwAAAAAAEwAAAAADFgAAAAAAEwAAAAABkwAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAACkwAAAAAAmQAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAABEwAAAAABFgAAAAAAEwAAAAACCQAAAAADEwAAAAADEwAAAAABEwAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAACkwAAAAAAFgAAAAAACgAAAAABEwAAAAACFgAAAAAAFgAAAAAACQAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAADEwAAAAAACgAAAAABEwAAAAADEwAAAAAAEwAAAAAACQAAAAAAFgAAAAAAEwAAAAAAFgAAAAAAEwAAAAACEwAAAAAAFgAAAAAAEwAAAAACFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -6,0: + ind: -6,0 + tiles: KgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAACDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAADDAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAABAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAACgwAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAAwAAAAACgwAAAAAAAwAAAAACBAAAAAACBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAAAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAABAAAAAAAAwAAAAACgwAAAAAAAwAAAAADBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAwAAAAACBAAAAAADBAAAAAABAwAAAAABgwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAADAwAAAAABgwAAAAAAAwAAAAADBAAAAAABBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAABCgAAAAAACgAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAIgAAAAACIgAAAAADBAAAAAADCgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA version: 6 - 19,25: - ind: 19,25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAIAAAAAAAkwAAAAAAAQAAAAACAwAAAAAAAQAAAAADkwAAAAAAIAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAACQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACQAAAAAAAwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAIAAAAAAAkwAAAAAAIAAAAAAAkwAAAAAAIAAAAAAAAwAAAAAAkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAwAAAAAAAwAAAAAACQAAAAACEAAAAAACCQAAAAABAwAAAAAAAwAAAAAACQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAAQAAAAABAQAAAAADkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAwAAAAAACQAAAAADAwAAAAAAAwAAAAAAAwAAAAAACQAAAAACAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAAQAAAAAAAwAAAAAAIAAAAAAAkwAAAAAAAwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAIAAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAkwAAAAAAIAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAA + -4,-1: + ind: -4,-1 + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALCgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAADgwAAAAAAAgAAAAAAAgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAADgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAACgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAAwAAAAACAwAAAAABBQAAAAAAAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAAwAAAAABAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAAACwAAAAAAAwAAAAACAwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAACwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADCwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAABBQAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAAB version: 6 - 19,26: - ind: 19,26 - tiles: kwAAAAAAkwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAACAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAIQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAawAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAIQAAAAAAAwAAAAAAIQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAawAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAIQAAAAAAAwAAAAAAIQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAACQAAAAABAwAAAAAACQAAAAADAwAAAAAAAwAAAAAAIQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAQAAAAAAkwAAAAAAIAAAAAAAkwAAAAAAAQAAAAACAwAAAAAAIQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAQAAAAADAQAAAAABAgAAAAABAQAAAAAAAQAAAAADAwAAAAAAIQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAIAAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABIAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -4,0: + ind: -4,0 + tiles: BAAAAAADBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAABgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACgwAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAADBQAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAADAAAAAAADAAAAAAAgwAAAAAAAwAAAAACIwAAAAACIwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABIwAAAAADIwAAAAAAAwAAAAABAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 19,27: - ind: 19,27 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAZwAAAAADZwAAAAAAZwAAAAACZwAAAAABmQAAAAAAZwAAAAADZwAAAAADZwAAAAADZwAAAAADAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAAAmQAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAZwAAAAABZwAAAAABZwAAAAACAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAACZwAAAAACZwAAAAADAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAZwAAAAABZwAAAAABZwAAAAABAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAADZwAAAAAAZwAAAAABAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAABZwAAAAADZwAAAAACmQAAAAAAZwAAAAACZwAAAAABZwAAAAACZwAAAAADAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAZwAAAAABZwAAAAACZwAAAAADZwAAAAAAmQAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAADAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAFAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAA + -5,-1: + ind: -5,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAADBwAAAAAABwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADCwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAgwAAAAAABQAAAAACBwAAAAAABwAAAAAGBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADgwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAACwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAACwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADCwAAAAAABQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAADAAAAAAADAAAAAAADAAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABAAAAAAA version: 6 - 19,28: - ind: 19,28 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -5,0: + ind: -5,0 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAADIwAAAAABAwAAAAADgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAAAAwAAAAADIwAAAAABIwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 20,22: - ind: 20,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAZwAAAAAAZwAAAAABZwAAAAADZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAACZwAAAAACZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAZwAAAAABZwAAAAACZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAB + -6,-1: + ind: -6,-1 + tiles: AgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAADgwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAALKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACgwAAAAAABwAAAAAAgwAAAAAABAAAAAADCQAAAAAACQAAAAAABAAAAAAACQAAAAAACQAAAAAABAAAAAADgwAAAAAAgwAAAAAAKgAAAAALKgAAAAAEKgAAAAAAKgAAAAAAgwAAAAAABwAAAAALgwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABCQAAAAAACQAAAAAABAAAAAACCQAAAAAACQAAAAAABAAAAAABgwAAAAAAgwAAAAAAKgAAAAAMKgAAAAAAKgAAAAAGKgAAAAAAgwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 20,23: - ind: 20,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAABZwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADAQAAAAACAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -6,-4: + ind: -6,-4 + tiles: KgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAEKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAHKQAAAAAAFgAAAAAFFgAAAAAAFgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAJgwAAAAAAFgAAAAAAFgAAAAAAKQAAAAAAFgAAAAAAFgAAAAAKgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACBAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - 20,24: - ind: 20,24 - tiles: mQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAEwAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAADFgAAAAAAFgAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAABEwAAAAABEwAAAAACEwAAAAABEwAAAAACEwAAAAADEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAADkwAAAAAAAQAAAAABAQAAAAACCgAAAAACCgAAAAAACgAAAAABCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAABAgAAAAACAQAAAAACCQAAAAACAQAAAAADCgAAAAACAgAAAAABAgAAAAACAgAAAAADCgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAAAkwAAAAAAAQAAAAACCgAAAAADAgAAAAABAgAAAAABAgAAAAAACgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACgAAAAAACgAAAAABCgAAAAADCgAAAAACAQAAAAAC + -3,-2: + ind: -3,-2 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAABDQAAAAACDQAAAAABDQAAAAABDQAAAAAADQAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAADDQAAAAACCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAABDQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAACDQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAADCAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAAADQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAAABAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADDQAAAAABAwAAAAAADQAAAAAADQAAAAACDQAAAAADBAAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAABAAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAAABAAAAAACBAAAAAACBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAACDQAAAAAADQAAAAADgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADAwAAAAACBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABDQAAAAADDQAAAAADDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAAAwAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADDQAAAAAADQAAAAABDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAADBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAABwAAAAALBwAAAAAFBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 20,25: - ind: 20,25 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAABAQAAAAADAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAFgAAAAAAFgAAAAAAFgAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAEwAAAAADEwAAAAADEwAAAAAAEwAAAAABEwAAAAACmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAADCQAAAAABEwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAABEwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACBgAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAADBgAAAAAACQAAAAADAQAAAAABAgAAAAADCQAAAAABAQAAAAABBgAAAAAAAQAAAAADAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACBgAAAAAAkwAAAAAAAQAAAAADAgAAAAADkwAAAAAAAQAAAAAABgAAAAAABgAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAABAQAAAAAAkwAAAAAAAQAAAAABAgAAAAACkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAACkwAAAAAAAQAAAAADBgAAAAAABgAAAAAAAQAAAAAACQAAAAACAQAAAAABAQAAAAACmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADCQAAAAACAQAAAAACBgAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABCQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAgAAAAAAAgAAAAADAQAAAAACkwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAgAAAAACAgAAAAAAAQAAAAABkwAAAAAAAQAAAAADLAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACCQAAAAACkwAAAAAAkwAAAAAAAQAAAAABLAAAAAAB + -3,-4: + ind: -3,-4 + tiles: AgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAACDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAADgwAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAAADQAAAAABgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADgwAAAAAABQAAAAAABQAAAAADBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAB version: 6 - 20,26: - ind: 20,26 - tiles: AAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADLAAAAAACmQAAAAAAkwAAAAAALAAAAAACLAAAAAACLAAAAAABCQAAAAABLAAAAAAACQAAAAADAQAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAADAAAAAAAAkwAAAAAAAgAAAAAALAAAAAAAAgAAAAABkwAAAAAAAgAAAAACkwAAAAAAAQAAAAADAQAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAACkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAABAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -3,-3: + ind: -3,-3 + tiles: DgAAAAADDgAAAAACBAAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACDgAAAAAABAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADDgAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAADBAAAAAABBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACDgAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABAwAAAAABAwAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAACBQAAAAADAwAAAAACAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABDQAAAAADDQAAAAADDQAAAAABgwAAAAAAgwAAAAAABQAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADDQAAAAADDQAAAAADDQAAAAABgwAAAAAABQAAAAACBQAAAAAAgwAAAAAADQAAAAAADQAAAAAAAwAAAAACgwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACgwAAAAAABQAAAAADBQAAAAABgwAAAAAADQAAAAAADQAAAAADAwAAAAADgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABQAAAAADBQAAAAACgwAAAAAADQAAAAABDQAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAABDQAAAAADDQAAAAABDQAAAAAADQAAAAABDQAAAAABDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAADDQAAAAACDQAAAAAADQAAAAADDQAAAAAA version: 6 - 20,27: - ind: 20,27 - tiles: AAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACQAAAAAAAQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAACgAAAAAAkwAAAAAACgAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAADwAAAAAADwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAACgAAAAAADwAAAAAADwAAAAAA + -4,-3: + ind: -4,-3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADBwAAAAAHBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAABBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAADDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 20,28: - ind: 20,28 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAACgAAAAAAkwAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAACgAAAAAADwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -4,-4: + ind: -4,-4 + tiles: EAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADQAAAAAAgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABIAAAAAAAIAAAAAAAIAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAACgwAAAAAAIAAAAAAAIAAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAHgAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAHgAAAAABHgAAAAABgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHgAAAAACHgAAAAAAHgAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAABQAAAAACBQAAAAACgwAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAACBQAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAADgwAAAAAABAAAAAADBAAAAAADgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAACBAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADgAAAAABgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAA version: 6 - 21,22: - ind: 21,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAFAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAABmQAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAADZwAAAAABZwAAAAABAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAAAmQAAAAAAZwAAAAABZwAAAAACZwAAAAADZwAAAAADZwAAAAACZwAAAAACAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAADZwAAAAABZwAAAAACZwAAAAACZwAAAAABZwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -5,-2: + ind: -5,-2 + tiles: gwAAAAAABQAAAAAABQAAAAABBQAAAAABgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAACgwAAAAAABQAAAAAABQAAAAADBQAAAAACgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAABAAAAAABBAAAAAABgwAAAAAABQAAAAADBQAAAAAABQAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAABgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABQAAAAABAwAAAAAAAwAAAAABAwAAAAAABQAAAAABBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAAwAAAAAAAwAAAAABAwAAAAACgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAABBAAAAAABBAAAAAACBAAAAAACgwAAAAAABAAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAABAAAAAACBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAACBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABCwAAAAAABAAAAAABBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACgwAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAACgAAAAAACgAAAAAACgAAAAAA version: 6 - 21,23: - ind: 21,23 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAABZwAAAAACZwAAAAACZwAAAAAAZwAAAAADZwAAAAABAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAADmQAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAABZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAAAZwAAAAADmQAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAACZwAAAAACZwAAAAADAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAwAAAAAA + -4,-2: + ind: -4,-2 + tiles: BAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAAAAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAAwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAADHgAAAAABHgAAAAADHgAAAAABBAAAAAABBAAAAAADBAAAAAABgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAACHgAAAAADHgAAAAABHgAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAABHgAAAAADHgAAAAADHgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAAABAAAAAAABAAAAAADAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAACAwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAADAwAAAAAABAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAADBAAAAAADBAAAAAADgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACAwAAAAACBAAAAAACBAAAAAADAwAAAAADAwAAAAAAAwAAAAACBAAAAAABBwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAABCwAAAAAACwAAAAAAgwAAAAAABAAAAAADBAAAAAADAwAAAAABAwAAAAABAwAAAAABBAAAAAABBwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAABBwAAAAAABwAAAAAJgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - 21,24: - ind: 21,24 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAACBQAAAAAACQAAAAACBgAAAAAABgAAAAAAAQAAAAABAQAAAAACAQAAAAACBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAACkwAAAAAABgAAAAAAAQAAAAACkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAADkwAAAAAAAQAAAAAABgAAAAAAkwAAAAAABgAAAAAAAQAAAAADkwAAAAAAAQAAAAAABgAAAAABkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAADBgAAAAAACQAAAAACAQAAAAAABgAAAAAACQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABgAAAAAAkwAAAAAAAQAAAAADBgAAAAAAkwAAAAAABgAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAABkwAAAAAAAQAAAAACAQAAAAABkwAAAAAABgAAAAAAAQAAAAADkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAABkwAAAAAACgAAAAACCgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAABAQAAAAACAQAAAAABkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAACQAAAAAAAQAAAAABBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAACkwAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABCQAAAAADAQAAAAADBgAAAAAA + -6,-2: + ind: -6,-2 + tiles: BAAAAAADAwAAAAAAAwAAAAADAwAAAAADBAAAAAACBAAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAABAAAAAACAwAAAAADAwAAAAABAwAAAAAABAAAAAADBAAAAAACgwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABAwAAAAACAwAAAAAAAwAAAAAABAAAAAADBAAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABBAAAAAADBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADBAAAAAADBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 21,25: - ind: 21,25 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAADFgAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAABkwAAAAAAAQAAAAABAQAAAAADkwAAAAAAEwAAAAABEwAAAAABEwAAAAADEwAAAAACEwAAAAADkwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABEwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABFgAAAAAAEwAAAAACEwAAAAACEwAAAAABCQAAAAABCQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACQAAAAAACQAAAAAAEwAAAAABEwAAAAABEwAAAAABEwAAAAADEwAAAAAAEwAAAAADEwAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAADBgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAAQAAAAACAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAABAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAADCQAAAAABAQAAAAACCQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAADkwAAAAAAAQAAAAADAQAAAAACkwAAAAAAAQAAAAADAQAAAAABkwAAAAAAAQAAAAABAQAAAAABkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABkwAAAAAABwAAAAAAAQAAAAACBwAAAAACBwAAAAABkwAAAAAAAQAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABkwAAAAAABwAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAA + -5,-4: + ind: -5,-4 + tiles: BwAAAAAJBwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEAAAAAAAEAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAABBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADgwAAAAAADQAAAAACDQAAAAABDQAAAAACDQAAAAAADQAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAAwAAAAACAwAAAAABgwAAAAAAgwAAAAAADQAAAAADBwAAAAADBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAABAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBAAAAAACBwAAAAAHBwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAABgwAAAAAAAwAAAAACAwAAAAACAwAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAD version: 6 - 21,26: - ind: 21,26 - tiles: LAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACkwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACkwAAAAAAAQAAAAABkwAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABkwAAAAAALAAAAAADLAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAAAAQAAAAAAkwAAAAAALAAAAAADkwAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAACkwAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAALAAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -6,-3: + ind: -6,-3 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABDwAAAAAADwAAAAAADwAAAAAABAAAAAADBwAAAAACBwAAAAABBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAADDwAAAAAADwAAAAAADwAAAAAABAAAAAABBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAHAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAACDwAAAAAADwAAAAAADwAAAAAABAAAAAACBAAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAACEQAAAAABEQAAAAACgwAAAAAAEQAAAAADEQAAAAAAEQAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAEQAAAAABEQAAAAABEQAAAAABgwAAAAAAEQAAAAACEQAAAAACEQAAAAABgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACBAAAAAADGgAAAAAABQAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAABAAAAAABBQAAAAAABQAAAAAAAwAAAAABBAAAAAACBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAABBAAAAAADgwAAAAAABAAAAAAABAAAAAADgwAAAAAABAAAAAADBAAAAAADBQAAAAABBQAAAAACAwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABQAAAAABBQAAAAACAwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAABgwAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAABgwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAACBQAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAAAAwAAAAADgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAAABAAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAADAwAAAAADAwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAB version: 6 - 21,27: - ind: 21,27 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAkwAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAkwAAAAAADwAAAAAAkwAAAAAACgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAkwAAAAAAkwAAAAAADwAAAAAACgAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -5,-3: + ind: -5,-3 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAACBwAAAAAEBwAAAAAEBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAECgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACgAAAAAACgAAAAAACgAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABCgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAABgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEQAAAAADgwAAAAAAEQAAAAACBAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAKAgAAAAAAgwAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAACgwAAAAAABAAAAAABBAAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAADgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACBAAAAAAABAAAAAAC version: 6 - 22,23: - ind: 22,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAACBgAAAAAABgAAAAAABgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAACBgAAAAAABgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACkwAAAAAAkwAAAAAACQAAAAABAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAAkwAAAAAAAQAAAAADBgAAAAAAkwAAAAAAAgAAAAAAAQAAAAAAAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAADFgAAAAAAFgAAAAAAAQAAAAAAAQAAAAAACQAAAAADAQAAAAABBgAAAAAACQAAAAAAAQAAAAADAQAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABwAAAAACBwAAAAAABwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABAQAAAAAAAgAAAAADkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAABEwAAAAAD + -2,0: + ind: -2,0 + tiles: gwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAAgwAAAAAABAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAABgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgwAAAAAABwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAA version: 6 - 22,24: - ind: 22,24 - tiles: CQAAAAABAQAAAAADAgAAAAABAgAAAAAAAgAAAAAAkwAAAAAAEwAAAAADEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAACCQAAAAADEwAAAAAAFgAAAAAAEwAAAAACkwAAAAAAAQAAAAACAgAAAAAABgAAAAAAAgAAAAABkwAAAAAAEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAABCQAAAAADFgAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAEwAAAAADEwAAAAACEwAAAAADEwAAAAABEwAAAAAAEwAAAAAACQAAAAADEwAAAAADFgAAAAAAEwAAAAACAQAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAEwAAAAADBgAAAAAACQAAAAADBgAAAAAABgAAAAAAAQAAAAABkwAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAABBwAAAAABAgAAAAADkwAAAAAAEwAAAAADFgAAAAAAFgAAAAAAAQAAAAACkwAAAAAAAQAAAAAABgAAAAAAAQAAAAAACQAAAAADBwAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAACEwAAAAAAEwAAAAABFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAABwAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAACkwAAAAAAEwAAAAADEwAAAAABEwAAAAADAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAADAQAAAAAAkwAAAAAAAQAAAAABEwAAAAADkwAAAAAAAgAAAAADFgAAAAABkwAAAAAAkwAAAAAAAgAAAAABAgAAAAAAAgAAAAADAQAAAAAACQAAAAAAAQAAAAADBgAAAAAAAQAAAAAACQAAAAABEwAAAAACEwAAAAADEwAAAAABEwAAAAADEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACkwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAABEwAAAAACEwAAAAAAkwAAAAAACgAAAAADCgAAAAABAgAAAAACkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAACgAAAAACCgAAAAAAAgAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAADAQAAAAABkwAAAAAAEwAAAAADEwAAAAABkwAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAACAQAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAEwAAAAAAEwAAAAADkwAAAAAADwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAgAAAAAAAgAAAAADAgAAAAAABgAAAAAAAQAAAAABCQAAAAACEwAAAAADEwAAAAABCQAAAAAADwAAAAAAAgAAAAAAAgAAAAADDwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAgAAAAAAAgAAAAABAgAAAAABBgAAAAAAAQAAAAACkwAAAAAAEwAAAAAAEwAAAAADkwAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAADAQAAAAADEwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAkwAAAAAA + -2,-2: + ind: -2,-2 + tiles: AwAAAAACDQAAAAACDQAAAAAADQAAAAABCwAAAAAADQAAAAACDQAAAAAADQAAAAABDQAAAAAADQAAAAAACwAAAAAADQAAAAACDQAAAAADDQAAAAADDQAAAAADgwAAAAAAgwAAAAAADQAAAAADDQAAAAADDQAAAAAACwAAAAAADQAAAAABDQAAAAADDQAAAAABDQAAAAADDQAAAAABCwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADAwAAAAABAwAAAAAADQAAAAABDQAAAAACDQAAAAACCwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAADQAAAAADDQAAAAABDQAAAAADDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAACDQAAAAAAAwAAAAADDQAAAAABDQAAAAACDQAAAAABDQAAAAADDQAAAAABgwAAAAAAKAAAAAAAgwAAAAAAgwAAAAAABwAAAAALgwAAAAAADQAAAAAADQAAAAACDQAAAAAADQAAAAACAwAAAAABDQAAAAADDQAAAAABDQAAAAACDQAAAAADDQAAAAACgwAAAAAAKAAAAAAAKAAAAAABBwAAAAAABwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADDQAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAABgwAAAAAAKAAAAAADKAAAAAADKAAAAAADKAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAABBQAAAAADgwAAAAAADQAAAAABBAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACAwAAAAADDQAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAABAAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAABgwAAAAAADQAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAABBAAAAAABgwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 22,25: - ind: 22,25 - tiles: AQAAAAABAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADAQAAAAACAQAAAAADkwAAAAAAEwAAAAABEwAAAAACAQAAAAACkwAAAAAAAgAAAAAAAgAAAAADAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAACEwAAAAAAFgAAAAAAEwAAAAAAEwAAAAAAFgAAAAAAEwAAAAABEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAFgAAAAAAEwAAAAADEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAAAFgAAAAAAEwAAAAADEwAAAAACEwAAAAAAEwAAAAABFgAAAAAAEwAAAAADEwAAAAADEwAAAAABEwAAAAADEwAAAAAAEwAAAAABEwAAAAACEwAAAAADEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAACkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACCQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAACAQAAAAACCQAAAAAAQwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAADkwAAAAAAQwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -2,-4: + ind: -2,-4 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAADQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAADQAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAACwAAAAAAAwAAAAADgwAAAAAADQAAAAABDQAAAAABDQAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAADAwAAAAABCwAAAAAAAwAAAAACAwAAAAADDQAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAABDQAAAAACgwAAAAAAAwAAAAABDQAAAAACDQAAAAACDQAAAAAAgwAAAAAACwAAAAAAAwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAAAgwAAAAAADQAAAAABDQAAAAACDQAAAAADgwAAAAAA version: 6 - 22,26: - ind: 22,26 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAABkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAABBQAAAAAACQAAAAACCQAAAAADkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAACQAAAAACCQAAAAACkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAACQAAAAAACQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAACQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAA + -2,-3: + ind: -2,-3 + tiles: gwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAABAAAAAADBAAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAABDQAAAAADgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADgwAAAAAACAAAAAAACAAAAAAACAAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAABDQAAAAACgwAAAAAAAwAAAAAAAwAAAAACgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAAwAAAAABAwAAAAADgwAAAAAADQAAAAACDQAAAAACDQAAAAABDQAAAAABDQAAAAADDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAACgwAAAAAAAwAAAAADAwAAAAACgwAAAAAADQAAAAAADQAAAAABDQAAAAACgwAAAAAADQAAAAABDQAAAAACDQAAAAABgwAAAAAAgwAAAAAADQAAAAACDQAAAAABDQAAAAABAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAADDQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACgwAAAAAAAwAAAAAAAwAAAAABgwAAAAAADQAAAAACDQAAAAABDQAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACgwAAAAAAgwAAAAAADQAAAAAADQAAAAAADQAAAAAAgwAAAAAAAwAAAAABAwAAAAACgwAAAAAADQAAAAADDQAAAAABDQAAAAABDQAAAAAADQAAAAADDQAAAAAADQAAAAAAgwAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAACAwAAAAACgwAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAADQAAAAAADQAAAAAADQAAAAADgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAABDQAAAAADDQAAAAADgwAAAAAADQAAAAABDQAAAAADDQAAAAADDQAAAAADDQAAAAACgwAAAAAADQAAAAADDQAAAAACDQAAAAABDQAAAAABgwAAAAAA version: 6 - 22,27: - ind: 22,27 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-3: + ind: -1,-3 + tiles: AgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAABBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAADBQAAAAAAJAAAAAAFBQAAAAACJAAAAAACgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 23,23: - ind: 23,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAEwAAAAACEwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-2: + ind: -1,-2 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAEBQAAAAADBQAAAAACJAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAGJAAAAAADJAAAAAADgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAACBAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABgwAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAADgwAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAA version: 6 - 23,24: - ind: 23,24 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAACQAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAACEwAAAAACCQAAAAADEwAAAAADEwAAAAABEwAAAAAAEwAAAAACFgAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAACQAAAAAAFgAAAAAAFgAAAAAAEwAAAAAAEwAAAAACFgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAEwAAAAAACQAAAAABEwAAAAABEwAAAAABkwAAAAAAEwAAAAACFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAADEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADkwAAAAAAAQAAAAADDwAAAAACkwAAAAAAEwAAAAADFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACDwAAAAABkwAAAAAAEwAAAAADFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAADkwAAAAAAAQAAAAABDwAAAAADkwAAAAAAEwAAAAADFgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAADkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAACQAAAAACCQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADwAAAAAADwAAAAADkwAAAAAAAQAAAAAAAQAAAAABkwAAAAAAEwAAAAADFgAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAACEwAAAAAAAgAAAAABDwAAAAAACQAAAAACAQAAAAAAawAAAAAACQAAAAACEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAACQAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAgAAAAACDwAAAAADkwAAAAAAAQAAAAABawAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAAACQAAAAAAEwAAAAACEwAAAAAAEwAAAAACEwAAAAADEwAAAAABDwAAAAAADwAAAAADkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAD + -1,-4: + ind: -1,-4 + tiles: gwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 23,25: - ind: 23,25 - tiles: AgAAAAADAgAAAAAAAgAAAAADAgAAAAACAgAAAAACAgAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAACEwAAAAAAFgAAAAAAEwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADEwAAAAABEwAAAAAAEwAAAAABEwAAAAAAEwAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADFgAAAAAAFgAAAAAAEwAAAAADEwAAAAADEwAAAAADEwAAAAADEwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABkwAAAAAAAQAAAAADBgAAAAAABgAAAAAAAQAAAAACkwAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAACkwAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAACBgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAABgAAAAAAAQAAAAADkwAAAAAAkwAAAAAACQAAAAAACQAAAAACkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAACgAAAAADCgAAAAACCgAAAAABBgAAAAAAAQAAAAADkwAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAAAQAAAAABkwAAAAAAAQAAAAABBgAAAAAABgAAAAAACgAAAAAABgAAAAAABgAAAAAAAQAAAAADkwAAAAAABgAAAAAAAQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAADAQAAAAACAQAAAAAABgAAAAAACgAAAAACBgAAAAAAAQAAAAAAAQAAAAADCQAAAAADAQAAAAADAQAAAAADkwAAAAAAAQAAAAACBgAAAAAABgAAAAAAAQAAAAADkwAAAAAAAQAAAAABBgAAAAAABgAAAAAACgAAAAABBgAAAAAABgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABCQAAAAACkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAACgAAAAABCgAAAAADCgAAAAAABgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACBgAAAAAABgAAAAAAAQAAAAADkwAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABAQAAAAADAQAAAAACAgAAAAAAAQAAAAABAQAAAAACAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACCQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAA + -7,-4: + ind: -7,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAADAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAEAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 23,26: - ind: 23,26 - tiles: CQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAAkwAAAAAAAQAAAAADAQAAAAACkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAACAQAAAAABkwAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAAkwAAAAAACQAAAAABBQAAAAAABQAAAAAACQAAAAABAQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACCQAAAAACCQAAAAABBQAAAAAACQAAAAADAQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAAAAQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAAAQAAAAABAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -7,-3: + ind: -7,-3 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAADBwAAAAACgwAAAAAAAwAAAAACAwAAAAABBQAAAAABBQAAAAABBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAAAAwAAAAADBQAAAAADBQAAAAACBQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAACBQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAACAwAAAAAABQAAAAACBQAAAAADBQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAABgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAADgwAAAAAABwAAAAAABwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAJAgAAAAAAAgAAAAAABwAAAAAGgwAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABQAAAAACgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADgwAAAAAABAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABQAAAAACBQAAAAACBQAAAAACgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAAB version: 6 - 23,27: - ind: 23,27 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -7,-2: + ind: -7,-2 + tiles: GgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADgwAAAAAABAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBwAAAAAAgwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAIBwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAABAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABgwAAAAAABAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAABAAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAACgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAKAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAAgwAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAABAAAAAAD version: 6 - 24,21: - ind: 24,21 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAZwAAAAACZwAAAAACZwAAAAAAZwAAAAADZwAAAAADZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAA + -7,-1: + ind: -7,-1 + tiles: BAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACgwAAAAAABwAAAAALAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAABgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAACAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAABwAAAAAFBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAAgwAAAAAABwAAAAAGBwAAAAAEAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAKQAAAAAAKQAAAAAAKgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAAgwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAJgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 - 24,22: - ind: 24,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAACZwAAAAADZwAAAAADZwAAAAACZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAADAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAAAZwAAAAABZwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAABZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAA + -7,0: + ind: -7,0 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAHgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAFgwAAAAAABwAAAAAGBwAAAAAAAgAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACBAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAALgwAAAAAABwAAAAAABwAAAAAHBwAAAAAKCgAAAAAACgAAAAAACgAAAAAABAAAAAAABAAAAAACgwAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAAABAAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAABBwAAAAAABwAAAAAABAAAAAAAgwAAAAAAAwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAACgAAAAAACgAAAAAACgAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAACgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAACBAAAAAACgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAAIgAAAAAC version: 6 - 24,23: - ind: 24,23 - tiles: AAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAEgAAAAAAEwAAAAADEwAAAAACAQAAAAACkwAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAEwAAAAAABgAAAAAABgAAAAAAJAAAAAAAJAAAAAAAEgAAAAAAXQAAAAAABgAAAAAAEwAAAAADAQAAAAADkwAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAEwAAAAADBgAAAAAABgAAAAAAJAAAAAAAEgAAAAAAXQAAAAAAXQAAAAAABgAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAEwAAAAADBgAAAAAABgAAAAAAEgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAABgAAAAAAEwAAAAADkwAAAAAAAQAAAAABBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAACkwAAAAAAAQAAAAADBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAACEwAAAAABEwAAAAADEwAAAAAAEwAAAAACEwAAAAADEwAAAAABkwAAAAAAAQAAAAABAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAAACQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAEwAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAEwAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAAACQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -9,-4: + ind: -9,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAAABQAAAAACBQAAAAABBQAAAAABgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJAAAAAACBQAAAAACJAAAAAAGgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADgwAAAAAABAAAAAADgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAAIwAAAAABIwAAAAACIwAAAAABBQAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAABAAAAAADBAAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAACgwAAAAAABAAAAAACBAAAAAADBAAAAAAC version: 6 - 24,24: - ind: 24,24 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAABAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAEwAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAACCQAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAEwAAAAABAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAADFgAAAAAAAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAEwAAAAACkwAAAAAAEwAAAAAAEwAAAAADFgAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAADEwAAAAABEwAAAAACEwAAAAAAEwAAAAABEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAACQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAACEwAAAAABCQAAAAABEwAAAAADEwAAAAABEwAAAAADEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAACFgAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAABkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAA + -8,-2: + ind: -8,-2 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAFBwAAAAAEBwAAAAAAgwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIAgAAAAAAAgAAAAAABwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAADGwAAAAABBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAGwAAAAABGwAAAAACGwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAgwAAAAAABwAAAAAJAgAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAAABAAAAAADBAAAAAABgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAABwAAAAAJAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAACAgAAAAAABwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAACBQAAAAACgwAAAAAABwAAAAAKAgAAAAAABwAAAAAACwAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAAB version: 6 - 24,25: - ind: 24,25 - tiles: FgAAAAAAEwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAACQAAAAACCQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAEwAAAAABEwAAAAACEwAAAAABCQAAAAAAEwAAAAACEwAAAAACEwAAAAACEwAAAAAAEwAAAAACEwAAAAACEwAAAAACEwAAAAADEwAAAAADEwAAAAACFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAABFgAAAAAAFgAAAAAAEwAAAAABEwAAAAABCQAAAAAAEwAAAAACEwAAAAABFgAAAAAAFgAAAAAAEwAAAAABEwAAAAADEwAAAAACEwAAAAABEwAAAAACEwAAAAAAkwAAAAAACQAAAAADCQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAAAQAAAAADkwAAAAAAAQAAAAACAQAAAAABkwAAAAAAEwAAAAADEwAAAAAAkwAAAAAARQAAAAAARQAAAAAARQAAAAAAkwAAAAAAEQAAAAAAAQAAAAACBgAAAAAABgAAAAAAAQAAAAABkwAAAAAAVgAAAAAAVgAAAAAAEwAAAAAAFgAAAAAAEwAAAAADEwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAEQAAAAAAkwAAAAAACQAAAAADCQAAAAABkwAAAAAAkwAAAAAAAQAAAAACAQAAAAAAkwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAEQAAAAAAAQAAAAACBgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAkwAAAAAAEQAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAACwAAAAAACwAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAkwAAAAAAEQAAAAAAAQAAAAABBgAAAAAABgAAAAAAAQAAAAAAkwAAAAAACwAAAAAACwAAAAAAEwAAAAADFgAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAACQAAAAAAkwAAAAAAkwAAAAAACwAAAAAACwAAAAAAkwAAAAAAEwAAAAAAEwAAAAACkwAAAAAAAQAAAAAAAQAAAAACAQAAAAABkwAAAAAAEgAAAAADAQAAAAACBgAAAAAABgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAawAAAAAAAQAAAAABkwAAAAAAEgAAAAABAQAAAAADBgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAABkwAAAAAAAQAAAAABawAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADCQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAACQAAAAAAAQAAAAABAQAAAAADAQAAAAADCQAAAAABEgAAAAAB + -8,-1: + ind: -8,-1 + tiles: BQAAAAABBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAABgwAAAAAABwAAAAAAAgAAAAAABwAAAAAEgwAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAABAAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAACgwAAAAAABwAAAAAAAgAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAM version: 6 - 24,26: - ind: 24,26 - tiles: kwAAAAAACQAAAAABCQAAAAABAQAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEgAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACkwAAAAAAEgAAAAACCQAAAAABCQAAAAACCQAAAAABAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAAAQAAAAABkwAAAAAAEgAAAAABCQAAAAABCQAAAAACCQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBgAAAAAAAQAAAAACkwAAAAAAkwAAAAAACQAAAAABCQAAAAABCQAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAABkwAAAAAAAQAAAAABCQAAAAAACQAAAAABCQAAAAADAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAABgAAAAAACQAAAAAABgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -8,0: + ind: -8,0 + tiles: gwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAABBAAAAAADBAAAAAAABAAAAAADBAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAACBwAAAAAABwAAAAAHgwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 24,27: - ind: 24,27 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -6,1: + ind: -6,1 + tiles: BAAAAAACIgAAAAABBAAAAAABCgAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAABCgAAAAAACgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAACCgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACIgAAAAAACgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAADCgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAAACgAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAABCgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABAAAAAACBwAAAAAABwAAAAAIGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAADBwAAAAAABwAAAAAKGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAABAAAAAABBAAAAAADBAAAAAADgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADAwAAAAADgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACAwAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAACgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAABAwAAAAACgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA version: 6 - 25,21: - ind: 25,21 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAFAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAZwAAAAACZwAAAAADZwAAAAADZwAAAAADZwAAAAABZwAAAAADAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAADDgAAAAAD + -6,2: + ind: -6,2 + tiles: BAAAAAAABAAAAAABBAAAAAABAwAAAAACAwAAAAACAwAAAAACgwAAAAAAgwAAAAAABQAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADBAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAgwAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAACAwAAAAACAwAAAAABgwAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 25,22: - ind: 25,22 - tiles: mQAAAAAAZwAAAAABZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADgAAAAAADwAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAADgAAAAAADwAAAAACmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAAAZwAAAAABAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAABAQAAAAACmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAABDwAAAAABmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAABAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAAADwAAAAABmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAADDwAAAAABmQAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAAAZwAAAAADZwAAAAADAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAAADwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAADDwAAAAADmQAAAAAAZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABAQAAAAACmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAEgAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAkwAAAAAAEwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAACgAAAAAAAQAAAAACAQAAAAAAkwAAAAAAkwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABAQAAAAACAQAAAAADkwAAAAAAEwAAAAABFgAAAAAAEwAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAABkwAAAAAAEwAAAAAAFgAAAAAA + -7,1: + ind: -7,1 + tiles: BAAAAAABBAAAAAADBAAAAAADBAAAAAACBAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACFQAAAAAAFgAAAAAAFgAAAAAGFgAAAAAEFgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACFgAAAAADFgAAAAAAFgAAAAAAFgAAAAAFFgAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 25,23: - ind: 25,23 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAEwAAAAAAkwAAAAAAEwAAAAADFgAAAAAAEwAAAAACFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAEwAAAAABFgAAAAAAAQAAAAADAQAAAAACkwAAAAAAEwAAAAABFgAAAAAAEwAAAAACkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAEwAAAAACFgAAAAAAEwAAAAACkwAAAAAAEwAAAAACFgAAAAAAkwAAAAAAAQAAAAABAQAAAAABAQAAAAACkwAAAAAAEwAAAAACFgAAAAAACQAAAAACkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAFgAAAAAAEwAAAAACFgAAAAAAFgAAAAAAEwAAAAACFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAEwAAAAAAFgAAAAAABgAAAAAABgAAAAAAkwAAAAAAEwAAAAADFgAAAAAAEwAAAAADkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAABgAAAAAABgAAAAAACQAAAAADFgAAAAAAFgAAAAAAEwAAAAACkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAEwAAAAADEwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAEwAAAAADAQAAAAAAAQAAAAABkwAAAAAAEwAAAAADFgAAAAAAEwAAAAADkwAAAAAAEwAAAAABFgAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAACEwAAAAAAEwAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAFgAAAAAAEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAACkwAAAAAAEwAAAAADEwAAAAABEwAAAAAAEwAAAAABEwAAAAABEwAAAAADkwAAAAAAEwAAAAACEwAAAAACAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAADEwAAAAABkwAAAAAARQAAAAAABwAAAAACRQAAAAAABwAAAAACRQAAAAAABwAAAAADkwAAAAAABwAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAARQAAAAAABwAAAAACRQAAAAAABwAAAAAARQAAAAAABwAAAAABkwAAAAAABwAAAAADFgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAEwAAAAABRQAAAAAABwAAAAACRQAAAAAABwAAAAADRQAAAAAABwAAAAADkwAAAAAAkwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAARQAAAAAABwAAAAAARQAAAAAABwAAAAAARQAAAAAABwAAAAACkwAAAAAABwAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAkwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAEwAAAAABFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACEwAAAAACFgAAAAAAkwAAAAAARQAAAAAAEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAD + -7,2: + ind: -7,2 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 25,24: - ind: 25,24 - tiles: AAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACEwAAAAABFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAEwAAAAABQwAAAAAAQwAAAAAAFwAAAAABFwAAAAACGAAAAAABAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACEwAAAAACFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAQwAAAAAAQwAAAAAAkwAAAAAAFwAAAAAAFwAAAAABAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAACQAAAAABCQAAAAACkwAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAADFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAEwAAAAADEwAAAAAAkwAAAAAACQAAAAABCQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAAQAAAAABEwAAAAACGQAAAAAAAQAAAAAADwAAAAABDwAAAAABAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAEwAAAAAAGQAAAAABAQAAAAABDwAAAAADDwAAAAADAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAEwAAAAACFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAEwAAAAAAGQAAAAAAAQAAAAACDwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACEwAAAAAAFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAEwAAAAABGQAAAAACkwAAAAAACQAAAAABDwAAAAADAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAFgAAAAAAFgAAAAAAkwAAAAAASQAAAAAASQAAAAAASQAAAAAAEwAAAAAAEwAAAAAAGQAAAAAAEwAAAAACDwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACFgAAAAAAEwAAAAACkwAAAAAASQAAAAAASQAAAAAASQAAAAAAkwAAAAAAEwAAAAABEwAAAAAAkwAAAAAACQAAAAABDwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAAAEwAAAAABFgAAAAAAEwAAAAABEwAAAAAAEwAAAAADEwAAAAADCQAAAAAAEwAAAAAAEwAAAAABFgAAAAAAEwAAAAADEwAAAAAAEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAADCQAAAAAAEwAAAAAAEwAAAAABFgAAAAAAEwAAAAACEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAmQAAAAAA + -7,-5: + ind: -7,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIBwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAA version: 6 - 25,25: - ind: 25,25 - tiles: AAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAAAFgAAAAAAEwAAAAADkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAABFgAAAAAAEwAAAAAAkwAAAAAAAAAAAAAAEwAAAAABEwAAAAAAEwAAAAAAEwAAAAADEwAAAAACEwAAAAACEwAAAAAAEwAAAAACEwAAAAABCQAAAAAAEwAAAAAAEwAAAAABFgAAAAAAEwAAAAABkwAAAAAAkwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAABkwAAAAAABgAAAAAAEwAAAAAAEwAAAAACEwAAAAAAEwAAAAADFgAAAAAAEwAAAAADEwAAAAAAEwAAAAABFgAAAAAACQAAAAAAEwAAAAAAEwAAAAADFgAAAAAAEwAAAAADkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGgAAAAADkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAABgAAAAAAEQAAAAAAEQAAAAADkwAAAAAAEQAAAAAAFgAAAAAAEQAAAAAAkwAAAAAAEQAAAAAAEQAAAAADEQAAAAAAkwAAAAAAAQAAAAABAQAAAAACAQAAAAACkwAAAAAAkwAAAAAADAAAAAADEQAAAAAAkwAAAAAAEQAAAAADFgAAAAAAEQAAAAADkwAAAAAAEQAAAAADKAAAAAAAEQAAAAABkwAAAAAAAQAAAAABBgAAAAAAAQAAAAABkwAAAAAAAQAAAAABDAAAAAADEQAAAAADkwAAAAAAEQAAAAACFgAAAAAAEQAAAAADkwAAAAAAEQAAAAABKAAAAAAAEQAAAAABkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAABgAAAAAADAAAAAABDAAAAAABGgAAAAACFgAAAAAAFgAAAAAAFgAAAAAAGgAAAAADEQAAAAABKAAAAAAAEQAAAAACkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACkwAAAAAABgAAAAAAEQAAAAADEQAAAAADkwAAAAAAEQAAAAABFgAAAAAAEQAAAAADkwAAAAAAEQAAAAABKAAAAAAAEQAAAAACkwAAAAAAAQAAAAADBgAAAAAAAQAAAAADkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAACFgAAAAAAEQAAAAACkwAAAAAAEQAAAAABEQAAAAABEQAAAAACkwAAAAAAAQAAAAADAQAAAAADAQAAAAABCQAAAAACAQAAAAACEgAAAAACEgAAAAAAkwAAAAAAkwAAAAAAGgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAGgAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAAEgAAAAADGgAAAAAADAAAAAAADAAAAAABDAAAAAABEQAAAAADEQAAAAABDAAAAAAAEQAAAAAAkwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAkwAAAAAAKAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAADDAAAAAACDAAAAAACEQAAAAAAEQAAAAADDAAAAAADDAAAAAADGgAAAAAAEQAAAAAAEQAAAAAAEQAAAAADGgAAAAABEQAAAAADEgAAAAACEgAAAAADkwAAAAAAEQAAAAABDAAAAAAADAAAAAADEQAAAAADEQAAAAADDAAAAAAAEQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -8,1: + ind: -8,1 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABAwAAAAACAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAADgwAAAAAABAAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACBwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAFQAAAAAAFQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAgwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA version: 6 - 25,26: - ind: 25,26 - tiles: FgAAAAAAEgAAAAADGgAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAABDAAAAAABEQAAAAABkwAAAAAARQAAAAAARQAAAAAARQAAAAAAkwAAAAAARQAAAAAAFgAAAAAAEgAAAAACkwAAAAAAEQAAAAADDAAAAAAAEQAAAAAAEQAAAAACEQAAAAAADAAAAAABDAAAAAAAGgAAAAADRQAAAAAAKAAAAAAARQAAAAAAkwAAAAAARQAAAAAAEgAAAAABEgAAAAADkwAAAAAAEQAAAAABDAAAAAACEQAAAAABDQAAAAAAEQAAAAABEQAAAAABEQAAAAACkwAAAAAARQAAAAAAKAAAAAAARQAAAAAAGgAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAARQAAAAAAKAAAAAAARQAAAAAAkwAAAAAARQAAAAAAAQAAAAABBgAAAAAAAQAAAAAAkwAAAAAADAAAAAAAkwAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAkwAAAAAARQAAAAAAKAAAAAAARQAAAAAAGgAAAAAARQAAAAAABgAAAAAABgAAAAAABgAAAAAAGgAAAAAADAAAAAABGgAAAAACEQAAAAAAKAAAAAAAKAAAAAAAEQAAAAADkwAAAAAARQAAAAAAKAAAAAAARQAAAAAAkwAAAAAARQAAAAAAAQAAAAABBgAAAAAAAQAAAAADkwAAAAAADAAAAAACkwAAAAAAEQAAAAABEQAAAAABEQAAAAACEQAAAAABkwAAAAAARQAAAAAARQAAAAAARQAAAAAAkwAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAA + -8,2: + ind: -8,2 + tiles: gwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 25,27: - ind: 25,27 - tiles: AAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAZwAAAAABZwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAZwAAAAAAZwAAAAADAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -6,-5: + ind: -6,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAALBwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAGKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAA version: 6 - 26,21: - ind: 26,21 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAACAQAAAAABCQAAAAAAAQAAAAABAQAAAAADAQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -9,0: + ind: -9,0 + tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAEgwAAAAAABwAAAAAEBwAAAAAKBwAAAAAABwAAAAABBwAAAAAAgwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAGBwAAAAAHgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAFgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - 26,22: - ind: 26,22 - tiles: AQAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACAQAAAAACkwAAAAAAAQAAAAADBgAAAAAAAQAAAAACkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAACAQAAAAAACgAAAAADAQAAAAAABgAAAAAAAQAAAAADkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADDwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAACgAAAAADAQAAAAADAQAAAAABAQAAAAACkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAADwAAAAACDwAAAAADDwAAAAACAQAAAAABAQAAAAABCgAAAAABkwAAAAAADwAAAAADDwAAAAABDwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAADDwAAAAAADwAAAAAAAQAAAAADCgAAAAADCgAAAAAAkwAAAAAADwAAAAABDwAAAAAADwAAAAADkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAACDwAAAAADAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAADwAAAAACDwAAAAAADwAAAAAAAQAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAQwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGgAAAAABkwAAAAAAGgAAAAACkwAAAAAAGgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACQAAAAAABgAAAAAACQAAAAAAFgAAAAAAEwAAAAAAFgAAAAAAEwAAAAADFgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAFgAAAAAAEwAAAAAAFgAAAAAAEwAAAAABFgAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAABAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAA + -9,-1: + ind: -9,-1 + tiles: AQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAABgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAABJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAAAJgAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAJgAAAAACJgAAAAACgwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAA version: 6 - 26,23: - ind: 26,23 - tiles: EwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAACAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAEwAAAAADFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAADEwAAAAADEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAAEwAAAAACEwAAAAACEwAAAAADKAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAEwAAAAADEwAAAAABEwAAAAADEwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAAEwAAAAAAEwAAAAAAEwAAAAADKAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAEwAAAAACkwAAAAAAEwAAAAABEwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAABwAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAADAgAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -9,-2: + ind: -9,-2 + tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAABAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAADBQAAAAADBQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAAAgAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABAQAAAAAAgwAAAAAACwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAACwAAAAAAgwAAAAAABwAAAAAGAgAAAAAAgwAAAAAABQAAAAABBQAAAAAABQAAAAADgwAAAAAA version: 6 - 26,24: - ind: 26,24 - tiles: GAAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAGAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAACQAAAAAADgAAAAAACQAAAAAAkwAAAAAAAQAAAAABBgAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACkwAAAAAALAAAAAADkwAAAAAAkwAAAAAADwAAAAABDwAAAAACDgAAAAAADwAAAAACCQAAAAABkwAAAAAAAQAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAADAgAAAAADkwAAAAAAkwAAAAAACQAAAAABkwAAAAAACQAAAAABCQAAAAABCQAAAAADkwAAAAAAAQAAAAADBgAAAAAAAQAAAAACAQAAAAABAQAAAAABAQAAAAABkwAAAAAALAAAAAADkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAAQAAAAACAQAAAAAAAQAAAAABkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABkwAAAAAAAQAAAAACBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAACBgAAAAAADwAAAAACAQAAAAABAgAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAABAQAAAAACBgAAAAAACQAAAAACkwAAAAAAAgAAAAADBgAAAAAALAAAAAABLAAAAAABLAAAAAADBgAAAAAAAQAAAAABkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACkwAAAAAAAQAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAALAAAAAAABgAAAAAAAQAAAAABkwAAAAAAAQAAAAABBgAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACEwAAAAAAEwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAALAAAAAABBgAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAACBgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAEwAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAADAQAAAAACBgAAAAAAEwAAAAADEwAAAAAAEwAAAAAAFgAAAAAAEwAAAAAAkwAAAAAAAQAAAAABBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAABkwAAAAAAAQAAAAADBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAACAQAAAAADAQAAAAABkwAAAAAAAQAAAAABAQAAAAABAQAAAAABkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABkwAAAAAAAQAAAAADBgAAAAAA + -9,1: + ind: -9,1 + tiles: gwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAABBwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAIGAAAAAAAGAAAAAAAGAAAAAAABAAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABwAAAAAABwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAEgwAAAAAAgwAAAAAA version: 6 - 26,25: - ind: 26,25 - tiles: AAAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAADAQAAAAACAQAAAAABBgAAAAAAAQAAAAABkwAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAACAQAAAAADBgAAAAAAAAAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAgAAAAABAgAAAAABAgAAAAACBgAAAAAAAQAAAAADkwAAAAAAAQAAAAACBgAAAAAAAQAAAAACkwAAAAAAAQAAAAAABgAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAgAAAAABAwAAAAAAAgAAAAACBgAAAAAAAQAAAAACkwAAAAAAAQAAAAADBgAAAAAAAQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAADBgAAAAAAAgAAAAACAgAAAAACAgAAAAAABgAAAAAAAQAAAAAACQAAAAADBgAAAAAABgAAAAAAAQAAAAACkwAAAAAAAQAAAAAABgAAAAAAAQAAAAACCQAAAAADAQAAAAACBgAAAAAAAQAAAAAAAQAAAAACAQAAAAAABgAAAAAAAQAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAABBgAAAAAAAQAAAAACkwAAAAAAAQAAAAAAAQAAAAACAQAAAAACkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAACkwAAAAAAAQAAAAABBgAAAAAAAQAAAAABkwAAAAAAAQAAAAACBgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAQAAAAADkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAACQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAAQAAAAACAQAAAAADAQAAAAADkwAAAAAAAQAAAAABBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAACkwAAAAAAAQAAAAADBgAAAAAABgAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAACkwAAAAAAAgAAAAABBgAAAAAABgAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAACBgAAAAAABgAAAAAACQAAAAADBgAAAAAABgAAAAAABgAAAAAACQAAAAADBgAAAAAABgAAAAAAAQAAAAABkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAACkwAAAAAAAQAAAAACAQAAAAABAQAAAAACkwAAAAAAAQAAAAADAQAAAAADAQAAAAACkwAAAAAAAQAAAAACBgAAAAAAAQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAADkwAAAAAAmQAAAAAAkwAAAAAAKAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAEQAAAAABkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAACAQAAAAAAAQAAAAACAQAAAAADkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAA + -10,-3: + ind: -10,-3 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAAAgwAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAABAAAAAABgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAEgAAAAAAEgAAAAAABAAAAAADgwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA version: 6 - 26,26: - ind: 26,26 - tiles: RQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAARQAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAKAAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAARQAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAARQAAAAAARQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAA + -10,-1: + ind: -10,-1 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAACwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 - 26,27: - ind: 26,27 - tiles: ZwAAAAADZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAABmQAAAAAAZwAAAAACZwAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAACAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAZwAAAAACZwAAAAAAZwAAAAABZwAAAAADZwAAAAADZwAAAAACmQAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAADZwAAAAADZwAAAAABAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAADAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAADAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAZwAAAAADZwAAAAACZwAAAAAAZwAAAAADZwAAAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAACZwAAAAAAZwAAAAABmQAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAABZwAAAAADZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAADZwAAAAADZwAAAAACmQAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAABZwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAFAAAAAABmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -8,-4: + ind: -8,-4 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAADgwAAAAAAAAAAAAAAAQAAAAAAEwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAABgwAAAAAAAwAAAAABAwAAAAABAwAAAAADDQAAAAAADQAAAAADgwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAAwAAAAACCQAAAAAAAwAAAAADDQAAAAADDQAAAAAAgwAAAAAAAwAAAAACCQAAAAAABAAAAAADCQAAAAAAAwAAAAACgwAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAACDQAAAAABBAAAAAABAwAAAAACBAAAAAADBAAAAAAABAAAAAAAAwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAAADQAAAAADDQAAAAAADQAAAAADDQAAAAADDQAAAAABgwAAAAAAAwAAAAABCQAAAAAABAAAAAADCQAAAAAAAwAAAAAAgwAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAABgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAACgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAABAAAAAABgwAAAAAA version: 6 - 26,28: - ind: 26,28 - tiles: AAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -8,-3: + ind: -8,-3 + tiles: IwAAAAABIwAAAAACIwAAAAADBAAAAAACgwAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAABHwAAAAAAIwAAAAAABAAAAAADgwAAAAAABAAAAAADIwAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADIwAAAAADBAAAAAAAHwAAAAADHwAAAAACIwAAAAABBAAAAAACBAAAAAACBAAAAAADIwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACIwAAAAADBAAAAAACHwAAAAAAHwAAAAADIwAAAAAABAAAAAABgwAAAAAABAAAAAACIwAAAAADIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAADBAAAAAACIwAAAAADIwAAAAABIwAAAAACBAAAAAABgwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAACgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAAABAAAAAAAgwAAAAAABAAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAAAgwAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAADBAAAAAAADQAAAAACDQAAAAADDQAAAAACDQAAAAAAgwAAAAAADQAAAAADDQAAAAAADQAAAAACDQAAAAABDQAAAAADgwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABDQAAAAAADQAAAAADDQAAAAACDQAAAAACDQAAAAACDQAAAAACDQAAAAAADQAAAAADDQAAAAABDQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABBAAAAAAABAAAAAACDQAAAAACDQAAAAADDQAAAAAADQAAAAAAgwAAAAAAAwAAAAACAwAAAAADAwAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAADCwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAHBwAAAAAHAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 27,22: - ind: 27,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -9,-3: + ind: -9,-3 + tiles: gwAAAAAABAAAAAADBAAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAgwAAAAAABAAAAAADIwAAAAAAIwAAAAADgwAAAAAABAAAAAADBAAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAABgwAAAAAABAAAAAADIwAAAAACHwAAAAABBAAAAAAABAAAAAAABAAAAAABAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAAAIwAAAAABHwAAAAABgwAAAAAABAAAAAABBAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAABIwAAAAABHwAAAAABgwAAAAAABAAAAAAABAAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAABAAAAAAAIwAAAAADIwAAAAADgwAAAAAABAAAAAAABAAAAAADAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAAAgwAAAAAAgwAAAAAADQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADQAAAAACDQAAAAAADQAAAAACDQAAAAACDQAAAAADgwAAAAAADQAAAAADDQAAAAADDQAAAAACDQAAAAABDQAAAAADDQAAAAADDQAAAAABDQAAAAAADQAAAAADgwAAAAAADQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAADDQAAAAACDQAAAAAAIwAAAAACIwAAAAAAIwAAAAADDQAAAAACDQAAAAADDQAAAAAADQAAAAABDQAAAAABgwAAAAAADQAAAAAADQAAAAACDQAAAAACDQAAAAACDQAAAAACgwAAAAAADQAAAAABDQAAAAABDQAAAAACDQAAAAAADQAAAAAADQAAAAABDQAAAAAADQAAAAADDQAAAAABgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 27,23: - ind: 27,23 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAABwAAAAAAgwAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAADBAAAAAADBAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 27,24: - ind: 27,24 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAADkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAADBgAAAAAAAQAAAAACkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAACBgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,1: + ind: -2,1 + tiles: BAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAAAAwAAAAACGgAAAAAAGgAAAAAAAwAAAAADAwAAAAAABwAAAAAIBwAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAACBAAAAAAAAwAAAAABGgAAAAAAGgAAAAAAAwAAAAACAwAAAAADBwAAAAAABwAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABAAAAAACBAAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAAwAAAAACAwAAAAACBwAAAAALBwAAAAADBAAAAAABBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAACGgAAAAAAGgAAAAAAAwAAAAACAwAAAAABBwAAAAAABwAAAAAHBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 27,25: - ind: 27,25 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAABBgAAAAAAAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAAABgAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAZwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADAgAAAAADAgAAAAAAAgAAAAADBgAAAAAAAQAAAAABkwAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAACCQAAAAACAQAAAAABAQAAAAABAQAAAAAACQAAAAAAAQAAAAACAQAAAAABCQAAAAACAQAAAAAABgAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAACQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAQAAAAAAAQAAAAABkwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAABAgAAAAADAgAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAACAgAAAAABAwAAAAAACQAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAgAAAAABAQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAABAwAAAAAAkwAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAACkwAAAAAAAQAAAAABAQAAAAABAQAAAAADAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAEQAAAAABKAAAAAAAKAAAAAAAKAAAAAAA + -1,1: + ind: -1,1 + tiles: BwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 27,26: - ind: 27,26 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAEQAAAAACKAAAAAAAKAAAAAAAKAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAEQAAAAAAKAAAAAAAkwAAAAAAEQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAEQAAAAAAKAAAAAAAEwAAAAADEQAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAEQAAAAABEQAAAAABkwAAAAAAEQAAAAADkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAQAAAAADAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAA + -9,2: + ind: -9,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 27,27: - ind: 27,27 - tiles: mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAABBAAAAAADgwAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 28,22: - ind: 28,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,-1: + ind: 0,-1 + tiles: gwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 28,23: - ind: 28,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -4,-5: + ind: -4,-5 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACgwAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAABgwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHgwAAAAAAJwAAAAABJwAAAAABJwAAAAABJwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAgwAAAAAAJwAAAAACJwAAAAAAJwAAAAADJwAAAAACgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 - 28,24: - ind: 28,24 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAA + -10,0: + ind: -10,0 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAA version: 6 - 28,25: - ind: 28,25 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAQwAAAAAAAQAAAAABkwAAAAAAAQAAAAAAAQAAAAABAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAAQAAAAACQwAAAAAAQwAAAAAAEwAAAAACBAAAAAAABAAAAAAABAAAAAAAEwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAQAAAAABQwAAAAAAAQAAAAADkwAAAAAAAQAAAAADBAAAAAAAAQAAAAABkwAAAAAAAQAAAAADAQAAAAAABAAAAAAABAAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAEwAAAAABkwAAAAAAkwAAAAAAAQAAAAABBAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAABAAAAAAABAAAAAAAAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAADAQAAAAABkwAAAAAAAQAAAAABBAAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAADBAAAAAAABAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAADBAAAAAAAAQAAAAADAQAAAAACAQAAAAADBAAAAAAAAQAAAAACAQAAAAACAQAAAAACBAAAAAAABAAAAAAABAAAAAAAAQAAAAAAkwAAAAAACAAAAAACCAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAACkwAAAAAABwAAAAACBwAAAAACBAAAAAAABAAAAAAABAAAAAAAkwAAAAAABwAAAAABBwAAAAABBwAAAAADkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEwAAAAABBwAAAAADBwAAAAAAAQAAAAACBAAAAAAAkwAAAAAAkwAAAAAABwAAAAAABwAAAAADBwAAAAADkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAkwAAAAAACAAAAAACCAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAACkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAABBAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAADkwAAAAAAAAAAAAAAmQAAAAAAAQAAAAADBAAAAAAABAAAAAAAAQAAAAACBAAAAAAAAQAAAAACAQAAAAAABAAAAAAAAQAAAAADAQAAAAADAQAAAAAABAAAAAAAAQAAAAABkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAEwAAAAACEwAAAAAAkwAAAAAAEwAAAAADkwAAAAAAkwAAAAAAEwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACQAAAAABkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAEQAAAAABEQAAAAACEQAAAAABkwAAAAAAFgAAAAAABwAAAAAAkwAAAAAAFgAAAAAABwAAAAABkwAAAAAAAQAAAAACAgAAAAAAAQAAAAABkwAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAKAAAAAAAEQAAAAADkwAAAAAAFgAAAAAABwAAAAACkwAAAAAAFgAAAAAABwAAAAABkwAAAAAAAQAAAAABAgAAAAABAQAAAAADkwAAAAAAmQAAAAAAmQAAAAAA + -10,-2: + ind: -10,-2 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 - 28,26: - ind: 28,26 - tiles: KAAAAAAAKAAAAAAAEQAAAAABkwAAAAAABwAAAAACBwAAAAADkwAAAAAABwAAAAACBwAAAAACkwAAAAAAAQAAAAAAAQAAAAADAQAAAAADkwAAAAAAAAAAAAAAAAAAAAAAEQAAAAADEQAAAAACEQAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADEQAAAAADkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAABkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEwAAAAACkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACeAAAAAAAAgAAAAACAgAAAAABAgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABCgAAAAABAgAAAAACAgAAAAACAgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -3,-5: + ind: -3,-5 + tiles: BwAAAAAABwAAAAAFBwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAEgAAAAAADAAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGIQAAAAABIQAAAAABIQAAAAAAgwAAAAAABwAAAAAFBwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAMgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAADgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAgwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgwAAAAAABwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAMBwAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAJgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAJGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAACwAAAAAACwAAAAAACwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAABwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAgwAAAAAABAAAAAADgwAAAAAAgwAAAAAAgwAAAAAABwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAACBAAAAAADBAAAAAACgwAAAAAABwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAABAAAAAAABAAAAAABBAAAAAACgwAAAAAA version: 6 - 29,22: - ind: 29,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAHAAAAAADHAAAAAALHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAMHAAAAAAA + -4,-6: + ind: -4,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 29,23: - ind: 29,23 - tiles: mQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAIHAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAGHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAHAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAEwAAAAAAlgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAEwAAAAACEwAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAHAAAAAAAlgAAAAAAEwAAAAACEwAAAAAAEwAAAAADBQAAAAAABQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAAAlgAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAHAAAAAAAHAAAAAAAlgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAlgAAAAAAHAAAAAAAlgAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAEwAAAAAAEwAAAAADEwAAAAABBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAEwAAAAADEwAAAAADBQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAHAAAAAAGlgAAAAAAlgAAAAAAEwAAAAADlgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAHAAAAAAA + -5,-6: + ind: -5,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAJ version: 6 - 29,24: - ind: 29,24 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-5: + ind: -1,-5 + tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 29,25: - ind: 29,25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -6,-6: + ind: -6,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 29,26: - ind: 29,26 - tiles: mQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAA version: 6 - 30,22: - ind: 30,22 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,0: + ind: 0,0 + tiles: gwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 30,23: - ind: 30,23 - tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAMHAAAAAALHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAJHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAGHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAEwAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAGHAAAAAAAHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAEwAAAAACEwAAAAAAlgAAAAAAlgAAAAAAHAAAAAADHAAAAAAAHAAAAAAIHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAEwAAAAAAEwAAAAADEwAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAABQAAAAAABQAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAlgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAEBQAAAAAABQAAAAAABQAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAEwAAAAADEwAAAAADEwAAAAADlgAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAEwAAAAACEwAAAAABlgAAAAAAlgAAAAAAHAAAAAALHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAEwAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAHAAAAAAIHAAAAAACHAAAAAADHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAA + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 30,24: - ind: 30,24 - tiles: HAAAAAAAHAAAAAAGHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAJHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAGHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAALHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAIHAAAAAAIHAAAAAAKHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAHAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAJHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAAEHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAFAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAHAAAAAAIHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAALmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAGHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAEHAAAAAAAHAAAAAAA + -3,-6: + ind: -3,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAA version: 6 - 30,25: - ind: 30,25 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -8,-5: + ind: -8,-5 + tiles: AAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAABAwAAAAACDAAAAAAAAwAAAAADAwAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAADAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAAwAAAAACAwAAAAAADAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAAAAwAAAAACDAAAAAAAAwAAAAADAwAAAAACAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACAwAAAAACAwAAAAAADAAAAAAAAwAAAAADAwAAAAABAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADAwAAAAACAwAAAAABDAAAAAAAAwAAAAABDAAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAADAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAAAAwAAAAADAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAADAAAAAAAAwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAACDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADDAAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 - 31,23: - ind: 31,23 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAACAAAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAHAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAmQAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAAAAgAAAAABkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAAAAAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAgAAAAACBgAAAAAABgAAAAAABgAAAAAAAgAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAkwAAAAAAmQAAAAAAkwAAAAAAAgAAAAACBgAAAAAAAgAAAAAABgAAAAAAAgAAAAADkwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAABkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAA + -8,-6: + ind: -8,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAADEgAAAAAADAAAAAAADAAAAAAADAAAAAAAEgAAAAAAAwAAAAABgwAAAAAAgwAAAAAAgwAAAAAAAQAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAgwAAAAAADAAAAAAAgwAAAAAAEgAAAAAAAwAAAAACgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAwAAAAABEgAAAAAAEgAAAAAADAAAAAAAEgAAAAAAEgAAAAAAAwAAAAADgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAA version: 6 - 31,24: - ind: 31,24 - tiles: HAAAAAAAHAAAAAAAlgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAABBgAAAAAALAAAAAAALAAAAAADLAAAAAAAkwAAAAAALAAAAAAALAAAAAAALAAAAAABkwAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAkwAAAAAAkwAAAAAALAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAALAAAAAACkwAAAAAALAAAAAACBgAAAAAALAAAAAACkwAAAAAAHAAAAAAAHAAAAAAClgAAAAAAkwAAAAAAkwAAAAAAlgAAAAAALAAAAAACLAAAAAABLAAAAAAABgAAAAAABgAAAAAALAAAAAADBgAAAAAABgAAAAAALAAAAAABkwAAAAAAHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAALAAAAAAABgAAAAAALAAAAAABkwAAAAAALAAAAAACBgAAAAAABgAAAAAAkwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAALAAAAAABLAAAAAADLAAAAAACBgAAAAAALAAAAAABlgAAAAAALAAAAAADBgAAAAAALAAAAAAAkwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAlgAAAAAALAAAAAAABgAAAAAABgAAAAAABgAAAAAALAAAAAAClgAAAAAALAAAAAADBgAAAAAABgAAAAAAkwAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAlgAAAAAALAAAAAABBgAAAAAALAAAAAACAwAAAAAALAAAAAAAlgAAAAAALAAAAAABLAAAAAABLAAAAAACkwAAAAAAHAAAAAAFHAAAAAAMHAAAAAAAHAAAAAAAHAAAAAADlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAlgAAAAAAkwAAAAAAkwAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAlgAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAIAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAGHAAAAAAJHAAAAAAHHAAAAAADHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAKHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAGHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAJHAAAAAAFHAAAAAAAlgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAMHAAAAAALHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAGHAAAAAAAHAAAAAAKHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAHHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAMHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -9,-5: + ind: -9,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 - 31,25: - ind: 31,25 - tiles: mQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAFHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -9,-6: + ind: -9,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA version: 6 - 21,28: - ind: 21,28 - tiles: DwAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAACgAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAABgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAADwAAAAAADwAAAAAACgAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAkwAAAAAADwAAAAAACgAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgwAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAgwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -428,8383 +412,9073 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier - path: Audio/Effects/alert.ogg + path: /Audio/Effects/alert.ogg - type: DecalGrid chunkCollection: version: 2 nodes: - node: color: '#FFFFFFFF' - id: Bot + id: Arrows decals: - 3628: 386,395 - 3629: 379,395 - 3631: 374,391 - 3632: 374,390 - 3633: 374,389 - 3731: 503,386 - 3732: 502,386 + 2618: -115,-44 + 5906: -123,16 + 5907: -122,16 + 5944: -59,-17 + 5963: -29,-58 + 6205: -99,7 + 7279: -33,10 - node: - zIndex: 2 + angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: Bot + id: Arrows decals: - 3634: 374,389 - 3635: 374,390 - 3636: 374,391 - 3637: 379,395 - 3638: 386,395 - 3644: 397,370 - 3645: 397,369 - 3646: 375,377 - 3647: 374,377 - 3648: 374,383 - 3649: 374,382 - 3650: 374,381 - 3652: 327,402 - 3653: 327,408 - 3654: 328,408 - 3794: 365,391 - 3795: 366,391 - 3796: 360,388 - 3797: 361,388 - 3798: 360,382 - 3799: 358,382 - 3827: 372,391 - 3856: 371,421 - 3857: 371,420 - 3871: 382,416 - 3872: 383,416 - 3875: 392,414 - 3907: 406,415 - 3908: 406,414 - 3909: 406,413 - 3910: 409,415 - 3911: 409,416 - 3912: 409,418 - 3913: 407,418 - 3914: 403,418 - 3915: 403,417 - 3920: 411,416 - 3921: 412,416 - 3922: 417,420 - 3955: 428,393 - 3956: 428,394 - 3957: 428,397 - 3958: 428,398 - 3959: 428,401 - 3960: 428,402 - 3961: 428,405 - 3962: 426,393 - 3963: 426,395 - 3964: 426,401 - 3965: 426,402 - 3966: 426,404 - 3967: 426,405 - 3973: 429,389 - 3981: 408,379 - 3982: 408,378 - 3983: 410,378 - 3984: 410,379 - 3985: 414,378 - 3986: 414,379 - 3987: 416,378 - 4002: 443,398 - 4003: 443,399 - 4031: 452,418 - 4040: 456,412 - 4041: 457,412 - 4042: 458,412 - 4043: 452,401 - 4044: 453,401 - 4045: 454,401 - 4054: 446,406 - 4055: 446,405 - 4056: 446,404 - 4059: 423,411 - 4066: 418,391 - 4067: 419,391 - 4068: 420,391 - 4069: 422,391 - 4070: 424,391 - 4095: 409,407 - 4096: 363,414 - 4109: 356,391 - 4110: 356,388 - 4111: 356,387 - 4112: 354,387 - 4113: 352,387 - 4114: 351,387 - 4115: 350,387 - 4116: 348,389 - 4117: 349,389 - 4118: 350,389 - 4119: 350,383 - 4127: 348,395 - 4128: 348,394 - 4136: 346,400 - 4137: 346,399 - 4138: 363,390 - 4143: 410,370 - 4144: 410,367 - 4145: 417,367 - 4146: 417,370 - 4147: 423,359 - 4148: 425,359 - 4149: 421,359 - 4150: 412,363 - 4151: 410,363 - 4153: 399,408 - 4154: 399,407 - 4155: 399,406 - 4156: 401,407 - 4157: 401,406 - 4158: 405,418 - 4159: 407,376 - 4160: 408,376 - 4161: 409,376 - 4162: 410,376 - 4163: 407,374 - 4164: 412,373 - 4165: 417,373 - 4166: 418,373 - 4167: 419,373 - 4172: 408,420 - 4173: 409,420 - 4174: 349,412 - 4175: 339,410 - 4176: 338,410 - 4177: 338,408 - 4178: 339,408 - 4179: 341,408 - 4180: 342,408 - 4182: 336,408 - 4183: 335,408 - 4197: 351,416 - 4200: 333,406 - 4208: 329,410 - 4209: 328,405 - 4250: 328,421 - 4251: 328,420 - 4252: 328,423 - 4270: 312,409 - 4271: 313,409 - 4272: 306,416 - 4275: 305,389 - 4276: 306,389 - 4281: 368,417 - 4282: 382,420 - 4291: 362,382 - 4314: 351,425 - 4315: 351,424 - 4316: 351,422 - 4317: 351,421 - 4318: 324,418 - 4319: 322,418 - 6386: 339,439 - 6387: 340,439 - 6388: 336,441 - 6389: 333,441 - 6637: 350,391 - 6638: 350,392 - 6639: 350,393 - 6640: 351,393 - 6641: 352,393 - 6642: 352,391 - 7024: 414,364 + 1080: -102,9 + 5904: -117,15 + 5905: -117,14 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: BotGreyscale + id: Arrows decals: - 3747: 502,384 - 3748: 508,384 - 3749: 510,390 + 663: -26,-30 + 664: -24,-30 + 2619: -115,-42 + 2620: -115,-48 + 2860: -73,-56 + 6206: -101,-13 + 6208: -33,-12 + 6210: -71,-19 + 7280: -25,-1 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: BotLeft + color: '#EFB34196' + id: Bot decals: - 6390: 336,442 + 6278: -140,-22 + 6279: -139,-22 + 6284: -138,-22 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BotRight + id: Bot decals: - 6391: 331,438 - 6392: 331,437 - 6393: 333,438 - 6394: 333,437 + 324: -53,-10 + 325: -54,-10 + 326: -52,-10 + 327: -51,-10 + 363: -29,10 + 367: -28,10 + 368: -27,10 + 369: -26,10 + 370: -25,10 + 371: -24,10 + 388: -26,-51 + 389: -26,-49 + 538: -40,-18 + 539: -40,-19 + 540: -40,-25 + 541: -40,-26 + 915: -13,-7 + 916: -12,-7 + 917: -10,-7 + 918: -9,-7 + 919: -9,-9 + 920: -10,-9 + 921: -12,-9 + 922: -13,-9 + 956: -9,-21 + 957: -9,-20 + 958: -13,-20 + 959: -13,-21 + 960: -13,-19 + 961: -9,-19 + 975: -7,-21 + 976: -6,-21 + 977: -4,-21 + 978: -5,-21 + 979: -3,-21 + 1024: -23,-1 + 1025: -22,-1 + 1071: -99,9 + 1072: -99,10 + 1073: -99,11 + 1076: -100,11 + 1077: -100,9 + 1078: -101,9 + 1154: -54,-24 + 1155: -54,-23 + 1156: -54,-22 + 1157: -54,-21 + 1159: -52,-22 + 1160: -52,-23 + 1161: -52,-24 + 1657: -115,-34 + 1658: -114,-34 + 1748: -97,-36 + 1749: -97,-35 + 1750: -97,-34 + 1754: -86,-26 + 1755: -85,-26 + 1756: -84,-26 + 1757: -84,-30 + 1758: -85,-30 + 1759: -86,-30 + 1847: -94,-40 + 1848: -94,-38 + 2081: -116,-15 + 2082: -117,-15 + 2083: -115,-15 + 2084: -114,-15 + 2085: -113,-15 + 2115: -118,-7 + 2116: -118,-6 + 2117: -118,-4 + 2118: -118,-3 + 2119: -122,-7 + 2120: -122,-6 + 2124: -154,-12 + 2125: -154,-10 + 2410: -88,7 + 2411: -88,8 + 2412: -88,9 + 2413: -88,11 + 2414: -88,12 + 2415: -91,7 + 2416: -91,8 + 2417: -91,9 + 2418: -91,10 + 2419: -91,11 + 2420: -91,12 + 2421: -93,8 + 2422: -93,9 + 2423: -93,10 + 2424: -93,11 + 2606: -113,-42 + 2607: -113,-41 + 2608: -113,-40 + 2609: -113,-39 + 2610: -113,-38 + 2611: -115,-41 + 2612: -115,-40 + 2613: -115,-39 + 2614: -117,-42 + 2615: -117,-41 + 2616: -117,-39 + 2617: -117,-38 + 2636: -133,-42 + 2637: -134,-42 + 2638: -135,-42 + 2639: -136,-42 + 2647: -131,-38 + 2648: -131,-37 + 2649: -131,-36 + 2650: -125,-38 + 2651: -125,-37 + 2652: -125,-36 + 2770: -109,-42 + 2853: -86,-28 + 2854: -85,-28 + 2855: -84,-28 + 2856: -81,-30 + 2857: -81,-29 + 5507: -21,-30 + 5508: -20,-30 + 5522: -33,-36 + 5816: -123,17 + 5817: -122,17 + 5818: -116,15 + 5819: -116,14 + 5902: -117,17 + 5903: -116,17 + 5920: -111,-41 + 5921: -109,-41 + 5984: -20,-2 + 5985: -19,-2 + 5986: -18,-2 + 6459: -141,-49 + 6460: -141,-47 + 6461: -141,-45 + 6462: -141,-44 + 6463: -141,-43 + 6482: -96,33 + 6483: -96,34 + 6484: -96,35 + 6524: -91,27 + 6525: -91,28 + 6526: -91,29 + 6527: -91,30 + 6535: -96,32 + 6725: -26,-43 + 6726: -25,-43 + 6727: -24,-43 + 6728: -23,-43 + 6808: -52,-21 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Box + id: Bot decals: - 3740: 506,384 - 6460: 415,354 - 6549: 349,416 - 6550: 347,416 + 665: -26,-29 + 666: -24,-29 + 1978: -112,15 + 1979: -112,14 + 1980: -112,13 + 1981: -111,13 + 1982: -110,13 + 1983: -109,13 + 1984: -108,13 + 1985: -108,14 + 1986: -109,14 + 1987: -110,14 + 1988: -111,14 + 1989: -111,15 + 1990: -110,15 + 1991: -109,15 + 1992: -108,15 + 1993: -116,-9 + 1994: -115,-9 + 1995: -115,-13 + 1996: -116,-13 - node: - zIndex: 1 + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: Box + id: Bot decals: - 6613: 363,393 + 715: -31,-20 + 716: -31,-21 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: Box + color: '#EFB34196' + id: BotGreyscale decals: - 3776: 423,363 - 3819: 314,382 - 3820: 327,397 - 3822: 337,401 - 3823: 348,391 - 3824: 359,395 - 3825: 342,392 - 3826: 368,386 - 3835: 364,395 - 3836: 363,400 - 3842: 374,407 - 3843: 374,411 - 3844: 374,414 - 3845: 384,414 - 3846: 384,411 - 3847: 384,407 - 3848: 368,409 - 3849: 371,418 - 3850: 387,418 - 3855: 362,421 - 3873: 382,413 - 3876: 397,420 - 3877: 406,418 - 3878: 405,411 - 3879: 407,411 - 3880: 413,416 - 3918: 411,413 - 3919: 413,413 - 3924: 411,411 - 3925: 418,399 - 3926: 424,399 - 3927: 418,411 - 3928: 422,407 - 3951: 431,393 - 3952: 431,397 - 3953: 431,401 - 3954: 431,405 - 3971: 428,391 - 3974: 424,388 - 3975: 426,387 - 3976: 424,387 - 3998: 414,393 - 3999: 409,391 - 4000: 411,391 - 4001: 418,393 - 4008: 443,394 - 4009: 443,395 - 4010: 443,396 - 4033: 448,416 - 4034: 449,416 - 4035: 450,416 - 4036: 446,414 - 4037: 444,414 - 4038: 453,414 - 4039: 456,414 - 4046: 448,410 - 4047: 448,412 - 4048: 445,412 - 4049: 445,411 - 4050: 443,411 - 4053: 446,412 - 4057: 419,407 - 4058: 420,407 - 4076: 412,408 - 4077: 413,408 - 4078: 413,410 - 4079: 412,410 - 4080: 415,403 - 4081: 415,405 - 4084: 405,393 - 4087: 374,397 - 4088: 396,374 - 4089: 403,376 - 4093: 428,375 - 4098: 367,414 - 4121: 356,383 - 4141: 401,369 - 4142: 399,369 - 4170: 412,380 - 4171: 401,420 - 4201: 340,406 - 4202: 335,410 - 4203: 330,410 - 4204: 348,412 - 4205: 328,418 - 4206: 349,419 - 4207: 324,420 - 4253: 332,400 - 4254: 328,398 - 4273: 309,427 - 4299: 329,429 - 4300: 330,429 - 4301: 332,429 - 4302: 333,429 - 4303: 335,429 - 4304: 336,429 - 4305: 338,429 - 4307: 339,429 - 4308: 341,429 - 4309: 342,429 - 4310: 344,429 - 4311: 345,429 - 4312: 348,429 - 4313: 349,429 - 6461: 415,354 - 6551: 425,351 - 6894: 392,399 - 6895: 392,401 - 7023: 414,363 + 5616: -140,-19 + 5617: -139,-19 + 5618: -138,-19 + 5619: -138,-18 + 5620: -139,-18 + 5621: -140,-18 + 5622: -140,-17 + 5623: -139,-17 + 5624: -138,-17 + 5626: -139,-16 + 5627: -140,-16 + 6317: -138,-20 + 6318: -139,-20 + 6319: -140,-20 + 6320: -141,-20 + 6321: -141,-19 + 6322: -141,-18 + 6323: -141,-17 + 7065: -141,-16 + 7066: -138,-16 - node: - zIndex: 3 color: '#FFFFFFFF' - id: Box + id: BotLeft decals: - 5449: 447,416 + 6489: -91,35 + 6490: -93,32 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BoxGreyscale + id: BotRight decals: - 6643: 351,391 + 6488: -93,35 + 6491: -91,32 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelCornerNe + id: Box decals: - 831: 395,373 + 5809: -124,14 + 5994: -34,-8 + 5995: -33,-8 + 5996: -33,-10 + 5997: -34,-10 + 5998: -34,-4 + 5999: -33,-4 + 6000: -33,-2 + 6001: -34,-2 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelCornerNw + id: BrickTileDarkCornerNe decals: - 826: 390,373 - 836: 389,372 + 2451: -57,5 + 2459: -66,5 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelCornerSe + id: BrickTileDarkCornerNw decals: - 834: 395,370 - 839: 390,370 + 2457: -67,5 + 2458: -58,5 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelCornerSw + id: BrickTileDarkCornerSe decals: - 838: 389,370 - 840: 395,370 + 2453: -57,4 + 2454: -66,4 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelEndS + id: BrickTileDarkCornerSw decals: - 841: 395,370 + 2455: -67,4 + 2456: -58,4 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BrickTileSteelInnerNe + id: BrickTileDarkInnerNe decals: - 7031: 415,362 + 6644: -121,-73 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelInnerNw + id: BrickTileDarkInnerNw decals: - 835: 390,372 + 6643: -121,-73 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileDarkInnerSe decals: - 832: 395,372 - 833: 395,371 + 6641: -121,-73 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BrickTileSteelLineE + id: BrickTileDarkInnerSw decals: - 7028: 415,365 - 7029: 415,364 - 7030: 415,363 + 6642: -121,-73 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileDarkLineE decals: - 827: 391,373 - 828: 392,373 - 829: 393,373 - 830: 394,373 + 6633: -121,-75 + 6634: -121,-74 + 6635: -121,-72 + 6636: -121,-71 + 6655: -121,-81 + 6656: -121,-80 + 6657: -121,-79 + 6658: -121,-78 + 6659: -121,-77 + 6660: -121,-76 + 6674: -121,-70 + 6675: -121,-69 + 6676: -121,-68 + 6677: -121,-67 + 6678: -121,-66 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BrickTileSteelLineN + id: BrickTileDarkLineN decals: - 7032: 416,362 - 7033: 417,362 + 6627: -122,-73 + 6628: -120,-73 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BrickTileSteelLineS + id: BrickTileDarkLineS decals: - 7034: 414,362 - 7035: 415,362 - 7036: 416,362 - 7037: 417,362 + 6630: -122,-73 + 6631: -120,-73 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelLineW + id: BrickTileDarkLineW decals: - 837: 389,371 + 6637: -121,-71 + 6638: -121,-72 + 6639: -121,-74 + 6640: -121,-75 + 6645: -121,-76 + 6646: -121,-77 + 6647: -121,-78 + 6648: -121,-79 + 6649: -121,-80 + 6650: -121,-81 + 6669: -121,-69 + 6670: -121,-68 + 6671: -121,-67 + 6672: -121,-66 + 6673: -121,-70 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileWhiteCornerNe + id: BrickTileSteelCornerNe decals: - 6463: 391,371 - 6464: 392,370 - 6465: 393,369 + 6247: -126,-44 + 6693: -114,-45 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileWhiteCornerSw + id: BrickTileSteelCornerNw decals: - 6466: 394,370 - 6467: 393,371 - 6468: 392,372 + 1885: -88,-50 + 1918: -83,-47 + 6259: -130,-44 + 6685: -122,-45 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileWhiteInnerNe + id: BrickTileSteelCornerSe decals: - 6469: 392,369 - 6470: 391,370 + 6251: -126,-48 + 6695: -114,-47 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileWhiteInnerSw + id: BrickTileSteelCornerSw decals: - 6471: 393,372 - 6472: 394,371 + 6255: -130,-48 + 6696: -122,-47 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BushAThree + id: BrickTileSteelEndW decals: - 6969: 333,444 + 1908: -88,-49 - node: - cleanable: True - zIndex: 2 color: '#FFFFFFFF' - id: BushAThree + id: BrickTileSteelInnerNw decals: - 6959: 333,444 + 1924: -83,-49 + 1925: -82,-47 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BushATwo + id: BrickTileSteelLineE decals: - 6964: 335,452 - 6965: 338,451 - 6966: 341,446 + 6248: -126,-45 + 6249: -126,-46 + 6250: -126,-47 + 6694: -114,-46 - node: - cleanable: True - zIndex: 2 color: '#FFFFFFFF' - id: BushATwo + id: BrickTileSteelLineN decals: - 6961: 341,446 - 6962: 338,451 + 1892: -86,-49 + 1893: -85,-49 + 1909: -87,-49 + 1926: -84,-49 + 6260: -129,-44 + 6261: -128,-44 + 6262: -127,-44 + 6686: -121,-45 + 6687: -120,-45 + 6688: -119,-45 + 6689: -118,-45 + 6690: -117,-45 + 6691: -116,-45 + 6692: -115,-45 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BushCOne + id: BrickTileSteelLineS decals: - 6967: 336,445 + 6252: -127,-48 + 6253: -128,-48 + 6254: -129,-48 + 6698: -121,-47 + 6699: -120,-47 + 6700: -119,-47 + 6701: -118,-47 + 6702: -117,-47 + 6703: -116,-47 + 6704: -115,-47 - node: - zIndex: 2 color: '#FFFFFFFF' - id: BushCThree + id: BrickTileSteelLineW decals: - 6968: 339,444 - 6970: 333,447 - 6971: 336,448 - 6972: 338,446 + 1895: -88,-51 + 1900: -82,-46 + 1919: -82,-46 + 1920: -82,-45 + 1922: -83,-48 + 6256: -130,-47 + 6257: -130,-46 + 6258: -130,-45 + 6697: -122,-46 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: BushCThree + color: '#334E6DC8' + id: BrickTileWhiteCornerNe decals: - 6956: 336,449 - 6957: 333,447 + 96: -63,-8 + 125: -59,0 + 2464: -56,6 + 2484: -61,7 + 6031: -35,-2 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: Bushb1 + color: '#52B4E996' + id: BrickTileWhiteCornerNe decals: - 6973: 340,449 - 6974: 337,447 + 5543: -33,-40 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: Bushc1 + color: '#8C347F96' + id: BrickTileWhiteCornerNe decals: - 6958: 336,445 + 6068: -18,-3 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: Bushc3 + color: '#A4610696' + id: BrickTileWhiteCornerNe decals: - 6960: 339,444 + 6785: -94,12 - node: - color: '#FFFFFFFF' - id: Delivery + color: '#D381C996' + id: BrickTileWhiteCornerNe decals: - 3733: 502,382 - 3734: 502,381 - 3735: 502,380 - 3746: 502,388 + 2490: -113,-44 + 6387: -145,-48 + 6404: -139,-39 + 6417: -125,-39 + 6467: -142,-43 + 6986: -118,-80 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: Delivery + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe decals: - 3765: 405,367 - 3766: 410,373 - 3767: 411,373 - 3768: 412,376 - 3769: 411,376 - 3770: 412,361 - 3774: 423,356 - 3777: 365,383 - 3778: 358,378 - 3781: 357,376 - 3785: 358,380 - 3786: 358,385 - 3787: 358,386 - 3788: 359,388 - 3789: 358,388 - 3800: 302,384 - 3801: 303,384 - 3802: 303,385 - 3803: 302,385 - 3804: 302,389 - 3805: 303,389 - 3806: 303,390 - 3807: 302,390 - 3808: 300,390 - 3812: 297,384 - 3813: 297,382 - 3814: 316,384 - 3815: 317,384 - 3816: 317,382 - 3817: 316,382 - 3818: 311,384 - 3828: 371,398 - 3829: 371,397 - 3831: 367,395 - 3832: 369,395 - 3833: 365,398 - 3834: 365,395 - 3851: 368,419 - 3852: 369,419 - 3853: 369,422 - 3854: 369,423 - 3858: 387,420 - 3859: 383,423 - 3860: 382,423 - 3861: 380,424 - 3862: 379,424 - 3863: 378,424 - 3864: 376,423 - 3865: 375,423 - 3866: 380,419 - 3867: 379,419 - 3868: 378,419 - 3869: 375,416 - 3870: 376,416 - 3874: 392,412 - 3881: 403,411 - 3882: 401,410 - 3883: 399,409 - 3884: 401,408 - 3885: 409,409 - 3886: 409,411 - 3887: 409,406 - 3888: 407,406 - 3889: 409,413 - 3890: 412,422 - 3891: 411,422 - 3892: 407,420 - 3893: 406,420 - 3894: 406,422 - 3895: 404,422 - 3896: 395,420 - 3897: 395,419 - 3898: 395,418 - 3899: 395,417 - 3900: 397,417 - 3901: 397,418 - 3902: 397,419 - 3903: 395,421 - 3904: 401,412 - 3905: 401,418 - 3906: 399,418 - 3916: 403,415 - 3917: 403,414 - 3923: 415,416 - 3929: 422,414 - 3930: 422,413 - 3931: 424,414 - 3932: 426,414 - 3933: 425,414 - 3934: 428,411 - 3935: 426,412 - 3936: 426,411 - 3937: 428,408 - 3938: 429,408 - 3939: 430,408 - 3940: 431,408 - 3941: 426,407 - 3942: 426,408 - 3968: 426,398 - 3969: 426,394 - 3970: 426,391 - 3972: 422,387 - 3977: 408,381 - 3978: 408,380 - 3979: 410,381 - 3980: 410,380 - 3988: 416,381 - 3989: 414,381 - 3990: 409,385 - 3991: 412,385 - 3992: 411,385 - 3993: 408,393 - 3994: 409,393 - 3995: 416,393 - 3996: 418,389 - 3997: 418,387 - 4004: 441,402 - 4005: 441,401 - 4006: 443,401 - 4007: 443,402 - 4011: 441,395 - 4012: 441,394 - 4013: 448,403 - 4014: 448,402 - 4015: 448,401 - 4016: 452,403 - 4017: 454,405 - 4018: 456,405 - 4019: 456,403 - 4020: 450,405 - 4021: 448,409 - 4022: 451,412 - 4023: 453,412 - 4024: 454,412 - 4025: 460,409 - 4026: 460,410 - 4027: 460,411 - 4028: 460,412 - 4029: 447,421 - 4030: 448,421 - 4051: 442,413 - 4052: 435,410 - 4060: 424,411 - 4061: 424,405 - 4062: 418,405 - 4063: 422,405 - 4071: 424,393 - 4072: 424,394 - 4073: 416,409 - 4074: 416,408 - 4075: 416,411 - 4091: 418,376 - 4092: 419,376 - 4097: 363,413 - 4099: 359,400 - 4100: 359,398 - 4101: 356,400 - 4102: 356,399 - 4103: 352,400 - 4104: 351,398 - 4105: 350,398 - 4106: 352,395 - 4107: 356,393 - 4108: 354,393 - 4120: 353,383 - 4122: 346,388 - 4123: 345,395 - 4124: 344,395 - 4125: 344,391 - 4126: 345,391 - 4129: 348,397 - 4130: 344,397 - 4131: 343,397 - 4132: 342,399 - 4133: 341,399 - 4134: 338,399 - 4135: 339,396 - 4139: 398,374 - 4140: 398,373 - 4152: 405,406 - 4169: 407,393 - 4184: 333,408 - 4185: 333,407 - 4186: 335,406 - 4187: 336,406 - 4188: 343,406 - 4189: 343,407 - 4190: 336,410 - 4191: 330,408 - 4192: 330,407 - 4193: 346,412 - 4194: 350,412 - 4195: 351,412 - 4196: 349,409 - 4210: 326,410 - 4211: 327,410 - 4212: 332,413 - 4213: 332,414 - 4214: 329,414 - 4215: 329,413 - 4216: 337,410 - 4217: 344,409 - 4218: 334,413 - 4219: 335,413 - 4220: 337,413 - 4221: 338,413 - 4222: 340,413 - 4223: 341,413 - 4224: 343,413 - 4225: 344,413 - 4226: 341,417 - 4227: 340,417 - 4228: 339,417 - 4229: 338,417 - 4230: 337,417 - 4231: 337,419 - 4232: 338,419 - 4233: 340,419 - 4234: 341,419 - 4235: 328,416 - 4236: 326,418 - 4237: 326,416 - 4241: 324,416 - 4242: 324,415 - 4243: 322,415 - 4244: 322,416 - 4245: 322,420 - 4246: 321,420 - 4247: 320,420 - 4248: 319,420 - 4249: 326,420 - 4255: 332,398 - 4256: 333,398 - 4257: 334,398 - 4258: 334,397 - 4259: 333,397 - 4260: 332,397 - 4261: 336,395 - 4262: 336,396 - 4263: 336,398 - 4264: 336,399 - 4265: 330,400 - 4274: 307,408 - 4277: 330,388 - 4278: 335,380 - 4279: 321,428 - 4280: 326,441 - 4283: 376,420 - 4284: 389,412 - 4285: 389,408 - 4286: 395,410 - 4292: 349,430 - 4293: 345,430 - 4294: 342,430 - 4295: 339,430 - 4296: 336,430 - 4297: 333,430 - 4298: 330,430 - 4320: 355,376 - 6395: 332,436 - 6396: 331,437 - 6397: 331,438 - 6398: 333,438 - 6399: 333,437 - 6462: 414,354 - 6489: 414,367 - 6614: 371,407 - 6615: 371,413 - 6616: 387,413 - 6617: 387,407 - 6618: 387,411 - 6646: 410,361 - 6647: 411,361 - 6648: 412,361 - 6896: 393,399 - 6897: 393,401 - 7025: 417,363 - 7026: 417,364 + 1718: -99,-23 + 1719: -99,-27 + 1720: -99,-31 - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale + color: '#FA750096' + id: BrickTileWhiteCornerNe decals: - 3736: 506,382 - 3737: 506,381 - 3738: 506,380 + 558: -37,-18 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: DeliveryGreyscale + color: '#334E6DC8' + id: BrickTileWhiteCornerNw decals: - 3771: 411,361 - 3772: 410,361 - 3779: 360,377 - 3780: 360,376 - 3809: 297,390 - 3810: 298,390 - 3811: 299,390 - 3943: 430,405 - 3944: 430,403 - 3945: 430,401 - 3946: 430,399 - 3947: 430,397 - 3948: 430,395 - 3949: 430,393 - 3950: 430,391 - 4239: 323,416 - 4240: 323,415 - 4266: 331,395 - 4267: 332,395 - 4268: 333,395 - 4269: 334,395 - 4287: 390,408 + 95: -61,-8 + 124: -65,0 + 2469: -63,7 + 2470: -68,6 + 6030: -37,-2 - node: - color: '#FFFFFFFF' - id: Dirt + color: '#52B4E996' + id: BrickTileWhiteCornerNw decals: - 6531: 310,392 - 6532: 311,393 - 6533: 314,394 - 6534: 313,395 - 6535: 313,395 - 6536: 314,396 - 6537: 316,393 - 6538: 312,398 - 6539: 312,399 - 6540: 312,399 + 5518: -35,-36 - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt + color: '#8C347F96' + id: BrickTileWhiteCornerNw decals: - 2933: 340,384 - 2934: 340,383 - 2935: 340,382 - 2936: 339,382 - 2937: 339,383 - 2938: 339,384 - 2939: 338,384 - 2940: 338,383 - 2941: 338,382 - 2942: 337,382 - 2943: 336,382 - 2944: 336,383 - 2945: 335,383 - 2946: 335,382 - 2947: 334,382 - 2948: 334,383 - 2949: 334,384 - 2950: 334,385 - 2951: 335,385 - 2952: 336,385 - 2953: 336,386 - 2954: 335,386 - 2955: 336,387 - 2956: 335,387 - 2957: 335,388 - 2958: 335,389 - 2959: 335,390 - 2960: 334,390 - 2961: 333,390 - 2962: 333,391 - 2963: 336,393 - 2964: 336,392 - 2965: 335,392 - 2966: 335,393 - 2967: 334,393 - 2968: 334,392 - 2969: 333,392 - 2970: 333,393 - 2971: 332,393 - 2972: 332,392 - 2973: 331,392 - 2974: 331,393 - 2975: 330,392 - 2976: 330,391 - 2977: 331,391 - 2978: 331,390 - 2979: 330,390 - 2980: 337,390 - 2981: 337,389 - 2982: 338,390 - 2983: 338,389 - 2984: 338,388 - 2985: 338,387 - 2986: 337,387 - 2987: 338,386 - 2988: 333,387 - 2989: 333,388 - 2990: 341,383 - 2991: 342,383 - 2992: 342,384 - 2993: 342,383 - 2994: 344,383 - 2995: 345,383 - 2996: 345,384 - 2997: 344,384 - 2998: 344,385 - 2999: 345,385 - 3000: 346,385 - 3001: 347,385 - 3002: 348,385 - 3003: 348,384 - 3004: 348,383 - 3005: 347,383 - 3006: 347,386 - 3007: 363,382 - 3008: 363,381 - 3009: 362,381 - 3010: 363,380 - 3011: 362,380 - 3012: 369,383 - 3013: 369,384 - 3014: 370,384 - 3015: 370,383 - 3016: 371,383 - 3017: 371,384 - 3018: 372,384 - 3019: 372,383 - 3020: 372,385 - 3021: 371,385 - 3022: 370,385 - 3023: 371,386 - 3024: 373,384 - 3025: 358,405 - 3026: 359,406 - 3027: 358,406 - 3028: 358,407 - 3029: 359,407 - 3030: 360,407 - 3031: 361,407 - 3032: 361,406 - 3033: 358,408 - 3034: 358,409 - 3035: 359,409 - 3036: 360,409 - 3037: 361,409 - 3038: 360,410 - 3039: 359,410 - 3040: 359,411 - 3041: 360,411 - 3042: 361,411 - 3043: 361,412 - 3044: 360,412 - 3045: 359,412 - 3046: 361,413 - 3047: 360,413 - 3048: 359,413 - 3049: 358,413 - 3050: 357,413 - 3051: 357,414 - 3052: 357,412 - 3053: 357,411 - 3054: 362,409 - 3055: 356,406 - 3056: 355,406 - 3057: 354,406 - 3058: 353,406 - 3059: 353,405 - 3060: 353,407 - 3061: 353,408 - 3062: 353,409 - 3063: 354,409 - 3064: 354,408 - 3065: 355,409 - 3066: 356,409 - 3067: 356,408 - 3068: 354,410 - 3069: 354,411 - 3070: 355,411 - 3071: 353,411 - 3072: 353,412 - 3073: 353,413 - 3074: 353,414 - 3075: 355,412 - 3076: 355,413 - 3077: 355,414 - 3078: 353,415 - 3079: 353,416 - 3080: 353,417 - 3081: 354,417 - 3082: 354,416 - 3083: 355,416 - 3084: 355,417 - 3085: 355,418 - 3087: 356,417 - 3089: 357,417 - 3090: 357,418 - 3091: 356,418 - 3092: 357,416 - 3093: 358,417 - 3094: 358,416 - 3095: 359,417 - 3098: 359,416 - 3099: 360,416 - 3100: 360,417 - 3101: 361,417 - 3102: 361,418 - 3103: 361,416 - 3104: 361,415 - 3105: 360,415 - 3106: 359,415 - 3107: 359,414 - 3108: 359,419 - 3109: 359,420 - 3110: 357,420 - 3111: 356,420 - 3112: 355,420 - 3113: 355,421 - 3114: 356,421 - 3115: 357,421 - 3116: 357,422 - 3117: 356,422 - 3118: 355,422 - 3119: 355,423 - 3120: 356,423 - 3121: 357,423 - 3122: 358,423 - 3123: 358,422 - 3124: 359,422 - 3125: 359,423 - 3126: 361,424 - 3127: 360,424 - 3128: 360,425 - 3129: 361,425 - 3130: 359,424 - 3131: 358,424 - 3132: 357,424 - 3133: 356,424 - 3134: 355,424 - 3135: 355,425 - 3136: 358,425 - 3137: 358,426 - 3138: 357,426 - 3139: 358,427 - 3140: 357,427 - 3141: 355,426 - 3142: 355,427 - 3143: 355,428 - 3144: 356,428 - 3145: 357,428 - 3146: 358,428 - 3147: 355,429 - 3148: 354,429 - 3149: 354,430 - 3150: 354,431 - 3151: 355,431 - 3152: 356,431 - 3153: 357,431 - 3154: 357,430 - 3155: 358,430 - 3156: 358,431 - 3157: 360,431 - 3158: 360,430 - 3159: 357,432 - 3160: 356,432 - 3161: 355,432 - 3162: 353,432 - 3163: 354,432 - 3164: 354,433 - 3165: 355,433 - 3166: 353,433 - 3167: 355,434 - 3168: 355,435 - 3169: 354,435 - 3170: 354,434 - 3171: 353,434 - 3172: 353,435 - 3173: 352,435 - 3174: 352,434 - 3175: 352,437 - 3176: 352,438 - 3177: 353,438 - 3178: 353,437 - 3179: 354,437 - 3180: 354,438 - 3181: 355,438 - 3182: 355,437 - 3183: 353,436 - 3184: 350,434 - 3185: 349,434 - 3186: 349,435 - 3187: 350,435 - 3188: 349,436 - 3189: 350,437 - 3190: 349,437 - 3191: 350,438 - 3192: 349,438 - 3193: 348,438 - 3194: 348,437 - 3195: 347,437 - 3196: 347,438 - 3197: 346,438 - 3198: 346,437 - 3199: 345,437 - 3200: 345,438 - 3201: 344,437 - 3202: 344,436 - 3203: 344,435 - 3204: 347,436 - 3205: 347,435 - 3206: 346,435 - 3207: 346,434 - 3208: 347,434 - 3209: 344,434 - 3210: 343,434 - 3211: 343,435 - 3212: 342,435 - 3213: 341,435 - 3214: 341,434 - 3215: 341,436 - 3216: 342,436 - 3217: 342,437 - 3218: 341,437 - 3219: 340,435 - 3220: 339,434 - 3221: 338,434 - 3222: 337,434 - 3223: 336,434 - 3224: 336,435 - 3225: 335,435 - 3226: 335,436 - 3227: 335,437 - 3228: 336,437 - 3229: 336,436 - 3230: 337,435 - 3231: 338,435 - 3232: 339,435 - 3233: 339,436 - 3234: 338,436 - 3235: 338,437 - 3236: 339,437 - 3237: 334,435 - 3238: 334,434 - 3239: 333,434 - 3240: 333,435 - 3241: 332,435 - 3242: 332,434 - 3243: 331,434 - 3244: 330,434 - 3245: 330,435 - 3246: 329,435 - 3247: 329,434 - 3248: 328,434 - 3249: 328,435 - 3250: 328,436 - 3251: 329,436 - 3252: 329,437 - 3253: 328,437 - 3254: 327,437 - 3255: 326,437 - 3256: 326,436 - 3257: 327,436 - 3258: 327,435 - 3259: 326,435 - 3260: 327,434 - 3261: 326,434 - 3262: 325,434 - 3263: 325,433 - 3264: 325,432 - 3265: 326,432 - 3266: 326,431 - 3267: 325,431 - 3268: 324,432 - 3269: 324,433 - 3270: 323,434 - 3271: 322,434 - 3272: 322,433 - 3273: 323,433 - 3274: 323,432 - 3275: 322,432 - 3276: 323,431 - 3277: 323,430 - 3278: 323,429 - 3279: 323,428 - 3280: 322,429 - 3281: 326,430 - 3282: 327,439 - 3283: 327,440 - 3284: 327,441 - 3285: 326,441 - 3286: 328,441 - 3287: 328,440 - 3288: 328,439 - 3289: 329,439 - 3290: 329,440 - 3291: 329,441 - 3292: 327,438 - 3293: 399,367 - 3294: 399,366 - 3295: 399,365 - 3296: 400,365 - 3297: 400,366 - 3298: 400,367 - 3299: 401,367 - 3300: 401,366 - 3301: 401,365 - 3302: 402,365 - 3303: 403,365 - 3304: 404,365 - 3305: 404,364 - 3306: 405,364 - 3307: 405,364 - 3308: 405,365 - 3309: 406,364 - 3310: 407,364 - 3311: 407,365 - 3312: 408,365 - 3313: 408,364 - 3314: 409,365 - 3315: 410,365 - 3316: 411,365 - 3317: 412,365 - 3318: 411,364 - 3319: 413,365 - 3320: 418,365 - 3321: 419,365 - 3322: 419,364 - 3323: 420,365 - 3324: 421,365 - 3325: 421,366 - 3326: 422,365 - 3327: 423,365 - 3328: 423,366 - 3329: 422,364 - 3330: 423,367 - 3331: 422,367 - 3332: 421,367 - 3333: 423,368 - 3334: 423,369 - 3335: 422,369 - 3336: 421,369 - 3337: 421,370 - 3338: 422,370 - 3339: 423,370 - 3340: 422,371 - 3341: 421,371 - 3342: 422,372 - 3343: 422,373 - 3344: 421,373 - 3345: 423,374 - 3346: 422,374 - 3347: 421,374 - 3348: 421,375 - 3349: 422,375 - 3350: 422,376 - 3351: 421,376 - 3352: 422,377 - 3353: 419,385 - 3354: 418,385 - 3355: 418,384 - 3356: 418,383 - 3357: 418,382 - 3358: 418,381 - 3359: 420,383 - 3360: 421,383 - 3361: 421,382 - 3362: 420,382 - 3363: 421,384 - 3364: 421,385 - 3365: 422,385 - 3366: 418,379 - 3367: 418,380 - 3368: 419,380 - 3369: 418,378 - 3370: 419,378 - 3371: 420,378 - 3372: 421,378 - 3373: 422,378 - 3374: 422,379 - 3375: 421,379 - 3376: 421,380 - 3377: 422,380 - 3378: 423,380 - 3379: 423,379 - 3380: 424,379 - 3381: 424,380 - 3382: 425,380 - 3383: 425,379 - 3384: 425,382 - 3385: 423,381 - 3386: 424,381 - 3387: 425,381 - 3388: 426,381 - 3389: 427,381 - 3390: 427,382 - 3391: 427,383 - 3392: 427,384 - 3393: 426,384 - 3394: 423,382 - 3395: 423,383 - 3396: 423,385 - 3397: 423,384 - 3398: 424,384 - 3399: 424,385 - 3400: 425,385 - 3401: 426,385 - 3402: 427,385 - 3403: 428,384 - 3404: 429,384 - 3405: 429,385 - 3406: 430,385 - 3407: 430,384 - 3408: 430,383 - 3411: 432,383 - 3414: 431,384 - 3415: 431,385 - 3416: 432,385 - 3417: 432,384 - 3418: 433,384 - 3419: 433,385 - 3420: 433,386 - 3421: 432,386 - 3422: 431,386 - 3423: 431,387 - 3424: 432,387 - 3425: 433,387 - 3426: 434,387 - 3427: 434,386 - 3428: 434,385 - 3429: 435,385 - 3430: 435,386 - 3431: 435,387 - 3432: 436,386 - 3433: 436,385 - 3434: 436,384 - 3435: 435,384 - 3436: 435,388 - 3437: 434,388 - 3438: 433,388 - 3439: 431,389 - 3440: 432,389 - 3441: 433,389 - 3442: 433,389 - 3443: 434,389 - 3444: 435,389 - 3445: 435,391 - 3446: 435,392 - 3447: 436,392 - 3448: 436,393 - 3449: 435,393 - 3450: 434,393 - 3451: 434,392 - 3452: 434,391 - 3453: 433,391 - 3454: 433,392 - 3455: 433,393 - 3456: 433,394 - 3457: 433,395 - 3458: 433,396 - 3459: 433,397 - 3460: 434,397 - 3461: 434,396 - 3462: 434,395 - 3463: 435,395 - 3464: 435,396 - 3465: 435,397 - 3466: 434,398 - 3467: 434,399 - 3468: 433,399 - 3469: 433,400 - 3470: 433,401 - 3471: 433,402 - 3472: 433,403 - 3473: 433,404 - 3474: 434,404 - 3475: 434,403 - 3476: 434,403 - 3477: 434,402 - 3478: 434,401 - 3479: 434,400 - 3480: 434,405 - 3481: 433,405 - 3482: 434,406 - 3483: 433,406 - 3484: 433,409 - 3485: 432,409 - 3486: 432,410 - 3487: 433,410 - 3488: 433,411 - 3489: 432,411 - 3490: 432,412 - 3491: 432,413 - 3492: 432,414 - 3493: 432,415 - 3494: 433,415 - 3495: 434,415 - 3496: 434,414 - 3497: 434,413 - 3498: 434,416 - 3499: 434,417 - 3500: 434,418 - 3501: 433,418 - 3502: 432,418 - 3503: 432,417 - 3504: 432,416 - 3505: 432,419 - 3506: 431,418 - 3507: 430,418 - 3508: 429,418 - 3509: 429,419 - 3510: 430,419 - 3511: 428,419 - 3512: 427,419 - 3513: 427,418 - 3514: 426,418 - 3515: 426,419 - 3516: 425,419 - 3517: 425,418 - 3518: 424,418 - 3519: 424,419 - 3520: 424,419 - 3521: 423,418 - 3522: 422,418 - 3523: 421,418 - 3524: 420,418 - 3525: 419,418 - 3526: 419,419 - 3527: 420,419 - 3528: 420,420 - 3529: 419,420 - 3530: 418,419 - 3531: 419,421 - 3532: 419,422 - 3533: 420,422 - 3534: 421,422 - 3535: 422,422 - 3536: 422,421 - 3537: 422,420 - 3538: 422,423 - 3539: 422,424 - 3540: 421,424 - 3541: 421,425 - 3542: 422,425 - 3543: 422,426 - 3544: 421,426 - 3545: 419,423 - 3546: 419,424 - 3547: 419,425 - 3548: 419,426 - 3549: 418,426 - 3550: 418,425 - 3551: 418,424 - 3552: 417,424 - 3553: 417,425 - 3554: 417,426 - 3555: 416,426 - 3556: 416,425 - 3557: 416,424 - 3558: 415,424 - 3559: 415,425 - 3560: 415,426 - 3561: 414,424 - 3562: 413,424 - 3563: 413,425 - 3564: 413,426 - 3565: 412,425 - 3566: 411,425 - 3567: 411,426 - 3568: 412,424 - 3569: 411,424 - 3570: 410,424 - 3571: 410,425 - 3572: 409,424 - 3573: 409,424 - 3574: 408,424 - 3575: 408,425 - 3576: 409,425 - 3577: 407,424 - 3578: 407,425 - 3579: 406,424 - 3580: 405,424 - 3581: 409,423 - 3582: 405,425 - 3583: 404,425 - 3584: 404,426 - 3585: 402,426 - 3586: 403,426 - 3587: 403,425 - 3588: 403,424 - 3589: 402,424 - 3590: 401,424 - 3591: 400,424 - 3592: 399,424 - 3593: 398,424 - 3594: 401,423 - 3595: 397,424 - 3596: 396,424 - 3597: 395,424 - 3598: 396,423 - 3599: 394,424 - 3600: 393,424 - 3601: 393,423 - 3602: 392,423 - 3603: 392,424 - 3604: 393,422 - 3605: 393,421 - 3606: 392,421 - 3607: 391,421 - 3608: 390,421 - 3609: 389,421 - 3610: 390,420 - 3611: 390,419 - 3612: 389,419 - 3613: 390,418 - 3614: 390,417 - 3615: 390,416 - 3616: 391,418 - 3617: 392,418 - 3618: 393,418 - 3619: 393,419 - 3620: 392,419 - 3621: 390,415 - 3622: 390,414 - 3623: 389,414 - 3624: 390,413 - 6011: 334,380 - 6012: 334,379 - 6013: 335,379 - 6014: 335,380 - 6015: 336,380 - 6016: 336,379 - 6017: 338,379 - 6018: 338,380 - 6019: 320,428 - 6020: 321,428 - 6021: 321,429 - 6022: 320,429 - 6023: 321,430 - 6024: 320,430 - 6025: 320,430 - 6026: 319,430 - 6027: 318,430 - 6490: 310,403 - 6491: 309,403 - 6492: 306,402 - 6493: 305,402 - 6494: 305,403 - 6495: 304,403 - 6496: 300,407 - 6497: 300,415 - 6498: 299,415 - 6499: 302,416 - 6500: 299,424 - 6501: 299,425 - 6502: 309,429 - 6503: 313,424 - 6504: 314,424 - 6505: 314,417 - 6506: 318,412 - 6507: 317,412 - 6508: 317,410 - 6509: 323,410 - 6510: 323,410 - 6511: 317,412 - 6515: 315,407 - 6516: 315,406 + 6066: -20,-3 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: Dirt + color: '#A4610696' + id: BrickTileWhiteCornerNw decals: - 6922: 336,445 - 6923: 336,448 - 6924: 334,446 - 6925: 335,445 - 6926: 334,449 - 6927: 333,448 - 6928: 337,451 - 6929: 336,452 - 6930: 338,451 - 6931: 339,451 - 6932: 337,449 - 6933: 339,444 - 6934: 334,444 - 6935: 333,445 - 6936: 333,444 - 6937: 337,453 - 6938: 333,453 + 6784: -97,12 - node: - cleanable: True - zIndex: 3 - color: '#FFFFFFFF' - id: Dirt + color: '#D381C996' + id: BrickTileWhiteCornerNw decals: - 5991: 424,372 - 5992: 424,373 - 5993: 424,374 - 5994: 424,375 - 5995: 425,375 - 5996: 425,374 - 5997: 425,373 - 5998: 425,372 - 5999: 426,372 - 6000: 426,373 - 6001: 426,374 - 6002: 426,375 - 6003: 427,375 - 6004: 427,374 - 6005: 427,373 - 6006: 427,372 - 6007: 428,372 - 6008: 428,373 - 6009: 428,374 - 6010: 428,375 + 2497: -123,-44 + 6386: -151,-48 + 6402: -143,-39 + 6418: -137,-39 + 6465: -143,-43 + 6985: -124,-80 + 7022: -124,-71 - node: - cleanable: True - zIndex: 5 - color: '#FFFFFFFF' - id: Dirt + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw decals: - 6436: 341,442 - 6437: 342,439 - 6438: 338,440 - 6439: 335,441 - 6440: 332,441 - 6441: 335,439 - 6442: 333,438 - 6443: 331,437 - 6444: 331,442 - 6445: 334,440 + 1709: -101,-31 + 1710: -101,-27 + 1711: -101,-23 - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy + color: '#334E6DC8' + id: BrickTileWhiteCornerSe decals: - 6512: 318,412 - 6513: 317,410 - 6514: 315,406 + 6038: -35,-10 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: DirtHeavy + color: '#52B4E996' + id: BrickTileWhiteCornerSe decals: - 6939: 333,451 - 6940: 334,453 + 5549: -33,-43 - node: - cleanable: True - zIndex: 5 - color: '#FFFFFFFF' - id: DirtHeavy + color: '#8C347F96' + id: BrickTileWhiteCornerSe decals: - 6446: 338,441 - 6447: 333,442 - 6448: 333,437 - 6449: 336,442 - 6454: 338,437 + 6072: -18,-7 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: DirtHeavyMonotile + color: '#A4610696' + id: BrickTileWhiteCornerSe decals: - 6941: 333,447 - 6942: 335,444 - 6943: 341,446 - 6944: 340,449 - 6945: 336,449 - 6946: 339,451 - 6947: 341,446 - 6948: 338,445 - 6950: 335,445 - 6951: 333,444 + 6778: -99,13 + 6779: -94,7 - node: - cleanable: True - zIndex: 5 - color: '#FFFFFFFF' - id: DirtHeavyMonotile + color: '#D381C996' + id: BrickTileWhiteCornerSe decals: - 6450: 341,441 - 6451: 342,439 - 6452: 342,436 - 6453: 339,436 + 2507: -113,-48 + 6385: -145,-44 + 6403: -139,-41 + 6421: -125,-41 + 6466: -142,-49 + 6987: -118,-87 - node: - cleanable: True - zIndex: 2 - color: '#FFFFFFFF' - id: DirtLight + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe decals: - 6952: 335,451 - 6953: 339,451 + 1712: -99,-25 + 1713: -99,-29 + 1714: -99,-33 - node: - zIndex: 1 - color: '#3535358E' - id: FullTileOverlayGreyscale + color: '#FA750096' + id: BrickTileWhiteCornerSe decals: - 439: 374,377 - 440: 375,377 - 607: 419,376 - 608: 418,376 - 2572: 410,373 - 2573: 411,373 - 2574: 412,373 - 2575: 417,373 - 2576: 418,373 - 2577: 419,373 + 550: -37,-26 - node: - color: '#D381C996' - id: FullTileOverlayGreyscale + color: '#334E6DC8' + id: BrickTileWhiteCornerSw decals: - 6645: 352,392 + 6037: -37,-10 - node: - zIndex: 1 - color: '#D381C996' - id: FullTileOverlayGreyscale + color: '#52B4E996' + id: BrickTileWhiteCornerSw decals: - 6628: 351,391 - 6629: 350,391 - 6630: 350,392 - 6631: 350,393 - 6632: 351,393 - 6633: 352,393 - 6635: 352,391 + 5517: -35,-38 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: Grassb1 + color: '#8C347F96' + id: BrickTileWhiteCornerSw decals: - 7027: 417,365 + 6074: -20,-7 - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale + color: '#A4610696' + id: BrickTileWhiteCornerSw decals: - 1248: 396,412 + 6767: -104,13 + 6780: -97,7 - node: - zIndex: 1 - color: '#334E6DC8' - id: HalfTileOverlayGreyscale + color: '#D381C996' + id: BrickTileWhiteCornerSw decals: - 1751: 429,387 - 1881: 382,416 - 1882: 383,416 - 1883: 375,416 - 1884: 376,416 - 2085: 381,406 - 2086: 380,406 - 2087: 379,406 - 2088: 378,406 - 2089: 377,406 - 2096: 368,411 - 2121: 364,411 - 2127: 364,414 - 2137: 331,400 - 2138: 332,400 - 2139: 333,400 - 2140: 334,400 - 2160: 327,398 - 2537: 372,395 - 2893: 303,411 + 2500: -123,-48 + 6384: -151,-44 + 6405: -143,-41 + 6419: -137,-41 + 6464: -143,-49 + 6988: -124,-87 + 7023: -124,-75 - node: - zIndex: 1 - color: '#3535358E' - id: HalfTileOverlayGreyscale + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw decals: - 450: 380,395 - 451: 381,395 - 452: 382,395 - 453: 383,395 - 454: 384,395 - 455: 385,395 + 1715: -101,-33 + 1716: -101,-29 + 1717: -101,-25 - node: - zIndex: 1 - color: '#3EB38896' - id: HalfTileOverlayGreyscale + color: '#334E6DC8' + id: BrickTileWhiteInnerNe decals: - 2264: 329,416 - 2265: 330,416 - 2266: 331,416 - 2267: 332,416 - 2268: 333,416 - 2273: 335,413 - 2274: 337,413 - 2275: 338,413 - 2276: 340,413 - 2277: 341,413 - 2289: 343,413 - 2290: 344,413 - 2307: 337,417 - 2308: 338,417 - 2309: 339,417 - 2310: 340,417 - 2311: 341,417 - 2335: 326,420 - 2336: 324,420 - 2337: 322,420 - 2338: 320,420 - 2593: 410,361 - 2594: 411,361 - 2595: 412,361 + 2488: -61,6 + 6011: -35,-5 - node: color: '#52B4E996' - id: HalfTileOverlayGreyscale + id: BrickTileWhiteInnerNe decals: - 1187: 406,415 - 1263: 400,406 - 1348: 407,422 - 1349: 408,422 - 1357: 399,420 + 6610: -89,-3 - node: - color: '#79150096' - id: HalfTileOverlayGreyscale + color: '#9FED5896' + id: BrickTileWhiteInnerNe decals: - 1391: 415,407 + 1212: -55,-25 + 6606: -89,-5 - node: - zIndex: 1 - color: '#79150096' - id: HalfTileOverlayGreyscale + color: '#A4610696' + id: BrickTileWhiteInnerNe decals: - 1136: 414,387 - 1137: 415,387 - 1138: 416,387 + 6597: -86,-5 - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale + color: '#D381C996' + id: BrickTileWhiteInnerNe decals: - 1268: 412,414 + 6616: -86,-3 + 7040: -121,-80 + 7041: -121,-77 + 7042: -121,-71 + 7043: -121,-66 - node: - zIndex: 1 - color: '#9FED5896' - id: HalfTileOverlayGreyscale + color: '#EFB34196' + id: BrickTileWhiteInnerNe decals: - 1066: 420,351 - 1067: 419,351 - 1068: 417,351 - 1069: 418,351 - 1073: 415,354 - 2557: 400,369 + 6315: -142,-21 - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale + color: '#334E6DC8' + id: BrickTileWhiteInnerNw decals: - 1340: 416,422 + 2489: -63,6 - node: - zIndex: 1 - color: '#D381C996' - id: HalfTileOverlayGreyscale + color: '#52B4E996' + id: BrickTileWhiteInnerNw decals: - 2366: 345,391 - 2374: 342,392 - 2377: 347,387 - 2378: 348,387 - 2379: 349,387 - 2380: 350,387 - 2381: 351,387 - 2382: 352,387 - 2630: 358,395 - 2631: 357,395 - 2632: 356,395 - 2633: 355,395 - 2634: 354,395 - 2640: 351,398 + 6613: -86,-3 - node: - zIndex: 1 - color: '#D4D4D428' - id: HalfTileOverlayGreyscale + color: '#9FED5896' + id: BrickTileWhiteInnerNw decals: - 1969: 367,423 - 2560: 410,370 - 2561: 411,370 - 2562: 412,370 - 2563: 417,370 - 2564: 418,370 - 2565: 419,370 - 2566: 419,367 - 2567: 418,367 - 2568: 417,367 - 2569: 412,367 - 2570: 411,367 - 2571: 410,367 + 1211: -51,-25 + 6603: -86,-5 - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale + color: '#A4610696' + id: BrickTileWhiteInnerNw decals: - 1375: 412,411 + 6596: -83,-5 - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale + color: '#D381C996' + id: BrickTileWhiteInnerNw decals: - 1499: 445,404 - 1500: 444,404 - 1529: 437,410 - 1530: 436,410 - 1705: 423,405 - 1708: 421,404 - 1711: 419,405 + 6619: -83,-3 + 7036: -121,-66 + 7037: -121,-71 + 7038: -121,-77 + 7039: -121,-80 - node: - zIndex: 1 color: '#EFB34196' - id: HalfTileOverlayGreyscale + id: BrickTileWhiteInnerNw decals: - 1566: 459,401 - 1567: 458,401 - 1568: 457,401 - 1569: 456,401 - 1576: 455,406 - 1581: 452,401 - 1582: 453,401 - 1583: 454,401 - 1589: 451,406 - 1591: 449,405 - 1603: 463,406 - 1604: 462,406 - 2214: 336,406 - 2215: 337,406 - 2216: 338,406 - 2217: 339,406 - 2218: 340,406 - 2232: 331,411 - 2233: 330,411 - 2251: 348,415 - 2252: 349,415 - 2257: 350,409 - 2331: 319,420 - 2332: 321,420 - 2333: 323,420 - 2334: 325,420 - 2829: 309,382 - 2830: 310,382 - 2831: 311,382 - 2832: 312,382 - 2833: 313,382 - 2834: 314,382 - 2835: 316,382 - 2836: 317,382 + 6314: -137,-21 - node: - zIndex: 1 color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 + id: BrickTileWhiteInnerSe decals: - 1750: 429,389 - 1771: 427,414 - 1772: 426,414 - 1773: 425,414 - 1774: 424,414 - 1775: 423,414 - 1888: 363,417 - 1889: 364,417 - 2069: 377,414 - 2072: 379,415 - 2075: 381,414 - 2103: 368,406 - 2114: 364,406 - 2128: 364,413 - 2147: 335,395 - 2148: 334,395 - 2149: 333,395 - 2150: 332,395 - 2164: 327,396 - 2532: 372,398 - 2897: 303,410 - 2902: 308,408 - 2903: 307,408 - 2904: 306,408 - 2922: 312,412 - 2923: 313,412 + 6002: -35,-7 - node: - zIndex: 1 - color: '#3EB38896' - id: HalfTileOverlayGreyscale180 + color: '#9FED5896' + id: BrickTileWhiteInnerSe decals: - 2283: 330,419 - 2284: 331,419 - 2285: 333,419 - 2286: 332,419 - 2287: 334,419 - 2288: 335,419 - 2291: 343,419 - 2292: 344,419 - 2293: 345,419 - 2294: 346,419 - 2295: 347,419 - 2296: 348,419 - 2313: 337,419 - 2314: 338,419 - 2315: 339,419 - 2316: 340,419 - 2317: 341,419 - 2339: 325,427 - 2340: 326,427 + 1180: -55,-20 + 6607: -89,-3 - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale180 + color: '#A4610696' + id: BrickTileWhiteInnerSe decals: - 1196: 406,417 - 1200: 408,418 - 1201: 409,418 - 1253: 400,412 - 1256: 401,410 - 1257: 400,410 - 1352: 407,420 - 1353: 408,420 - 1359: 399,422 + 6594: -86,-3 - node: - color: '#79150096' - id: HalfTileOverlayGreyscale180 + color: '#D381C996' + id: BrickTileWhiteInnerSe decals: - 1385: 415,411 + 7044: -121,-69 + 7045: -121,-75 + 7046: -121,-78 - node: - zIndex: 1 - color: '#79150096' - id: HalfTileOverlayGreyscale180 + color: '#D4D4D496' + id: BrickTileWhiteInnerSe decals: - 1129: 418,389 - 1130: 419,389 + 6576: -89,-5 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 6582: -86,-5 + 7075: -142,-14 - node: - zIndex: 1 color: '#9FED5896' - id: HalfTileOverlayGreyscale180 + id: BrickTileWhiteInnerSw decals: - 1050: 415,360 - 1051: 416,360 - 1052: 417,360 - 1053: 418,360 + 6601: -86,-3 - node: - zIndex: 3 color: '#A4610696' - id: HalfTileOverlayGreyscale180 + id: BrickTileWhiteInnerSw decals: - 6689: 356,379 + 6595: -83,-3 - node: color: '#D381C996' - id: HalfTileOverlayGreyscale180 + id: BrickTileWhiteInnerSw decals: - 1339: 416,421 + 7047: -121,-78 + 7048: -121,-75 + 7049: -121,-69 - node: - zIndex: 1 - color: '#D381C996' - id: HalfTileOverlayGreyscale180 + color: '#D4D4D496' + id: BrickTileWhiteInnerSw decals: - 2367: 345,395 - 2373: 342,395 - 2386: 349,389 - 2616: 351,400 - 2617: 352,400 - 2618: 353,400 - 2619: 354,400 - 2620: 355,400 - 2621: 356,400 - 2622: 357,400 - 2623: 358,400 + 6579: -86,-5 - node: - zIndex: 1 - color: '#D4D4D428' - id: HalfTileOverlayGreyscale180 + color: '#EFB34196' + id: BrickTileWhiteInnerSw decals: - 1973: 367,421 + 6585: -83,-5 + 7074: -137,-14 - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 + color: '#334E6DC8' + id: BrickTileWhiteLineE decals: - 1384: 412,406 + 130: -59,-1 + 160: -67,-10 + 161: -67,-9 + 162: -67,-8 + 163: -67,-7 + 164: -67,-6 + 165: -67,-5 + 166: -67,-4 + 167: -67,-3 + 168: -67,-2 + 169: -67,-1 + 170: -67,0 + 190: -56,0 + 191: -56,-1 + 192: -56,-2 + 193: -56,-3 + 194: -56,-4 + 195: -56,-5 + 196: -56,-6 + 197: -56,-7 + 198: -56,-8 + 199: -56,-9 + 200: -56,-10 + 2465: -56,2 + 2466: -56,3 + 2467: -56,4 + 2468: -56,5 + 6005: -35,-8 + 6008: -35,-4 + 6033: -35,-3 + 6036: -35,-9 + 6979: -86,0 + 6980: -86,1 + 6981: -86,2 - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 + color: '#52B4E996' + id: BrickTileWhiteLineE decals: - 1407: 419,391 - 1478: 427,408 - 1479: 428,408 - 1480: 429,408 - 1481: 430,408 - 1482: 431,408 - 1483: 432,408 - 1484: 433,408 - 1485: 434,408 - 1486: 436,408 - 1487: 437,408 - 1490: 442,408 - 1491: 443,408 - 1492: 444,408 - 1493: 445,408 - 1527: 440,413 - 1528: 441,413 - 1542: 445,412 - 1543: 444,412 - 1691: 419,399 - 1694: 421,400 - 1697: 423,399 - 1719: 421,393 + 5550: -33,-42 + 5551: -33,-41 + 6609: -89,-2 - node: - zIndex: 1 - color: '#EFB34196' - id: HalfTileOverlayGreyscale180 + color: '#8C347F96' + id: BrickTileWhiteLineE decals: - 1554: 457,412 - 1570: 456,403 - 1599: 462,409 - 1600: 463,409 - 1610: 459,416 - 1616: 455,416 - 1617: 452,416 - 2205: 336,408 - 2206: 338,408 - 2207: 339,408 - 2208: 341,408 - 2209: 342,408 - 2221: 335,410 - 2222: 336,410 - 2223: 337,410 - 2224: 339,410 - 2225: 338,410 - 2226: 340,410 - 2227: 341,410 - 2242: 347,411 - 2243: 348,411 - 2244: 349,411 - 2245: 350,411 - 2822: 309,384 - 2823: 310,384 - 2824: 311,384 - 2825: 312,384 - 2826: 313,384 - 2827: 314,384 - 2837: 316,384 - 2838: 317,384 + 6069: -18,-4 + 6070: -18,-5 + 6071: -18,-6 - node: - zIndex: 1 - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 + color: '#9FED5896' + id: BrickTileWhiteLineE decals: - 1766: 428,410 - 1767: 428,411 - 1768: 428,412 - 1769: 428,413 - 1864: 387,407 - 1865: 387,406 - 1874: 387,411 - 1875: 387,410 - 1876: 387,409 - 1877: 387,414 - 1878: 387,413 - 1891: 388,417 - 1894: 387,420 - 1895: 387,421 - 2053: 374,414 - 2054: 374,413 - 2063: 374,407 - 2064: 374,406 - 2077: 382,413 - 2078: 382,412 - 2082: 382,408 - 2083: 382,407 - 2098: 367,410 - 2099: 367,409 - 2100: 367,408 - 2101: 367,407 - 2116: 363,407 - 2117: 363,408 - 2118: 363,409 - 2119: 363,410 - 2154: 330,397 - 2155: 330,398 - 2156: 330,399 - 2165: 326,397 - 2687: 373,419 - 2699: 386,419 - 2905: 311,407 - 2906: 311,414 - 2911: 308,416 + 1176: -55,-24 + 1177: -55,-23 + 1178: -55,-22 + 1179: -55,-21 + 6608: -89,-4 - node: - zIndex: 1 - color: '#3EB38896' - id: HalfTileOverlayGreyscale270 + color: '#A4610696' + id: BrickTileWhiteLineE decals: - 2260: 332,414 - 2261: 332,413 - 2298: 349,418 - 2299: 351,422 - 2300: 351,421 - 2301: 351,424 - 2302: 351,425 + 6593: -86,-4 + 6768: -99,14 + 6786: -94,8 + 6787: -94,9 + 6788: -94,10 + 6789: -94,11 + 6793: -99,15 - node: - color: '#413A3AFF' - id: HalfTileOverlayGreyscale270 + color: '#D381C996' + id: BrickTileWhiteLineE decals: - 6528: 422,401 - 6529: 422,402 + 2508: -113,-46 + 6400: -145,-49 + 6401: -145,-43 + 6473: -142,-48 + 6474: -142,-47 + 6475: -142,-46 + 6476: -142,-45 + 6477: -142,-44 + 6615: -86,-2 + 7004: -118,-86 + 7005: -118,-85 + 7006: -118,-84 + 7007: -118,-83 + 7008: -118,-82 + 7009: -118,-81 + 7016: -118,-74 + 7017: -118,-73 + 7018: -118,-72 - node: - color: '#52B4E996' - id: HalfTileOverlayGreyscale270 + color: '#D4D4D496' + id: BrickTileWhiteLineE decals: - 1183: 405,413 - 1184: 405,414 - 1198: 405,418 - 1251: 399,413 - 1265: 401,407 - 1351: 406,421 - 1366: 397,417 - 1367: 397,418 - 1368: 397,419 + 6575: -89,-6 - node: - color: '#79150096' - id: HalfTileOverlayGreyscale270 + color: '#DE3A3A96' + id: BrickTileWhiteLineE decals: - 1387: 416,410 - 1388: 416,409 - 1389: 416,408 + 1721: -99,-32 + 1722: -99,-28 + 1723: -99,-24 - node: - zIndex: 1 - color: '#79150096' - id: HalfTileOverlayGreyscale270 + color: '#EFB34196' + id: BrickTileWhiteLineE decals: - 1126: 416,390 - 1132: 420,388 - 1133: 420,387 + 6265: -141,-22 + 6309: -142,-20 + 6310: -142,-19 + 6311: -142,-18 + 6312: -142,-17 + 6581: -86,-6 + 7068: -142,-16 + 7069: -142,-15 - node: - zIndex: 1 - color: '#9FED5896' - id: HalfTileOverlayGreyscale270 + color: '#FA750096' + id: BrickTileWhiteLineE decals: - 1055: 419,359 - 1056: 419,358 - 1057: 419,357 - 1061: 420,355 - 1063: 421,353 - 1064: 421,352 - 2555: 401,370 + 551: -37,-25 + 552: -37,-24 + 553: -37,-23 + 554: -37,-22 + 555: -37,-21 + 556: -37,-20 + 557: -37,-19 - node: - zIndex: 3 - color: '#A4610696' - id: HalfTileOverlayGreyscale270 + color: '#334E6DC8' + id: BrickTileWhiteLineN decals: - 6686: 355,381 - 6687: 355,380 + 88: -65,-8 + 93: -60,-8 + 94: -59,-8 + 97: -64,-8 + 126: -60,0 + 127: -61,0 + 128: -63,0 + 129: -64,0 + 2475: -67,6 + 2476: -66,6 + 2477: -65,6 + 2478: -64,6 + 2479: -60,6 + 2481: -59,6 + 2482: -58,6 + 2483: -57,6 + 2485: -62,7 + 6012: -34,-5 + 6013: -33,-5 + 6032: -36,-2 - node: - zIndex: 1 - color: '#D381C996' - id: HalfTileOverlayGreyscale270 + color: '#52B4E996' + id: BrickTileWhiteLineN decals: - 2357: 348,395 - 2358: 348,394 - 2359: 348,393 - 2360: 348,392 - 2361: 348,391 - 2389: 356,387 - 2390: 356,388 - 2391: 356,389 - 2625: 359,399 - 2626: 359,398 - 2627: 359,397 - 2628: 359,396 + 5520: -34,-36 + 5544: -34,-40 + 5546: -35,-40 + 6611: -88,-3 + 6612: -87,-3 - node: - zIndex: 1 - color: '#D4D4D428' - id: HalfTileOverlayGreyscale270 + color: '#8C347F96' + id: BrickTileWhiteLineN decals: - 1967: 366,422 + 6067: -19,-3 - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1213: -54,-25 + 1214: -53,-25 + 1215: -52,-25 + 6604: -87,-5 + 6605: -88,-5 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 6588: -85,-5 + 6589: -84,-5 + 6790: -95,12 + 6791: -96,12 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN decals: - 1380: 411,410 - 1381: 411,409 - 1382: 411,408 - 1383: 411,407 + 2491: -118,-44 + 2492: -117,-44 + 2493: -119,-44 + 2494: -120,-44 + 2495: -121,-44 + 2496: -122,-44 + 6388: -150,-48 + 6389: -148,-48 + 6390: -149,-48 + 6391: -147,-48 + 6392: -146,-48 + 6407: -142,-39 + 6408: -141,-39 + 6409: -140,-39 + 6422: -136,-39 + 6423: -135,-39 + 6424: -134,-39 + 6425: -133,-39 + 6426: -132,-39 + 6427: -131,-39 + 6428: -130,-39 + 6429: -129,-39 + 6430: -128,-39 + 6431: -127,-39 + 6432: -126,-39 + 6617: -85,-3 + 6618: -84,-3 + 6994: -123,-80 + 6995: -122,-80 + 6996: -120,-80 + 6997: -119,-80 + 7027: -123,-71 + 7028: -122,-71 + 7029: -120,-71 + 7030: -122,-66 + 7031: -120,-66 - node: - zIndex: 1 color: '#DE3A3A96' - id: HalfTileOverlayGreyscale270 + id: BrickTileWhiteLineN decals: - 1411: 424,392 - 1412: 424,393 - 1442: 430,404 - 1443: 430,400 - 1444: 430,396 - 1445: 430,392 - 1452: 426,405 - 1458: 426,401 - 1459: 426,400 - 1460: 426,399 - 1461: 426,398 - 1471: 426,394 - 1472: 426,393 - 1473: 426,392 - 1495: 446,407 - 1496: 446,406 - 1497: 446,405 - 1505: 443,402 - 1506: 443,401 - 1507: 443,399 - 1508: 443,398 - 1509: 443,396 - 1510: 443,395 - 1511: 443,394 - 1519: 442,410 - 1520: 442,411 - 1521: 442,412 - 1522: 442,413 - 1540: 446,411 - 1686: 418,400 - 1687: 418,401 - 1688: 418,402 - 1689: 418,403 - 1690: 418,404 - 1713: 416,405 - 1714: 416,404 - 1715: 416,403 - 2683: 422,401 + 1727: -100,-31 + 1728: -100,-27 + 1729: -100,-23 - node: - zIndex: 1 color: '#EFB34196' - id: HalfTileOverlayGreyscale270 + id: BrickTileWhiteLineN decals: - 1555: 460,412 - 1556: 460,411 - 1557: 460,410 - 1560: 460,406 - 1561: 460,405 - 1562: 460,404 - 1563: 460,403 - 1564: 460,402 - 1578: 454,405 - 1579: 454,404 - 1611: 460,415 - 1612: 460,414 - 1613: 456,414 - 1614: 456,415 - 1619: 453,415 - 1620: 453,414 - 2210: 343,407 - 2211: 343,406 - 2219: 334,411 - 2235: 329,410 - 2248: 346,412 - 2254: 351,415 - 6546: 347,414 + 6305: -138,-21 + 6306: -139,-21 + 6307: -140,-21 + 6308: -141,-21 - node: - zIndex: 1 color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 1777: 422,413 - 1866: 384,407 - 1867: 384,406 - 1879: 384,414 - 1880: 384,413 - 1886: 371,421 - 1887: 371,420 - 2055: 371,414 - 2056: 371,413 - 2061: 371,407 - 2062: 371,406 - 2066: 376,412 - 2067: 376,413 - 2091: 376,407 - 2092: 376,408 - 2105: 369,407 - 2106: 369,408 - 2107: 369,409 - 2108: 369,410 - 2109: 365,410 - 2110: 365,409 - 2111: 365,408 - 2112: 365,407 - 2158: 328,397 - 2534: 371,397 - 2535: 371,396 - 2538: 371,393 - 2539: 371,392 - 2540: 371,391 - 2691: 374,419 - 2692: 374,420 - 2695: 384,419 - 2696: 384,420 - 2910: 306,416 - - node: - zIndex: 1 - color: '#3EB38896' - id: HalfTileOverlayGreyscale90 + id: BrickTileWhiteLineS decals: - 2262: 329,414 - 2263: 329,413 - 2270: 334,415 - 2271: 334,414 - 2279: 328,417 - 2303: 328,421 - 2304: 328,420 - 2305: 328,423 - 2306: 328,424 + 205: -66,2 + 206: -65,2 + 207: -59,2 + 208: -58,2 + 6003: -34,-7 + 6004: -33,-7 + 6039: -36,-10 - node: color: '#52B4E996' - id: HalfTileOverlayGreyscale90 + id: BrickTileWhiteLineS decals: - 1189: 407,414 - 1190: 407,413 - 1255: 401,413 - 1259: 399,409 - 1260: 399,408 - 1261: 399,407 - 1350: 409,421 - 1360: 395,422 - 1361: 395,421 - 1362: 395,420 - 1363: 395,419 - 1364: 395,418 - 1365: 395,417 + 5521: -34,-38 + 5547: -35,-43 + 5548: -34,-43 - node: - zIndex: 1 - color: '#52B4E996' - id: HalfTileOverlayGreyscale90 + color: '#8C347F96' + id: BrickTileWhiteLineS decals: - 1594: 448,403 - 1595: 448,402 - 1596: 448,401 + 6073: -19,-7 - node: - zIndex: 1 color: '#9FED5896' - id: HalfTileOverlayGreyscale90 + id: BrickTileWhiteLineS decals: - 1044: 414,359 - 1045: 414,358 - 1046: 414,356 - 1047: 414,357 - 1048: 414,355 - 1071: 416,352 - 1072: 416,353 - 2559: 399,370 + 1181: -54,-20 + 6599: -88,-3 + 6600: -87,-3 + 7253: -53,-20 + 7254: -52,-20 - node: - zIndex: 1 - color: '#D381C996' - id: HalfTileOverlayGreyscale90 + color: '#A4610696' + id: BrickTileWhiteLineS decals: - 2362: 344,394 - 2363: 344,393 - 2364: 344,392 - 2371: 341,394 - 2372: 341,393 - 2614: 350,399 - 2636: 353,396 - 2637: 353,397 + 6590: -85,-3 + 6591: -84,-3 + 6774: -103,13 + 6775: -102,13 + 6776: -101,13 + 6777: -100,13 + 6781: -96,7 + 6782: -95,7 - node: - zIndex: 1 - color: '#D4D4D428' - id: HalfTileOverlayGreyscale90 + color: '#D381C996' + id: BrickTileWhiteLineS decals: - 1971: 368,422 + 2501: -122,-48 + 2502: -121,-48 + 2503: -120,-48 + 2504: -119,-48 + 2505: -118,-48 + 2506: -117,-48 + 6393: -150,-44 + 6394: -148,-44 + 6395: -149,-44 + 6396: -147,-44 + 6397: -146,-44 + 6410: -140,-41 + 6411: -141,-41 + 6433: -136,-41 + 6434: -135,-41 + 6435: -134,-41 + 6436: -133,-41 + 6437: -132,-41 + 6438: -131,-41 + 6439: -130,-41 + 6440: -129,-41 + 6441: -127,-41 + 6442: -126,-41 + 6989: -123,-87 + 6990: -122,-87 + 6991: -121,-87 + 6992: -120,-87 + 6993: -119,-87 + 7024: -123,-75 + 7025: -122,-75 + 7026: -120,-75 + 7032: -122,-69 + 7033: -120,-69 + 7034: -118,-69 + 7035: -119,-69 - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 + color: '#D4D4D496' + id: BrickTileWhiteLineS decals: - 1376: 413,410 - 1377: 413,409 - 1378: 413,408 - 1379: 413,407 + 6577: -88,-5 + 6598: -87,-5 - node: - zIndex: 1 color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 + id: BrickTileWhiteLineS decals: - 1455: 428,402 - 1468: 428,398 - 1469: 428,394 - 1503: 441,405 - 1512: 441,396 - 1513: 441,395 - 1514: 441,394 - 1515: 441,398 - 1516: 441,399 - 1517: 441,401 - 1518: 441,402 - 1523: 439,410 - 1524: 439,411 - 1525: 439,412 - 1532: 435,411 - 1699: 424,400 - 1700: 424,401 - 1701: 424,402 - 1702: 424,403 - 1703: 424,404 - 1717: 422,394 - 2678: 420,402 + 1730: -100,-25 + 1731: -100,-29 + 1732: -100,-33 - node: - zIndex: 1 color: '#EFB34196' - id: HalfTileOverlayGreyscale90 + id: BrickTileWhiteLineS decals: - 1546: 448,410 - 1547: 448,411 - 1548: 448,412 - 1572: 457,404 - 1585: 452,404 - 1586: 452,405 - 1606: 458,415 - 1607: 458,414 - 2198: 330,406 - 2199: 330,407 - 2200: 330,408 - 2201: 333,406 - 2202: 333,407 - 2203: 333,408 - 2229: 342,411 - 2230: 332,410 - 2247: 351,412 + 6583: -85,-5 + 6584: -84,-5 + 7070: -141,-14 + 7071: -140,-14 + 7072: -139,-14 + 7073: -138,-14 - node: - zIndex: 1 - color: '#3EB38896' - id: HerringboneOverlay + color: '#334E6DC8' + id: BrickTileWhiteLineW decals: - 1858: 414,379 - 1859: 414,378 - 1860: 416,379 - 1861: 416,378 + 131: -65,-1 + 147: -68,-8 + 148: -68,-7 + 149: -68,-6 + 150: -68,-5 + 152: -68,-4 + 153: -68,-3 + 154: -68,-2 + 155: -68,-1 + 157: -68,0 + 158: -68,-10 + 159: -68,-9 + 178: -57,-10 + 179: -57,-9 + 180: -57,-8 + 181: -57,-7 + 182: -57,-6 + 183: -57,-5 + 184: -57,-5 + 185: -57,-4 + 186: -57,-3 + 187: -57,-2 + 188: -57,-1 + 189: -57,0 + 2471: -68,2 + 2472: -68,3 + 2473: -68,4 + 2474: -68,5 + 6016: -37,-8 + 6017: -37,-7 + 6018: -37,-6 + 6021: -37,-5 + 6022: -37,-4 + 6034: -37,-3 + 6035: -37,-9 - node: color: '#52B4E996' - id: HerringboneOverlay + id: BrickTileWhiteLineW + decals: + 5519: -35,-37 + 6614: -86,-2 + - node: + color: '#8C347F96' + id: BrickTileWhiteLineW + decals: + 6075: -20,-6 + 6076: -20,-5 + 6077: -20,-4 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW decals: - 1342: 404,421 + 1173: -51,-24 + 1174: -51,-23 + 6602: -86,-4 + 6807: -51,-22 + 7255: -51,-21 - node: - zIndex: 1 color: '#A4610696' - id: HerringboneOverlay + id: BrickTileWhiteLineW decals: - 2460: 365,380 - 2461: 365,381 - 2462: 366,381 - 2463: 367,381 - 2464: 368,381 - 2465: 369,381 - 2466: 370,381 + 6592: -83,-4 + 6771: -104,14 + 6783: -97,8 + 6792: -104,15 - node: color: '#D381C996' - id: HerringboneOverlay + id: BrickTileWhiteLineW decals: - 1341: 404,422 - 1343: 404,420 + 2498: -123,-45 + 2499: -123,-47 + 6398: -151,-43 + 6399: -151,-49 + 6406: -143,-40 + 6468: -143,-44 + 6469: -143,-45 + 6470: -143,-46 + 6471: -143,-47 + 6472: -143,-48 + 6620: -83,-2 + 6998: -124,-81 + 6999: -124,-82 + 7000: -124,-83 + 7001: -124,-84 + 7002: -124,-85 + 7003: -124,-86 + 7019: -124,-74 + 7020: -124,-73 + 7021: -124,-72 - node: - zIndex: 1 - color: '#3EB38896' - id: MiniTileCheckerAOverlay + color: '#D4D4D496' + id: BrickTileWhiteLineW decals: - 2318: 326,417 + 6580: -86,-6 - node: - zIndex: 1 - color: '#D381C996' - id: MiniTileCheckerAOverlay + color: '#DE3A3A96' + id: BrickTileWhiteLineW decals: - 6636: 351,392 + 1724: -101,-24 + 1725: -101,-28 + 1726: -101,-32 + 6982: -86,0 + 6983: -86,1 + 6984: -86,2 - node: - zIndex: 1 color: '#EFB34196' - id: MiniTileCheckerAOverlay + id: BrickTileWhiteLineW decals: - 2240: 344,411 + 2210: -137,-19 + 2211: -137,-18 + 2212: -137,-17 + 2213: -137,-16 + 6271: -137,-22 + 6274: -137,-20 + 6587: -83,-6 + 7067: -137,-15 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileDarkBox + color: '#FA750096' + id: BrickTileWhiteLineW decals: - 6041: 359,391 - 6043: 364,389 - 6044: 362,387 - 6045: 359,383 - 6046: 357,381 - 6047: 359,379 - 6048: 357,381 - 6049: 354,381 - 6050: 366,382 - 6051: 373,388 - 6091: 347,413 - 6092: 350,415 - 6120: 391,407 - 6121: 391,411 - 6122: 396,408 - 6123: 392,405 - 6124: 393,405 - 6131: 362,394 - 6140: 339,400 - 6153: 408,405 - 6172: 415,394 - 6173: 413,392 - 6174: 412,394 - 6175: 410,392 - 6176: 410,388 - 6183: 404,394 - 6184: 417,392 - 6185: 421,396 - 6201: 415,383 - 6202: 415,380 - 6203: 413,382 - 6204: 408,386 - 6205: 408,383 - 6206: 406,375 - 6207: 406,380 - 6208: 404,377 - 6209: 406,371 - 6210: 409,371 - 6211: 409,368 - 6212: 408,373 - 6213: 415,373 - 6214: 416,371 - 6215: 416,368 - 6216: 415,366 - 6246: 446,418 - 6247: 451,420 - 6249: 449,404 - 6250: 451,402 - 6251: 455,402 - 6252: 461,408 - 6253: 452,413 - 6254: 455,413 - 6267: 318,387 - 6268: 308,383 + 559: -41,-24 + 560: -41,-23 + 561: -41,-22 + 562: -41,-21 + 563: -41,-20 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkEndE + id: BushAOne decals: - 6130: 362,401 - 6134: 335,401 - 6139: 344,400 - 6189: 420,406 - 6244: 450,413 + 1316: -106,3 + 1317: -105,1 + 1324: -102,-11 + 1340: -106,-9 + 1349: -100,-13 + 1357: -103,1 + 1383: -106,-22 + 1394: -106,-39 + 1396: -106,-43 + 1464: -111,-10 + 1472: -123,-13 + 1481: -126,-9 + 1489: -119,-20 + 1589: -40,-16 + 1590: -37,-16 + 1609: -23,-15 + 1610: -25,-13 + 1611: -20,-16 + 1622: -50,-62 + 1881: -81,-47 + 1884: -81,-46 + 1917: -83,-49 + 2130: -109,5 + 2131: -113,5 + 2141: -109,11 + 2145: -113,11 + 2153: -132,4 + 2888: -100,-58 + 2896: -85,-56 + 2900: -81,-58 + 2902: -82,-56 + 2908: -85,-59 + 5484: -33,-72 + 5569: -50,-66 + 5570: -76,-69 + 5916: -132,15 + 6107: -71,-47 + 6111: -66,-38 + 6116: -59,-45 + 6718: -75,-27 + 7059: -103,-55 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkEndN + id: BushAThree decals: - 6177: 413,390 - 6262: 328,387 - 6264: 322,387 + 1275: -70.94724,-48.08919 + 1276: -62.98816,-38.020138 + 1315: -106,0 + 1366: -103,-6 + 1367: -88,-13 + 1612: -21,-13 + 1613: -19,-13 + 1614: -19,-16 + 1623: -45,-61 + 2132: -110,5 + 2140: -108,10 + 2146: -112,11 + 2147: -126,0 + 2871: -38,17 + 2873: -31,-8 + 5567: -105,-23 + 5568: -52,-67 + 5911: -128,20 + 6824: -131,-30 + 6975: -17,-63 + 6976: -15,-62 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkEndS + id: BushATwo decals: - 6178: 413,388 - 6265: 322,386 - 6266: 328,386 + 1280: -59.994514,-48.01404 + 6828: -132,-30 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkEndW + id: BushCOne decals: - 6129: 361,401 - 6137: 333,401 - 6138: 343,400 - 6188: 419,406 - 6245: 449,413 + 2134: -114,3 + 2157: -132,11 + 2875: -31,-4 + 2878: -29,-10 + 2894: -90,-56 + 2904: -80,-56 + 2905: -80,-58 + 2912: -136,5 + 5472: -14,-51 + 5491: -28,-73 + 6113: -61,-39 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkLineE + id: BushCThree decals: - 6180: 413,389 + 1293: -54,-17 + 1297: -50,-12 + 1298: -70,-16 + 1483: -122,-9 + 1595: -34,-13 + 2934: -92,21 + 5578: -73,-76 + 6977: -17,-58 + 6978: -14,-57 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkLineN + id: BushCTwo decals: - 6135: 334,401 + 1300: -54,-16 + 1301: -56,-17 + 1302: -68,-17 + 1329: -102,-13 + 1333: -102,-17 + 2133: -114,1 + 2156: -132,9 + 2159: -108,9 + 2874: -29,-5 + 2895: -86,-58 + 2933: -90,20 + 5471: -14,-49 + 5557: -54,-67 + 5564: -106,-24 + 5574: -74,-68 + 5575: -73,-72 + 5579: -75,-78 + 5917: -130,15 + 7060: -102,-54 + 7063: -102,-56 + 7064: -95,-58 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkLineS + id: Busha1 decals: - 6136: 334,401 + 1400: -106,-53 + 1901: -88,-51 + 2149: -130,-1 + 5467: -14,-46 + 5919: -128,15 + 6719: -72,-27 + 6825: -133,-29 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileDarkLineW + id: Busha2 decals: - 6179: 413,389 + 1274: -69.85349,-49.073566 + 1277: -57.213264,-44.135765 + 1278: -60.04139,-41.073265 + 1295: -53,-17 + 1337: -105,-18 + 1359: -101,4 + 1360: -103,6 + 1364: -100,10 + 1365: -103,-8 + 1376: -81,-13 + 1386: -103,-29 + 1395: -106,-41 + 1403: -107,-32 + 1465: -108,-9 + 1466: -112,-12 + 1605: -34,-15 + 1606: -36,-16 + 1616: -51,-59 + 1624: -48,-59 + 1875: -84,-51 + 1916: -82,-48 + 2128: -108,0 + 2129: -108,3 + 2152: -132,2 + 2869: -38,14 + 2881: -31,-1 + 2889: -103,-58 + 5488: -31,-72 + 5558: -53,-66 + 5572: -74,-69 + 5580: -73,-78 + 5914: -129,20 + 5915: -132,13 + 5943: -103,-42 + 6105: -72,-42 + 6108: -69,-41 + 6117: -57,-48 + 6717: -72,-25 + 6820: -122,-32 + 6823: -126,-29 + 6973: -19,-59 + 7058: -103,-53 - node: - zIndex: 1 - color: '#79150096' - id: MiniTileInnerOverlaySE + cleanable: True + color: '#FFFFFFFF' + id: Busha2 decals: - 6347: 338,440 + 5967: -103,-49 - node: - zIndex: 1 - color: '#791500FF' - id: MiniTileInnerOverlaySE + color: '#FFFFFFFF' + id: Busha3 decals: - 6353: 338,440 - 6356: 341,440 + 1326: -101,-9 + 1341: -105,-8 + 1350: -97,-13 + 1351: -95,-13 + 1370: -85,-13 + 1372: -83,-15 + 1382: -106,-26 + 1463: -113,-9 + 1476: -129,-13 + 1490: -119,-22 + 1493: -119,-25 + 1600: -26,-13 + 1617: -49,-61 + 1618: -49,-59 + 1635: -104,-49 + 1910: -88,-49 + 2137: -108,-1 + 2142: -111,11 + 2150: -128,-1 + 2870: -38,16 + 2885: -104,-56 + 2897: -87,-56 + 2901: -83,-58 + 2923: -93,22 + 2926: -89,18 + 2927: -89,21 + 5474: -14,-55 + 5487: -29,-72 + 5496: -120,-33 + 5497: -119,-30 + 5566: -105,-25 + 5571: -73,-68 + 5909: -133,18 + 5912: -133,20 + 5913: -131,19 + 5918: -127,15 + 6106: -70,-43 + 6115: -59,-44 + 6716: -72,-28 + 6827: -130,-29 + 6974: -18,-62 + 7224: -136,7 - node: - zIndex: 1 - color: '#79150096' - id: MiniTileInnerOverlaySW + color: '#FFFFFFFF' + id: Bushb1 decals: - 6348: 341,440 + 1327: -100,-11 + 1339: -106,-10 + 1381: -107,-29 + 1385: -103,-31 + 1389: -106,-32 + 1593: -41,-13 + 1594: -34,-16 + 2930: -93,19 + 5469: -14,-48 + 5485: -36,-74 + 5573: -75,-68 + 5577: -76,-73 + 6830: -128,-29 + 7062: -104,-52 - node: - zIndex: 1 - color: '#791500FF' - id: MiniTileInnerOverlaySW + color: '#FFFFFFFF' + id: Bushb2 decals: - 6349: 341,440 + 1279: -56.94764,-48.998417 + 1294: -52,-16 + 1314: -106,-3 + 1342: -105,-7 + 1343: -98,-15 + 1354: -103,-5 + 1355: -103,-2 + 1373: -86,-15 + 1374: -82,-13 + 1377: -79,-15 + 1378: -78,-13 + 1379: -107,-25 + 1399: -106,-50 + 1469: -108,-13 + 1470: -109,-10 + 1474: -128,-13 + 1479: -127,-9 + 1601: -27,-16 + 1630: -103,-45 + 2135: -113,-1 + 2136: -110,-1 + 2144: -114,7 + 2154: -132,7 + 2882: -31,-2 + 2893: -92,-58 + 2898: -88,-58 + 2907: -85,-60 + 2932: -88,16 + 5473: -14,-53 + 5479: -14,-52 + 5480: -34,-73 + 5493: -31,-74 + 5494: -30,-73 + 5961: -79,-56 - node: - zIndex: 1 - color: '#79150096' - id: MiniTileLineOverlayE + color: '#FFFFFFFF' + id: Bushb3 decals: - 6346: 338,439 + 1296: -55,-12 + 1304: -69,-12 + 1318: -105,3 + 1338: -105,-20 + 1358: -103,3 + 1368: -89,-15 + 1390: -107,-34 + 1391: -106,-36 + 1404: -106,-31 + 1461: -104,8 + 1467: -113,-13 + 1468: -110,-12 + 1473: -125,-13 + 1477: -131,-13 + 1478: -129,-9 + 1482: -123,-9 + 1486: -119,-15 + 1591: -38,-16 + 1592: -39,-13 + 1608: -27,-13 + 1621: -46,-62 + 1904: -82,-46 + 2143: -114,9 + 2151: -132,0 + 2890: -97,-56 + 2924: -94,21 + 2925: -91,22 + 2931: -92,16 + 5468: -13,-48 + 5476: -17,-59 + 5481: -36,-75 + 5482: -35,-74 + 5492: -28,-71 + 5576: -72,-74 + 5908: -132,19 + 5942: -103,-43 + 6821: -123,-29 + 6822: -122,-30 + 7256: -51,-20 + 7257: -53,-19 + 7258: -50,-22 - node: - zIndex: 1 - color: '#791500FF' - id: MiniTileLineOverlayE + cleanable: True + color: '#FFFFFFFF' + id: Bushb3 decals: - 6354: 338,439 - 6355: 341,439 + 5966: -103,-48 - node: - zIndex: 1 - color: '#3EB38896' - id: MiniTileLineOverlayN + color: '#FFFFFFFF' + id: Bushc1 decals: - 2320: 326,416 + 1281: -63.264427,-49.067772 + 1325: -103,-12 + 1344: -94,-15 + 1346: -103,-15 + 1347: -101,-15 + 1352: -92,-13 + 1362: -101,10 + 1369: -92,-15 + 1475: -127,-13 + 1598: -32,-16 + 1602: -28,-15 + 1603: -25,-15 + 1619: -47,-60 + 1620: -48,-61 + 2138: -108,6 + 2148: -127,-1 + 2155: -132,6 + 2879: -29,-7 + 2883: -29,-1 + 2884: -101,-55 + 2887: -107,-56 + 2929: -91,17 + 5565: -106,-23 + 6109: -65,-41 + 6112: -63,-41 + 6826: -129,-30 - node: - zIndex: 1 - color: '#3EB38896' - id: MiniTileLineOverlayS + color: '#FFFFFFFF' + id: Bushc2 decals: - 2319: 326,418 + 1375: -81,-15 + 1597: -32,-12 + 1599: -28,-12 + 1604: -29,-16 + 1912: -85,-50 + 1913: -87,-50 + 1915: -83,-47 + 2899: -83,-60 + 2928: -88,18 + 5470: -13,-50 + 5483: -35,-75 + 5561: -51,-66 + 5910: -131,20 + 6110: -67,-42 + 6723: -70,-41 - node: - zIndex: 1 - color: '#79150096' - id: MiniTileLineOverlayS + color: '#FFFFFFFF' + id: Bushc3 decals: - 6344: 340,440 - 6345: 339,440 + 1388: -103,-33 + 2913: -136,4 + 6114: -59,-42 - node: - zIndex: 1 - color: '#791500FF' - id: MiniTileLineOverlayS + color: '#FFFFFFFF' + id: Bushd4 decals: - 6351: 340,440 - 6352: 339,440 - 6357: 342,440 + 2842: -108,30 - node: - zIndex: 1 - color: '#79150096' - id: MiniTileLineOverlayW + color: '#FFFFFFFF' + id: Bushe1 decals: - 6343: 341,439 + 2841: -110,27 - node: - zIndex: 1 - color: '#791500FF' - id: MiniTileLineOverlayW + color: '#FFFFFFFF' + id: Bushe4 decals: - 6350: 341,439 + 2840: -109,28 + 6340: -106.982445,31.047379 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelBox + id: Bushg4 decals: - 6042: 358,401 - 6052: 372,394 - 6053: 373,396 - 6054: 370,396 - 6055: 363,397 - 6056: 358,394 - 6057: 360,397 - 6058: 355,394 - 6059: 357,392 - 6060: 353,392 - 6061: 355,390 - 6062: 357,389 - 6063: 355,386 - 6064: 353,388 - 6065: 352,384 - 6066: 351,390 - 6067: 347,390 - 6068: 345,389 - 6069: 343,389 - 6070: 346,393 - 6071: 343,393 - 6072: 347,396 - 6073: 345,398 - 6074: 349,399 - 6075: 347,401 - 6076: 331,405 - 6077: 330,403 - 6078: 329,406 - 6079: 332,406 - 6080: 331,409 - 6081: 334,409 - 6082: 333,410 - 6083: 333,411 - 6088: 343,411 - 6089: 345,411 - 6094: 350,410 - 6099: 375,410 - 6100: 370,410 - 6105: 383,410 - 6114: 379,416 - 6115: 367,418 - 6116: 364,421 - 6117: 366,410 - 6118: 364,412 - 6119: 366,413 - 6132: 329,397 - 6133: 331,401 - 6143: 404,405 - 6144: 404,412 - 6145: 402,409 - 6146: 402,413 - 6147: 402,416 - 6148: 404,419 - 6149: 403,421 - 6150: 405,421 - 6151: 398,421 - 6152: 408,412 - 6154: 410,417 - 6155: 410,414 - 6156: 414,414 - 6157: 414,418 - 6158: 414,420 - 6159: 398,415 - 6160: 394,415 - 6161: 412,405 - 6162: 414,411 - 6163: 417,404 - 6164: 421,410 - 6165: 423,406 - 6166: 419,398 - 6167: 419,394 - 6186: 423,398 - 6187: 425,403 - 6190: 425,396 - 6191: 423,390 - 6192: 427,390 - 6193: 428,388 - 6194: 429,392 - 6195: 429,396 - 6196: 429,400 - 6197: 429,404 - 6198: 427,406 - 6199: 427,409 - 6200: 425,410 - 6217: 402,373 - 6218: 413,362 - 6224: 416,361 - 6225: 422,351 - 6228: 425,355 - 6229: 423,361 - 6230: 425,361 - 6231: 421,361 - 6238: 442,403 - 6241: 442,393 - 6242: 440,409 - 6243: 438,411 - 6248: 449,422 - 6255: 459,413 - 6258: 359,383 - 6259: 359,379 - 6260: 357,381 - 6261: 354,381 - 6269: 315,383 - 6274: 298,383 - 6275: 311,411 - 6276: 310,412 - 6277: 309,413 - 6278: 305,413 - 6279: 304,412 - 6280: 306,411 - 6281: 308,411 - 6282: 304,409 - 6283: 305,407 - 6284: 309,407 - 6285: 310,409 - 6286: 307,415 - 6287: 307,417 - 6288: 307,419 - 6289: 308,424 - 6290: 306,424 - 6295: 327,417 - 6296: 325,417 - 6297: 323,419 - 6298: 327,424 - 6299: 320,427 + 2843: -109,29 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelEndE + id: Bushi1 decals: - 6220: 420,362 - 6257: 390,377 - 6293: 331,415 - 6294: 331,412 - 6318: 386,415 - 6319: 386,412 - 6320: 386,408 - 6321: 386,405 - 6322: 373,405 - 6323: 373,408 - 6324: 373,412 - 6325: 373,415 + 1284: -60.82099,-27.203562 + 1289: -61.930435,-28.141062 + 2845: -110,31 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelEndN + id: Bushi3 decals: - 6227: 422,354 - 6232: 438,408 - 6233: 435,408 - 6234: 447,408 - 6271: 304,388 + 1283: -63.03974,-27.328562 + 1285: -63.03974,-28.297312 + 1287: -60.961617,-29.062937 + 1288: -62.930435,-29.156687 + 2844: -111,29 + 2846: -108,31 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelEndS + id: Bushi4 decals: - 6226: 422,353 - 6235: 435,407 - 6236: 438,407 - 6237: 447,407 - 6270: 304,386 + 1286: -61.03974,-27.703562 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelEndW + id: Bushj1 decals: - 6221: 418,362 - 6256: 389,377 - 6291: 330,415 - 6292: 330,412 - 6310: 372,405 - 6311: 372,408 - 6312: 372,412 - 6313: 372,415 - 6314: 385,405 - 6315: 385,408 - 6316: 385,412 - 6317: 385,415 + 2847: -111,31 - node: - zIndex: 1 color: '#FFFFFFFF' - id: MiniTileSteelLineE + id: Bushl4 decals: - 6273: 304,387 + 2848: -111,28 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileSteelLineN + color: '#43990996' + id: CheckerNESW decals: - 6223: 419,362 + 828: -20,-49 + 829: -19,-49 + 830: -18,-49 + 831: -20,-50 + 832: -19,-50 + 833: -18,-50 + 834: -18,-51 + 835: -19,-51 + 836: -20,-51 + 837: -20,-53 + 838: -19,-53 + 839: -18,-53 + 840: -18,-54 + 841: -19,-54 + 842: -20,-54 + 843: -20,-55 + 844: -19,-55 + 845: -18,-55 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileSteelLineS + color: '#52B4E996' + id: CheckerNESW decals: - 6222: 419,362 + 739: -27,-43 + 744: -26,-43 + 745: -25,-43 + 746: -24,-43 + 747: -23,-43 + 748: -22,-43 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: MiniTileSteelLineW + color: '#9FED5896' + id: CheckerNESW decals: - 6272: 304,387 + 1219: -48,-25 + 1220: -47,-25 + 1221: -46,-25 + 1222: -46,-24 + 1223: -47,-24 + 1224: -48,-24 - node: - zIndex: 1 - color: '#334E6DC8' - id: MonoOverlay + color: '#169C9CFF' + id: CheckerNWSE decals: - 2541: 365,394 - 2542: 365,393 - 2543: 366,394 - 2544: 366,393 + 5812: -116,14 + 5813: -116,15 - node: - zIndex: 1 - color: '#3EB38896' - id: MonoOverlay + color: '#B02E26FF' + id: CheckerNWSE decals: - 7000: 415,365 - 7001: 415,364 - 7002: 415,363 - 7003: 414,362 - 7004: 415,362 - 7005: 416,362 - 7006: 417,362 + 5814: -123,17 + 5815: -122,17 - node: - zIndex: 1 - color: '#79150096' - id: MonoOverlay + color: '#D381C996' + id: CheckerNWSE decals: - 2867: 338,396 - 2868: 339,396 + 6948: -127,-51 + 6949: -126,-51 + 6950: -125,-51 + 6951: -125,-52 + 6952: -126,-52 + 6953: -127,-52 - node: - zIndex: 1 - color: '#A4610696' - id: MonoOverlay + color: '#FFFFFFFF' + id: Delivery decals: - 2454: 363,390 - 2455: 362,390 - 2456: 361,390 - 2457: 360,390 - 2458: 359,390 - 2459: 363,389 + 328: -50,-10 + 336: -29,6 + 1075: -101,11 + 1751: -91,-29 + 1752: -91,-26 + 1766: -87,-30 + 2766: -111,-42 + 6536: -96,27 + 6729: -22,-43 + 6730: -27,-43 + 6923: -127,-55 + 7077: -87,-26 - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery decals: - 1233: 392,414 - 1234: 392,415 - 1235: 392,416 - 1236: 393,416 - 1249: 397,412 + 1087: -114,18 - node: - zIndex: 1 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Delivery decals: - 779: 374,397 - 780: 374,396 - 781: 374,395 - 782: 374,393 - 783: 374,392 - 784: 374,391 - 785: 374,390 - 1762: 422,409 - 1763: 424,407 - 1764: 424,408 - 1765: 424,409 - 1783: 419,407 - 1784: 420,407 - 1803: 426,412 - 1892: 388,416 - 1919: 385,416 - 1950: 363,416 - 1961: 366,417 - 1962: 367,417 - 1963: 368,417 - 1964: 368,417 - 1974: 372,421 - 1975: 373,421 - 1976: 374,421 - 1977: 375,421 - 1978: 375,422 - 1979: 376,422 - 1980: 377,422 - 1981: 377,423 - 1982: 378,423 - 1983: 379,423 - 1984: 380,423 - 1985: 381,423 - 1987: 382,422 - 1988: 383,422 - 1990: 384,421 - 1991: 385,421 - 1992: 386,421 - 2084: 382,406 - 2690: 374,419 - 2693: 375,420 + 712: -32,-32 + 713: -32,-30 + 714: -31,-19 - node: - zIndex: 3 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: Dirt decals: - 6711: 387,404 - 6712: 388,404 + 6086: -22,10 + 6087: -20,10 + 6088: -20,12 + 6089: -21,12 + 6090: -22,14 + 6091: -20,14 + 6092: -20,13 + 6093: -21,13 + 6094: -19,11 + 6095: -22,12 + 6708: -71,-37 + 6709: -70,-36 + 6710: -68,-36 - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale + cleanable: True + color: '#FFFFFFFF' + id: Dirt decals: - 316: 361,399 - 317: 361,398 - 318: 361,397 - 319: 361,396 - 320: 361,395 - 321: 360,393 - 322: 359,393 - 323: 358,393 - 324: 358,392 - 325: 361,400 - 345: 337,401 - 346: 361,393 - 354: 362,393 - 390: 380,404 - 391: 379,404 - 392: 378,404 - 393: 377,404 - 394: 376,404 - 395: 375,404 - 396: 374,404 - 397: 371,404 - 398: 370,404 - 399: 369,404 - 400: 368,404 - 403: 367,404 - 404: 366,404 - 405: 365,404 - 564: 404,390 - 565: 404,389 - 566: 404,389 - 568: 404,387 - 569: 404,382 - 570: 404,381 - 571: 404,380 - 572: 404,379 - 573: 404,378 - 575: 403,376 - 576: 403,375 - 577: 403,374 - 648: 361,404 - 649: 360,404 - 650: 359,404 - 651: 357,404 - 652: 356,404 - 653: 355,404 - 654: 354,404 - 655: 352,404 - 656: 350,404 - 657: 349,404 - 660: 346,404 - 661: 345,404 - 662: 344,404 - 663: 343,404 - 664: 342,404 - 665: 340,404 - 667: 338,404 - 668: 337,404 - 670: 334,404 - 671: 333,404 - 796: 390,376 - 797: 389,376 - 798: 389,375 - 799: 389,374 - 800: 389,373 - 801: 388,373 - 802: 388,372 - 803: 388,371 - 804: 388,370 - 805: 388,369 - 811: 391,374 - 812: 392,374 - 813: 393,374 - 814: 394,374 - 815: 394,375 - 816: 395,375 - 818: 396,374 - 2479: 372,389 - 2480: 371,389 - 2481: 369,390 - 2482: 368,390 - 2483: 367,390 - 2484: 366,390 - 2485: 365,390 - 2486: 365,389 - 2487: 365,388 - 2488: 365,387 - 2489: 365,386 - 2491: 363,386 - 2492: 362,386 - 2493: 361,386 - 2494: 360,386 - 2495: 359,386 - 2496: 358,386 - 2497: 358,385 - 2498: 358,384 - 2505: 365,383 - 2773: 305,379 - 2774: 305,380 - 2775: 305,381 - 2776: 305,382 - 2777: 305,383 - 2778: 305,384 - 2779: 305,385 - 2780: 305,386 - 2781: 305,387 - 2782: 305,388 - 2783: 306,388 - 2784: 307,388 - 2785: 310,388 - 2786: 312,388 - 2787: 313,388 - 2788: 315,388 - 2789: 317,388 - 2791: 319,387 - 2792: 320,387 - 2793: 321,387 - 2794: 323,387 - 2795: 324,387 - 2796: 325,387 - 2797: 326,387 - 2798: 327,387 - 2799: 329,387 - 2800: 330,387 - 2801: 330,388 - 2802: 331,388 - 5454: 404,385 - 5455: 404,388 - 6869: 384,404 - 6870: 383,404 - 6871: 382,404 - 6872: 381,404 - 6879: 332,404 - 6880: 364,404 - 6881: 363,404 - 6882: 362,404 + 5206: -56,-54 + 5207: -55,-55 + 5208: -55,-54 + 5209: -53,-54 + 5210: -52,-53 + 5211: -52,-51 + 5212: -49,-52 + 5213: -50,-53 + 5214: -51,-53 + 5215: -50,-52 + 5216: -51,-52 + 5217: -50,-54 + 5218: -51,-55 + 5219: -51,-56 + 5220: -52,-56 + 5221: -53,-57 + 5222: -50,-57 + 5223: -50,-56 + 5224: -46,-55 + 5225: -47,-56 + 5226: -46,-57 + 5227: -45,-56 + 5228: -45,-55 + 5229: -47,-51 + 5230: -45,-51 + 5231: -46,-50 + 5232: -46,-51 + 5233: -46,-52 + 5234: -46,-53 + 5235: -45,-53 + 6142: -70,-38 + 6143: -69,-37 + 6144: -68,-37 + 6145: -69,-36 + 6146: -68,-38 + 6147: -69,-35 + 6148: -69,-28 + 6149: -70,-27 + 6150: -68,-27 + 6954: -100,-41 + 6955: -100,-40 + 6956: -100,-39 + 6957: -96,-40 + 6958: -96,-41 + 6959: -98,-42 + 6960: -100,-38 + 6961: -101,-36 + 6962: -100,-35 + 6963: -96,-38 + 6964: -97,-46 + 6965: -98,-45 + 6966: -99,-47 + 6967: -97,-48 + 6968: -97,-44 + 6969: -99,-44 + 6970: -85,-33 + 6971: -84,-32 + 7240: -21,16 + 7241: -22,18 + 7242: -21,19 + 7243: -22,20 - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: DirtHeavy decals: - 7010: 416,365 - 7011: 416,364 - 7012: 416,363 + 2979: -126,20 + 6078: -22,8 + 6079: -22,7 + 6080: -21,7 + 6081: -21,8 + 6082: -22,5 + 6083: -21,5 + 6084: -21,4 + 6085: -22,4 - node: - zIndex: 3 - color: '#3535358E' - id: QuarterTileOverlayGreyscale + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy decals: - 4377: 339,404 + 329: -54,-11 + 330: -50,-11 + 1572: -65,-34 + 1573: -65,-31 + 1574: -66,-36 + 1575: -64,-36 + 1576: -65,-36 + 1577: -66,-35 + 1578: -64,-35 + 3382: -101,-33 + 3383: -100,-33 + 3384: -99,-33 + 3385: -99,-32 + 3386: -101,-32 + 3387: -100,-32 + 3388: -101,-31 + 3389: -99,-31 + 3390: -101,-31 + 3391: -100,-31 + 3392: -99,-29 + 3393: -100,-29 + 3394: -101,-29 + 3395: -101,-28 + 3396: -100,-28 + 3397: -99,-28 + 3398: -99,-27 + 3399: -100,-27 + 3400: -101,-27 + 3401: -101,-25 + 3402: -100,-25 + 3403: -99,-25 + 3404: -99,-24 + 3405: -100,-24 + 3406: -101,-24 + 3407: -101,-23 + 3408: -100,-23 + 3409: -99,-23 + 4048: -97,-21 + 4049: -97,-20 + 4050: -97,-19 + 4051: -97,-18 + 4052: -97,-17 + 4053: -96,-18 + 4054: -96,-19 + 4055: -96,-20 + 4056: -95,-20 + 4057: -95,-19 + 4058: -95,-18 + 4059: -95,-17 + 4060: -95,-21 + 4061: -98,-20 + 4062: -98,-19 + 4063: -98,-18 - node: - zIndex: 1 - color: '#3535358F' - id: QuarterTileOverlayGreyscale + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile decals: - 6612: 335,404 + 1579: -66,-34 - node: - zIndex: 1 - color: '#3EB38896' - id: QuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: DirtLight decals: - 1819: 409,385 + 6040: -37,-3 + 6041: -35,-2 + 6042: -33,-3 + 6043: -38,-4 + 6044: -38,-8 + 6045: -37,-9 + 6046: -35,-9 + 6047: -35,-10 + 6048: -35,-7 + 6049: -35,-5 + 6050: -36,-3 + 6711: -71,-34 + 6712: -71,-33 + 6713: -71,-32 + 6714: -71,-31 + 6715: -71,-30 - node: - color: '#4493BDFF' - id: QuarterTileOverlayGreyscale + cleanable: True + color: '#FFFFFFFF' + id: DirtLight decals: - 1207: 399,415 - 1208: 399,416 - 1209: 399,417 - 1210: 399,418 - 1211: 400,418 - 1212: 401,418 + 1580: -64,-33 + 1581: -65,-33 + 1582: -64,-32 + 1583: -62,-34 + 1584: -63,-34 + 1585: -66,-32 + 1586: -66,-33 + 6831: -110,-51 + 6832: -111,-50 + 6833: -110,-49 + 6834: -109,-47 + 6835: -110,-45 + 6836: -110,-43 + 6837: -110,-41 + 6838: -111,-42 + 6839: -109,-42 + 6840: -108,-47 + 6841: -114,-48 + 6842: -117,-48 + 6843: -119,-44 + 6844: -123,-46 + 6845: -121,-48 + 6846: -122,-41 + 6847: -120,-40 + 6848: -116,-40 + 6849: -114,-42 + 6850: -114,-38 + 6851: -116,-42 + 6852: -120,-38 + 6853: -120,-39 + 6854: -115,-51 + 6855: -116,-52 + 6856: -115,-53 + 6857: -113,-50 + 6858: -113,-54 + 6859: -117,-50 + 6860: -117,-53 + 6861: -117,-54 + 6862: -119,-53 + 6863: -120,-52 + 6864: -122,-52 + 6865: -122,-50 + 6866: -123,-51 + 6867: -120,-50 + 6868: -121,-54 + 6869: -126,-56 + 6870: -127,-55 + 6872: -127,-55 + 6876: -130,-51 + 6877: -131,-54 + 6878: -130,-49 + 6879: -131,-48 + 6880: -125,-47 + 6881: -126,-49 + 6882: -126,-43 + 6883: -125,-45 + 6884: -130,-43 + 6885: -131,-44 + 6886: -131,-45 + 6887: -136,-46 + 6888: -136,-45 + 6889: -130,-41 + 6890: -131,-40 + 6891: -132,-40 + 6892: -134,-41 + 6893: -137,-40 + 6894: -129,-39 + 6895: -126,-41 + 6896: -126,-40 + 6897: -140,-39 + 6898: -141,-40 + 6899: -142,-40 + 6900: -139,-41 + 6901: -143,-41 + 6902: -142,-43 + 6903: -143,-45 + 6904: -142,-46 + 6905: -143,-48 + 6906: -142,-49 + 6907: -143,-47 + 6908: -145,-47 + 6909: -146,-48 + 6910: -148,-49 + 6911: -150,-48 + 6912: -151,-47 + 6913: -150,-46 + 6914: -151,-45 + 6915: -149,-43 + 6916: -148,-45 + 6917: -146,-44 + 6918: -147,-44 + 6919: -147,-47 + 6920: -153,-46 + 6921: -153,-44 + 6922: -145,-45 - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6051: -25,-9 + 6052: -25,-8 + 6053: -24,-8 + 6054: -22,-8 + 6055: -22,-7 + 6056: -22,-6 + 6057: -22,-5 + 6058: -22,-4 + 6059: -22,-3 + 6062: -25,-5 + 6063: -25,-4 + 6064: -24,-4 + 6065: -20,-4 + 7078: -83,-28 + 7079: -82,-28 + 7080: -81,-27 + 7081: -88,-26 + 7082: -87,-28 + 7083: -89,-28 + 7084: -79,-27 + 7085: -78,-27 + 7086: -78,-28 + 7087: -79,-28 + 7088: -33,15 + 7089: -34,14 + 7090: -34,13 + 7091: -31,9 + 7092: -30,9 + 7093: -30,10 + 7094: -30,11 + 7095: -32,11 + 7096: -32,10 + 7097: -34,11 + 7098: -31,5 + 7099: -30,6 + 7100: -81,7 + 7101: -80,7 + 7102: -97,21 + 7103: -97,22 + 7104: -96,22 + 7105: -96,21 + 7106: -97,19 + 7107: -96,19 + 7108: -96,20 + 7109: -97,20 + 7110: -97,18 + 7111: -96,18 + 7112: -97,17 + 7113: -96,17 + 7114: -96,16 + 7115: -97,23 + 7116: -96,23 + 7117: -96,24 + 7118: -97,24 + 7119: -97,25 + 7120: -96,25 + 7121: -96,28 + 7122: -95,28 + 7123: -95,27 + 7124: -94,27 + 7125: -93,27 + 7126: -92,27 + 7127: -92,28 + 7128: -93,28 + 7129: -94,28 + 7130: -94,29 + 7131: -93,29 + 7132: -92,29 + 7133: -92,30 + 7134: -93,30 + 7135: -94,30 + 7136: -95,30 + 7137: -96,30 + 7138: -96,29 + 7139: -95,29 + 7140: -96,32 + 7141: -95,32 + 7142: -94,32 + 7143: -93,32 + 7144: -92,32 + 7145: -91,32 + 7146: -91,33 + 7147: -92,33 + 7148: -93,33 + 7149: -94,33 + 7150: -95,33 + 7151: -96,33 + 7152: -96,34 + 7153: -95,34 + 7154: -94,34 + 7155: -93,34 + 7156: -92,34 + 7157: -91,34 + 7158: -91,35 + 7159: -92,35 + 7160: -93,35 + 7161: -94,35 + 7162: -95,35 + 7163: -96,35 + 7164: -97,33 + 7165: -97,32 + 7166: -98,32 + 7167: -98,33 + 7168: -98,34 + 7169: -98,35 + 7170: -98,30 + 7171: -98,29 + 7172: -98,28 + 7173: -98,27 + 7174: -97,27 + 7175: -97,28 + 7176: -97,29 + 7177: -97,30 + 7178: -102,27 + 7179: -103,27 + 7180: -103,28 + 7181: -102,28 + 7182: -102,29 + 7183: -103,29 + 7184: -103,30 + 7185: -102,30 + 7186: -103,24 + 7187: -103,23 + 7188: -103,22 + 7189: -102,22 + 7190: -102,23 + 7191: -102,24 + 7192: -101,22 + 7193: -101,21 + 7194: -100,21 + 7195: -100,22 + 7196: -99,22 + 7197: -99,21 + 7198: -105,19 + 7199: -105,21 + 7200: -105,22 + 7201: -106,27 + 7202: -105,27 + 7203: -106,26 + 7204: -105,26 + 7205: -105,30 + 7206: -105,29 + 7207: -105,31 + 7208: -105,32 + 7209: -105,33 + 7210: -105,34 + 7211: -105,36 + 7212: -104,36 + 7213: -113,30 + 7214: -121,35 + 7215: -122,35 + 7216: -122,36 + 7217: -121,36 + 7218: -120,36 + 7219: -120,35 + 7220: -120,34 + 7221: -121,34 + 7222: -122,34 + 7223: -122,33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium decals: - 1144: 405,406 - 1145: 405,407 - 1146: 405,408 - 1150: 403,408 - 1154: 405,410 - 1155: 405,411 - 1264: 401,406 + 331: -54,-10 + 332: -51,-10 + 333: -52,-10 + 334: -53,-10 + 335: -50,-10 + 1518: -59,-22 + 1519: -59,-25 + 1520: -63,-23 + 1521: -65,-25 + 1522: -65,-24 + 1523: -65,-23 + 1524: -66,-22 + 1525: -59,-26 + 1526: -59,-25 + 1527: -58,-24 + 1528: -60,-26 + 1529: -65,-26 + 1530: -65,-27 + 1531: -65,-28 + 1532: -64,-29 + 1533: -66,-27 + 1534: -66,-29 + 1535: -59,-28 + 1536: -64,-26 + 1537: -58,-27 + 1538: -58,-31 + 1539: -60,-31 + 1540: -60,-32 + 1541: -59,-28 + 1542: -58,-31 + 1543: -64,-31 + 1544: -65,-32 + 1545: -65,-34 + 1546: -65,-30 + 1547: -59,-32 + 1548: -64,-34 + 1549: -65,-35 + 1550: -66,-36 + 1551: -59,-34 + 1552: -68,-28 + 1553: -67,-29 + 1554: -68,-27 + 1555: -68,-25 + 1556: -69,-25 + 1557: -70,-28 + 1558: -69,-30 + 2985: -127,19 + 2986: -126,24 + 2987: -126,23 + 2988: -127,23 + 2993: -127,20 + 2994: -126,20 + 2998: -134,20 + 3002: -129,22 + 3004: -130,22 + 3006: -131,22 + 3007: -132,22 + 3008: -134,22 + 3009: -134,23 + 3010: -134,24 + 3011: -133,24 + 3012: -132,24 + 3013: -130,24 + 3014: -129,24 + 3015: -132,24 + 3016: -120,23 + 3017: -120,21 + 3018: -119,22 + 3019: -120,22 + 3020: -119,21 + 3021: -119,20 + 3022: -119,19 + 3023: -120,19 + 3024: -121,19 + 3025: -122,20 + 3026: -122,21 + 3027: -120,20 + 3028: -122,19 + 3029: -124,19 + 3030: -124,20 + 3031: -123,20 + 3032: -124,21 + 3033: -123,21 + 3034: -123,22 + 3035: -123,22 + 3036: -121,16 + 3037: -120,17 + 3038: -119,17 + 3039: -120,16 + 3040: -121,15 + 3041: -121,14 + 3042: -120,13 + 3043: -119,15 + 3044: -119,15 + 3045: -119,14 + 3046: -120,14 + 3047: -119,13 + 3049: -123,13 + 3050: -122,13 + 3051: -123,15 + 3052: -123,14 + 3053: -122,15 + 3054: -122,14 + 3056: -123,16 + 3066: -118,12 + 3067: -116,12 + 3068: -117,12 + 3069: -116,13 + 3070: -117,13 + 3071: -118,13 + 3072: -118,14 + 3077: -118,15 + 3078: -118,16 + 3079: -117,16 + 3080: -116,16 + 3081: -116,17 + 3082: -117,17 + 3083: -118,17 + 3084: -114,16 + 3085: -113,16 + 3086: -112,16 + 3087: -110,16 + 3088: -109,16 + 3089: -109,16 + 3090: -108,17 + 3091: -109,17 + 3092: -108,16 + 3093: -110,17 + 3094: -111,17 + 3095: -112,17 + 3096: -113,17 + 3097: -114,17 + 3098: -114,18 + 3099: -113,18 + 3100: -112,18 + 3101: -111,18 + 3102: -110,18 + 3103: -109,18 + 3104: -108,18 + 3105: -106,13 + 3106: -105,13 + 3107: -105,14 + 3108: -106,14 + 3109: -106,15 + 3110: -105,15 + 3111: -105,16 + 3112: -106,16 + 3113: -106,17 + 3114: -105,17 + 3115: -105,18 + 3116: -106,20 + 3117: -106,20 + 3119: -105,24 + 3120: -106,24 + 3121: -107,24 + 3122: -110,24 + 3123: -113,24 + 3124: -114,24 + 3125: -117,24 + 3126: -118,24 + 3127: -119,24 + 3128: -120,24 + 3129: -120,24 + 3130: -122,24 + 3131: -124,24 + 3132: -126,24 + 3133: -126,24 + 3134: -126,24 + 3137: -126,20 + 3138: -127,19 + 3139: -127,19 + 3141: -127,23 + 3142: -127,24 + 3143: -127,24 + 3144: -126,25 + 3145: -123,25 + 3146: -119,25 + 3147: -117,25 + 3148: -114,25 + 3149: -111,25 + 3150: -107,25 + 3151: -106,25 + 3152: -105,24 + 3153: -105,22 + 3154: -104,21 + 3156: -102,21 + 3180: -108,-3 + 3181: -109,-3 + 3182: -108,-7 + 3183: -109,-7 + 3184: -110,-7 + 3185: -112,-7 + 3186: -114,-7 + 3187: -115,-7 + 3188: -116,-7 + 3189: -116,-6 + 3190: -115,-6 + 3191: -113,-6 + 3192: -115,-4 + 3193: -116,-4 + 3194: -115,-3 + 3195: -114,-3 + 3196: -114,-4 + 3197: -114,-4 + 3198: -113,-3 + 3199: -113,-4 + 3200: -119,-7 + 3201: -120,-6 + 3202: -121,-6 + 3203: -121,-5 + 3204: -120,-4 + 3205: -119,-4 + 3206: -120,-3 + 3207: -121,-3 + 3208: -121,-5 + 3209: -118,-6 + 3210: -119,-6 + 3211: -119,-5 + 3212: -118,-5 + 3213: -119,-4 + 3214: -122,-6 + 3215: -125,-7 + 3216: -124,-7 + 3217: -124,-6 + 3218: -125,-5 + 3219: -127,-5 + 3220: -128,-5 + 3221: -129,-5 + 3222: -130,-5 + 3223: -131,-5 + 3224: -131,-6 + 3225: -132,-7 + 3226: -130,-7 + 3227: -132,-6 + 3228: -132,-5 + 3229: -132,-3 + 3230: -132,-4 + 3231: -132,-3 + 3232: -131,-4 + 3234: -134,-13 + 3235: -135,-13 + 3236: -135,-12 + 3237: -134,-12 + 3238: -135,-11 + 3239: -135,-10 + 3240: -134,-10 + 3241: -134,-9 + 3242: -135,-9 + 3243: -138,-10 + 3244: -138,-10 + 3245: -139,-11 + 3246: -140,-11 + 3247: -139,-12 + 3248: -138,-12 + 3249: -138,-14 + 3252: -137,-16 + 3253: -137,-17 + 3254: -137,-18 + 3255: -137,-19 + 3267: -140,-14 + 3268: -141,-14 + 3269: -139,-14 + 3270: -117,-15 + 3271: -116,-15 + 3272: -115,-15 + 3273: -114,-15 + 3274: -112,-15 + 3275: -111,-15 + 3276: -110,-15 + 3277: -109,-15 + 3278: -108,-15 + 3279: -108,-16 + 3280: -109,-16 + 3281: -110,-16 + 3282: -111,-16 + 3283: -112,-16 + 3284: -114,-16 + 3285: -115,-16 + 3286: -117,-16 + 3287: -117,-17 + 3288: -116,-17 + 3289: -114,-17 + 3290: -113,-17 + 3291: -112,-17 + 3292: -111,-17 + 3293: -109,-17 + 3294: -108,-17 + 3295: -108,-18 + 3296: -109,-18 + 3297: -111,-18 + 3298: -111,-18 + 3299: -113,-18 + 3300: -114,-18 + 3301: -116,-18 + 3302: -117,-18 + 3303: -117,-19 + 3304: -116,-19 + 3305: -114,-19 + 3306: -113,-19 + 3307: -111,-19 + 3308: -110,-19 + 3309: -109,-19 + 3310: -108,-19 + 3311: -112,-18 + 3312: -110,-18 + 3313: -115,-18 + 3314: -117,-23 + 3315: -117,-24 + 3316: -117,-25 + 3317: -116,-25 + 3318: -115,-25 + 3319: -114,-25 + 3320: -114,-24 + 3321: -116,-24 + 3322: -116,-24 + 3323: -116,-23 + 3324: -115,-24 + 3325: -114,-23 + 3326: -115,-23 + 3327: -114,-22 + 3328: -114,-21 + 3329: -112,-22 + 3330: -111,-22 + 3331: -110,-22 + 3332: -112,-21 + 3333: -110,-21 + 3334: -110,-21 + 3335: -111,-21 + 3336: -112,-24 + 3337: -112,-25 + 3338: -110,-25 + 3339: -110,-24 + 3340: -123,-25 + 3341: -125,-25 + 3342: -126,-25 + 3343: -126,-24 + 3344: -125,-24 + 3345: -123,-24 + 3346: -124,-25 + 3347: -124,-24 + 3348: -123,-23 + 3349: -124,-23 + 3350: -125,-23 + 3351: -126,-23 + 3352: -126,-22 + 3353: -124,-22 + 3354: -123,-22 + 3355: -123,-21 + 3356: -124,-21 + 3357: -126,-21 + 3358: -128,-22 + 3359: -128,-23 + 3360: -128,-24 + 3361: -113,-34 + 3362: -112,-34 + 3363: -111,-34 + 3364: -110,-34 + 3365: -110,-33 + 3366: -110,-32 + 3367: -110,-32 + 3368: -110,-31 + 3369: -110,-30 + 3370: -112,-30 + 3371: -111,-31 + 3372: -111,-30 + 3373: -111,-31 + 3374: -111,-33 + 3375: -111,-33 + 3376: -112,-33 + 3377: -113,-33 + 3378: -114,-33 + 3379: -115,-33 + 3380: -101,-33 + 3381: -100,-33 + 3410: -97,-23 + 3411: -97,-24 + 3412: -96,-23 + 3413: -96,-24 + 3414: -95,-23 + 3415: -95,-24 + 3416: -95,-25 + 3417: -96,-25 + 3418: -97,-25 + 3419: -97,-26 + 3420: -96,-26 + 3421: -95,-26 + 3422: -94,-26 + 3423: -93,-26 + 3424: -92,-26 + 3425: -91,-27 + 3426: -92,-27 + 3427: -93,-27 + 3428: -94,-27 + 3429: -95,-27 + 3430: -96,-27 + 3431: -97,-27 + 3432: -97,-28 + 3433: -96,-28 + 3434: -95,-28 + 3435: -94,-28 + 3436: -92,-28 + 3437: -91,-28 + 3438: -91,-29 + 3439: -93,-29 + 3440: -95,-29 + 3441: -96,-29 + 3442: -97,-30 + 3443: -95,-30 + 3444: -94,-30 + 3445: -92,-30 + 3446: -91,-30 + 3447: -91,-32 + 3448: -92,-31 + 3449: -93,-31 + 3450: -95,-31 + 3451: -96,-31 + 3452: -97,-31 + 3453: -97,-32 + 3454: -96,-33 + 3455: -93,-33 + 3456: -92,-33 + 3457: -91,-32 + 3458: -95,-32 + 3459: -96,-32 + 3460: -97,-34 + 3461: -96,-34 + 3462: -94,-34 + 3463: -92,-34 + 3464: -91,-34 + 3465: -90,-35 + 3466: -91,-35 + 3467: -93,-35 + 3468: -94,-35 + 3469: -96,-35 + 3470: -96,-36 + 3471: -94,-36 + 3472: -93,-36 + 3473: -92,-36 + 3474: -95,-35 + 3475: -94,-38 + 3476: -93,-38 + 3477: -91,-38 + 3478: -90,-38 + 3479: -89,-38 + 3480: -87,-38 + 3481: -87,-39 + 3482: -87,-39 + 3483: -90,-39 + 3484: -92,-39 + 3485: -94,-40 + 3486: -93,-40 + 3487: -91,-40 + 3488: -89,-40 + 3489: -87,-40 + 3490: -88,-39 + 3491: -89,-39 + 3492: -90,-39 + 3493: -91,-39 + 3494: -93,-39 + 3495: -84,-40 + 3496: -85,-40 + 3497: -85,-39 + 3498: -84,-39 + 3499: -83,-39 + 3500: -82,-39 + 3501: -81,-39 + 3502: -81,-40 + 3503: -82,-40 + 3504: -81,-38 + 3505: -82,-38 + 3506: -83,-38 + 3507: -84,-38 + 3508: -85,-38 + 3509: -85,-42 + 3510: -84,-42 + 3511: -83,-42 + 3512: -82,-42 + 3513: -81,-42 + 3514: -81,-43 + 3515: -82,-43 + 3516: -83,-43 + 3517: -84,-43 + 3518: -83,-45 + 3519: -84,-45 + 3520: -84,-46 + 3521: -84,-47 + 3522: -84,-48 + 3523: -85,-48 + 3524: -86,-48 + 3525: -87,-48 + 3526: -87,-47 + 3527: -86,-47 + 3528: -85,-47 + 3529: -85,-46 + 3530: -86,-46 + 3531: -87,-46 + 3532: -87,-45 + 3533: -86,-45 + 3534: -85,-45 + 3535: -88,-45 + 3536: -89,-45 + 3537: -91,-45 + 3538: -93,-45 + 3539: -92,-46 + 3540: -92,-46 + 3541: -90,-46 + 3542: -89,-46 + 3543: -88,-46 + 3544: -88,-47 + 3545: -89,-47 + 3546: -90,-47 + 3547: -91,-47 + 3548: -92,-47 + 3549: -91,-48 + 3550: -90,-48 + 3551: -89,-48 + 3552: -88,-48 + 3553: -91,-46 + 3554: -90,-45 + 3555: -92,-50 + 3556: -92,-51 + 3557: -91,-51 + 3558: -91,-50 + 3559: -93,-50 + 3560: -93,-51 + 3561: -89,-50 + 3562: -89,-49 + 3563: -87,-50 + 3564: -88,-50 + 3565: -93,-42 + 3566: -92,-43 + 3567: -91,-43 + 3568: -91,-42 + 3569: -92,-42 + 3570: -93,-43 + 3571: -89,-43 + 3572: -88,-43 + 3573: -88,-43 + 3574: -87,-43 + 3575: -87,-42 + 3576: -88,-42 + 3577: -89,-42 + 3578: -101,-48 + 3579: -100,-48 + 3580: -100,-47 + 3581: -101,-47 + 3582: -101,-46 + 3583: -100,-46 + 3584: -100,-45 + 3585: -100,-45 + 3586: -101,-45 + 3587: -101,-44 + 3588: -100,-44 + 3589: -95,-61 + 3591: -96,-62 + 3592: -96,-62 + 3609: -90,-62 + 3611: -91,-61 + 3612: -92,-61 + 3613: -74,-57 + 3614: -74,-57 + 3615: -72,-58 + 3616: -71,-57 + 3617: -70,-58 + 3618: -72,-57 + 3619: -73,-57 + 3620: -74,-58 + 3621: -74,-56 + 3622: -73,-56 + 3623: -73,-56 + 3624: -72,-56 + 3625: -70,-56 + 3626: -70,-56 + 3627: -70,-58 + 3628: -71,-58 + 3629: -74,-58 + 3630: -69,-57 + 3631: -69,-58 + 3632: -68,-58 + 3633: -67,-58 + 3634: -65,-58 + 3635: -64,-57 + 3636: -64,-56 + 3637: -66,-55 + 3638: -67,-55 + 3639: -68,-56 + 3640: -66,-57 + 3641: -65,-56 + 3642: -67,-55 + 3643: -69,-55 + 3644: -69,-54 + 3645: -68,-54 + 3646: -66,-54 + 3647: -64,-54 + 3648: -64,-55 + 3649: -65,-55 + 3650: -64,-54 + 3651: -65,-53 + 3652: -64,-52 + 3653: -66,-52 + 3654: -66,-53 + 3655: -65,-52 + 3656: -64,-53 + 3657: -62,-53 + 3658: -61,-53 + 3659: -62,-54 + 3660: -62,-54 + 3661: -63,-55 + 3662: -61,-55 + 3663: -62,-56 + 3664: -62,-56 + 3665: -59,-56 + 3666: -58,-56 + 3667: -59,-57 + 3668: -60,-57 + 3669: -61,-57 + 3670: -62,-57 + 3671: -63,-56 + 3672: -60,-56 + 3673: -61,-56 + 3674: -58,-57 + 3675: -58,-58 + 3676: -59,-58 + 3677: -61,-58 + 3678: -63,-58 + 3679: -64,-58 + 3680: -59,-59 + 3681: -59,-60 + 3682: -59,-61 + 3683: -58,-60 + 3684: -58,-61 + 3685: -61,-61 + 3686: -62,-61 + 3687: -62,-62 + 3688: -61,-62 + 3689: -61,-63 + 3690: -62,-63 + 3691: -64,-62 + 3692: -65,-62 + 3693: -66,-63 + 3694: -66,-63 + 3695: -64,-63 + 3696: -64,-64 + 3697: -65,-64 + 3698: -66,-64 + 3699: -68,-63 + 3700: -69,-63 + 3701: -69,-61 + 3702: -68,-61 + 3703: -66,-62 + 3704: -65,-63 + 3705: -66,-61 + 3706: -65,-61 + 3707: -64,-61 + 3708: -65,-60 + 3709: -66,-60 + 3710: -59,-53 + 3711: -59,-54 + 3712: -58,-54 + 3713: -58,-53 + 3714: -56,-42 + 3715: -55,-42 + 3716: -53,-42 + 3717: -51,-42 + 3718: -48,-42 + 3719: -48,-42 + 3720: -46,-42 + 3721: -44,-42 + 3722: -44,-41 + 3723: -45,-41 + 3724: -47,-41 + 3725: -50,-41 + 3726: -53,-41 + 3727: -55,-41 + 3728: -51,-40 + 3729: -51,-39 + 3730: -51,-37 + 3731: -50,-36 + 3732: -50,-37 + 3733: -50,-39 + 3734: -50,-40 + 3735: -49,-40 + 3736: -49,-38 + 3737: -49,-36 + 3738: -49,-34 + 3739: -49,-32 + 3740: -50,-33 + 3741: -50,-34 + 3742: -49,-33 + 3743: -48,-33 + 3744: -46,-33 + 3745: -44,-33 + 3746: -43,-32 + 3747: -48,-32 + 3748: -44,-32 + 3749: -42,-31 + 3750: -43,-31 + 3751: -43,-28 + 3752: -43,-26 + 3753: -44,-28 + 3754: -44,-30 + 3755: -44,-31 + 3756: -43,-27 + 3757: -43,-24 + 3758: -43,-21 + 3759: -44,-21 + 3760: -44,-23 + 3761: -43,-22 + 3762: -43,-19 + 3763: -44,-18 + 3764: -44,-20 + 3765: -47,-19 + 3766: -47,-21 + 3767: -47,-22 + 3768: -47,-23 + 3769: -47,-23 + 3770: -48,-23 + 3771: -48,-24 + 3772: -46,-24 + 3773: -46,-24 + 3774: -46,-24 + 3775: -47,-25 + 3776: -48,-25 + 3777: -46,-23 + 3778: -46,-22 + 3779: -46,-21 + 3780: -46,-20 + 3781: -47,-20 + 3782: -48,-20 + 3783: -48,-21 + 3784: -48,-22 + 3785: -50,-23 + 3786: -50,-24 + 3787: -50,-25 + 3788: -50,-25 + 3789: -52,-25 + 3790: -53,-25 + 3791: -55,-25 + 3792: -55,-25 + 3793: -56,-24 + 3794: -55,-24 + 3795: -55,-24 + 3796: -55,-23 + 3797: -56,-23 + 3798: -56,-22 + 3799: -55,-22 + 3800: -56,-21 + 3801: -56,-20 + 3802: -54,-20 + 3803: -54,-19 + 3804: -56,-19 + 3805: -54,-22 + 3806: -54,-23 + 3807: -54,-24 + 3808: -53,-24 + 3809: -52,-24 + 3810: -52,-23 + 3811: -53,-22 + 3812: -53,-21 + 3814: -52,-22 + 3816: -53,-23 + 3817: -51,-28 + 3818: -50,-28 + 3819: -50,-28 + 3820: -49,-28 + 3821: -48,-28 + 3822: -47,-28 + 3823: -46,-28 + 3824: -46,-27 + 3825: -46,-27 + 3826: -48,-27 + 3827: -49,-27 + 3828: -51,-27 + 3829: -51,-28 + 3830: -51,-29 + 3831: -51,-29 + 3832: -49,-29 + 3833: -48,-29 + 3834: -47,-29 + 3835: -46,-29 + 3836: -46,-30 + 3837: -46,-30 + 3838: -48,-30 + 3839: -49,-30 + 3840: -49,-30 + 3841: -51,-30 + 3842: -52,-33 + 3843: -52,-34 + 3844: -53,-34 + 3845: -54,-34 + 3846: -55,-34 + 3847: -56,-33 + 3848: -54,-33 + 3849: -54,-33 + 3850: -53,-32 + 3851: -55,-32 + 3852: -56,-32 + 3853: -56,-31 + 3854: -55,-31 + 3855: -54,-31 + 3856: -53,-30 + 3857: -55,-30 + 3858: -56,-30 + 3859: -56,-29 + 3860: -55,-29 + 3861: -54,-29 + 3862: -53,-29 + 3863: -53,-28 + 3864: -55,-28 + 3865: -56,-28 + 3866: -56,-27 + 3867: -55,-27 + 3868: -54,-27 + 3869: -54,-27 + 3870: -57,-31 + 3871: -57,-32 + 3872: -58,-33 + 3873: -59,-29 + 3874: -59,-29 + 3875: -60,-29 + 3876: -60,-30 + 3877: -59,-30 + 3878: -61,-30 + 3879: -62,-30 + 3880: -63,-30 + 3881: -64,-30 + 3882: -66,-30 + 3883: -66,-31 + 3884: -66,-32 + 3885: -66,-33 + 3886: -65,-29 + 3887: -64,-28 + 3888: -64,-27 + 3889: -64,-25 + 3890: -64,-24 + 3891: -63,-23 + 3892: -61,-23 + 3893: -61,-23 + 3894: -61,-24 + 3895: -63,-25 + 3896: -63,-25 + 3897: -61,-25 + 3898: -60,-25 + 3899: -60,-24 + 3900: -59,-23 + 3901: -59,-24 + 3902: -58,-23 + 3903: -58,-22 + 3906: -68,-20 + 3907: -70,-20 + 3912: -70,-19 + 3913: -68,-19 + 3914: -68,-20 + 3915: -69,-20 + 3920: -71,-23 + 3921: -71,-22 + 3923: -69,-23 + 3924: -71,-21 + 3927: -76,-17 + 3928: -76,-18 + 3929: -76,-19 + 3930: -76,-20 + 3931: -75,-19 + 3932: -75,-19 + 3933: -75,-22 + 3934: -75,-24 + 3935: -75,-24 + 3944: -72,-30 + 3945: -72,-33 + 3946: -73,-35 + 3947: -73,-32 + 3948: -73,-34 + 3949: -73,-37 + 3950: -72,-37 + 3954: -77,-38 + 3955: -77,-39 + 3956: -77,-39 + 3958: -77,-38 + 3959: -76,-39 + 3960: -76,-42 + 3961: -76,-43 + 3962: -77,-45 + 3963: -77,-49 + 3964: -77,-51 + 3965: -77,-53 + 3966: -76,-53 + 3967: -76,-51 + 3968: -76,-49 + 3969: -76,-47 + 3970: -76,-44 + 3971: -89,-36 + 3972: -88,-36 + 3973: -87,-35 + 3974: -87,-35 + 3975: -89,-35 + 3976: -89,-34 + 3977: -87,-34 + 3978: -87,-34 + 3979: -87,-33 + 3980: -89,-33 + 3981: -89,-32 + 3982: -88,-32 + 3983: -87,-32 + 3984: -88,-35 + 3985: -87,-36 + 3986: -88,-34 + 3987: -89,-30 + 3988: -88,-30 + 3989: -86,-30 + 3990: -83,-30 + 3991: -82,-30 + 3992: -82,-30 + 3993: -81,-29 + 3994: -82,-29 + 3995: -83,-29 + 3996: -86,-29 + 3997: -88,-29 + 3998: -88,-28 + 3999: -88,-28 + 4000: -86,-28 + 4001: -84,-28 + 4005: -82,-27 + 4006: -83,-27 + 4007: -85,-27 + 4008: -87,-27 + 4009: -88,-27 + 4010: -89,-27 + 4011: -89,-26 + 4013: -84,-26 + 4014: -82,-26 + 4015: -81,-26 + 4016: -88,-24 + 4017: -90,-24 + 4018: -89,-23 + 4019: -87,-24 + 4020: -87,-24 + 4021: -87,-22 + 4022: -89,-22 + 4023: -91,-22 + 4024: -92,-22 + 4025: -93,-23 + 4026: -93,-24 + 4027: -92,-24 + 4028: -92,-23 + 4029: -92,-22 + 4030: -93,-22 + 4031: -92,-21 + 4032: -92,-21 + 4033: -91,-21 + 4034: -93,-21 + 4035: -93,-20 + 4036: -91,-20 + 4037: -91,-19 + 4038: -92,-19 + 4039: -93,-19 + 4040: -92,-18 + 4041: -91,-18 + 4042: -92,-20 + 4043: -89,-21 + 4044: -90,-22 + 4045: -88,-22 + 4046: -88,-23 + 4047: -91,-23 + 4064: -86,-12 + 4065: -86,-11 + 4066: -86,-10 + 4067: -87,-10 + 4068: -89,-10 + 4069: -89,-9 + 4070: -88,-9 + 4071: -87,-9 + 4072: -86,-9 + 4073: -85,-9 + 4074: -84,-9 + 4075: -83,-9 + 4076: -83,-10 + 4077: -84,-10 + 4078: -85,-10 + 4087: -99,7 + 4088: -99,8 + 4089: -100,8 + 4090: -100,9 + 4091: -99,9 + 4092: -101,9 + 4093: -99,10 + 4094: -99,11 + 4095: -100,11 + 4096: -101,11 + 4097: -102,10 + 4098: -102,11 + 4099: -102,12 + 4110: -101,15 + 4111: -100,15 + 4112: -98,15 + 4114: -100,15 + 4118: -97,15 + 4119: -96,15 + 4120: -96,14 + 4121: -94,14 + 4122: -94,14 + 4123: -92,14 + 4124: -91,14 + 4125: -89,14 + 4126: -88,14 + 4127: -94,15 + 4128: -94,16 + 4129: -92,14 + 4130: -90,11 + 4131: -90,10 + 4132: -90,9 + 4133: -90,8 + 4134: -90,8 + 4135: -89,7 + 4136: -89,8 + 4137: -89,11 + 4138: -89,12 + 4139: -88,10 + 4140: -97,7 + 4141: -95,7 + 4142: -95,7 + 4143: -94,8 + 4144: -97,8 + 4145: -96,8 + 4146: -95,8 + 4147: -97,9 + 4148: -96,9 + 4149: -95,9 + 4150: -94,9 + 4151: -93,9 + 4152: -93,10 + 4153: -94,10 + 4154: -95,10 + 4155: -96,10 + 4156: -97,10 + 4157: -97,11 + 4158: -96,11 + 4159: -94,11 + 4160: -93,11 + 4161: -94,12 + 4162: -95,12 + 4163: -97,12 + 4164: -96,12 + 4179: -100,20 + 4180: -101,20 + 4197: -106,26 + 4198: -105,28 + 4199: -105,28 + 4200: -106,29 + 4201: -106,29 + 4202: -105,30 + 4203: -105,31 + 4204: -106,31 + 4205: -113,27 + 4206: -114,27 + 4207: -116,27 + 4208: -117,27 + 4209: -117,28 + 4210: -117,29 + 4211: -117,30 + 4212: -117,31 + 4213: -116,31 + 4214: -114,31 + 4215: -113,31 + 4216: -113,29 + 4217: -113,28 + 4218: -115,27 + 4219: -114,24 + 4220: -116,24 + 4221: -117,24 + 4222: -118,25 + 4223: -116,25 + 4224: -113,25 + 4226: -120,26 + 4227: -121,27 + 4228: -120,27 + 4229: -119,27 + 4231: -120,29 + 4232: -120,29 + 4233: -121,30 + 4236: -120,31 + 4237: -129,31 + 4238: -129,30 + 4239: -129,29 + 4240: -127,29 + 4241: -125,29 + 4242: -124,29 + 4243: -123,28 + 4244: -123,27 + 4245: -124,27 + 4246: -126,27 + 4247: -128,27 + 4248: -129,26 + 4249: -129,26 + 4284: -91,31 + 4305: -89,28 + 4306: -88,28 + 4307: -87,28 + 4308: -86,28 + 4309: -85,28 + 4310: -85,27 + 4311: -85,27 + 4312: -87,27 + 4313: -88,27 + 4314: -88,27 + 4315: -86,25 + 4317: -88,24 + 4318: -88,25 + 4319: -86,25 + 4320: -85,24 + 4321: -86,23 + 4322: -87,22 + 4323: -87,23 + 4324: -87,23 + 4325: -86,22 + 4326: -86,22 + 4327: -85,22 + 4328: -87,24 + 4329: -85,25 + 4330: -87,20 + 4331: -87,21 + 4332: -86,20 + 4333: -85,19 + 4334: -86,19 + 4335: -86,17 + 4336: -85,18 + 4337: -86,15 + 4338: -86,16 + 4339: -85,14 + 4340: -85,15 + 4341: -83,17 + 4342: -83,18 + 4343: -83,20 + 4344: -83,21 + 4345: -85,11 + 4346: -86,12 + 4347: -86,11 + 4348: -86,9 + 4349: -86,7 + 4350: -86,5 + 4351: -86,4 + 4352: -86,4 + 4353: -89,4 + 4354: -91,4 + 4355: -94,4 + 4356: -96,4 + 4357: -99,4 + 4358: -99,5 + 4359: -96,5 + 4360: -93,5 + 4361: -91,5 + 4362: -89,5 + 4363: -86,5 + 4364: -84,5 + 4365: -82,5 + 4366: -81,5 + 4367: -80,4 + 4368: -81,4 + 4369: -81,3 + 4370: -81,0 + 4371: -81,-2 + 4372: -81,-5 + 4373: -81,-7 + 4374: -80,-9 + 4375: -80,-7 + 4376: -80,-4 + 4377: -80,-1 + 4378: -81,-10 + 4379: -79,-10 + 4380: -76,-10 + 4381: -75,-9 + 4382: -77,-9 + 4383: -73,-10 + 4384: -72,-10 + 4385: -70,-10 + 4386: -70,-9 + 4387: -44,-10 + 4388: -42,-10 + 4389: -41,-10 + 4390: -40,-9 + 4391: -44,-9 + 4392: -41,-9 + 4393: -41,-8 + 4394: -40,-8 + 4395: -40,-7 + 4396: -41,-4 + 4397: -40,-3 + 4398: -40,-1 + 4399: -41,0 + 4400: -40,2 + 4401: -39,2 + 4402: -36,3 + 4403: -35,1 + 4404: -35,1 + 4405: -38,1 + 4406: -34,0 + 4407: -35,0 + 4408: -34,3 + 4409: -34,5 + 4410: -35,8 + 4411: -35,6 + 4412: -35,4 + 4413: -30,7 + 4414: -31,7 + 4415: -31,6 + 4416: -29,5 + 4417: -29,7 + 4418: -27,4 + 4419: -26,4 + 4420: -24,4 + 4421: -24,5 + 4422: -26,6 + 4423: -27,6 + 4424: -25,7 + 4425: -24,6 + 4426: -26,8 + 4427: -25,8 + 4428: -24,8 + 4429: -25,6 + 4430: -25,5 + 4431: -26,5 + 4432: -24,11 + 4433: -25,10 + 4434: -28,10 + 4435: -29,10 + 4436: -31,11 + 4437: -31,10 + 4438: -34,10 + 4439: -36,11 + 4440: -35,12 + 4441: -35,14 + 4442: -35,17 + 4443: -34,19 + 4444: -35,20 + 4445: -35,20 + 4446: -33,21 + 4447: -29,20 + 4448: -26,19 + 4449: -25,20 + 4450: -28,20 + 4451: -32,21 + 4452: -34,20 + 4453: -33,20 + 4454: -28,19 + 4455: -25,19 + 4456: -25,17 + 4457: -25,15 + 4458: -26,16 + 4459: -25,17 + 4460: -24,16 + 4461: -24,11 + 4462: -25,11 + 4463: -29,11 + 4464: -33,11 + 4465: -34,12 + 4466: -35,13 + 4467: -34,16 + 4468: -30,16 + 4469: -27,16 + 4470: -26,15 + 4471: -26,13 + 4472: -31,16 + 4473: -36,15 + 4474: -28,16 + 4475: -29,15 + 4476: -30,16 + 4477: -32,16 + 4478: -32,15 + 4479: -34,15 + 4480: -35,16 + 4481: -27,15 + 4482: -25,14 + 4483: -24,13 + 4484: -26,12 + 4485: -28,12 + 4486: -31,10 + 4487: -22,12 + 4497: -25,12 + 4498: -25,12 + 4499: -28,11 + 4500: -26,2 + 4501: -24,2 + 4502: -23,2 + 4503: -22,2 + 4504: -20,2 + 4505: -19,2 + 4506: -18,2 + 4507: -16,2 + 4508: -15,2 + 4509: -15,4 + 4510: -17,4 + 4511: -17,5 + 4512: -17,7 + 4513: -16,8 + 4514: -15,7 + 4515: -15,5 + 4516: -16,4 + 4517: -19,8 + 4518: -19,7 + 4519: -19,5 + 4520: -16,1 + 4521: -16,0 + 4522: -16,-2 + 4523: -16,-5 + 4524: -16,-7 + 4525: -16,-10 + 4526: -16,-11 + 4527: -15,-10 + 4528: -15,-9 + 4529: -15,-6 + 4530: -15,-4 + 4531: -18,-3 + 4532: -19,-3 + 4533: -20,-3 + 4534: -19,-4 + 4535: -18,-4 + 4536: -18,-5 + 4537: -19,-5 + 4538: -19,-6 + 4539: -18,-6 + 4540: -20,-6 + 4541: -20,-5 + 4542: -23,-4 + 4544: -26,-4 + 4545: -27,-4 + 4546: -27,-3 + 4547: -25,-3 + 4548: -23,-3 + 4549: -22,-2 + 4550: -24,-2 + 4551: -26,-2 + 4552: -27,-2 + 4553: -25,-1 + 4554: -23,-1 + 4555: -22,-1 + 4556: -23,-5 + 4557: -23,-6 + 4558: -23,-7 + 4559: -23,-10 + 4560: -24,-10 + 4561: -26,-10 + 4562: -27,-9 + 4563: -27,-8 + 4564: -24,-9 + 4565: -23,-9 + 4566: -24,-7 + 4567: -25,-6 + 4568: -24,-5 + 4569: -26,-5 + 4570: -27,-7 + 4571: -26,-8 + 4572: -26,-9 + 4573: -26,-6 + 4574: -26,-6 + 4575: -26,-7 + 4576: -25,-7 + 4577: -25,-10 + 4578: -24,-11 + 4579: -23,-8 + 4580: -24,-7 + 4582: -24,-3 + 4583: -26,-3 + 4584: -25,-2 + 4585: -37,-11 + 4586: -36,-10 + 4587: -36,-11 + 4589: -34,-10 + 4590: -33,-10 + 4591: -33,-9 + 4594: -38,-8 + 4595: -35,-8 + 4596: -34,-8 + 4597: -34,-7 + 4598: -33,-8 + 4599: -34,-7 + 4600: -37,-7 + 4601: -38,-6 + 4602: -38,-8 + 4603: -38,-8 + 4604: -36,-8 + 4605: -37,-6 + 4606: -38,-6 + 4607: -38,-5 + 4608: -38,-3 + 4612: -33,-4 + 4613: -33,-4 + 4614: -35,-4 + 4615: -36,-4 + 4617: -36,-6 + 4618: -33,-5 + 4619: -33,-6 + 4620: -33,-7 + 4621: -34,-6 + 4622: -34,-2 + 4623: -34,-3 + 4624: -34,-9 + 4627: -33,-10 + 4629: -36,-5 + 4630: -31,-11 + 4631: -30,-11 + 4632: -29,-17 + 4633: -30,-17 + 4634: -32,-17 + 4635: -31,-18 + 4636: -29,-19 + 4637: -29,-19 + 4638: -27,-19 + 4639: -26,-19 + 4640: -25,-21 + 4641: -24,-19 + 4642: -24,-21 + 4643: -26,-21 + 4644: -28,-21 + 4645: -29,-21 + 4646: -30,-21 + 4647: -30,-22 + 4650: -24,-21 + 4651: -25,-20 + 4652: -27,-20 + 4653: -28,-20 + 4654: -30,-20 + 4655: -30,-19 + 4656: -30,-18 + 4657: -29,-18 + 4658: -28,-19 + 4659: -31,-20 + 4660: -31,-21 + 4661: -33,-22 + 4662: -34,-22 + 4663: -35,-22 + 4664: -34,-21 + 4665: -33,-21 + 4666: -33,-20 + 4667: -34,-20 + 4668: -35,-20 + 4669: -35,-19 + 4670: -34,-19 + 4671: -33,-19 + 4672: -33,-18 + 4673: -34,-18 + 4674: -35,-18 + 4675: -35,-22 + 4676: -37,-26 + 4677: -38,-26 + 4678: -39,-26 + 4679: -40,-25 + 4680: -40,-25 + 4681: -37,-25 + 4682: -37,-24 + 4683: -39,-24 + 4684: -40,-24 + 4685: -41,-23 + 4686: -40,-23 + 4687: -38,-23 + 4688: -37,-23 + 4689: -37,-22 + 4690: -38,-22 + 4691: -40,-22 + 4692: -41,-22 + 4693: -41,-21 + 4694: -39,-21 + 4695: -38,-21 + 4696: -37,-21 + 4697: -37,-20 + 4698: -39,-20 + 4699: -41,-20 + 4700: -40,-19 + 4701: -38,-19 + 4702: -37,-19 + 4703: -37,-18 + 4704: -38,-18 + 4705: -40,-18 + 4706: -39,-19 + 4707: -41,-28 + 4708: -40,-28 + 4709: -38,-28 + 4710: -35,-28 + 4711: -34,-28 + 4712: -33,-28 + 4713: -33,-28 + 4714: -33,-29 + 4715: -35,-29 + 4716: -37,-29 + 4717: -40,-29 + 4718: -41,-30 + 4719: -41,-30 + 4720: -39,-30 + 4721: -36,-30 + 4722: -34,-30 + 4723: -33,-30 + 4724: -34,-29 + 4725: -36,-29 + 4726: -37,-30 + 4727: -38,-30 + 4728: -39,-29 + 4729: -39,-28 + 4730: -40,-30 + 4731: -41,-31 + 4732: -40,-31 + 4733: -38,-31 + 4734: -35,-31 + 4735: -34,-31 + 4736: -33,-31 + 4737: -33,-32 + 4738: -35,-32 + 4739: -37,-32 + 4740: -40,-32 + 4741: -41,-32 + 4742: -41,-32 + 4743: -40,-33 + 4744: -37,-33 + 4745: -35,-33 + 4746: -34,-33 + 4747: -34,-32 + 4748: -36,-32 + 4749: -36,-33 + 4750: -38,-32 + 4751: -38,-33 + 4752: -39,-33 + 4753: -41,-33 + 4754: -41,-34 + 4755: -39,-34 + 4756: -37,-34 + 4757: -34,-34 + 4758: -34,-34 + 4759: -38,-34 + 4760: -40,-36 + 4761: -41,-36 + 4762: -43,-36 + 4763: -46,-36 + 4764: -46,-36 + 4765: -47,-35 + 4766: -46,-35 + 4767: -45,-35 + 4768: -44,-35 + 4769: -43,-35 + 4770: -44,-36 + 4771: -45,-36 + 4772: -47,-37 + 4773: -46,-37 + 4774: -45,-37 + 4775: -41,-37 + 4776: -42,-37 + 4777: -44,-37 + 4778: -42,-37 + 4779: -47,-38 + 4780: -41,-37 + 4781: -46,-38 + 4782: -45,-38 + 4783: -44,-38 + 4784: -42,-38 + 4785: -41,-38 + 4786: -41,-38 + 4787: -40,-38 + 4788: -40,-39 + 4789: -41,-39 + 4790: -41,-39 + 4791: -44,-39 + 4792: -45,-39 + 4793: -46,-39 + 4794: -35,-24 + 4795: -35,-24 + 4796: -32,-24 + 4797: -31,-24 + 4798: -29,-24 + 4799: -29,-24 + 4800: -29,-25 + 4801: -30,-25 + 4802: -33,-25 + 4803: -35,-25 + 4804: -35,-26 + 4805: -34,-26 + 4806: -32,-26 + 4807: -30,-26 + 4808: -31,-25 + 4809: -31,-26 + 4810: -32,-25 + 4811: -33,-26 + 4812: -34,-25 + 4813: -33,-24 + 4814: -30,-24 + 4815: -29,-26 + 4816: -28,-25 + 4817: -27,-25 + 4818: -27,-26 + 4819: -26,-26 + 4820: -24,-26 + 4821: -23,-26 + 4822: -23,-25 + 4823: -25,-25 + 4824: -26,-25 + 4828: -23,-24 + 4829: -25,-26 + 4830: -24,-27 + 4831: -23,-27 + 4841: -30,-28 + 4842: -31,-28 + 4843: -31,-27 + 4844: -30,-27 + 4845: -29,-27 + 4846: -29,-28 + 4847: -29,-29 + 4848: -29,-31 + 4849: -29,-32 + 4850: -31,-30 + 4851: -30,-30 + 4852: -29,-30 + 4853: -31,-29 + 4854: -31,-29 + 4855: -30,-29 + 4856: -31,-31 + 4857: -31,-31 + 4858: -31,-33 + 4859: -31,-36 + 4860: -31,-38 + 4861: -31,-40 + 4862: -31,-42 + 4863: -31,-45 + 4864: -31,-47 + 4865: -31,-49 + 4866: -31,-50 + 4867: -30,-51 + 4868: -30,-51 + 4869: -30,-49 + 4870: -30,-47 + 4871: -30,-45 + 4872: -30,-44 + 4873: -30,-41 + 4874: -30,-39 + 4875: -30,-37 + 4876: -30,-35 + 4877: -30,-34 + 4878: -30,-33 + 4879: -30,-31 + 4880: -30,-32 + 4881: -31,-32 + 4882: -29,-33 + 4883: -29,-34 + 4884: -29,-36 + 4885: -29,-38 + 4886: -29,-38 + 4887: -29,-40 + 4888: -29,-42 + 4889: -29,-45 + 4890: -29,-47 + 4891: -29,-49 + 4892: -29,-50 + 4893: -29,-51 + 4894: -30,-50 + 4895: -31,-51 + 4896: -31,-48 + 4897: -30,-48 + 4898: -29,-48 + 4899: -30,-46 + 4900: -31,-46 + 4901: -31,-44 + 4902: -31,-43 + 4903: -30,-42 + 4904: -30,-43 + 4905: -29,-43 + 4906: -29,-44 + 4907: -29,-41 + 4908: -31,-41 + 4909: -31,-40 + 4910: -31,-39 + 4911: -29,-39 + 4912: -30,-38 + 4913: -31,-37 + 4914: -30,-36 + 4915: -29,-37 + 4916: -29,-35 + 4917: -31,-35 + 4918: -31,-34 + 4919: -27,-31 + 4920: -26,-31 + 4921: -24,-31 + 4922: -23,-31 + 4923: -23,-30 + 4924: -24,-30 + 4925: -26,-30 + 4926: -27,-30 + 4927: -27,-29 + 4928: -25,-29 + 4929: -24,-29 + 4930: -23,-29 + 4931: -23,-31 + 4932: -23,-32 + 4933: -24,-32 + 4934: -26,-32 + 4935: -26,-32 + 4936: -27,-32 + 4937: -26,-33 + 4938: -25,-33 + 4939: -24,-33 + 4940: -25,-32 + 4941: -25,-31 + 4942: -21,-32 + 4943: -22,-32 + 4944: -22,-31 + 4945: -22,-30 + 4946: -28,-32 + 4947: -28,-31 + 4948: -28,-30 + 4949: -21,-30 + 4950: -19,-30 + 4951: -19,-30 + 4952: -19,-31 + 4953: -21,-31 + 4954: -20,-32 + 4955: -19,-32 + 4956: -18,-31 + 4957: -18,-32 + 4958: -18,-33 + 4959: -19,-33 + 4960: -20,-33 + 4961: -21,-33 + 4962: -20,-31 + 4963: -18,-28 + 4964: -18,-27 + 4965: -19,-27 + 4966: -19,-28 + 4967: -20,-28 + 4968: -21,-28 + 4969: -21,-27 + 4970: -20,-27 + 4971: -19,-26 + 4972: -20,-26 + 4973: -20,-25 + 4974: -21,-25 + 4975: -21,-26 + 4976: -20,-35 + 4977: -20,-36 + 4978: -20,-38 + 4979: -20,-39 + 4980: -20,-41 + 4981: -20,-41 + 4982: -19,-41 + 4983: -18,-41 + 4984: -18,-40 + 4985: -18,-38 + 4986: -19,-35 + 4987: -19,-36 + 4988: -19,-37 + 4989: -19,-38 + 4990: -19,-39 + 4991: -19,-40 + 4992: -20,-40 + 4993: -20,-37 + 4994: -18,-37 + 4995: -21,-36 + 4996: -22,-36 + 4997: -24,-36 + 4998: -24,-35 + 4999: -22,-35 + 5000: -22,-35 + 5001: -22,-40 + 5002: -22,-40 + 5003: -23,-41 + 5004: -24,-40 + 5005: -23,-40 + 5006: -23,-39 + 5007: -23,-39 + 5008: -26,-41 + 5009: -27,-41 + 5010: -27,-40 + 5011: -26,-39 + 5012: -27,-39 + 5013: -27,-38 + 5014: -26,-36 + 5015: -26,-35 + 5016: -27,-35 + 5017: -27,-36 + 5018: -27,-37 + 5019: -26,-38 + 5020: -20,-43 + 5021: -20,-44 + 5022: -20,-46 + 5023: -20,-47 + 5024: -19,-47 + 5025: -18,-47 + 5026: -19,-45 + 5027: -19,-45 + 5028: -18,-44 + 5029: -19,-43 + 5030: -18,-44 + 5031: -18,-45 + 5032: -22,-46 + 5033: -23,-46 + 5034: -26,-46 + 5035: -27,-46 + 5036: -26,-47 + 5037: -24,-47 + 5038: -23,-47 + 5039: -24,-46 + 5040: -27,-45 + 5041: -24,-45 + 5042: -22,-45 + 5043: -22,-44 + 5044: -25,-44 + 5045: -27,-44 + 5046: -27,-43 + 5047: -24,-43 + 5048: -23,-43 + 5049: -33,-51 + 5050: -35,-51 + 5051: -38,-51 + 5052: -38,-51 + 5053: -38,-50 + 5054: -36,-50 + 5055: -33,-50 + 5056: -33,-49 + 5057: -35,-49 + 5058: -37,-49 + 5059: -38,-49 + 5060: -37,-50 + 5061: -34,-50 + 5062: -35,-50 + 5063: -36,-49 + 5064: -34,-49 + 5065: -33,-48 + 5066: -34,-48 + 5067: -36,-48 + 5068: -37,-48 + 5069: -38,-48 + 5070: -40,-48 + 5071: -40,-49 + 5072: -40,-50 + 5073: -40,-51 + 5074: -37,-53 + 5075: -36,-53 + 5076: -34,-53 + 5077: -33,-53 + 5078: -33,-54 + 5079: -34,-54 + 5080: -36,-54 + 5081: -37,-54 + 5082: -37,-55 + 5083: -35,-55 + 5084: -34,-55 + 5085: -33,-55 + 5086: -35,-54 + 5087: -35,-53 + 5088: -36,-55 + 5089: -31,-55 + 5090: -29,-55 + 5092: -31,-54 + 5093: -30,-53 + 5095: -29,-54 + 5096: -29,-54 + 5097: -31,-53 + 5098: -27,-51 + 5099: -27,-50 + 5100: -27,-49 + 5101: -26,-50 + 5102: -24,-50 + 5103: -24,-50 + 5104: -24,-49 + 5105: -23,-49 + 5106: -22,-49 + 5107: -22,-50 + 5108: -23,-50 + 5109: -22,-51 + 5110: -22,-52 + 5111: -22,-54 + 5112: -22,-55 + 5113: -24,-55 + 5114: -25,-54 + 5115: -26,-54 + 5116: -24,-54 + 5117: -23,-54 + 5118: -24,-53 + 5119: -23,-53 + 5120: -22,-53 + 5121: -23,-52 + 5122: -24,-51 + 5123: -24,-52 + 5124: -26,-53 + 5125: -26,-55 + 5126: -30,-56 + 5127: -30,-57 + 5128: -30,-57 + 5129: -29,-57 + 5130: -30,-58 + 5131: -53,-36 + 5132: -54,-36 + 5133: -56,-36 + 5134: -58,-36 + 5135: -59,-36 + 5136: -62,-36 + 5137: -63,-35 + 5138: -62,-35 + 5139: -61,-35 + 5140: -60,-35 + 5141: -58,-35 + 5142: -56,-38 + 5143: -55,-37 + 5144: -53,-37 + 5145: -53,-38 + 5146: -54,-38 + 5147: -56,-39 + 5148: -55,-39 + 5149: -53,-39 + 5150: -56,-41 + 5151: -55,-41 + 5152: -51,-41 + 5153: -51,-41 + 5154: -50,-42 + 5155: -48,-44 + 5156: -48,-45 + 5157: -48,-47 + 5158: -48,-48 + 5159: -49,-49 + 5160: -49,-49 + 5161: -49,-49 + 5162: -49,-46 + 5163: -49,-44 + 5164: -50,-44 + 5165: -50,-44 + 5166: -50,-46 + 5167: -50,-47 + 5168: -50,-49 + 5169: -50,-49 + 5170: -49,-48 + 5171: -49,-47 + 5172: -49,-45 + 5173: -52,-44 + 5174: -52,-44 + 5175: -52,-46 + 5176: -52,-48 + 5177: -52,-49 + 5178: -53,-49 + 5179: -53,-48 + 5180: -53,-46 + 5181: -53,-44 + 5182: -54,-44 + 5183: -54,-44 + 5184: -54,-47 + 5185: -54,-49 + 5186: -55,-49 + 5187: -55,-49 + 5188: -55,-45 + 5189: -55,-44 + 5190: -56,-47 + 5191: -56,-46 + 5192: -51,-49 + 5193: -51,-48 + 5194: -53,-47 + 5195: -53,-45 + 5196: -54,-45 + 5197: -55,-46 + 5198: -54,-47 + 5199: -46,-48 + 5200: -46,-47 + 5201: -46,-45 + 5202: -45,-44 + 5203: -45,-45 + 5204: -45,-47 + 5205: -45,-48 + 5236: -44,-42 + 5237: -43,-42 + 5238: -42,-42 + 5239: -43,-45 + 5240: -43,-45 + 5241: -42,-47 + 5242: -40,-46 + 5243: -39,-46 + 5244: -36,-46 + 5245: -34,-46 + 5246: -33,-45 + 5247: -34,-45 + 5248: -35,-45 + 5249: -39,-45 + 5250: -41,-45 + 5251: -41,-45 + 5252: -37,-46 + 5253: -42,-47 + 5254: -42,-49 + 5255: -42,-51 + 5256: -42,-52 + 5257: -42,-54 + 5258: -42,-56 + 5259: -42,-59 + 5260: -42,-60 + 5261: -42,-61 + 5262: -42,-61 + 5263: -41,-61 + 5264: -40,-61 + 5265: -38,-61 + 5266: -37,-61 + 5267: -35,-61 + 5268: -37,-60 + 5269: -38,-60 + 5270: -40,-60 + 5271: -38,-60 + 5272: -35,-60 + 5273: -33,-60 + 5274: -32,-60 + 5275: -31,-60 + 5276: -28,-60 + 5277: -27,-61 + 5278: -29,-61 + 5279: -28,-61 + 5280: -28,-61 + 5281: -25,-61 + 5287: -25,-60 + 5288: -28,-60 + 5289: -30,-64 + 5290: -30,-65 + 5291: -31,-66 + 5292: -31,-69 + 5293: -31,-69 + 5294: -29,-69 + 5295: -30,-69 + 5296: -30,-68 + 5297: -30,-66 + 5298: -30,-65 + 5299: -29,-64 + 5300: -29,-64 + 5301: -29,-66 + 5302: -29,-67 + 5303: -30,-67 + 5304: -28,-67 + 5305: -28,-68 + 5306: -27,-69 + 5307: -26,-69 + 5308: -25,-69 + 5309: -28,-65 + 5310: -27,-65 + 5311: -26,-64 + 5313: -29,-64 + 5314: -29,-65 + 5315: -25,-64 + 5316: -35,-63 + 5317: -35,-63 + 5318: -38,-63 + 5319: -40,-63 + 5320: -40,-64 + 5321: -39,-64 + 5322: -35,-64 + 5323: -33,-63 + 5324: -33,-65 + 5325: -34,-65 + 5326: -37,-65 + 5327: -38,-65 + 5328: -40,-65 + 5329: -40,-66 + 5330: -38,-66 + 5331: -34,-66 + 5332: -33,-66 + 5333: -33,-67 + 5334: -37,-67 + 5335: -39,-67 + 5336: -37,-68 + 5337: -35,-68 + 5338: -34,-68 + 5339: -36,-70 + 5340: -36,-71 + 5341: -36,-73 + 5342: -35,-72 + 5343: -35,-70 + 5344: -34,-70 + 5345: -34,-71 + 5346: -33,-70 + 5347: -34,-70 + 5348: -35,-71 + 5349: -39,-70 + 5350: -42,-70 + 5351: -42,-70 + 5352: -45,-70 + 5353: -46,-70 + 5354: -45,-69 + 5355: -42,-69 + 5356: -42,-68 + 5357: -44,-69 + 5358: -43,-69 + 5359: -34,-76 + 5360: -34,-77 + 5361: -34,-78 + 5362: -19,-65 + 5363: -21,-65 + 5364: -20,-64 + 5365: -18,-64 + 5366: -17,-64 + 5367: -19,-63 + 5368: -20,-63 + 5369: -20,-62 + 5372: -24,-61 + 5373: -27,-61 + 5374: -27,-60 + 5375: -25,-60 + 5383: -23,-57 + 5384: -23,-57 + 5385: -25,-57 + 5386: -26,-57 + 5387: -27,-57 + 5397: -16,-55 + 5404: -16,-46 + 5405: -16,-44 + 5406: -15,-45 + 5407: -15,-44 + 5408: -15,-41 + 5409: -14,-40 + 5410: -14,-41 + 5411: -13,-42 + 5412: -13,-42 + 5413: -13,-40 + 5414: -12,-40 + 5415: -12,-41 + 5416: -12,-42 + 5417: -11,-41 + 5418: -11,-40 + 5419: -12,-43 + 5420: -11,-43 + 5421: -11,-44 + 5422: -12,-44 + 5423: -13,-44 + 5424: -13,-43 + 5425: -15,-44 + 5426: -15,-42 + 5427: -15,-41 + 5428: -15,-38 + 5429: -16,-40 + 5430: -15,-38 + 5431: -14,-37 + 5432: -14,-36 + 5433: -16,-36 + 5434: -14,-37 + 5435: -11,-38 + 5436: -10,-38 + 5437: -8,-37 + 5438: -9,-37 + 5439: -11,-36 + 5440: -9,-36 + 5441: -6,-36 + 5442: -6,-36 + 5443: -5,-37 + 5444: -6,-38 + 5445: -6,-38 + 5446: -4,-35 + 5447: -4,-35 + 5633: -13,-5 + 5634: -12,-5 + 5635: -11,-5 + 5636: -11,-4 + 5637: -12,-4 + 5638: -13,-4 + 5639: -14,-4 + 5640: -13,-3 + 5641: -11,-3 + 5642: -12,-3 + 5643: -11,-2 + 5644: -12,-2 + 5645: -13,-2 + 5646: -13,-1 + 5647: -12,-1 + 5648: -11,-1 + 5649: -12,0 + 5650: -12,1 + 5651: -13,1 + 5652: -13,2 + 5653: -13,3 + 5654: -12,3 + 5655: -12,2 + 5656: -11,2 + 5657: -11,1 + 5658: -11,3 + 5659: -11,4 + 5660: -11,5 + 5661: -13,5 + 5662: -12,5 + 5663: -13,6 + 5664: -12,6 + 5665: -11,6 + 5666: -11,7 + 5667: -12,7 + 5668: -13,7 + 5669: -10,6 + 5670: -9,6 + 5671: -8,6 + 5672: -13,-11 + 5673: -13,-12 + 5674: -13,-13 + 5675: -13,-14 + 5676: -13,-15 + 5677: -13,-16 + 5678: -13,-17 + 5679: -12,-17 + 5680: -12,-16 + 5681: -12,-15 + 5682: -12,-14 + 5683: -12,-13 + 5684: -12,-12 + 5685: -12,-11 + 5686: -11,-11 + 5687: -11,-12 + 5688: -11,-13 + 5689: -11,-14 + 5690: -11,-15 + 5691: -11,-16 + 5692: -11,-17 + 5693: -10,-17 + 5694: -10,-16 + 5695: -10,-15 + 5696: -9,-15 + 5697: -8,-15 + 5698: -7,-15 + 5699: -6,-15 + 5700: -4,-15 + 5701: -5,-15 + 5704: -3,-16 + 5705: -4,-16 + 5706: -3,-15 + 5707: -5,-16 + 5708: -6,-16 + 5709: -7,-16 + 5710: -8,-16 + 5711: -9,-16 + 5712: -9,-17 + 5713: -8,-17 + 5714: -7,-17 + 5715: -6,-17 + 5716: -4,-17 + 5717: -5,-17 + 5718: -3,-17 + 5719: -3,-13 + 5720: -3,-14 + 5721: -4,-14 + 5722: -4,-13 + 5723: -5,-13 + 5724: -5,-14 + 5725: -6,-13 + 5726: -7,-13 + 5727: -8,-13 + 5728: -9,-13 + 5729: -10,-13 + 5730: -10,-12 + 5731: -10,-11 + 5732: -8,-11 + 5733: -9,-11 + 5734: -9,-12 + 5735: -8,-12 + 5736: -7,-12 + 5737: -7,-11 + 5738: -6,-11 + 5739: -6,-12 + 5740: -5,-12 + 5741: -5,-11 + 5742: -4,-11 + 5743: -4,-12 + 5744: -3,-12 + 5745: -3,-11 + 5746: -5,-10 + 5747: -7,-9 + 5748: -6,-9 + 5749: -5,-9 + 5750: -4,-9 + 5751: -3,-9 + 5752: -3,-8 + 5753: -4,-8 + 5754: -5,-8 + 5755: -6,-8 + 5756: -7,-8 + 5757: -7,-7 + 5758: -6,-7 + 5759: -5,-7 + 5760: -4,-7 + 5761: -3,-7 + 5762: -9,-9 + 5763: -10,-9 + 5764: -11,-9 + 5765: -12,-9 + 5766: -13,-9 + 5767: -13,-8 + 5768: -12,-8 + 5769: -10,-8 + 5770: -11,-8 + 5771: -9,-8 + 5772: -9,-7 + 5773: -10,-7 + 5774: -11,-7 + 5775: -12,-7 + 5776: -13,-7 + 5777: -13,-19 + 5778: -13,-20 + 5779: -13,-21 + 5780: -12,-21 + 5781: -12,-20 + 5782: -12,-19 + 5783: -11,-19 + 5784: -10,-19 + 5785: -9,-19 + 5786: -9,-20 + 5787: -10,-20 + 5788: -11,-20 + 5789: -11,-21 + 5790: -10,-21 + 5791: -9,-21 + 5792: -7,-21 + 5793: -6,-21 + 5794: -5,-21 + 5795: -4,-21 + 5796: -3,-21 + 5797: -3,-20 + 5798: -4,-20 + 5799: -5,-20 + 5800: -6,-20 + 5801: -7,-20 + 5802: -7,-19 + 5803: -6,-19 + 5804: -5,-19 + 5805: -4,-19 + 5806: -3,-19 + 5807: -26,-63 + 5808: -33,-64 + 5820: -124,15 + 5821: -124,16 + 5822: -124,17 + 5823: -126,17 + 5824: -127,17 + 5825: -126,16 + 5826: -125,17 + 5827: -117,14 + 5828: -117,15 + 5829: -116,15 + 5830: -116,14 + 5831: -120,12 + 5832: -121,12 + 5833: -121,13 + 5834: -123,12 + 5835: -123,10 + 5836: -123,10 + 5837: -123,9 + 5838: -123,7 + 5839: -123,6 + 5840: -123,5 + 5841: -123,4 + 5842: -123,2 + 5843: -123,0 + 5844: -121,0 + 5845: -119,0 + 5846: -117,1 + 5847: -117,2 + 5848: -121,2 + 5849: -122,2 + 5850: -119,2 + 5851: -118,2 + 5852: -120,1 + 5853: -120,2 + 5854: -120,4 + 5855: -118,5 + 5856: -118,4 + 5857: -123,3 + 5858: -121,5 + 5859: -121,6 + 5860: -120,6 + 5861: -122,7 + 5862: -121,9 + 5863: -118,8 + 5864: -117,8 + 5865: -116,7 + 5866: -116,5 + 5867: -117,3 + 5868: -116,1 + 5869: -116,1 + 5870: -117,4 + 5871: -117,7 + 5872: -120,9 + 5873: -121,8 + 5874: -122,6 + 5875: -118,7 + 5876: -119,4 + 5877: -121,2 + 5878: -123,1 + 5879: -124,2 + 5880: -124,5 + 5881: -123,7 + 5882: -120,8 + 5883: -121,6 + 5884: -121,4 + 5885: -120,6 + 5886: -119,8 + 5887: -118,8 + 5888: -122,4 + 5889: -122,3 + 5890: -119,7 + 5891: -119,8 + 5892: -119,9 + 5893: -116,9 + 5894: -118,10 + 5895: -123,10 + 5896: -123,11 + 5897: -123,11 + 5898: -123,13 + 5899: -120,12 + 5900: -119,12 + 5901: -122,16 + 5939: -93,-61 + 5940: -93,-60 + 5941: -93,-59 + 6121: -70,-26 + 6122: -69,-26 + 6123: -68,-26 + 6124: -68,-25 + 6125: -69,-25 + 6126: -70,-25 + 6127: -67,-26 + 6128: -68,-34 + 6129: -68,-33 + 6130: -68,-32 + 6131: -68,-31 + 6132: -68,-30 + 6133: -70,-30 + 6134: -70,-31 + 6135: -69,-31 + 6136: -69,-32 + 6137: -70,-32 + 6138: -70,-33 + 6139: -69,-33 + 6140: -69,-34 + 6141: -70,-34 + 6151: -72,-36 + 6152: -72,-35 + 6153: -72,-34 + 6154: -72,-33 + 6155: -72,-31 + 6156: -72,-29 + 6162: -73,-29 + 6163: -73,-29 + 6164: -73,-31 + 6165: -73,-32 + 6166: -73,-35 + 6167: -73,-35 + 6168: -73,-36 + 6169: -75,-39 + 6170: -75,-38 + 6171: -76,-38 + 6172: -76,-39 + 6173: -76,-42 + 6174: -77,-45 + 6175: -76,-45 + 6176: -76,-45 + 6177: -76,-46 + 6178: -76,-49 + 6179: -66,-20 + 6180: -65,-20 + 6181: -64,-20 + 6182: -63,-20 + 6183: -62,-20 + 6184: -61,-20 + 6185: -60,-20 + 6186: -59,-20 + 6187: -58,-20 + 6188: -58,-19 + 6189: -59,-19 + 6190: -60,-19 + 6191: -61,-19 + 6194: -62,-19 + 6195: -63,-19 + 6196: -65,-19 + 6197: -64,-19 + 6198: -66,-19 + 6200: -70,-21 + 6201: -70,-22 + 6202: -70,-23 + 6216: -72,-60 + 6217: -72,-61 + 6218: -71,-61 + 6219: -71,-60 + 6220: -71,-54 + 6221: -72,-54 + 6222: -72,-53 + 6223: -71,-53 + 6288: -137,-20 + 6294: -141,-22 + 6295: -140,-22 + 6296: -139,-22 + 6297: -138,-22 + 6298: -137,-22 + 6325: -137,-21 + 6326: -138,-21 + 6327: -139,-21 + 6328: -140,-21 + 6329: -141,-21 + 6330: -142,-21 + 6331: -142,-20 + 6332: -142,-19 + 6333: -142,-18 + 6334: -142,-17 + 6337: -142,-14 + 6339: -141,-14 + 6749: -99,14 + 6750: -99,13 + 6751: -100,13 + 6752: -100,14 + 6753: -101,13 + 6754: -101,14 + 6755: -101,15 + 6756: -102,15 + 6757: -102,14 + 6758: -102,13 + 6759: -103,13 + 6760: -103,14 + 6765: -104,14 + 6766: -104,13 + 6794: -103,15 + 6795: -104,15 + 6796: -103,16 + 6797: -104,16 + 6798: -99,15 + 6799: -99,16 + 6800: -100,16 + 6801: -101,16 + 6802: -102,16 + 6809: -51,-25 + 6810: -54,-25 + 6811: -56,-25 + 6812: -55,-21 + 6813: -55,-20 + 6814: -51,-24 + 6815: -51,-23 + 6816: -51,-22 + 7225: -137,22 + 7226: -137,23 + 7227: -137,24 + 7228: -138,24 + 7229: -138,23 + 7230: -138,22 + 7231: -139,22 + 7232: -139,23 + 7233: -139,24 + 7234: -138,25 + 7235: -138,26 + 7236: -138,27 + 7237: -137,26 + 7238: -137,27 + 7239: -137,28 + 7244: -20,16 + 7245: -20,18 + 7246: -19,18 + 7247: -19,17 + 7248: -20,20 + 7249: -19,19 + 7250: -53,-20 + 7251: -52,-20 + 7252: -51,-21 - node: - zIndex: 1 color: '#52B4E996' - id: QuarterTileOverlayGreyscale + id: FullTileOverlayGreyscale decals: - 711: 398,404 - 712: 399,404 - 713: 400,404 - 1621: 450,414 - 1623: 448,414 - 1624: 447,414 - 1625: 446,414 - 1626: 445,414 - 1633: 450,415 - 1634: 450,416 - 1640: 449,414 - 1664: 452,418 - 2034: 380,418 - 2035: 381,418 - 2036: 382,418 - 2039: 383,418 - 2040: 383,419 - 2048: 382,420 + 215: -58,7 + 216: -57,7 - node: - zIndex: 3 + angle: 4.71238898038469 rad color: '#52B4E996' - id: QuarterTileOverlayGreyscale + id: FullTileOverlayGreyscale decals: - 6736: 410,404 - 6737: 407,404 - 6738: 406,404 - 6739: 405,404 - 6740: 403,404 - 6741: 402,404 - 6742: 401,404 + 2862: -59,7 - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale + color: '#A4610696' + id: FullTileOverlayGreyscale decals: - 1390: 416,407 - 3665: 502,384 + 242: -69,4 + 243: -69,5 + 244: -69,6 - node: - zIndex: 1 - color: '#79150096' - id: QuarterTileOverlayGreyscale + color: '#D381C996' + id: FullTileOverlayGreyscale decals: - 2860: 339,397 - 2861: 340,397 - 2862: 341,397 - 2863: 342,397 - 2864: 343,397 - 2865: 344,397 - 2866: 344,398 - 6375: 336,441 - 6376: 336,440 - 6377: 335,439 - 6378: 333,438 - 6379: 333,437 - 6432: 334,441 - 6433: 334,440 - 6434: 333,440 + 236: -55,5 + 237: -55,4 + 238: -55,6 - node: - zIndex: 1 - color: '#8C1D9941' - id: QuarterTileOverlayGreyscale + color: '#D4D4D496' + id: FullTileOverlayGreyscale decals: - 2516: 360,378 - 2517: 359,378 - 2518: 358,378 - 2519: 358,377 - 2520: 357,377 - 2521: 357,376 + 1811: -84,-24 + 1812: -83,-24 + 1813: -82,-24 + 1817: -82,-23 + 1818: -82,-22 + 1819: -82,-21 + 1820: -83,-21 + 1821: -84,-21 + 1822: -84,-22 + 1823: -84,-23 - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale + color: '#DE3A3A96' + id: FullTileOverlayGreyscale decals: - 1303: 415,420 - 1304: 415,419 - 1305: 415,418 - 1306: 415,417 - 1307: 415,416 - 1315: 417,420 - 1325: 413,422 - 1326: 412,422 - 1327: 411,422 - 1328: 411,421 - 1329: 411,420 - 1330: 411,419 - 1331: 411,418 - 1332: 411,417 - 1333: 411,416 + 239: -65,7 + 240: -67,7 + 241: -66,7 - node: - zIndex: 1 - color: '#9FED5896' - id: QuarterTileOverlayGreyscale + color: '#EFB34196' + id: FullTileOverlayGreyscale decals: - 733: 405,393 - 1065: 421,351 - 1095: 412,387 - 2556: 401,369 - 6336: 342,440 - 6337: 341,440 - 6338: 340,440 - 6339: 339,440 - 6340: 338,440 - 6622: 397,404 - 6623: 396,404 - 6624: 395,404 - 6625: 394,404 - 6626: 390,404 + 211: -63,8 + 212: -61,8 + 213: -62,8 - node: - zIndex: 3 - color: '#9FED5896' - id: QuarterTileOverlayGreyscale + color: '#43990996' + id: HalfTileOverlayGreyscale + decals: + 811: -26,-53 + 812: -25,-53 + 826: -23,-49 + 827: -22,-49 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale decals: - 6713: 391,404 + 603: -34,-28 + 604: -35,-28 + 606: -36,-28 + 753: -23,-39 + 754: -23,-35 - node: - zIndex: 1 color: '#A4610696' - id: QuarterTileOverlayGreyscale + id: HalfTileOverlayGreyscale decals: - 786: 374,389 - 787: 374,388 - 788: 374,387 - 789: 374,386 - 790: 374,384 - 791: 374,383 - 792: 374,382 - 793: 374,381 - 794: 374,380 - 795: 374,379 + 1006: -6,-19 + 1007: -5,-19 + 1011: -4,-19 - node: - zIndex: 1 color: '#D381C996' - id: QuarterTileOverlayGreyscale + id: HalfTileOverlayGreyscale decals: - 2412: 354,383 - 2413: 355,383 - 2414: 356,383 - 2629: 359,395 + 2549: -122,-50 + 2550: -121,-50 + 2551: -120,-50 + 2602: -121,-40 + 2603: -122,-40 + 6930: -126,-54 + 6931: -127,-54 - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale + color: '#D4D4D496' + id: HalfTileOverlayGreyscale decals: - 766: 383,400 - 767: 383,399 - 768: 383,398 - 769: 383,397 - 770: 382,397 - 771: 381,397 - 772: 380,397 - 773: 379,397 - 774: 377,397 - 775: 376,397 - 776: 375,397 - 777: 374,397 - 778: 374,396 - 884: 389,393 - 889: 386,397 - 890: 388,397 - 891: 389,397 - 892: 390,397 - 944: 403,372 - 945: 403,371 - 946: 403,370 - 947: 403,369 - 948: 403,368 - 949: 403,367 - 958: 405,376 - 967: 407,374 - 978: 414,372 - 979: 414,371 - 980: 414,370 - 981: 414,369 - 982: 414,368 - 983: 414,367 - 984: 407,368 - 985: 407,369 - 986: 407,370 - 987: 407,372 - 1005: 397,404 - 1006: 396,404 - 1007: 395,404 - 1008: 394,404 - 1010: 390,404 - 1011: 392,406 - 1020: 393,411 - 1026: 411,400 - 1027: 411,401 - 1043: 374,378 - 6744: 411,399 - 6745: 411,398 - 6746: 411,397 - 6747: 410,397 - 6748: 408,397 - 6749: 407,397 - 6750: 406,397 - 6752: 405,397 - 6753: 404,397 - 6754: 403,397 - 6755: 402,397 - 6756: 401,397 - 6757: 400,397 - 6758: 399,397 - 6759: 398,397 - 6760: 397,397 - 6761: 396,397 - 6762: 395,397 - 6763: 394,397 - 6766: 393,398 - 6767: 392,398 - 6768: 392,397 - 6769: 391,397 + 416: -33,12 + 417: -32,12 + 418: -31,12 + 419: -31,12 + 420: -30,12 + 421: -29,12 + 422: -28,12 + 423: -27,12 + 424: -33,17 + 425: -32,17 + 426: -31,17 + 427: -31,17 + 428: -30,17 + 429: -29,17 + 430: -29,17 + 431: -27,17 + 439: -28,17 + 1260: -63,-23 + 1261: -62,-23 + 1263: -61,-23 - node: color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale + id: HalfTileOverlayGreyscale decals: - 3686: 510,386 - 3687: 510,385 - 3688: 510,384 - 3689: 509,384 - 3691: 508,385 - 3692: 510,388 - 3699: 506,385 - 3700: 506,384 - 3701: 505,384 - 3702: 504,384 - 3709: 504,388 - 3710: 503,388 - 3715: 506,387 - 3716: 506,388 - 3717: 506,389 - 3728: 504,390 + 906: -6,-7 + 907: -5,-7 + 908: -4,-7 + 1780: -92,-18 - node: - zIndex: 1 - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale + color: '#FA750096' + id: HalfTileOverlayGreyscale decals: - 1453: 426,404 - 1462: 426,397 - 1474: 426,391 - 1498: 446,404 - 1707: 422,404 - 1725: 424,389 - 1740: 424,387 - 1741: 425,387 - 1742: 426,387 - 1743: 427,387 - 2032: 378,418 - 2033: 379,418 - 2037: 377,418 - 2038: 376,418 - 2601: 354,391 - 2602: 354,392 - 2603: 354,393 - 2604: 356,393 + 573: -40,-28 + 574: -39,-28 + 575: -38,-28 - node: - zIndex: 3 - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 decals: - 6690: 331,402 - 6691: 331,403 - 6692: 331,404 - 6715: 414,397 - 6716: 415,397 - 6717: 416,397 - 6718: 417,397 - 6719: 418,397 - 6720: 420,397 - 6734: 413,404 - 6735: 411,404 + 137: -62,2 - node: - zIndex: 1 - color: '#EFB34196' - id: QuarterTileOverlayGreyscale + color: '#43990996' + id: HalfTileOverlayGreyscale180 decals: - 1565: 460,401 - 1590: 450,405 - 1679: 448,422 - 1680: 447,422 - 1681: 447,421 - 2184: 329,404 - 2190: 327,402 - 2191: 327,403 - 2192: 327,404 - 2193: 327,406 - 2194: 327,407 - 2195: 327,408 - 2196: 328,408 - 2324: 324,417 - 2326: 322,417 - 2353: 347,397 - 2354: 348,397 - 2355: 348,398 - 2356: 348,399 + 816: -26,-55 + 817: -25,-55 + 818: -24,-55 + 819: -23,-55 + 820: -22,-55 - node: - zIndex: 1 - color: '#FA750096' - id: QuarterTileOverlayGreyscale + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 decals: - 2887: 408,406 - 2888: 409,406 - 2889: 409,407 - 2890: 409,408 - 2891: 409,409 - 2892: 409,410 + 608: -34,-34 + 609: -35,-34 + 610: -36,-34 + 671: -26,-33 + 672: -25,-33 + 673: -24,-33 + 675: -20,-33 + 755: -23,-37 + 756: -23,-41 - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 + color: '#A4610696' + id: HalfTileOverlayGreyscale180 decals: - 1228: 397,415 - 1229: 396,415 - 1230: 395,415 - 1231: 393,414 - 1232: 392,414 + 1012: -4,-17 + 1013: -5,-17 + 1014: -6,-17 - node: - zIndex: 1 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 + color: '#D381C996' + id: HalfTileOverlayGreyscale180 decals: - 1759: 422,407 - 1760: 422,408 - 1761: 422,409 - 1776: 422,414 - 1778: 420,411 - 1779: 419,411 - 1780: 418,411 - 1781: 418,410 - 1782: 418,408 - 1795: 422,411 - 1796: 423,411 - 1797: 424,411 - 1798: 426,411 - 1799: 426,412 - 1896: 373,416 - 1897: 372,416 - 1898: 371,416 - 1899: 370,416 - 1900: 369,416 - 1901: 368,416 - 1903: 366,416 - 1904: 365,416 - 1905: 364,416 - 1906: 363,416 - 1907: 373,417 - 1908: 374,417 - 1909: 375,417 - 1910: 376,417 - 1911: 377,417 - 1912: 378,417 - 1913: 379,417 - 1914: 380,417 - 1915: 381,417 - 1916: 382,417 - 1917: 383,417 - 1918: 384,417 - 1920: 385,416 - 1921: 386,416 - 1949: 367,416 - 1965: 368,417 - 1986: 381,423 - 1989: 383,422 - 2068: 376,414 - 2071: 378,415 - 2404: 351,385 - 2405: 350,385 - 2406: 350,384 - 2533: 371,398 - 2686: 372,419 + 2569: -121,-52 + 2570: -122,-52 + 2591: -122,-42 + 2592: -121,-42 + 2593: -120,-42 + 6929: -126,-56 + 6932: -127,-56 - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale180 + color: '#D4D4D496' + id: HalfTileOverlayGreyscale180 decals: - 328: 357,402 - 329: 356,402 - 330: 354,402 - 331: 353,402 - 332: 352,402 - 333: 350,402 - 334: 349,402 - 335: 348,402 - 336: 346,402 - 337: 345,402 - 338: 342,402 - 339: 341,402 - 340: 341,401 - 341: 340,401 - 342: 339,401 - 343: 338,401 - 344: 337,401 - 347: 358,392 - 348: 359,392 - 349: 360,392 - 350: 361,392 - 351: 362,392 - 352: 362,393 - 367: 362,395 - 368: 362,396 - 369: 362,397 - 370: 362,398 - 371: 362,399 - 372: 362,400 - 373: 366,402 - 374: 367,402 - 375: 368,402 - 376: 369,402 - 377: 370,402 - 378: 371,402 - 379: 372,402 - 381: 374,402 - 382: 375,402 - 383: 376,402 - 384: 377,402 - 385: 378,402 - 386: 379,402 - 387: 380,402 - 474: 390,389 - 475: 390,388 - 476: 390,387 - 477: 390,386 - 478: 390,391 - 480: 390,383 - 481: 390,381 - 482: 390,380 - 483: 390,379 - 484: 390,378 - 485: 389,378 - 673: 335,402 - 674: 334,402 - 675: 332,402 - 676: 333,402 - 677: 331,402 - 806: 388,369 - 807: 389,369 - 808: 390,369 - 809: 390,376 - 810: 390,375 - 817: 395,375 - 819: 396,374 - 820: 396,373 - 821: 396,372 - 822: 396,371 - 823: 396,370 - 824: 396,369 - 825: 395,369 - 2467: 365,383 - 2468: 366,383 - 2469: 367,383 - 2470: 367,384 - 2471: 367,385 - 2472: 367,386 - 2473: 367,387 - 2474: 368,387 - 2475: 369,387 - 2476: 371,387 - 2477: 372,387 - 2478: 372,389 - 2490: 369,390 - 2499: 358,384 - 2500: 359,384 - 2501: 360,384 - 2502: 361,384 - 2503: 362,384 - 2504: 363,384 - 2754: 310,386 - 2755: 311,386 - 2756: 312,386 - 2757: 313,386 - 2758: 314,386 - 2759: 315,386 - 2760: 316,386 - 2761: 317,386 - 2762: 309,386 - 2763: 307,386 - 2765: 307,384 - 2766: 307,383 - 2767: 307,382 - 2768: 307,381 - 2769: 307,380 - 2770: 307,379 - 2771: 306,379 - 2772: 305,379 - 2790: 317,388 - 2803: 331,388 - 2804: 331,387 - 2805: 331,386 - 6839: 404,378 - 6840: 405,378 - 6874: 381,402 - 6875: 382,402 - 6876: 363,402 - 6877: 360,402 - 6878: 359,402 + 409: -33,14 + 410: -32,14 + 411: -31,14 + 412: -30,14 + 413: -29,14 + 414: -28,14 + 415: -27,14 + 432: -33,19 + 433: -32,19 + 434: -31,19 + 435: -30,19 + 436: -29,19 + 437: -28,19 + 438: -27,19 - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale180 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 decals: - 7007: 414,363 - 7008: 414,364 - 7009: 414,365 - 7013: 416,363 - 7014: 417,363 + 909: -6,-9 + 910: -5,-9 + 911: -4,-9 + 1776: -92,-24 - node: - zIndex: 1 - color: '#3EB38896' - id: QuarterTileOverlayGreyscale180 + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 decals: - 1820: 409,385 - 1821: 407,384 - 1822: 407,385 - 2280: 328,418 - 2282: 329,419 + 969: -11,-17 + 970: -12,-17 + 971: -10,-17 + 993: -12,-21 + 994: -10,-21 + 995: -11,-21 - node: - color: '#413A3AFF' - id: QuarterTileOverlayGreyscale180 + color: '#334E6DC8' + id: HalfTileOverlayGreyscale270 decals: - 6521: 420,401 - 6522: 420,401 - 6525: 420,402 + 143: -63,3 - node: - color: '#4493BDFF' - id: QuarterTileOverlayGreyscale180 + color: '#43990996' + id: HalfTileOverlayGreyscale270 decals: - 1204: 401,415 - 1205: 400,415 - 1206: 399,415 - 1213: 401,418 - 1214: 401,417 - 1215: 401,416 + 813: -27,-54 + 822: -24,-52 + 823: -24,-51 + 824: -24,-50 - node: color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 + id: HalfTileOverlayGreyscale270 decals: - 1147: 403,406 - 1148: 403,407 - 1149: 403,408 - 1151: 403,410 - 1152: 403,411 - 1153: 405,410 - 1199: 407,418 - 1258: 399,410 + 502: -31,-18 + 503: -31,-19 + 504: -31,-20 + 505: -31,-21 + 506: -31,-22 + 757: -24,-40 + 758: -24,-36 - node: - zIndex: 1 - color: '#52B4E996' - id: QuarterTileOverlayGreyscale180 + color: '#D381C996' + id: HalfTileOverlayGreyscale270 decals: - 1627: 444,415 - 1628: 444,416 - 1629: 444,417 - 1630: 444,418 - 1631: 444,419 - 1632: 445,419 - 1655: 447,417 - 1656: 448,417 - 1657: 449,417 - 1658: 447,418 - 1659: 447,419 - 1660: 448,419 - 1661: 449,419 - 1662: 450,419 - 1663: 451,419 - 2047: 382,420 - 2049: 381,421 - 2050: 380,421 - 2051: 379,421 + 2552: -123,-51 + 2567: -120,-53 + 2599: -120,-39 + 2605: -123,-41 - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale180 + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 decals: - 3666: 502,384 + 914: -7,-8 + 1687: -98,-19 + 1700: -97,-23 + 1702: -97,-24 + 1703: -97,-27 + 1704: -97,-28 + 1706: -97,-31 + 1707: -97,-32 + 1768: -93,-23 + 1769: -93,-22 + 1770: -93,-21 + 1771: -93,-20 + 1772: -93,-19 + 1928: -97,-26 + 1929: -97,-30 + 1933: -97,-25 + 1934: -97,-29 + 1935: -97,-33 - node: - zIndex: 1 - color: '#79150096' - id: QuarterTileOverlayGreyscale180 + color: '#FA750096' + id: HalfTileOverlayGreyscale270 decals: - 2853: 343,399 - 2854: 342,399 - 2855: 341,399 - 2856: 340,399 - 2857: 339,399 - 2858: 338,399 - 2859: 338,398 - 6368: 331,440 - 6369: 331,441 - 6370: 331,442 - 6371: 332,442 - 6373: 334,442 - 6374: 335,442 - 6380: 331,438 - 6381: 331,437 - 6435: 332,441 + 568: -35,-25 - node: - zIndex: 1 - color: '#8C1D9941' - id: QuarterTileOverlayGreyscale180 + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 decals: - 2522: 357,376 - 2523: 360,378 - 2524: 359,380 - 2525: 359,381 - 2526: 359,382 + 139: -61,3 - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 decals: - 1308: 415,416 - 1309: 416,416 - 1310: 416,417 - 1311: 417,417 - 1312: 417,418 - 1313: 417,419 - 1314: 417,420 - 1316: 411,416 - 1317: 412,416 - 1318: 413,416 - 1319: 413,417 - 1320: 413,418 - 1321: 413,419 - 1322: 413,420 - 1323: 413,421 - 1324: 413,422 + 677: -18,-32 + 678: -18,-31 - node: - zIndex: 1 color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 + id: HalfTileOverlayGreyscale90 decals: - 730: 408,395 - 731: 407,395 - 732: 405,393 - 1049: 414,360 - 1088: 412,393 - 1089: 411,393 - 1090: 411,392 - 1091: 411,391 - 1092: 411,390 - 1093: 411,389 - 1094: 411,388 - 1823: 407,378 - 1824: 407,379 - 1825: 407,380 - 1826: 407,381 - 1827: 407,382 - 1828: 408,382 - 1829: 410,382 - 1830: 412,382 - 1831: 411,382 - 1832: 411,381 - 1833: 411,380 - 1834: 411,379 - 1835: 411,378 - 1836: 409,382 - 1837: 409,381 - 1838: 409,380 - 1839: 409,379 - 1840: 409,378 - 2545: 401,374 - 2546: 400,374 - 2547: 399,374 - 2548: 398,374 - 2549: 398,373 - 2550: 398,372 - 6341: 337,441 - 6342: 337,442 + 1226: -58,-25 + 1227: -58,-24 + 1228: -58,-23 + 1229: -58,-22 - node: - zIndex: 3 - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 + color: '#D381C996' + id: HalfTileOverlayGreyscale90 decals: - 6725: 417,395 - 6726: 416,395 - 6727: 415,395 - 6728: 414,395 - 6729: 413,395 - 6730: 411,395 - 6731: 410,395 - 6732: 406,395 + 2561: -119,-52 + 2562: -119,-51 + 2564: -119,-53 + 2595: -119,-41 + 2596: -119,-39 + 2601: -119,-40 + 6933: -125,-55 - node: - zIndex: 1 - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 2368: 344,395 - 2369: 341,395 - 2410: 353,385 - 2411: 353,384 - 2615: 350,400 - - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale180 - decals: - 885: 385,402 - 886: 385,400 - 887: 385,399 - 888: 385,398 - 896: 389,395 - 897: 388,395 - 950: 405,367 - 951: 405,368 - 952: 405,369 - 953: 405,370 - 954: 405,372 - 955: 405,373 - 956: 405,374 - 957: 405,376 - 960: 407,376 - 961: 408,376 - 962: 409,376 - 963: 410,376 - 964: 411,376 - 965: 412,376 - 966: 407,374 - 968: 409,374 - 969: 410,374 - 970: 411,374 - 971: 412,374 - 972: 413,374 - 973: 414,374 - 974: 416,374 - 975: 417,374 - 976: 418,374 - 977: 419,374 - 989: 386,402 - 990: 387,402 - 991: 388,402 - 993: 390,402 - 997: 394,402 - 998: 395,402 - 999: 396,402 - 1000: 397,402 - 1001: 398,402 - 1002: 399,402 - 1003: 400,402 - 1012: 392,406 - 1013: 393,406 - 1014: 393,407 - 1015: 393,408 - 1016: 393,409 - 1017: 393,410 - 1018: 393,411 - 1028: 405,402 - 1029: 404,402 - 1030: 403,402 - 1031: 407,402 - 1032: 408,402 - 6619: 391,402 - 6751: 410,402 - 6764: 393,398 - 6770: 405,395 - 6771: 403,395 - 6772: 402,395 - 6773: 401,395 - 6774: 400,395 - 6775: 399,395 - 6776: 397,395 - 6777: 398,395 - 6778: 396,395 - 6779: 395,395 - 6780: 394,395 - 6781: 393,395 - 6782: 392,395 - 6783: 391,395 - 6785: 376,395 - 6786: 406,402 - 6787: 402,402 - 6788: 401,402 - 6789: 393,402 - 6790: 392,402 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 3690: 508,385 - 3693: 510,390 - 3694: 509,390 - 3695: 508,390 - 3696: 508,389 - 3697: 508,388 - 3698: 508,387 - 3704: 502,386 - 3705: 503,386 - 3706: 504,386 - 3707: 504,387 - 3708: 504,388 - 3711: 502,389 - 3712: 502,390 - 3720: 506,387 - 3726: 505,390 - 3727: 504,390 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 724: 413,403 - 725: 413,402 - 726: 413,401 - 727: 413,400 - 1456: 428,403 - 1464: 428,399 - 1465: 428,395 - 1475: 428,391 - 1476: 426,408 - 1526: 439,413 - 1544: 443,412 - 1726: 424,389 - 1727: 425,389 - 1728: 426,389 - 1729: 427,389 - 1744: 422,387 - 1745: 422,388 - 1746: 422,389 - 2041: 375,419 - 2042: 375,420 - 2043: 376,420 - 2044: 376,421 - 2045: 377,421 - 2046: 378,421 - 2596: 356,393 - 2597: 356,392 - 2598: 356,391 - 2599: 355,391 - 2600: 354,391 - 2672: 420,400 - 6743: 413,399 - - node: - zIndex: 3 color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 6714: 413,398 - 6721: 420,397 - 6722: 420,396 - 6723: 420,395 - 6724: 418,395 - 6733: 413,404 - - node: - zIndex: 1 - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 + id: HalfTileOverlayGreyscale90 decals: - 1608: 458,416 - 1682: 447,421 - 1683: 448,421 - 1684: 448,422 - 2185: 329,404 - 2186: 329,403 - 2187: 329,402 - 2188: 328,402 - 2189: 327,402 - 2197: 328,408 - 2325: 323,418 - 2330: 322,418 - 2349: 346,400 - 2350: 347,400 - 2351: 346,399 - 2352: 346,398 + 912: -3,-8 + 1777: -91,-23 + 1778: -91,-20 + 1779: -91,-19 - node: - zIndex: 1 - color: '#FA750096' - id: QuarterTileOverlayGreyscale180 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea decals: - 2881: 408,411 - 2882: 407,411 - 2883: 407,410 - 2884: 407,409 - 2885: 407,408 - 2886: 407,407 + 6806: -102,16 - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 + color: '#FFFFFFFF' + id: LoadingArea decals: - 1239: 392,416 - 1240: 392,415 - 1241: 392,414 - 1242: 393,414 - 1243: 396,415 - 1244: 397,415 - 1245: 395,415 + 323: -50,-11 + 362: -29,9 + 466: -16,-12 + 476: -44,-12 + 6737: -103,10 - node: - zIndex: 1 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea decals: - 678: 331,402 - 679: 332,402 - 680: 333,402 - 681: 334,402 - 682: 335,402 - 683: 337,402 - 703: 366,402 - 704: 367,402 - 705: 368,402 - 706: 369,402 - 707: 370,402 - 708: 371,402 - 709: 372,402 - 710: 374,402 - 1730: 424,389 - 1731: 425,389 - 1732: 426,389 - 1733: 427,389 - 1735: 424,387 - 1770: 428,414 - 2021: 383,419 - 2022: 383,420 - 2023: 382,420 - 2024: 382,421 - 2025: 381,421 - 2026: 380,421 - 2027: 378,421 - 2028: 379,421 - 2029: 377,421 - 2031: 376,420 - 2073: 380,415 - 2076: 382,414 - 2152: 331,396 - 2694: 384,419 - 2697: 385,420 + 6236: -96,16 + 6237: -96,18 + 6238: -96,20 + 6239: -96,24 - node: - zIndex: 3 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea decals: - 6703: 364,402 + 322: -54,-11 + 467: -16,-16 + 477: -44,-16 + 1973: -112,16 + 1974: -111,16 + 1975: -110,16 + 1976: -109,16 + 1977: -108,16 + 6743: -103,14 - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale270 + color: '#43990996' + id: QuarterTileOverlayGreyscale decals: - 410: 383,400 - 411: 383,399 - 412: 383,398 - 421: 374,397 - 422: 374,396 - 423: 374,395 - 424: 374,393 - 425: 374,392 - 426: 374,391 - 427: 374,390 - 428: 374,389 - 429: 374,388 - 430: 374,387 - 431: 374,386 - 432: 374,384 - 433: 374,383 - 434: 374,382 - 435: 374,381 - 436: 374,380 - 437: 374,379 - 438: 374,378 - 469: 389,395 - 470: 388,395 - 471: 389,393 - 486: 386,402 - 487: 387,402 - 488: 388,402 - 490: 390,402 - 494: 394,402 - 495: 395,402 - 496: 396,402 - 497: 397,402 - 498: 398,402 - 499: 399,402 - 500: 400,402 - 519: 392,406 - 520: 393,406 - 528: 403,402 - 529: 404,402 - 530: 405,402 - 531: 407,402 - 532: 408,402 - 545: 411,400 - 546: 411,401 - 547: 411,402 - 553: 408,395 - 554: 407,395 - 585: 403,367 - 586: 403,368 - 587: 403,369 - 588: 403,370 - 589: 403,371 - 590: 403,372 - 591: 407,370 - 592: 407,369 - 593: 407,368 - 594: 407,372 - 596: 407,374 - 597: 409,374 - 598: 410,374 - 599: 411,374 - 600: 412,374 - 601: 413,374 - 602: 414,374 - 603: 416,374 - 604: 417,374 - 605: 418,374 - 606: 419,374 - 609: 416,376 - 610: 415,376 - 611: 414,376 - 612: 412,376 - 613: 411,376 - 614: 410,376 - 615: 409,376 - 616: 408,376 - 617: 407,376 - 618: 414,372 - 619: 414,371 - 620: 414,370 - 621: 414,369 - 622: 414,367 - 623: 414,368 - 6796: 411,399 - 6797: 411,398 - 6817: 392,398 - 6819: 406,395 - 6820: 405,395 - 6821: 403,395 - 6822: 402,395 - 6823: 401,395 - 6824: 400,395 - 6825: 399,395 - 6826: 398,395 - 6827: 397,395 - 6828: 395,395 - 6829: 396,395 - 6830: 394,395 - 6831: 393,395 - 6832: 392,395 - 6833: 391,395 - 6834: 376,395 - 6838: 377,395 - 6841: 410,395 - 6842: 411,395 - 6843: 413,395 - 6844: 414,395 - 6845: 415,395 - 6846: 416,395 - 6847: 417,395 - 6848: 418,395 - 6849: 420,395 - 6861: 410,402 - 6862: 406,402 - 6863: 402,402 - 6864: 401,402 - 6865: 393,402 - 6866: 392,402 + 821: -24,-53 - node: - zIndex: 1 - color: '#3535358F' - id: QuarterTileOverlayGreyscale270 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale decals: - 6609: 391,402 + 510: -25,-18 + 511: -26,-18 + 512: -27,-18 + 513: -28,-18 + 531: -34,-24 + 532: -33,-24 + 533: -32,-24 + 613: -41,-34 + 614: -41,-33 + 615: -41,-32 + 616: -41,-31 + 617: -41,-30 + 619: -41,-28 + 620: -41,-29 + 680: -31,-29 + 681: -31,-30 + 682: -31,-31 + 683: -31,-32 + 684: -31,-33 + 685: -31,-34 + 695: -31,-39 + 696: -31,-38 + 697: -31,-37 + 698: -31,-36 + 699: -31,-35 + 799: -31,-51 + 800: -31,-50 + 801: -31,-49 + 802: -31,-48 + 803: -31,-47 + 804: -31,-46 + 805: -31,-45 + 806: -31,-44 + 807: -31,-43 + 808: -31,-42 + 809: -31,-41 + 5502: -31,-53 + 5503: -31,-54 + 5504: -31,-55 - node: - zIndex: 1 - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 + color: '#79150096' + id: QuarterTileOverlayGreyscale decals: - 1922: 374,417 - 1923: 375,417 - 1924: 376,417 - 1925: 377,417 - 1926: 378,417 - 1927: 379,417 - 1928: 380,417 - 1929: 381,417 - 1930: 382,417 - 1931: 383,417 - 1932: 384,417 - 1933: 385,417 - 1934: 385,416 - 1935: 386,416 - 1936: 373,416 - 1937: 372,416 - 1938: 371,416 - 1939: 370,416 - 1940: 369,416 - 1942: 368,416 - 1944: 367,416 - 1945: 366,416 - 1946: 365,416 - 1947: 364,416 - 1948: 363,416 - 1957: 366,417 - 2297: 349,419 - 2327: 322,417 + 1249: -66,-26 + 1250: -66,-27 + 1251: -66,-28 + 1252: -66,-29 + 1253: -66,-30 + 1254: -66,-31 + 1255: -66,-25 + 1256: -66,-32 + 1257: -66,-33 + 1258: -66,-34 - node: - color: '#413A3AFF' - id: QuarterTileOverlayGreyscale270 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale decals: - 6520: 420,401 - 6526: 421,402 + 6495: -96,35 + 6496: -95,35 + 6497: -94,35 + 6499: -95,30 + 6500: -94,30 + 6501: -93,30 + 6502: -92,30 - node: - color: '#44678FFF' - id: QuarterTileOverlayGreyscale270 + color: '#A4610696' + id: QuarterTileOverlayGreyscale decals: - 1222: 401,415 - 1223: 400,415 - 1224: 399,415 - 1225: 399,416 - 1226: 399,417 - 1227: 399,418 + 1017: -3,-19 + 2340: -88,25 + 2341: -87,25 + 2342: -86,25 + 2389: -97,14 - node: - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 + color: '#D381C996' + id: QuarterTileOverlayGreyscale decals: - 1171: 405,410 - 1172: 405,411 - 1173: 403,410 - 1177: 405,406 - 1178: 405,407 - 1179: 405,408 - 1272: 411,416 - 1273: 411,417 - 1274: 411,418 - 1275: 411,419 - 1276: 411,420 - 1277: 411,421 - 1278: 411,422 - 1288: 413,416 - 1289: 412,416 - 1290: 416,416 - 1291: 415,416 - 1292: 415,417 - 1293: 415,418 - 1294: 415,419 - 1295: 415,420 - 1301: 417,417 + 2600: -120,-40 + 2627: -137,-46 + 2628: -137,-45 + 2629: -137,-44 + 2630: -136,-44 + 2752: -131,-43 + 2753: -130,-43 + 2754: -129,-43 + 2755: -128,-43 + 2756: -127,-43 + 2757: -126,-43 + 2758: -125,-43 - node: - zIndex: 1 - color: '#52B4E996' - id: QuarterTileOverlayGreyscale270 + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale decals: - 1841: 408,382 - 1854: 410,382 - 1855: 412,382 - 2869: 409,411 - 2870: 409,410 - 2871: 409,409 - 2872: 409,408 - 2873: 409,407 - 2880: 408,411 + 1264: -60,-23 + 1640: -113,-30 + 1641: -114,-30 + 1642: -115,-30 - node: - color: '#63636369' - id: QuarterTileOverlayGreyscale270 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale decals: - 1157: 405,410 - 1158: 405,411 - 1159: 403,410 - 1162: 405,408 - 1163: 405,407 - 1164: 405,406 + 923: -12,-11 + 924: -11,-11 + 925: -13,-11 + 926: -10,-11 + 927: -9,-11 + 928: -8,-11 + 929: -7,-11 + 930: -6,-11 + 931: -5,-11 + 932: -4,-11 + 933: -3,-11 + 1696: -94,-26 + 1697: -93,-26 + 1698: -92,-26 + 1699: -91,-26 + 1786: -85,-32 + 1787: -84,-32 + 1788: -83,-32 + 1789: -82,-32 + 1790: -81,-32 + 1791: -89,-26 + 1792: -89,-27 + 1793: -89,-29 + 1794: -89,-30 + 1804: -81,-26 + 1805: -82,-26 + 1853: -93,-38 + 1854: -92,-38 + 1855: -91,-38 + 1856: -90,-38 + 1857: -89,-38 + 1858: -88,-38 + 1869: -87,-38 + 1870: -85,-38 + 1871: -84,-38 + 1872: -83,-38 + 1873: -82,-38 + 1874: -81,-38 - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale270 + color: '#EFB34196' + id: QuarterTileOverlayGreyscale decals: - 1386: 416,411 - 3662: 504,386 - 3663: 503,386 - 3664: 502,386 - 3667: 504,384 - 3670: 506,385 - 3675: 510,385 - 3676: 510,386 - 3679: 510,388 - 3680: 510,390 - 3681: 509,390 - 3685: 508,387 - 3721: 506,387 - 3722: 506,388 - 3723: 506,389 - 3724: 506,390 - 3729: 504,390 - 3730: 505,390 + 2094: -112,-15 + 2095: -111,-15 + 2096: -110,-15 + 2097: -109,-15 + 2098: -108,-15 - node: - zIndex: 1 - color: '#79150096' - id: QuarterTileOverlayGreyscale270 + color: '#FA750096' + id: QuarterTileOverlayGreyscale decals: - 1131: 420,389 + 569: -35,-26 - node: - color: '#793A3AFF' - id: QuarterTileOverlayGreyscale270 + color: '#3EB38896' + id: QuarterTileOverlayGreyscale180 decals: - 6519: 420,401 + 2220: -118,12 + 2221: -117,12 + 2222: -116,12 + 2223: -116,13 - node: - color: '#953A3AFF' - id: QuarterTileOverlayGreyscale270 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 decals: - 6517: 420,401 - 6518: 420,401 + 515: -29,-22 + 517: -24,-21 + 611: -37,-34 + 612: -33,-33 + 686: -29,-33 + 687: -29,-32 + 688: -29,-31 + 689: -29,-30 + 690: -29,-29 + 692: -29,-37 + 693: -29,-38 + 694: -29,-39 + 700: -29,-36 + 701: -29,-35 + 702: -29,-34 + 790: -29,-41 + 791: -29,-42 + 792: -29,-43 + 793: -29,-44 + 794: -29,-45 + 795: -29,-46 + 796: -29,-47 + 797: -29,-48 + 798: -29,-51 + 5498: -29,-53 + 5500: -29,-54 + 5501: -29,-55 + 5506: -29,-57 - node: - zIndex: 1 - color: '#9FED5896' - id: QuarterTileOverlayGreyscale270 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 decals: - 1054: 419,360 - 1059: 420,356 - 1062: 421,354 - 1076: 423,351 - 1077: 423,352 - 1078: 423,353 - 1079: 423,354 - 1081: 425,351 - 1118: 407,392 - 1119: 408,392 - 1120: 408,391 - 1121: 408,390 - 1122: 408,389 - 1123: 408,388 - 1124: 408,387 - 1675: 448,421 - 1676: 447,421 - 1677: 447,422 - 1818: 409,385 - 6384: 333,438 - 6385: 333,437 - 6455: 400,374 - 6456: 399,374 - 6459: 401,374 - 6552: 424,351 + 6493: -95,32 + 6494: -94,32 + 6504: -95,27 + 6505: -94,27 + 6506: -93,27 + 6507: -92,27 - node: - zIndex: 1 color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 355: 359,392 - 356: 360,392 - 357: 361,392 - 358: 362,392 - 2420: 365,390 - 2421: 365,389 - 2422: 365,388 - 2423: 365,387 - 2430: 358,386 - 2431: 358,385 - 2432: 358,384 - 2433: 359,384 - 2434: 360,384 - 2435: 361,384 - 2436: 362,384 - 2437: 363,384 - 2438: 365,384 - 2439: 365,383 - 2440: 366,383 - 2441: 367,383 - 2446: 368,387 - 2447: 369,387 - 2448: 371,387 - 2449: 372,387 - 2512: 358,378 - 2514: 357,377 - 2515: 357,376 - - node: - zIndex: 1 - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 + id: QuarterTileOverlayGreyscale180 decals: - 284: 350,402 - 285: 349,402 - 286: 348,402 - 287: 346,402 - 288: 345,402 - 289: 342,402 - 290: 341,401 - 292: 340,401 - 293: 339,401 - 294: 338,401 - 295: 337,401 - 296: 352,402 - 297: 353,402 - 298: 354,402 - 299: 356,402 - 300: 357,402 - 303: 361,402 - 305: 361,400 - 306: 361,399 - 307: 361,398 - 308: 361,397 - 309: 361,396 - 310: 361,395 - 2341: 347,400 - 2342: 348,400 - 2343: 348,399 - 2344: 348,398 - 2407: 351,385 - 2608: 356,391 - 2609: 355,391 - 2610: 354,391 - 2611: 354,392 - 2612: 354,393 - 2624: 359,400 + 1016: -7,-17 + 2355: -93,14 + 2357: -92,14 + 2361: -88,14 + 2386: -94,14 + 2387: -96,14 + 2388: -97,14 - node: - zIndex: 3 color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 6701: 360,402 - 6702: 359,402 - - node: - zIndex: 1 - color: '#D3D3D321' - id: QuarterTileOverlayGreyscale270 - decals: - 6893: 383,402 - - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale270 + id: QuarterTileOverlayGreyscale180 decals: - 759: 375,402 - 760: 376,402 - 761: 377,402 - 762: 378,402 - 763: 379,402 - 764: 380,402 - 872: 389,378 - 873: 390,378 - 930: 404,391 - 931: 404,390 - 932: 404,389 - 934: 404,387 - 936: 404,382 - 937: 404,381 - 938: 404,380 - 939: 404,379 - 940: 404,378 - 941: 403,376 - 942: 403,375 - 943: 403,374 - 988: 405,378 - 5456: 404,388 - 6793: 381,402 - 6794: 382,402 - 6795: 363,402 + 2759: -131,-49 + 2760: -130,-49 + 2761: -129,-49 + 2762: -128,-49 + 2763: -127,-49 + 2764: -126,-49 + 2765: -125,-49 - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale270 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 decals: - 7015: 416,363 - 7016: 416,364 - 7017: 416,365 - 7018: 417,363 - 7022: 414,363 + 1689: -95,-18 + 1690: -95,-19 + 1691: -95,-20 + 1693: -95,-23 + 1694: -95,-24 + 1695: -95,-25 + 1733: -91,-26 + 1734: -91,-27 + 1735: -91,-28 + 1736: -91,-29 + 1737: -91,-30 + 1738: -91,-33 + 1739: -91,-34 + 1740: -91,-35 + 1741: -91,-36 + 1742: -92,-36 + 1743: -93,-36 + 1744: -94,-36 + 1745: -95,-36 + 1746: -96,-36 + 1795: -89,-30 + 1796: -88,-30 + 1798: -82,-30 + 1801: -81,-28 + 1803: -81,-26 + 1862: -87,-40 + 1863: -88,-40 + 1864: -89,-40 + 1865: -90,-40 + 1866: -91,-40 + 1867: -92,-40 + 1868: -93,-40 - node: - zIndex: 1 - color: '#D3D3D3BD' - id: QuarterTileOverlayGreyscale270 + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 decals: - 6431: 334,441 + 973: -13,-17 + 2102: -108,-7 + 2103: -109,-7 + 2104: -110,-7 + 2105: -111,-7 + 2106: -112,-7 + 2107: -113,-7 + 2108: -114,-7 + 2109: -115,-7 + 2110: -116,-7 - node: - color: '#D4D4D428' + color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 1156: 405,410 + 523: -33,-20 + 525: -35,-22 + 526: -35,-21 + 527: -35,-20 + 528: -35,-19 + 529: -35,-18 + 535: -34,-26 + 536: -33,-26 + 537: -32,-26 - node: - zIndex: 1 - color: '#D4D4D428' + color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 6544: 404,383 - 6545: 404,383 + 1186: -56,-20 + 1187: -56,-21 + 1188: -56,-22 + 1189: -56,-23 + 1190: -56,-24 + 1191: -56,-25 - node: - zIndex: 1 - color: '#D4D4D496' + color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1103: 412,393 - 6359: 336,440 - 6360: 336,441 - 6361: 336,442 - 6362: 335,442 - 6363: 334,442 - 6365: 332,442 + 1015: -3,-17 + 6513: -92,27 + 6514: -93,27 + 6515: -94,27 + 6516: -95,27 + 6519: -95,32 + 6520: -94,32 - node: - zIndex: 1 - color: '#DE3A3A96' + color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 314: 358,393 - 315: 358,392 - 842: 389,375 - 843: 389,374 - 844: 389,376 - 845: 388,373 - 846: 388,372 - 847: 388,371 - 848: 388,370 - 849: 388,369 - 850: 389,369 - 851: 390,369 - 852: 395,369 - 853: 396,369 - 871: 394,375 - 1463: 426,402 - 1470: 426,395 - 1494: 446,408 - 1541: 446,412 - 1695: 422,400 - 1755: 424,407 - 1756: 424,408 - 1757: 424,409 - 1790: 419,411 - 1791: 420,411 - 1792: 424,411 - 1793: 423,411 - 1794: 422,411 - 1800: 426,411 - 2171: 329,402 - 2172: 328,402 - 2173: 327,402 - 2174: 327,403 - 2175: 327,404 - 2176: 327,406 - 2177: 327,407 - 2178: 327,408 - 2679: 421,402 + 2568: -120,-52 - node: - zIndex: 1 color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 1609: 460,416 - 1615: 456,416 - 1618: 453,416 - 1635: 450,416 - 1636: 450,415 - 1650: 445,419 - 1651: 450,417 - 1652: 449,417 - 1653: 448,417 - 1654: 447,417 - 1665: 452,418 - 1666: 452,419 - 1667: 451,419 - 1668: 450,419 - 1669: 449,419 - 1670: 448,419 - 2005: 377,423 - 2008: 375,422 - 2702: 330,388 - 2717: 317,386 - 2718: 316,386 - 2719: 315,386 - 2720: 313,386 - 2721: 314,386 - 2722: 311,386 - 2723: 312,386 - 2724: 310,386 - 2725: 309,386 - 2735: 305,388 - 2736: 305,387 - 2737: 305,386 - 2738: 305,385 - 2739: 305,384 - 2740: 305,383 - 2741: 305,382 - 2742: 305,381 - 2743: 305,380 - 2744: 305,379 - 2745: 306,379 - 2746: 307,379 - 2807: 331,386 - 2814: 297,389 - 2815: 299,389 - 2816: 298,389 - 2817: 300,389 - 2818: 302,389 - 2819: 303,389 - 2839: 344,399 - 2840: 344,398 - 2848: 339,399 - 2849: 340,399 - 2850: 341,399 - 2851: 342,399 - 2852: 343,399 + 972: -9,-17 - node: - zIndex: 3 - color: '#EFB34196' + color: '#FA750096' id: QuarterTileOverlayGreyscale270 decals: - 6693: 331,403 - 6694: 331,404 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 1237: 393,416 - 1238: 392,416 - 1247: 395,412 - - node: - zIndex: 1 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 361: 362,395 - 362: 362,396 - 363: 362,397 - 364: 362,398 - 365: 362,399 - 366: 362,400 - 631: 380,404 - 632: 379,404 - 633: 378,404 - 634: 377,404 - 635: 376,404 - 636: 375,404 - 637: 374,404 - 638: 371,404 - 639: 370,404 - 640: 369,404 - 641: 368,404 - 642: 367,404 - 643: 366,404 - 644: 365,404 - 1734: 427,389 - 1736: 424,387 - 1737: 425,387 - 1738: 426,387 - 1739: 427,387 - 1747: 422,389 - 1748: 422,388 - 1749: 422,387 - 2012: 377,418 - 2013: 378,418 - 2014: 379,418 - 2015: 380,418 - 2016: 381,418 - 2017: 382,418 - 2018: 376,418 - 2019: 375,418 - 2020: 375,419 - 2030: 376,420 - 2090: 376,406 - 2142: 335,399 - 2398: 353,385 - 2399: 353,384 - 2400: 353,383 - 2401: 354,383 - 2402: 355,383 - 2403: 356,383 - 2536: 371,395 - 2698: 385,419 - - node: - zIndex: 3 - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 6704: 364,404 - 6705: 363,404 - 6706: 362,404 - 6707: 381,404 - 6708: 382,404 - 6709: 383,404 - 6710: 384,404 - - node: - zIndex: 1 - color: '#3535358E' - id: QuarterTileOverlayGreyscale90 - decals: - 413: 382,397 - 414: 381,397 - 415: 380,397 - 416: 379,397 - 417: 377,397 - 418: 376,397 - 419: 374,397 - 420: 375,397 - 458: 385,400 - 459: 385,399 - 460: 385,398 - 461: 385,397 - 462: 386,397 - 463: 388,397 - 464: 389,397 - 465: 390,397 - 472: 389,393 - 503: 400,404 - 504: 399,404 - 505: 398,404 - 506: 397,404 - 507: 396,404 - 509: 395,404 - 510: 394,404 - 512: 390,404 - 521: 393,406 - 522: 393,407 - 523: 393,408 - 524: 393,409 - 525: 393,410 - 526: 393,411 - 538: 413,403 - 539: 413,402 - 540: 413,401 - 541: 413,400 - 563: 405,393 - 574: 405,376 - 578: 405,374 - 579: 405,373 - 580: 405,372 - 581: 405,370 - 582: 405,369 - 583: 405,368 - 584: 405,367 - 595: 407,372 - 624: 414,372 - 6798: 410,397 - 6799: 408,397 - 6800: 407,397 - 6801: 406,397 - 6802: 405,397 - 6803: 404,397 - 6804: 403,397 - 6805: 402,397 - 6806: 401,397 - 6807: 400,397 - 6808: 399,397 - 6809: 398,397 - 6810: 397,397 - 6811: 396,397 - 6812: 395,397 - 6813: 394,397 - 6814: 393,397 - 6815: 393,398 - 6816: 392,398 - 6818: 391,397 - 6837: 377,395 - 6850: 420,395 - 6851: 420,396 - 6852: 420,397 - 6853: 418,397 - 6854: 417,397 - 6855: 416,397 - 6856: 415,397 - 6857: 414,397 - 6858: 413,397 - 6859: 413,398 - 6860: 413,399 - 6867: 388,404 - 6868: 387,404 - 6883: 401,404 - 6884: 402,404 - 6885: 403,404 - 6886: 405,404 - 6887: 406,404 - 6888: 407,404 - 6889: 410,404 - 6890: 411,404 - 6891: 413,404 - 6892: 391,404 - - node: - zIndex: 1 - color: '#3EB38896' - id: QuarterTileOverlayGreyscale90 - decals: - 1958: 366,417 - 1959: 367,417 - 1960: 368,417 - 1993: 386,421 - 1994: 385,421 - 1995: 384,421 - 2001: 380,423 - 2002: 379,423 - 2003: 378,423 - 2004: 377,423 - 2009: 374,421 - 2010: 373,421 - 2011: 372,421 - 2052: 373,416 - 2272: 334,413 - 2278: 328,416 - 2321: 323,418 - 2322: 323,417 - 2323: 324,417 - 2328: 322,417 - 2329: 322,418 - - node: - color: '#413A3AFF' - id: QuarterTileOverlayGreyscale90 - decals: - 6523: 420,401 - 6524: 420,402 - 6527: 421,401 - 6530: 422,402 - - node: - color: '#44678FFF' - id: QuarterTileOverlayGreyscale90 - decals: - 1216: 401,416 - 1217: 401,417 - 1218: 401,418 - 1219: 400,418 - 1220: 399,418 - 1221: 401,415 + 570: -35,-24 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1169: 403,410 - 1170: 403,411 - 1174: 403,408 - 1175: 403,407 - 1176: 403,406 - 1180: 405,408 - 1262: 399,406 - 1279: 411,422 - 1280: 412,422 - 1281: 413,422 - 1282: 413,421 - 1283: 413,420 - 1284: 413,419 - 1285: 413,418 - 1286: 413,417 - 1287: 413,416 - 1296: 415,420 - 1297: 417,420 - 1298: 417,419 - 1299: 417,418 - 1300: 417,417 - 1302: 416,416 + 518: -24,-19 + 524: -34,-21 + 602: -33,-29 + 605: -37,-28 - node: - zIndex: 1 - color: '#52B4E996' - id: QuarterTileOverlayGreyscale90 - decals: - 1842: 407,381 - 1843: 407,380 - 1844: 407,379 - 1845: 407,378 - 1846: 409,378 - 1847: 409,379 - 1848: 409,380 - 1849: 409,381 - 1850: 411,381 - 1851: 411,380 - 1852: 411,379 - 1853: 411,378 - 2874: 408,406 - 2875: 407,406 - 2876: 407,407 - 2877: 407,408 - 2878: 407,409 - 2879: 407,410 - - node: - color: '#63636369' - id: QuarterTileOverlayGreyscale90 - decals: - 1160: 403,410 - 1161: 403,411 - 1165: 403,406 - 1166: 403,407 - 1167: 403,408 - 1168: 405,408 - - node: - color: '#79150096' - id: QuarterTileOverlayGreyscale90 - decals: - 3655: 504,388 - 3656: 503,388 - 3657: 502,388 - 3658: 502,389 - 3659: 502,390 - 3660: 504,387 - 3661: 504,386 - 3668: 504,384 - 3669: 505,384 - 3671: 506,385 - 3672: 508,385 - 3673: 508,384 - 3674: 509,384 - 3677: 510,386 - 3678: 510,388 - 3682: 508,389 - 3683: 508,388 - 3684: 508,387 - - node: - zIndex: 1 color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 1070: 416,351 - 1075: 414,354 - 1082: 425,351 - 1083: 425,352 - 1084: 425,353 - 1085: 425,354 - 1086: 424,354 - 1087: 423,354 - 1673: 448,422 - 1674: 448,421 - 1678: 447,422 - 1816: 407,385 - 1817: 407,384 - 2558: 399,369 - 6382: 331,438 - 6383: 331,437 - 6457: 398,373 - 6458: 398,372 + 1216: -50,-25 + 1217: -50,-24 + 1218: -50,-23 + 1637: -115,-30 + 1638: -114,-30 + 1639: -113,-30 - node: - zIndex: 1 color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1996: 383,421 - 1997: 383,422 - 1998: 382,422 - 1999: 381,422 - 2000: 381,423 - 2415: 369,390 - 2416: 368,390 - 2417: 367,390 - 2418: 366,390 - 2419: 365,390 - 2424: 363,386 - 2425: 362,386 - 2426: 361,386 - 2427: 360,386 - 2428: 359,386 - 2429: 358,386 - 2442: 367,383 - 2443: 367,384 - 2444: 367,385 - 2445: 367,386 - 2450: 372,387 - 2451: 372,389 - 2452: 371,389 - 2453: 369,389 - 2506: 359,382 - 2507: 359,381 - 2508: 359,380 - 2509: 360,378 - 2510: 359,378 - 2511: 358,378 - 2513: 357,377 - - node: - zIndex: 1 - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 291: 341,401 - 311: 360,393 - 312: 359,393 - 313: 358,393 - 2345: 347,397 - 2346: 346,397 - 2347: 346,398 - 2348: 346,399 - 2365: 344,391 - 2370: 341,392 - 2376: 346,387 - 2408: 350,384 - 2409: 350,383 - 2605: 356,393 - 2606: 356,392 - 2607: 356,391 - 2613: 354,393 - 2635: 353,395 - 2639: 350,398 + 1018: -7,-19 + 6508: -95,30 + 6510: -94,30 + 6511: -93,30 + 6512: -92,30 + 6521: -96,35 + 6522: -95,35 + 6523: -94,35 - node: - zIndex: 1 - color: '#D3D3D32D' + color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 decals: - 874: 390,378 - 875: 390,379 - 876: 390,380 - 877: 390,381 - 878: 390,383 - 879: 390,385 - 880: 390,386 - 881: 390,387 - 882: 390,388 - 883: 390,389 - 959: 403,376 - 1036: 361,404 - 1037: 360,404 - 1038: 359,404 - 1039: 357,404 - 1040: 356,404 - 1041: 355,404 - 1042: 354,404 + 1265: -64,-23 - node: - zIndex: 1 - color: '#D3D3D32D' - id: QuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: Remains decals: - 7019: 414,365 - 7020: 414,364 - 7021: 414,363 + 6341: -133,-36 - node: - zIndex: 1 - color: '#D3D3D3BD' - id: QuarterTileOverlayGreyscale90 + cleanable: True + color: '#FFFFFFFF' + id: Remains decals: - 6428: 332,441 - 6429: 332,440 - 6430: 333,440 + 5979: -31,-73 + 5980: -135,0 + 6224: -120,29 + 6539: -44.46646,-73.98094 + 7057: -102.71358,-66.1344 - node: - zIndex: 1 - color: '#D4D4D428' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign1 decals: - 359: 362,392 - 360: 362,393 + 5945: -65,-16 - node: - zIndex: 1 - color: '#D4D4D496' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign2 decals: - 1096: 412,387 - 1097: 411,387 - 1098: 411,388 - 1099: 411,389 - 1100: 411,390 - 1101: 411,391 - 1102: 411,392 - 6328: 342,440 - 6329: 341,440 - 6330: 340,440 - 6331: 339,440 - 6332: 338,440 - 6333: 337,440 - 6334: 337,441 - 6335: 337,442 - 6358: 335,439 - 6366: 331,441 - 6367: 331,440 + 5946: -64,-16 - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign3 decals: - 3703: 502,384 + 5947: -63,-16 - node: - zIndex: 1 - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign4 decals: - 854: 396,369 - 855: 396,370 - 856: 396,371 - 857: 396,372 - 858: 396,373 - 859: 396,374 - 860: 395,374 - 861: 395,375 - 862: 394,375 - 863: 393,374 - 864: 392,374 - 865: 391,374 - 866: 390,374 - 867: 390,375 - 868: 390,376 - 869: 389,376 - 870: 388,373 - 1454: 428,405 - 1457: 428,401 - 1466: 428,393 - 1467: 428,397 - 1531: 435,410 - 1709: 420,404 - 1752: 422,407 - 1753: 422,408 - 1754: 422,409 - 1758: 424,409 - 1785: 420,407 - 1786: 419,407 - 1787: 418,407 - 1788: 418,408 - 1789: 418,410 - 1801: 426,412 - 1802: 426,411 - 2179: 327,408 - 2180: 328,408 - 2181: 329,402 - 2182: 329,403 - 2183: 329,404 - 2680: 421,401 + 5948: -62,-16 - node: - zIndex: 1 - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign5 decals: - 685: 333,404 - 686: 334,404 - 688: 337,404 - 689: 338,404 - 691: 340,404 - 692: 342,404 - 693: 343,404 - 694: 344,404 - 695: 345,404 - 696: 346,404 - 699: 349,404 - 700: 350,404 - 701: 352,404 - 1574: 456,405 - 1592: 448,405 - 1639: 449,414 - 1641: 448,414 - 1642: 447,414 - 1643: 446,414 - 1644: 445,414 - 1645: 444,414 - 1646: 444,415 - 1647: 444,416 - 1648: 444,417 - 1649: 444,418 - 1671: 447,418 - 1672: 447,417 - 2006: 376,422 - 2007: 375,422 - 2701: 329,387 - 2703: 330,388 - 2704: 331,388 - 2705: 331,387 - 2706: 331,386 - 2708: 327,387 - 2709: 326,387 - 2710: 324,387 - 2711: 325,387 - 2712: 323,387 - 2714: 321,387 - 2715: 320,387 - 2716: 319,387 - 2728: 315,388 - 2729: 313,388 - 2730: 312,388 - 2731: 310,388 - 2732: 307,388 - 2733: 306,388 - 2734: 305,388 - 2747: 307,379 - 2748: 307,380 - 2749: 307,381 - 2750: 307,382 - 2751: 307,383 - 2752: 307,384 - 2806: 317,386 - 2808: 297,385 - 2809: 298,385 - 2810: 299,385 - 2811: 300,385 - 2812: 302,385 - 2813: 303,385 - 2841: 343,397 - 2842: 342,397 - 2843: 341,397 - 2844: 340,397 - 2845: 339,397 - 2846: 338,397 - 2847: 338,398 + 5949: -61,-16 - node: - zIndex: 3 - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 + color: '#D3BA99FF' + id: SpaceStationSign6 decals: - 4376: 339,404 - 6695: 331,404 - 6696: 332,404 - 6697: 335,404 - 6698: 341,404 - 6699: 347,404 - 6700: 348,404 + 5950: -60,-16 - node: - zIndex: 2 - color: '#FFFFFFFF' - id: Rock01 + color: '#D3BA99FF' + id: SpaceStationSign7 decals: - 6975: 335,445 - 6976: 333,449 + 5951: -59,-16 - node: - zIndex: 2 + angle: -1.5707963267948966 rad color: '#FFFFFFFF' - id: Rock06 + id: StandClear decals: - 6977: 334,448 - 6978: 336,452 - 6979: 339,451 - 6980: 333,453 - 6981: 337,445 - 6982: 335,444 - 6983: 341,448 + 1685: -78,-57 + 7056: -96,-57 - node: - zIndex: 1 color: '#FFFFFFFF' id: StandClear decals: - 6300: 389,390 - 6301: 390,390 - 6302: 389,382 - 6303: 390,382 - 6304: 404,386 - 6305: 405,386 - 6306: 374,394 - 6307: 375,394 - 6308: 374,385 - 6309: 375,385 + 623: -30,-27 + 624: -30,-17 + 625: -30,0 + 626: -30,4 + 627: -30,8 + 709: -30,-40 + 1311: -30,-11 + 1459: -65,-21 + 1460: -59,-21 + 2021: -120,-14 + 2740: -39,-72 + 2792: -105,-37 + 2805: -104,-22 + 2806: -104,-1 + 2972: -35,-62 + 2973: -35,-69 + 5975: -26,-23 - node: - zIndex: 2 + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 6984: 389,402 - 6985: 389,403 - 6986: 389,404 - 6987: 409,404 - 6988: 409,403 - 6989: 409,402 - 6990: 409,397 - 6991: 409,396 - 6992: 409,395 + 636: -14,-14 + 641: -42,-14 + 642: -74,-14 + 710: -22,-31 + 1033: -58,-4 + 2020: -107,-11 + 2032: -152,-5 - node: - zIndex: 3 + angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 6028: 387,397 - 6029: 387,396 - 6030: 378,397 - 6031: 378,396 - 6032: 383,401 - 6033: 384,401 - 6034: 385,401 - 6035: 351,404 - 6036: 351,403 - 6037: 351,402 - 6038: 336,404 - 6039: 336,403 - 6040: 336,402 - 6478: 364,386 - 6479: 364,385 - 6480: 364,384 - 6481: 370,387 - 6482: 370,388 - 6483: 370,389 - - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1250: 397,413 - - node: - zIndex: 1 - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1893: 387,416 - 2059: 374,409 - 2081: 382,409 - 2097: 367,411 - 2120: 363,411 - 2126: 363,414 - 2157: 330,400 - 2161: 326,398 - 2700: 386,420 - 2895: 302,411 - 2898: 303,408 - 2908: 303,414 - 2915: 305,426 - 2917: 308,426 - 2918: 312,410 - - node: - zIndex: 1 - color: '#3535358E' - id: ThreeQuarterTileOverlayGreyscale - decals: - 449: 379,395 + 639: -17,-14 + 640: -45,-14 + 643: -77,-14 + 711: -28,-31 + 730: -27,-50 + 1034: -66,-4 - node: - color: '#52B4E996' + color: '#43990996' id: ThreeQuarterTileOverlayGreyscale decals: - 1185: 405,415 - 1191: 409,413 - 1193: 409,416 - 1266: 401,408 - 1267: 411,414 - 1271: 415,414 - 1347: 406,422 - 1355: 402,420 - 1369: 397,420 + 810: -27,-53 + 825: -24,-49 - node: - zIndex: 1 color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1598: 450,401 - - node: - zIndex: 1 - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1127: 416,391 - - node: - zIndex: 1 - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1863: 416,381 - - node: - zIndex: 3 - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 6683: 352,381 + 749: -24,-35 + 752: -24,-39 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 1335: 414,422 - 1338: 415,422 - - node: - zIndex: 1 - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1968: 366,423 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1373: 411,411 + 2548: -123,-50 + 2598: -120,-38 + 2604: -123,-40 - node: - zIndex: 1 color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1413: 424,394 - 1441: 430,405 - 1446: 430,393 - 1447: 430,397 - 1448: 430,401 - 1501: 443,404 - 1706: 422,405 - 1712: 418,405 - 2684: 422,402 - - node: - zIndex: 1 - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1559: 460,407 - 1577: 454,406 - 1588: 450,406 - 2212: 335,406 - 2234: 329,411 - 2250: 347,415 - 2253: 351,416 - 2256: 349,409 + 903: -7,-7 + 1686: -98,-18 + 1773: -93,-18 - node: - zIndex: 1 color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1873: 384,411 - 1885: 371,418 - 2057: 371,411 - 2065: 376,411 - 2070: 378,414 - 2104: 369,406 - 2113: 365,406 - 2125: 365,413 - 2144: 336,398 - 2146: 336,395 - 2163: 328,396 - 2901: 308,406 - 2907: 306,414 - 2912: 309,425 - 2920: 313,409 - - node: - zIndex: 1 - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 2281: 329,418 + 136: -61,2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1181: 403,414 - 1195: 407,417 - 1202: 403,417 - 1254: 401,412 - 1346: 409,420 - 1358: 400,422 - - node: - zIndex: 1 - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1135: 414,393 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1337: 417,421 + 522: -34,-20 + 607: -33,-34 + 670: -23,-33 + 676: -18,-33 + 761: -22,-41 + 762: -22,-37 - node: - zIndex: 1 color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2384: 350,389 - 2387: 354,389 - - node: - zIndex: 1 - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1972: 368,421 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1374: 413,406 + 2565: -119,-54 + 2594: -119,-42 + 6928: -125,-56 - node: - zIndex: 1 color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1408: 420,391 - 1415: 422,397 - 1477: 426,407 - 1488: 439,408 - 1502: 441,404 - 1692: 420,399 - 1698: 424,399 - 1718: 422,393 - 2677: 420,401 + 905: -3,-9 + 1775: -91,-24 - node: - zIndex: 1 - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1545: 448,409 - 1550: 454,412 - 1553: 458,412 - 1571: 457,403 - 1584: 452,403 - 2228: 342,410 - 2246: 351,411 - 2820: 297,382 - - node: - zIndex: 1 color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1890: 387,418 - 2060: 374,411 - 2074: 380,414 - 2080: 382,411 - 2102: 367,406 - 2115: 363,406 - 2124: 363,413 - 2151: 331,395 - 2153: 330,396 - 2162: 326,396 - 2688: 373,420 - 2896: 302,410 - 2899: 303,407 - 2900: 306,406 - 2909: 303,413 - 2914: 305,425 - 2921: 312,409 + 135: -63,2 - node: - color: '#52B4E996' + color: '#43990996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1192: 409,415 - 1194: 405,417 - 1252: 399,412 - 1344: 406,420 - 1354: 402,422 - 1370: 397,422 + 814: -28,-55 + 815: -27,-55 - node: - zIndex: 1 color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1597: 450,403 + 669: -27,-33 + 674: -21,-33 + 750: -24,-37 + 751: -24,-41 - node: - zIndex: 1 - color: '#79150096' + color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1125: 416,389 + 2566: -120,-54 + 2571: -123,-52 + 2590: -123,-42 - node: - zIndex: 1 - color: '#9FED5896' + color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1058: 419,356 - 1060: 420,354 + 904: -7,-9 + 1688: -98,-20 + 1767: -93,-24 - node: - zIndex: 3 - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 decals: - 6684: 352,380 - 6688: 355,379 + 509: -24,-18 + 601: -33,-28 + 679: -18,-30 + 760: -22,-39 + 765: -22,-35 - node: color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 + id: ThreeQuarterTileOverlayGreyscale90 decals: - 1336: 415,421 + 2547: -119,-50 + 2597: -119,-38 + 6927: -125,-54 - node: - zIndex: 1 - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 decals: - 2383: 352,389 - 2385: 348,389 + 902: -3,-7 + 1774: -91,-18 - node: - zIndex: 1 - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#FFFFFFFF' + id: WarnCornerNE decals: - 1966: 366,421 + 544: -38,-25 + 1827: -82,-21 + 2574: -121,-53 + 2589: -121,-38 - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#FFFFFFFF' + id: WarnCornerNW decals: - 1371: 411,406 + 897: -42,-38 + 1826: -84,-21 + 2572: -123,-53 + 2582: -123,-38 - node: - zIndex: 1 - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#FFFFFFFF' + id: WarnCornerSE decals: - 1406: 418,391 - 1410: 424,391 - 1414: 424,397 - 1440: 430,403 - 1449: 430,399 - 1450: 430,395 - 1451: 430,391 - 1489: 441,408 - 1539: 446,410 - 1685: 418,399 - 1696: 422,399 - 1720: 420,393 + 546: -38,-19 + 661: -23,-30 + 1824: -82,-24 + 2576: -121,-54 + 2588: -121,-39 + 2653: -126,-38 - node: - zIndex: 1 - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#FFFFFFFF' + id: WarnCornerSW decals: - 1549: 453,412 - 1552: 456,412 - 1558: 460,409 - 1580: 454,403 - 2204: 335,408 - 2220: 334,410 - 2241: 346,411 - 2255: 351,414 + 668: -27,-30 + 1825: -84,-24 + 2575: -123,-54 + 2581: -123,-39 + 2654: -130,-38 + 6679: -119,-68 - node: - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE decals: - 1246: 395,413 + 891: -46,-36 - node: - zIndex: 1 - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#9FED5896' + id: WarnCornerSmallGreyscaleNW decals: - 1872: 384,409 - 2058: 371,409 - 2094: 376,409 - 2095: 369,411 - 2122: 365,411 - 2123: 365,414 - 2141: 335,400 - 2143: 336,399 - 2145: 336,396 - 2159: 328,398 - 2913: 309,426 - 2916: 306,426 - 2919: 313,410 + 1656: -112,-33 - node: - zIndex: 1 - color: '#3535358E' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW decals: - 456: 386,395 + 892: -42,-36 - node: - zIndex: 1 - color: '#3EB38896' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE decals: - 2269: 334,416 + 890: -46,-38 - node: - color: '#52B4E996' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW decals: - 1182: 403,415 - 1188: 407,415 - 1203: 403,418 - 1270: 413,414 - 1345: 409,422 - 1356: 400,420 + 893: -42,-38 - node: - zIndex: 1 - color: '#79150096' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallNE decals: - 1134: 418,387 + 33: -72,-4 + 387: -29,-51 + 408: -33,21 + 2025: -150,-3 + 2034: -149,-10 + 2077: -132,-25 + 2385: -91,12 + 2532: -117,-54 + 2626: -136,-46 + 2746: -40,-76 + 2966: -37,-63 + 5992: -33,-7 + 6351: -150,-43 + 6735: -111,12 - node: - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallNW decals: - 1269: 416,414 + 174: -68,-4 + 400: -28,21 + 401: -36,10 + 403: -36,17 + 407: -27,21 + 1210: -47,-23 + 2026: -146,-3 + 2031: -152,-7 + 2033: -147,-10 + 2078: -128,-25 + 2384: -88,12 + 2533: -113,-54 + 2747: -38,-76 + 2959: -33,-70 + 2965: -33,-63 + 6350: -146,-43 - node: - zIndex: 1 - color: '#9FED5896' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallSE decals: - 1074: 416,354 - 1862: 414,381 + 32: -72,-2 + 386: -29,-49 + 731: -26,-46 + 2035: -149,-6 + 2051: -150,-13 + 2079: -132,-21 + 2380: -91,14 + 2530: -117,-50 + 2742: -40,-68 + 2745: -40,-74 + 2961: -37,-68 + 2967: -37,-61 + 5993: -33,-5 + 6348: -150,-49 - node: - zIndex: 3 - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnCornerSmallSW decals: - 6685: 353,381 + 175: -68,-2 + 402: -36,14 + 404: -36,21 + 1209: -47,-19 + 2030: -152,-3 + 2047: -147,-6 + 2052: -146,-13 + 2080: -128,-21 + 2381: -88,14 + 2531: -113,-50 + 2743: -38,-68 + 2744: -38,-74 + 2960: -33,-68 + 2971: -33,-61 + 6349: -146,-49 - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnFull decals: - 1334: 417,422 + 34: -71,-3 - node: - zIndex: 1 - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnLineE decals: - 2375: 346,388 - 2388: 354,387 - 2638: 353,398 + 27: -72,-3 + 51: -66,-5 + 52: -66,-4 + 53: -66,-3 + 54: -58,-5 + 55: -58,-4 + 56: -58,-3 + 385: -29,-50 + 440: -42,-15 + 441: -42,-14 + 442: -42,-13 + 449: -45,-15 + 450: -45,-14 + 451: -45,-13 + 452: -17,-13 + 454: -17,-15 + 455: -14,-15 + 456: -14,-14 + 457: -14,-13 + 545: -38,-26 + 549: -38,-18 + 583: -28,-30 + 584: -28,-31 + 585: -28,-32 + 586: -22,-32 + 587: -22,-31 + 588: -22,-30 + 638: -17,-14 + 650: -77,-15 + 651: -77,-14 + 652: -77,-13 + 653: -74,-15 + 654: -74,-14 + 655: -74,-13 + 662: -23,-29 + 727: -27,-51 + 728: -27,-50 + 729: -27,-49 + 963: -10,-20 + 997: -10,-21 + 1003: -10,-19 + 1675: -78,-56 + 1676: -78,-57 + 1677: -78,-58 + 1678: -75,-58 + 1679: -75,-56 + 1828: -82,-23 + 1829: -82,-22 + 2003: -107,-12 + 2004: -107,-11 + 2005: -107,-10 + 2006: -114,-11 + 2007: -117,-11 + 2042: -149,-9 + 2043: -149,-8 + 2044: -149,-7 + 2071: -132,-24 + 2072: -132,-23 + 2073: -132,-22 + 2527: -117,-53 + 2528: -117,-52 + 2529: -117,-51 + 2624: -136,-45 + 2625: -136,-44 + 2657: -126,-37 + 2658: -126,-36 + 2751: -40,-75 + 5925: -89,-73 + 5991: -33,-6 + 6215: -67,-20 + 6226: -102,27 + 6227: -102,28 + 6354: -154,-48 + 6355: -154,-47 + 6356: -154,-46 + 6357: -154,-45 + 6358: -154,-44 + 6665: -123,-66 + 6666: -123,-67 + 6667: -123,-68 + 6668: -123,-69 + 6724: -26,-47 + 6738: -102,29 + 6739: -102,24 + 6740: -102,23 + 7053: -96,-58 + 7054: -96,-57 + 7055: -96,-56 - node: - zIndex: 1 - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#D381C996' + id: WarnLineGreyscaleE decals: - 1970: 368,423 + 2516: -113,-47 + 2517: -113,-45 + 6413: -139,-40 + 6415: -125,-40 + 7010: -120,-83 - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnLineGreyscaleE decals: - 1372: 413,411 + 888: -46,-35 + 889: -46,-39 - node: - zIndex: 1 - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#9FED5896' + id: WarnLineGreyscaleN decals: - 1409: 422,391 - 1504: 441,406 - 1704: 424,405 - 1710: 420,405 - 1716: 422,395 + 1653: -115,-33 + 1654: -114,-33 + 1655: -113,-33 - node: - zIndex: 1 - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#D381C996' + id: WarnLineGreyscaleN decals: - 1573: 457,405 - 1575: 456,406 - 1587: 452,406 - 1593: 448,406 - 2213: 341,406 - 2231: 332,411 - 2258: 351,409 + 2510: -116,-44 + 2511: -115,-44 + 2512: -114,-44 + 7014: -119,-72 + 7015: -118,-72 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnBox + id: WarnLineGreyscaleN decals: - 5361: 442,392 - 5836: 307,416 - 5837: 307,418 - 5870: 307,426 - 6484: 349,387 + 880: -43,-36 + 881: -44,-36 + 882: -45,-36 - node: - zIndex: 1 - color: '#9A54BFFF' - id: WarnBoxGreyscale + color: '#D381C996' + id: WarnLineGreyscaleS decals: - 6485: 348,387 - 6486: 348,387 + 2513: -116,-48 + 2514: -115,-48 + 2515: -114,-48 + 6412: -142,-41 + 6416: -128,-41 + 7012: -119,-74 + 7013: -118,-74 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerNE + id: WarnLineGreyscaleS decals: - 6600: 363,422 - 6654: 477,375 + 876: -43,-38 + 877: -44,-38 + 878: -45,-38 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnCornerNW + color: '#9FED5896' + id: WarnLineGreyscaleW decals: - 6598: 361,422 - 6649: 481,375 + 1650: -112,-32 + 1651: -112,-31 + 1652: -112,-30 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnCornerSE + color: '#D381C996' + id: WarnLineGreyscaleW decals: - 6591: 369,420 - 6594: 363,420 - 6659: 477,379 + 2509: -123,-46 + 6414: -137,-40 + 7011: -122,-83 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSW + id: WarnLineGreyscaleW decals: - 6579: 365,420 - 6596: 361,420 - 6664: 481,379 + 883: -46,-39 + 884: -46,-38 + 885: -46,-37 + 886: -46,-36 + 887: -46,-35 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNE + id: WarnLineN decals: - 6677: 503,381 + 46: -67,2 + 47: -57,2 + 48: -56,2 + 99: -62,-8 + 134: -62,2 + 171: -68,-10 + 172: -67,-10 + 201: -57,-10 + 202: -56,-10 + 255: -68,2 + 350: -31,4 + 353: -29,4 + 354: -29,8 + 356: -31,8 + 470: -31,0 + 471: -30,0 + 472: -29,0 + 481: -31,-17 + 482: -30,-17 + 483: -29,-17 + 547: -39,-19 + 548: -40,-19 + 579: -31,-27 + 580: -30,-27 + 581: -29,-27 + 628: -30,4 + 629: -30,8 + 656: -26,-30 + 657: -25,-30 + 658: -24,-30 + 706: -31,-40 + 707: -30,-40 + 708: -29,-40 + 717: -22,-46 + 718: -23,-46 + 719: -24,-46 + 720: -25,-46 + 985: -3,-20 + 986: -4,-20 + 987: -5,-20 + 988: -6,-20 + 989: -7,-20 + 1021: -31,-23 + 1022: -29,-23 + 1039: -66,-37 + 1041: -64,-37 + 1205: -48,-19 + 1305: -31,-11 + 1306: -30,-11 + 1307: -29,-11 + 1455: -66,-21 + 1456: -65,-21 + 1457: -59,-21 + 1458: -58,-21 + 1806: -83,-30 + 1833: -83,-24 + 2015: -120,-2 + 2016: -120,-8 + 2017: -120,-14 + 2018: -119,-14 + 2019: -121,-14 + 2045: -148,-6 + 2048: -149,-13 + 2049: -148,-13 + 2050: -147,-13 + 2074: -131,-21 + 2075: -130,-21 + 2076: -129,-21 + 2378: -90,14 + 2379: -89,14 + 2521: -116,-50 + 2522: -115,-50 + 2523: -114,-50 + 2577: -122,-54 + 2578: -122,-39 + 2659: -129,-38 + 2660: -128,-38 + 2661: -127,-38 + 2741: -39,-68 + 2748: -39,-74 + 2793: -106,-37 + 2794: -105,-37 + 2795: -104,-37 + 2802: -105,-22 + 2803: -104,-22 + 2804: -103,-22 + 2807: -105,-1 + 2808: -104,-1 + 2809: -103,-1 + 2956: -36,-68 + 2957: -35,-68 + 2958: -34,-68 + 2968: -36,-61 + 2969: -35,-61 + 2970: -34,-61 + 5922: -90,-74 + 5972: -27,-23 + 5973: -26,-23 + 5974: -25,-23 + 5990: -36,-11 + 6212: -69,-18 + 6232: -102,21 + 6234: -100,21 + 6345: -149,-49 + 6346: -148,-49 + 6347: -147,-49 + 6680: -118,-68 + 6741: -103,21 + 6742: -99,21 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleNW + id: WarnLineS decals: - 6680: 505,381 + 36: -70,-3 + 57: -58,-5 + 58: -58,-4 + 59: -58,-3 + 60: -66,-5 + 61: -66,-4 + 62: -66,-3 + 173: -68,-3 + 390: -36,12 + 391: -36,13 + 392: -36,11 + 393: -36,18 + 394: -36,20 + 395: -36,19 + 443: -45,-15 + 444: -45,-14 + 445: -45,-13 + 446: -42,-15 + 447: -42,-14 + 448: -42,-13 + 458: -14,-13 + 459: -14,-14 + 460: -14,-15 + 461: -17,-15 + 463: -17,-13 + 589: -28,-30 + 590: -28,-31 + 591: -28,-32 + 592: -22,-32 + 593: -22,-31 + 594: -22,-30 + 637: -17,-14 + 644: -77,-15 + 645: -77,-14 + 646: -77,-13 + 647: -74,-15 + 648: -74,-14 + 649: -74,-13 + 660: -27,-29 + 724: -27,-51 + 725: -27,-50 + 726: -27,-49 + 900: -42,-39 + 966: -12,-20 + 996: -12,-21 + 1004: -12,-19 + 1206: -47,-22 + 1207: -47,-21 + 1208: -47,-20 + 1680: -78,-58 + 1681: -78,-57 + 1682: -78,-56 + 1683: -75,-58 + 1684: -75,-56 + 1830: -84,-23 + 1831: -84,-22 + 2000: -107,-10 + 2001: -107,-11 + 2002: -107,-12 + 2008: -114,-11 + 2009: -117,-11 + 2027: -152,-6 + 2028: -152,-5 + 2029: -152,-4 + 2039: -147,-9 + 2040: -147,-8 + 2041: -147,-7 + 2068: -128,-24 + 2069: -128,-23 + 2070: -128,-22 + 2524: -113,-53 + 2525: -113,-52 + 2526: -113,-51 + 2655: -130,-37 + 2656: -130,-36 + 2750: -38,-75 + 5923: -91,-73 + 6214: -67,-20 + 6529: -98,33 + 6530: -98,34 + 6531: -98,27 + 6532: -98,28 + 6533: -98,29 + 6534: -98,35 + 6683: -119,-66 + 6684: -119,-67 + 7050: -96,-58 + 7051: -96,-57 + 7052: -96,-56 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSE + id: WarnLineW decals: - 6674: 503,381 + 132: -62,0 + 176: -68,0 + 177: -67,0 + 203: -57,0 + 204: -56,0 + 344: -31,8 + 346: -29,8 + 347: -31,4 + 349: -29,4 + 396: -31,21 + 397: -31,21 + 398: -29,21 + 399: -30,21 + 405: -32,21 + 406: -28,21 + 473: -31,0 + 474: -30,0 + 475: -29,0 + 484: -31,-17 + 485: -30,-17 + 486: -29,-17 + 542: -40,-25 + 543: -39,-25 + 576: -31,-27 + 577: -30,-27 + 578: -29,-27 + 630: -30,4 + 631: -30,8 + 703: -31,-40 + 704: -30,-40 + 705: -29,-40 + 898: -41,-38 + 899: -40,-38 + 1019: -31,-23 + 1020: -29,-23 + 1036: -66,-37 + 1038: -64,-37 + 1204: -48,-23 + 1308: -31,-11 + 1309: -30,-11 + 1310: -29,-11 + 1451: -58,-21 + 1452: -59,-21 + 1453: -65,-21 + 1454: -66,-21 + 1762: -88,-26 + 1763: -83,-26 + 1832: -83,-21 + 2010: -121,-14 + 2011: -120,-14 + 2012: -119,-14 + 2013: -120,-8 + 2014: -120,-2 + 2022: -148,-3 + 2023: -147,-3 + 2024: -149,-3 + 2046: -148,-10 + 2065: -129,-25 + 2066: -130,-25 + 2067: -131,-25 + 2367: -101,15 + 2368: -100,15 + 2382: -89,12 + 2383: -90,12 + 2403: -108,17 + 2404: -109,17 + 2405: -110,17 + 2406: -111,17 + 2407: -112,17 + 2408: -113,17 + 2409: -114,17 + 2518: -116,-54 + 2519: -115,-54 + 2520: -114,-54 + 2573: -122,-53 + 2583: -122,-38 + 2621: -133,-46 + 2622: -134,-46 + 2623: -135,-46 + 2749: -39,-76 + 2796: -106,-37 + 2797: -105,-37 + 2798: -104,-37 + 2799: -105,-22 + 2800: -104,-22 + 2801: -103,-22 + 2810: -105,-1 + 2811: -104,-1 + 2812: -103,-1 + 2953: -36,-70 + 2954: -34,-70 + 2955: -35,-70 + 2962: -36,-63 + 2963: -35,-63 + 2964: -34,-63 + 5924: -90,-72 + 5969: -27,-23 + 5970: -26,-23 + 5971: -25,-23 + 6213: -69,-18 + 6342: -148,-43 + 6343: -147,-43 + 6344: -149,-43 + 6732: -102,15 + 6803: -104,15 + 6804: -103,15 + 6805: -99,15 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallGreyscaleSW + id: WoodTrimThinCornerNe decals: - 6682: 505,381 + 74: -59,-3 + 77: -60,-2 + 123: -59,-10 + 259: -49,-5 + 276: -49,2 + 301: -43,2 + 304: -43,-5 + 2173: -123,-15 + 2178: -130,-16 + 5540: -37,-36 + 5588: -96,-38 + 5596: -99,-35 + 5612: -97,-44 + 7292: -49,-51 + 7311: -45,-55 + 7324: -45,-50 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallNE + id: WoodTrimThinCornerNw decals: - 6585: 365,420 - 6608: 328,396 + 78: -64,-2 + 82: -65,-3 + 117: -65,-10 + 258: -54,-5 + 277: -53,2 + 278: -54,1 + 293: -47,2 + 307: -47,-5 + 2174: -128,-15 + 2179: -132,-16 + 5523: -38,-40 + 5539: -38,-36 + 5593: -101,-38 + 5595: -101,-35 + 7285: -56,-51 + 7309: -47,-55 + 7325: -47,-50 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallNW + id: WoodTrimThinCornerSe decals: - 6589: 369,420 - 6604: 330,396 + 100: -59,-7 + 108: -59,-13 + 268: -49,-8 + 275: -49,-2 + 302: -43,0 + 305: -43,-7 + 1936: -81,-36 + 2165: -123,-18 + 5537: -37,-38 + 5586: -96,-40 + 5597: -99,-36 + 5608: -97,-48 + 7298: -49,-57 + 7305: -55,-55 + 7313: -45,-57 + 7321: -45,-53 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: WoodTrimThinCornerSw decals: - 6593: 367,420 - 6607: 328,398 + 64: -65,-7 + 114: -65,-13 + 273: -54,-8 + 274: -54,-2 + 294: -47,0 + 306: -47,-7 + 1937: -85,-36 + 2160: -128,-18 + 2177: -132,-19 + 5536: -38,-43 + 5538: -38,-38 + 5581: -101,-40 + 5598: -101,-36 + 7281: -56,-55 + 7302: -53,-57 + 7315: -47,-57 + 7319: -47,-53 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnCornerSmallSW + id: WoodTrimThinInnerNe decals: - 6577: 367,420 - 6605: 330,398 + 75: -60,-3 + 6707: -72,-39 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnEndN + id: WoodTrimThinInnerNw decals: - 6582: 365,423 - 6590: 369,421 + 76: -64,-3 + 83: -64,-3 + 279: -53,1 + 6098: -67,-39 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnEndS + id: WoodTrimThinInnerSe decals: - 6576: 367,419 + 104: -62,-7 + 7307: -55,-54 - node: - zIndex: 1 color: '#FFFFFFFF' - id: WarnFull + id: WoodTrimThinInnerSw decals: - 6488: 344,388 + 105: -62,-7 + 7308: -53,-54 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnFull - decals: - 6669: 504,382 - 6670: 504,380 - - node: - zIndex: 1 - color: '#774194FF' - id: WarnFullGreyscale + id: WoodTrimThinLineE decals: - 6487: 344,389 + 72: -59,-5 + 73: -59,-4 + 101: -59,-6 + 102: -62,-8 + 106: -59,-11 + 107: -59,-12 + 269: -49,-7 + 270: -49,-6 + 287: -49,-1 + 288: -49,0 + 289: -49,1 + 303: -43,1 + 309: -43,-6 + 1938: -81,-35 + 1939: -81,-34 + 1940: -81,-33 + 2166: -123,-17 + 2167: -123,-16 + 2183: -130,-18 + 2184: -130,-17 + 5541: -37,-37 + 5587: -96,-39 + 5601: -100,-44 + 5602: -100,-46 + 5603: -100,-45 + 5604: -100,-47 + 5605: -100,-48 + 5609: -97,-47 + 5610: -97,-46 + 5611: -97,-45 + 6706: -72,-38 + 7293: -49,-52 + 7294: -49,-53 + 7295: -49,-54 + 7296: -49,-55 + 7297: -49,-56 + 7312: -45,-56 + 7322: -45,-52 + 7323: -45,-51 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnLineE + id: WoodTrimThinLineN decals: - 6583: 365,422 - 6584: 365,421 - 6601: 363,421 - 6606: 328,397 - 6655: 477,374 - 6656: 477,373 - 6662: 477,380 - 6663: 477,381 + 79: -63,-2 + 80: -62,-2 + 81: -61,-2 + 118: -64,-10 + 119: -63,-10 + 120: -62,-10 + 121: -60,-10 + 122: -61,-10 + 260: -53,-5 + 261: -52,-5 + 262: -51,-5 + 263: -50,-5 + 280: -52,2 + 281: -51,2 + 282: -50,2 + 298: -46,2 + 299: -45,2 + 300: -44,2 + 313: -46,-5 + 314: -45,-5 + 315: -44,-5 + 2169: -124,-15 + 2170: -125,-15 + 2171: -127,-15 + 2172: -126,-15 + 2180: -131,-16 + 5532: -36,-40 + 5533: -37,-40 + 5589: -97,-38 + 5590: -98,-38 + 5591: -99,-38 + 5592: -100,-38 + 5600: -100,-35 + 5613: -98,-44 + 5614: -99,-44 + 6100: -70,-39 + 6101: -69,-39 + 6102: -68,-39 + 6705: -71,-39 + 7286: -55,-51 + 7287: -54,-51 + 7288: -53,-51 + 7289: -52,-51 + 7290: -51,-51 + 7291: -50,-51 + 7310: -46,-55 + 7326: -46,-50 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnLineGreyscaleE + id: WoodTrimThinLineS decals: - 6675: 503,380 - 6676: 503,382 + 65: -64,-7 + 66: -63,-7 + 68: -61,-7 + 69: -60,-7 + 109: -60,-13 + 110: -61,-13 + 111: -62,-13 + 112: -63,-13 + 113: -64,-13 + 264: -53,-8 + 265: -52,-8 + 266: -51,-8 + 267: -50,-8 + 283: -53,-2 + 284: -52,-2 + 285: -51,-2 + 286: -50,-2 + 295: -46,0 + 296: -45,0 + 297: -44,0 + 310: -46,-7 + 311: -45,-7 + 312: -44,-7 + 1781: -85,-32 + 1782: -84,-32 + 1783: -83,-32 + 1784: -82,-32 + 1785: -81,-32 + 1944: -84,-36 + 1945: -83,-36 + 1946: -82,-36 + 2161: -127,-18 + 2162: -126,-18 + 2163: -125,-18 + 2164: -124,-18 + 2631: -137,-46 + 2632: -136,-46 + 2633: -135,-46 + 2634: -134,-46 + 2635: -133,-46 + 5534: -36,-43 + 5535: -37,-43 + 5582: -100,-40 + 5583: -99,-40 + 5584: -98,-40 + 5585: -97,-40 + 5599: -100,-36 + 5606: -99,-48 + 5607: -98,-48 + 6118: -70,-26 + 6119: -69,-26 + 6120: -68,-26 + 7299: -50,-57 + 7300: -51,-57 + 7301: -52,-57 + 7306: -54,-54 + 7314: -46,-57 + 7320: -46,-53 - node: - zIndex: 3 color: '#FFFFFFFF' - id: WarnLineGreyscaleN + id: WoodTrimThinLineW decals: - 6678: 504,381 + 84: -65,-4 + 85: -65,-5 + 86: -65,-6 + 103: -62,-8 + 115: -65,-12 + 116: -65,-11 + 271: -54,-6 + 272: -54,-7 + 290: -54,-1 + 291: -54,0 + 292: -47,1 + 308: -47,-6 + 1941: -85,-35 + 1942: -85,-34 + 1943: -85,-33 + 2175: -128,-16 + 2176: -128,-17 + 2181: -132,-17 + 2182: -132,-18 + 5526: -38,-41 + 5527: -38,-42 + 5528: -35,-41 + 5529: -35,-42 + 5542: -38,-37 + 5552: -35,-43 + 5553: -35,-42 + 5554: -35,-41 + 5555: -35,-41 + 5556: -35,-40 + 5594: -101,-39 + 6103: -67,-38 + 7282: -56,-54 + 7283: -56,-53 + 7284: -56,-52 + 7303: -53,-56 + 7304: -53,-55 + 7316: -47,-56 + 7317: -47,-52 + 7318: -47,-51 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnLineGreyscaleS + cleanable: True + color: '#3C44AAFF' + id: arrow decals: - 6671: 504,381 + 2057: -147,-4 + 2059: -145,-12 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnLineGreyscaleW + cleanable: True + color: '#835432FF' + id: arrow decals: - 6673: 505,380 - 6681: 505,382 + 2054: -145,-4 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnLineN + cleanable: True + angle: 1.5707963267948966 rad + color: '#835432FF' + id: arrow decals: - 6578: 366,420 - 6592: 368,420 - 6595: 362,420 - 6660: 476,379 - 6661: 475,379 - 6665: 482,379 - 6666: 483,379 + 2060: -144,-7 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnLineS + cleanable: True + angle: 3.141592653589793 rad + color: '#B02E26FF' + id: arrow decals: - 6580: 365,421 - 6581: 365,422 - 6597: 361,421 - 6603: 330,397 - 6650: 481,374 - 6651: 481,373 - 6667: 481,380 - 6668: 481,381 + 2055: -151,-4 + 2056: -149,-4 + 2058: -151,-12 - node: - zIndex: 3 - color: '#FFFFFFFF' - id: WarnLineW + cleanable: True + angle: 4.71238898038469 rad + color: '#B02E26FF' + id: arrow decals: - 6586: 366,420 - 6587: 367,420 - 6588: 368,420 - 6599: 362,422 - 6602: 346,410 - 6652: 482,375 - 6653: 483,375 - 6657: 476,375 - 6658: 475,375 + 2061: -144,-4 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinCornerNeWhite + color: '#FFFFFFFF' + id: burnt1 decals: - 2647: 366,397 + 2935: -26,-68 + 2939: -27,-67 + 2940: -27,-69 + 2941: -27,-68 + 2942: -25,-66 + 2943: -26,-66 + 2944: -25,-65 + 2945: -25,-69 + 2946: -25,-67 + 2947: -25,-68 + 2948: -26,-67 + 2949: -26,-68 + 2950: -27,-68 + 2951: -27,-67 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinCornerNwWhite + color: '#FFFFFFFF' + id: burnt2 decals: - 2645: 365,397 + 2936: -26,-67 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinCornerSeWhite + color: '#FFFFFFFF' + id: burnt3 decals: - 2641: 368,396 + 2937: -25,-67 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinCornerSwWhite + cleanable: True + color: '#FFFFFFFF' + id: burnt3 decals: - 2644: 365,396 + 5462: -135,-6 + 5463: -135,-5 + 5464: -135,-7 + 5465: -134,-7 + 5466: -135,1 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinEndNWhite + color: '#FFFFFFFF' + id: burnt4 decals: - 2651: 368,397 + 2938: -25,-68 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinInnerNeWhite + cleanable: True + color: '#FFFFFFFF' + id: burnt4 decals: - 2648: 366,396 + 5448: -135,-5 + 5449: -134,-5 + 5450: -134,-4 + 5451: -135,-4 + 5452: -134,-3 + 5453: -134,-3 + 5454: -135,-2 + 5455: -134,-2 + 5456: -134,-1 + 5457: -135,-1 + 5458: -135,0 + 5459: -134,0 + 5460: -134,1 + 5461: -134,-5 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinInnerNeWhite + color: '#FFFFFFFF' + id: grasssnowa1 decals: - 6909: 333,444 + 2915: -110,20 + 2920: -112,21 + 7265: -97,0 + 7276: -92,-62 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinInnerNwWhite + color: '#FFFFFFFF' + id: grasssnowa2 decals: - 2649: 368,396 + 2918: -108,20 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinInnerSwWhite + color: '#FFFFFFFF' + id: grasssnowa3 decals: - 6900: 339,453 + 2921: -112,22 + 7264: -99,-1 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinLineEWhite + color: '#FFFFFFFF' + id: grasssnowb1 decals: - 6905: 333,451 - 6906: 333,449 - 6907: 333,447 - 6908: 333,445 + 2919: -108,22 + 7277: -91,-62 + 7278: -94,-63 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinLineNWhite + color: '#FFFFFFFF' + id: grasssnowb3 decals: - 2650: 367,396 + 7273: -95,-62 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinLineNWhite + color: '#FFFFFFFF' + id: grasssnowc1 decals: - 6910: 335,444 - 6911: 336,444 - 6912: 338,444 - 6913: 339,444 - 6914: 340,444 + 7266: -99,-5 + 7275: -90,-64 - node: - zIndex: 1 - color: '#4B362BFF' - id: WoodTrimThinLineSWhite + color: '#FFFFFFFF' + id: grasssnowc3 decals: - 2642: 367,396 - 2643: 366,396 + 2916: -111,22 + 2922: -110,21 + 7267: -99,-4 + 7274: -96,-64 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinLineSWhite + cleanable: True + color: '#B02E26FF' + id: radiation decals: - 6901: 338,453 - 6902: 337,453 - 6903: 336,453 - 6904: 335,453 - 6918: 340,449 - 6919: 339,449 - 6920: 336,449 + 6540: -113.43667,36.99878 + 6541: -112.06167,35.358154 + 6542: -113.98354,35.201904 - node: - zIndex: 2 - color: '#4B362BFF' - id: WoodTrimThinLineWWhite + cleanable: True + color: '#B02E26FF' + id: rune3 decals: - 6898: 339,451 - 6899: 339,452 - 6915: 341,445 - 6916: 341,446 - 6917: 341,448 - - type: OccluderTree - - type: Shuttle - - type: GridPathfinding - - type: SpreaderGrid - - type: GravityShake - shakeTimes: 10 - - type: GasTileOverlay + 5965: -40,-47 - type: GridAtmosphere version: 2 data: tiles: - 67,95: - 0: 192 - 68,95: - 0: 45977 - 68,98: - 0: 14744 - 1: 4 - 68,94: - 0: 39040 - 68,96: - 0: 34969 - 69,94: - 0: 57584 - 69,93: - 0: 19712 - 69,95: - 0: 10982 - 69,96: - 0: 57954 - 70,93: - 0: 20256 - 70,94: - 0: 45296 - 1: 16384 - 70,95: - 0: 12554 - 70,96: - 0: 62538 - 1: 4 - 71,93: - 0: 36232 - 71,94: - 0: 53440 - 71,95: - 0: 8751 - 71,96: - 0: 55079 + -40,-13: + 0: 19584 + -40,-12: + 0: 17484 + -39,-13: + 0: 3859 1: 8192 - 71,92: - 0: 32768 - 72,92: - 0: 46144 - 72,94: - 0: 57584 - 1: 4096 - 68,99: - 0: 1 - 68,97: - 1: 64 - 0: 34824 - 69,98: - 1: 1 - 0: 59114 - 69,97: - 0: 9766 - 69,99: - 0: 8432 - 69,100: - 0: 35058 - 70,98: - 0: 47105 - 1: 16384 - 70,99: - 0: 8432 - 70,97: - 0: 12868 - 1: 1024 - 70,100: - 0: 242 - 71,98: - 0: 63744 - 71,99: - 0: 112 - 71,97: - 0: 12070 - 72,96: - 0: 12560 - 1: 1 - 72,97: - 1: 256 - 0: 16913 - 72,98: - 0: 60812 - 1: 4096 - 71,100: - 0: 2290 - 72,100: - 0: 34972 - 72,93: - 0: 8712 - 72,95: - 0: 3202 - 73,92: - 0: 4096 - 73,94: - 0: 47344 - 73,95: - 0: 41523 - 1: 192 - 73,93: - 0: 40960 - 73,96: - 1: 34946 - 0: 8736 - 74,95: - 1: 18160 - 74,96: - 1: 61166 - 74,94: - 0: 35840 - 75,95: - 0: 687 - 75,96: - 1: 65501 - 75,94: - 0: 16384 - 72,99: - 0: 33008 - 73,98: - 0: 47930 - 73,99: - 0: 8440 - 73,97: - 0: 41122 - 1: 520 - 73,100: - 0: 8894 - 74,97: - 1: 3822 - 74,98: - 0: 19968 - 74,99: - 0: 14 - 75,97: - 1: 3551 - 75,98: - 0: 44010 - 75,99: - 0: 15 - 76,98: - 0: 12336 - 72,101: - 0: 35016 - 73,101: - 0: 62691 - 73,102: + -39,-14: + 0: 27776 + -39,-12: + 1: 61167 + -38,-14: + 0: 4371 + 1: 34944 + -38,-13: 0: 17 - 74,100: - 0: 32769 - 74,101: - 0: 29424 - 1: 32768 - 74,103: - 0: 25358 - 1: 32768 - 74,102: - 0: 17508 - 74,104: - 0: 57954 - 75,101: - 0: 51 - 1: 53248 - 75,103: - 1: 7360 - 75,102: - 1: 60940 - 75,100: - 0: 57856 - 75,104: - 1: 68 - 0: 31744 - 76,100: - 1: 13824 - 0: 2048 - 76,101: - 1: 64960 - 76,102: - 1: 47901 - 76,103: - 1: 40433 - 73,104: + 1: 57344 + -38,-12: + 1: 61422 + -37,-14: + 1: 13104 + 0: 8 + -37,-13: + 1: 61713 + -37,-12: + 1: 65535 + -37,-15: 0: 32768 - 74,105: - 0: 27706 - 1: 512 - 74,107: - 0: 200 - 75,105: - 0: 4352 - 1: 34944 - 74,106: - 1: 2184 + -36,-15: + 0: 30572 + -36,-14: + 0: 119 + 1: 25600 + -4,0: + 1: 39859 + -4,-1: + 1: 48063 + -5,0: + 1: 12279 + -4,1: + 1: 49075 + -5,1: + 1: 43690 + -4,2: + 1: 3 + -5,2: + 1: 13098 + -3,0: + 1: 13105 + -3,1: + 1: 16176 + -3,-1: + 1: 13107 + -3,3: + 0: 59528 + -3,2: + 0: 34952 + -2,1: + 1: 260 + 0: 36488 + -3,4: + 0: 34952 + -2,3: + 0: 63624 + 1: 68 + -2,0: + 1: 17476 + 0: 34952 + -2,-1: + 1: 16384 + 0: 35048 + -2,2: + 1: 17476 + 0: 34952 + -1,0: + 1: 21845 + 0: 34952 + -1,1: + 1: 5 + 0: 36744 + -1,2: + 1: 21845 + 0: 34952 + -1,3: + 1: 85 + 0: 63624 + -2,4: + 0: 34952 + 1: 17472 + -1,-1: + 1: 20480 + 0: 35064 + 0,0: + 1: 4369 + 0: 17476 + 0,1: + 1: 257 + 0: 17988 + 0,2: + 1: 4369 + 0: 17476 + 0,3: + 1: 17 + 0: 29764 + -1,4: + 0: 34952 + 1: 21840 + -4,-4: + 1: 65531 + -4,-5: + 1: 46011 + -5,-4: + 1: 65523 + -4,-3: + 1: 46011 + -4,-2: + 1: 46011 + -5,-3: + 1: 63232 + -5,-1: + 1: 2039 + -3,-4: + 1: 62463 + -3,-3: + 1: 61695 + -3,-2: + 1: 12543 + -3,-5: + 1: 62207 + -2,-4: + 1: 63743 + -2,-3: + 1: 59647 + -2,-2: + 1: 239 0: 32768 - 75,106: - 1: 2185 - 0: 2 - 75,107: - 0: 18548 - 76,104: - 0: 4368 - 1: 34956 - 76,105: - 1: 48028 - 76,106: - 1: 16319 - 76,107: - 1: 272 - 0: 17640 - 75,109: - 0: 34956 - 75,108: + -2,-5: + 1: 63726 + -1,-4: + 1: 13107 0: 34944 - 76,108: - 0: 36232 - 76,109: - 0: 21692 - 75,110: - 0: 32768 - 76,110: - 0: 7580 - 76,94: - 1: 59904 - 76,95: + -1,-3: + 1: 61683 + -1,-2: + 1: 51 + 0: 34944 + -1,-5: + 1: 61683 + 0,-3: + 1: 28784 + 0,-1: + 0: 17524 + 1: 4096 + 0,-7: + 0: 4096 + 0,-6: + 0: 17523 + -1,-7: + 0: 35939 + -1,-6: + 0: 35056 + 1: 12288 + 0,-5: + 1: 28784 + -40,4: + 0: 17476 + -40,3: + 0: 17604 + -40,5: + 0: 2244 + -39,5: + 0: 13298 + -39,4: + 1: 21845 + 0: 8738 + -39,3: + 1: 20496 + 0: 8930 + -39,6: + 0: 2246 + -38,5: + 0: 8946 + -38,6: + 0: 62242 + -38,4: + 1: 21845 + 0: 8738 + -38,3: + 1: 20480 + 0: 8946 + -37,5: + 0: 8946 + -37,6: + 0: 61986 + -37,4: + 1: 21845 + 0: 8738 + -37,3: + 1: 20480 + 0: 8946 + -36,5: + 0: 8946 + -36,6: + 0: 61986 + -20,-20: + 1: 12288 + -21,-20: + 1: 63271 + -20,-19: + 1: 39822 + -20,-18: + 1: 36761 + -20,-17: + 1: 34952 + -19,-19: + 1: 65038 + -19,-18: + 1: 28684 + -19,-17: + 1: 40959 + -20,-16: + 1: 34952 + -19,-20: + 1: 11776 + -19,-16: + 1: 29627 + -18,-20: + 1: 52608 + -18,-19: + 1: 56797 + -18,-17: + 1: 65520 + -18,-16: + 1: 45235 + -18,-18: + 1: 76 + -17,-20: + 1: 30512 + -17,-19: + 1: 30583 + -17,-18: + 1: 327 + -17,-17: + 1: 24568 + -17,-16: + 1: 64764 + -16,-17: + 1: 53233 + -8,-4: + 1: 65535 + -9,-4: + 1: 65535 + -8,-3: + 1: 61167 + -9,-3: + 1: 65309 + -8,-2: + 1: 61422 + -9,-2: + 1: 65535 + -8,-1: 1: 61166 - 76,96: + -9,-1: + 1: 4095 + -8,-5: + 1: 61183 + -8,0: + 1: 61438 + -7,-4: + 1: 65527 + -7,-3: + 1: 65031 + -7,-1: + 1: 61182 + -7,-2: 1: 61166 - 77,95: - 1: 65024 - 77,96: - 1: 65294 - 78,95: - 1: 63232 - 78,96: - 1: 65287 - 79,95: - 1: 13056 - 0: 2048 - 79,96: - 1: 64259 - 0: 8 - 80,95: - 0: 40768 - 76,97: - 1: 110 - 77,97: - 1: 175 - 0: 59904 - 77,98: - 1: 132 - 78,97: - 1: 79 - 0: 29696 - 78,98: - 0: 4594 - 1: 9216 - 78,99: - 0: 18001 - 1: 4356 - 78,100: - 0: 50557 - 79,97: - 1: 19 - 0: 4352 - 79,98: - 1: 16 - 80,96: - 0: 9 - 1: 65280 - 77,100: - 0: 34288 - 1: 24576 - 77,101: - 1: 62736 - 77,102: - 1: 58949 - 77,103: - 1: 19828 - 77,104: - 1: 1 - 0: 50880 - 78,102: - 1: 29488 - 78,103: - 1: 3 - 78,101: - 0: 740 - 1: 34816 - 79,100: - 0: 61999 - 79,102: - 0: 15616 - 1: 512 - 79,103: - 0: 17481 - 1: 6 - 79,101: - 0: 8800 - 79,104: - 0: 14756 - 1: 64 - 80,100: - 0: 61703 - 80,102: - 0: 38826 + -6,-4: + 1: 65528 + -6,-3: + 1: 30481 + -6,-2: + 1: 65399 + -6,-1: + 1: 30711 + -6,0: + 1: 4081 + -5,-2: + 1: 30576 + -12,0: + 1: 3838 + -13,0: + 1: 4095 + -12,1: + 0: 241 + -13,1: + 0: 4592 + -12,-1: + 1: 43168 + -11,0: + 1: 3003 + -11,1: + 0: 114 1: 2048 - 80,103: - 0: 143 - 1: 49152 - 77,105: - 1: 61121 - 77,106: - 1: 28655 - 77,107: - 0: 62976 - 1: 32 - 78,104: - 0: 62136 - 1: 64 - 78,107: - 0: 62540 - 78,106: - 1: 1030 - 0: 35392 - 78,108: - 0: 20294 - 1: 45232 - 79,105: - 1: 48056 - 79,106: - 0: 784 - 1: 2186 - 79,107: - 0: 1 - 1: 3086 - 79,108: - 0: 1796 - 1: 28784 - 80,104: - 0: 16 - 1: 36044 - 80,105: - 1: 65535 - 80,106: + -11,-1: + 1: 35832 + -10,0: 1: 8191 - 80,107: - 1: 35835 - 76,111: - 0: 9103 - 77,108: - 0: 3120 - 1: 49344 - 77,110: - 0: 3073 - 1: 49344 - 77,111: - 0: 47800 - 77,109: - 0: 7680 - 1: 57568 - 78,109: - 0: 61412 - 78,110: - 1: 45232 - 0: 20292 - 77,112: - 0: 8 - 78,111: - 0: 1188 - 1: 64 - 79,109: - 0: 3840 - 1: 57568 - 79,110: - 1: 28784 - 0: 1792 - 79,111: - 0: 9796 - 79,112: - 0: 3843 - 80,109: - 0: 63872 - 80,111: - 0: 12070 - 78,112: - 0: 19983 - 81,91: - 0: 2060 - 81,90: - 0: 32768 - 82,91: - 0: 12551 - 1: 49152 - 82,92: - 0: 4109 - 1: 192 - 82,90: - 0: 16616 - 82,89: - 0: 32768 - 83,90: - 0: 628 - 1: 61440 - 83,91: - 1: 61680 - 0: 15 - 83,92: - 0: 15 - 1: 61680 - 83,89: - 0: 51200 - 84,90: - 1: 45120 - 0: 17572 - 84,91: - 0: 58447 - 1: 176 - 80,92: - 0: 2048 - 81,92: - 0: 39848 - 81,95: - 0: 3872 - 81,94: - 0: 32780 - 82,94: - 0: 4370 - 82,95: - 0: 8081 - 82,93: - 0: 44803 - 82,96: - 0: 1 - 1: 65280 - 83,93: - 0: 29199 - 1: 240 - 83,95: - 0: 256 - 1: 52236 - 83,94: - 0: 77 - 1: 49152 - 84,92: - 0: 17647 - 1: 45056 - 84,93: - 0: 29775 - 1: 176 - 84,94: - 0: 213 - 1: 21504 - 84,95: - 1: 57111 - 81,96: - 1: 65280 - 0: 14 - 81,98: - 0: 7941 - 81,99: - 0: 4369 - 1: 3276 - 81,97: - 0: 62176 - 81,100: - 0: 12815 - 1: 34816 - 82,97: - 0: 4112 - 1: 52364 - 82,98: - 0: 768 - 1: 32908 - 82,99: - 1: 52701 - 82,100: - 0: 1 - 1: 64396 - 83,98: - 1: 63743 - 83,99: - 1: 65535 - 83,96: - 1: 43200 - 83,97: - 1: 11402 - 83,100: + -10,1: + 1: 4369 + -10,-1: + 1: 14813 + -10,2: + 1: 513 + -10,3: + 1: 17423 + -10,4: + 1: 61508 + -9,0: + 1: 20471 + -9,2: + 1: 65356 + -9,3: + 1: 65407 + -9,4: + 1: 63487 + -9,1: + 1: 52428 + -8,2: + 1: 65518 + -8,3: 1: 65295 - 84,96: - 1: 29980 - 84,98: - 1: 7389 - 84,99: - 1: 56781 - 80,101: - 0: 44714 - 81,101: - 0: 12288 - 1: 34952 - 81,102: - 0: 256 - 1: 60424 - 81,103: - 0: 1 - 1: 4096 - 81,104: - 1: 1525 - 82,101: - 1: 57243 - 82,102: - 1: 65165 - 82,103: - 1: 52972 - 82,104: - 1: 61439 - 83,101: - 1: 61199 - 83,102: - 1: 65358 - 83,103: - 1: 52688 - 83,104: + -12,-4: + 1: 65520 + -13,-4: + 1: 65523 + -13,-3: + 1: 20303 + -12,-3: + 1: 26112 + -13,-2: 1: 65535 - 84,100: - 1: 65512 - 84,101: - 1: 65295 - 84,102: - 1: 65293 - 84,103: - 1: 65376 - 80,108: - 1: 3276 - 81,105: - 1: 30583 - 81,106: - 1: 26495 - 81,107: - 1: 25702 - 81,108: - 1: 52791 - 82,105: - 1: 65279 - 82,106: - 1: 111 - 0: 57344 - 82,107: - 2: 26208 - 83,105: + -12,-2: + 1: 61412 + -13,-1: + 1: 65473 + -11,-4: + 1: 65523 + -11,-3: + 1: 65331 + -11,-2: + 1: 48057 + -11,-5: + 1: 14139 + -10,-4: 1: 65535 - 83,106: - 1: 191 - 0: 61440 - 83,107: - 3: 13104 - 4: 34944 - 84,104: - 1: 57583 - 84,105: + -10,-3: + 1: 55552 + -10,-2: + 1: 57309 + -10,-5: + 1: 32767 + -24,0: + 1: 7 + -24,-1: 1: 65535 - 84,106: - 1: 223 - 0: 61440 - 84,107: - 4: 4368 - 5: 52416 - 80,110: - 0: 19592 - 81,109: - 0: 12288 - 1: 35020 - 81,110: - 0: 33024 - 1: 200 - 81,111: - 0: 24208 - 81,112: - 0: 17 - 82,108: - 1: 32512 - 82,109: - 1: 14515 - 82,110: - 1: 2235 - 0: 8192 - 82,111: - 0: 245 - 83,108: - 1: 50944 - 83,109: - 1: 37817 - 83,110: - 1: 4095 - 83,111: - 0: 242 - 84,108: - 1: 65280 - 84,109: - 1: 61661 - 84,110: - 1: 4095 - 84,111: - 0: 241 - 80,112: - 0: 8 - 84,89: - 0: 8936 - 84,88: - 0: 32768 - 85,88: - 0: 4096 - 85,89: - 0: 17680 - 85,90: - 1: 61440 - 0: 2244 - 85,91: - 0: 15 - 1: 57584 - 85,92: - 0: 15 - 1: 61664 - 86,90: - 0: 19538 - 1: 4096 - 86,91: - 0: 197 - 1: 28688 - 86,92: - 0: 15 - 1: 4208 - 86,89: - 0: 8192 - 87,91: - 0: 6993 - 87,92: - 0: 4899 - 85,93: - 0: 41487 - 1: 240 - 85,95: - 1: 61696 - 0: 14 - 85,94: - 0: 16463 - 85,96: - 1: 5 - 0: 1792 - 86,93: - 0: 62601 - 1: 16 - 86,95: - 0: 47 - 1: 45056 - 86,96: - 1: 55795 - 86,94: - 0: 8192 - 87,93: - 0: 25671 - 87,95: - 0: 7 - 1: 53248 - 87,94: - 0: 4108 - 87,96: - 1: 61661 - 88,94: - 0: 275 - 1: 32968 - 88,95: - 1: 57595 - 84,97: - 1: 1636 - 85,97: - 1: 2039 - 85,98: - 1: 26615 - 85,99: - 1: 65520 - 86,97: - 1: 47357 - 86,98: - 1: 48123 - 86,99: - 1: 57304 - 86,100: - 1: 65436 - 87,97: - 1: 55551 - 87,98: - 1: 4573 - 87,99: - 1: 64784 - 87,100: - 1: 65293 - 88,96: - 1: 55535 - 88,97: - 1: 55519 - 88,98: - 1: 63711 - 88,99: - 1: 65263 - 85,100: - 1: 65456 - 85,101: + -25,0: + 1: 12 + -24,1: + 1: 62207 + -25,1: + 1: 61694 + -24,2: + 1: 65535 + -25,2: + 1: 48059 + -24,3: 1: 65327 - 85,102: - 1: 63238 - 85,103: - 1: 65456 - 85,104: - 1: 47295 - 86,101: - 1: 60943 - 86,102: - 1: 62718 - 86,103: - 1: 56732 - 86,104: - 1: 65309 - 87,101: - 1: 60943 - 87,102: - 1: 62702 - 87,103: - 1: 64271 - 87,104: - 1: 48907 - 88,100: - 1: 65423 - 88,101: - 1: 11823 - 88,102: - 1: 62694 - 85,105: + -25,3: + 1: 64313 + -24,4: 1: 65535 - 85,106: - 1: 111 - 0: 61440 - 85,107: - 5: 26208 - 86,105: + -23,1: + 1: 57599 + -23,3: + 1: 65294 + -23,2: + 1: 61166 + -23,4: 1: 65535 - 86,106: - 1: 255 - 0: 61440 - 86,107: - 5: 13104 - 87,105: - 1: 32755 - 87,106: - 1: 255 - 0: 61440 - 87,107: - 1: 32624 - 88,104: - 1: 39150 + -23,0: + 1: 34952 + -22,1: + 1: 56575 + -22,2: + 1: 57309 + -22,3: + 1: 65357 + -22,0: + 2: 3822 + -22,4: + 1: 65535 + -22,-1: + 2: 20479 + -21,1: + 1: 43263 + -21,0: + 1: 36590 + -21,2: 0: 8192 - 88,106: - 0: 12834 + 1: 8 + -21,3: + 0: 25122 + -21,-1: 1: 34952 - 88,107: - 1: 50377 - 5: 272 - 85,108: - 1: 64000 - 85,109: - 1: 28774 - 85,110: - 1: 1911 - 85,111: - 0: 49 - 86,108: - 1: 56576 - 86,109: - 1: 12281 - 87,109: - 1: 10098 - 87,108: - 1: 58880 - 88,108: - 1: 65518 - 88,109: - 1: 4082 - 88,93: - 0: 4096 - 89,94: - 1: 40190 - 89,95: - 1: 40189 - 89,96: - 1: 7389 - 89,93: - 1: 16384 - 90,94: - 1: 4369 - 0: 192 - 90,95: - 1: 36317 - 90,96: + 2: 819 + -20,0: + 1: 4565 + -20,1: + 1: 12305 + -16,-4: + 1: 62719 + -16,-5: + 1: 64255 + -17,-4: + 1: 46079 + -16,-3: 1: 20479 - 91,94: - 0: 16 - 1: 35968 - 91,95: - 1: 58607 - 91,96: - 1: 61439 - 92,95: - 1: 58623 - 89,97: - 1: 56573 - 89,98: - 1: 62687 - 89,99: + -17,-3: + 1: 15291 + -16,-2: 1: 65535 - 89,100: - 1: 65359 - 90,97: - 1: 12287 - 90,98: - 1: 25855 - 90,99: - 1: 30454 - 90,100: - 1: 63342 - 91,97: - 1: 61182 - 91,98: - 1: 65248 - 91,99: - 1: 20479 - 91,100: - 1: 65326 - 92,96: - 1: 63950 - 92,97: - 1: 46079 - 92,98: - 1: 46008 - 92,99: - 1: 3007 - 88,103: - 1: 10922 - 89,101: - 1: 52559 - 89,102: - 1: 43217 - 89,103: - 1: 35530 - 89,104: - 1: 33790 - 90,101: - 1: 47623 - 90,102: - 1: 59640 - 90,103: - 1: 6288 - 90,104: - 1: 2751 - 91,101: - 1: 47887 - 91,102: - 1: 49083 - 91,103: - 1: 2993 - 91,104: - 1: 57567 - 92,100: - 1: 65295 - 92,101: - 1: 47887 - 92,102: - 1: 49075 - 88,105: - 0: 8738 - 1: 34952 - 89,105: + -17,-2: + 1: 64443 + -16,-1: + 1: 65535 + -17,-1: + 1: 48127 + -16,0: + 1: 65103 + -15,-4: + 1: 47359 + -15,-3: + 1: 35771 + -15,-2: + 1: 64443 + -15,-1: + 1: 48127 + -15,-5: + 1: 61567 + -15,0: + 1: 65163 + -14,-4: + 1: 65535 + -14,-3: + 1: 7519 + -14,-2: + 1: 57309 + -14,-1: + 1: 64797 + -14,-5: + 1: 61695 + -14,0: + 1: 14813 + -17,0: 1: 65339 - 89,107: - 1: 30215 - 89,106: - 1: 26190 - 89,108: - 1: 35 - 0: 34944 - 90,106: - 1: 51 - 0: 59392 - 90,107: - 1: 4352 - 0: 2 - 90,105: - 1: 3822 - 91,106: - 0: 12176 - 91,105: - 1: 61166 - 91,107: - 0: 9186 - 91,108: - 0: 39 - 92,104: - 1: 14559 - 92,105: - 1: 13243 - 0: 32768 - 92,106: - 0: 2016 - 88,110: - 0: 200 - 89,110: - 0: 35320 - 89,109: - 0: 35976 - 90,109: - 0: 3 - 90,110: - 0: 20366 - 90,108: - 0: 12 - 91,110: - 0: 20367 - 91,109: - 0: 4352 - 91,111: - 0: 4 - 92,110: - 0: 3983 - 92,94: - 1: 9760 - 93,94: - 0: 16 - 1: 52416 - 93,95: - 1: 56541 - 93,96: - 1: 64735 - 93,92: - 0: 34816 - 94,92: - 0: 12160 - 94,94: - 1: 12288 - 94,93: - 0: 18 - 95,92: - 0: 24456 - 95,93: - 0: 1 - 96,92: - 0: 10052 - 93,97: - 1: 56543 - 93,98: - 1: 56797 - 93,99: - 1: 479 - 0: 32768 - 93,100: - 1: 65315 - 94,96: - 1: 768 - 94,98: - 1: 45056 - 94,99: - 1: 255 - 0: 16384 - 94,100: - 0: 4 + -16,1: + 1: 65534 + -17,1: + 1: 65535 + -16,2: + 1: 15 + 0: 61696 + -17,2: + 0: 58128 + -15,1: + 1: 65534 + -15,2: + 1: 1 + 0: 63744 + -14,1: + 1: 13107 + -14,2: + 0: 3960 + -13,2: + 0: 273 + -20,-4: + 1: 65520 + -21,-4: + 1: 65520 + -21,-3: + 1: 64264 + -20,-3: 1: 65280 - 95,98: - 1: 61440 - 95,99: - 1: 35071 - 96,98: - 1: 28672 - 96,99: - 1: 13311 - 0: 32768 - 95,100: - 1: 64392 - 0: 2 - 92,103: - 1: 2720 - 93,101: - 1: 30527 - 93,102: - 1: 32627 - 93,103: - 1: 14195 - 93,104: - 1: 65531 - 94,101: - 1: 65295 - 94,102: + -20,-2: + 1: 21969 + -21,-2: + 1: 34955 + 2: 13056 + -20,-1: + 1: 21845 + -19,-4: + 1: 65523 + -19,-3: + 1: 48947 + -19,-2: + 1: 61680 + -19,-1: 1: 65535 - 94,103: - 1: 53247 - 94,104: - 1: 53241 - 95,101: - 1: 30475 - 95,102: - 1: 32631 - 95,103: - 1: 6007 - 95,104: - 1: 40956 - 96,100: - 1: 65331 - 0: 8 - 96,101: - 1: 65391 - 96,102: - 1: 65526 - 96,103: - 1: 28662 - 93,105: - 1: 36095 - 0: 12288 - 93,106: - 0: 1136 - 94,105: - 1: 65521 - 94,106: - 0: 59408 - 1: 14 - 94,107: - 0: 43656 - 94,108: - 0: 61519 - 95,105: + -19,-5: + 1: 13247 + -18,-4: + 1: 65535 + -18,-3: + 1: 32520 + -18,-2: + 1: 21616 + -18,-1: + 1: 20817 + -18,-5: + 1: 51455 + -18,0: + 1: 32884 + -17,-5: + 1: 61663 + -19,0: + 1: 240 + -18,1: + 0: 4369 + 1: 34952 + -18,2: + 0: 4051 + -24,-4: + 1: 65527 + -25,-4: 1: 65532 - 95,106: + -24,-3: 1: 3 - 0: 62656 - 95,107: - 0: 260 - 96,104: - 1: 32766 - 96,105: - 1: 511 - 0: 57344 - 96,106: - 0: 17648 - 92,109: - 0: 16392 - 93,109: - 0: 8803 - 93,110: - 0: 11151 - 93,108: - 0: 61096 - 93,111: - 0: 142 - 94,110: - 0: 12168 - 94,111: - 0: 15 - 94,109: - 0: 68 - 95,108: - 0: 61984 - 95,110: - 0: 12032 - 95,111: - 0: 143 - 95,109: - 0: 8 - 96,108: - 0: 61440 - 96,110: - 0: 12096 - 96,111: - 0: 15 - 97,87: - 0: 32768 - 97,88: - 0: 12862 - 98,87: - 0: 53519 - 1: 3072 - 98,86: - 0: 8200 - 98,85: - 0: 49152 - 98,88: - 1: 3852 - 0: 61440 - 99,85: - 0: 24320 - 99,87: - 0: 61449 - 1: 3840 - 99,86: - 0: 12900 - 99,88: - 1: 783 - 0: 63488 - 100,85: - 0: 36689 - 100,86: - 0: 39154 - 100,87: - 1: 3585 - 0: 61714 - 96,91: - 0: 50292 - 96,90: - 0: 50176 - 96,88: - 0: 32768 - 96,89: - 0: 32768 - 97,89: - 0: 29792 - 97,90: - 0: 6941 - 97,91: - 0: 35840 - 98,90: - 0: 61713 - 1: 12 - 98,91: - 0: 36180 - 98,89: - 1: 3087 - 0: 49152 - 99,89: - 1: 3843 - 0: 61448 - 99,90: - 1: 15 - 0: 13824 - 99,91: - 0: 513 - 1: 34944 - 100,88: - 0: 62225 - 1: 2062 - 100,89: - 0: 61715 - 1: 3592 - 100,90: - 0: 1041 - 1: 4366 - 100,91: - 1: 46065 - 96,93: - 0: 6 - 97,92: - 1: 65520 - 97,93: - 1: 28415 - 96,94: + -25,-3: + 1: 62 + -24,-2: + 1: 63232 + -25,-2: + 1: 60416 + -25,-1: + 1: 61182 + -24,-5: + 1: 11259 + -23,-4: + 1: 65522 + -23,-3: 1: 32768 - 97,94: - 1: 63078 - 97,95: - 1: 59110 - 97,96: - 1: 59374 - 98,92: + -23,-2: + 1: 136 + 2: 34816 + -23,-1: + 2: 2184 + -22,-4: 1: 65520 - 98,93: - 1: 53247 - 98,94: - 1: 4113 - 98,95: - 1: 16 - 99,92: - 1: 7088 - 99,93: - 1: 3549 - 100,92: - 1: 39864 - 100,93: - 1: 35835 - 96,96: - 1: 2048 - 97,98: - 1: 62702 - 97,99: - 1: 255 - 0: 16384 - 97,97: - 1: 59110 - 97,100: - 0: 4 - 1: 65280 - 98,96: - 1: 4096 - 98,97: - 1: 16 - 98,99: - 1: 239 - 0: 24576 - 98,98: - 1: 57344 - 98,100: - 0: 5 + -22,-3: + 1: 65092 + -22,-2: + 2: 65280 + 1: 14 + -24,-16: + 1: 36607 + -24,-17: + 1: 65534 + -24,-15: + 1: 65416 + -25,-15: 1: 65280 - 99,98: - 1: 61440 - 99,99: - 1: 255 - 0: 49152 - 99,100: - 0: 4 + -24,-14: + 1: 57359 + -25,-14: + 1: 63 + -24,-13: + 1: 11186 + -24,-12: + 1: 43690 + -23,-16: + 1: 887 + -23,-15: 1: 65280 - 100,98: - 1: 45192 - 100,99: - 1: 191 - 0: 16384 - 97,101: - 1: 58895 - 97,102: - 1: 58886 - 97,103: - 1: 17990 - 97,104: - 1: 27733 - 98,101: - 1: 64319 - 98,102: - 1: 15283 - 98,103: - 1: 64395 - 98,104: - 1: 48003 - 99,101: - 1: 47887 - 99,102: - 1: 3001 - 99,103: - 1: 62395 - 100,100: - 1: 64256 - 0: 12 - 100,101: - 1: 47883 - 100,102: - 1: 35835 - 100,103: - 1: 47347 - 99,104: - 1: 15288 - 97,105: - 1: 244 - 0: 28672 - 97,106: - 0: 50289 - 97,107: - 0: 35976 - 98,105: - 1: 15032 - 98,106: - 1: 15 - 0: 63488 - 98,107: - 0: 8890 - 97,108: - 0: 47752 - 98,108: - 0: 13027 - 99,105: - 1: 7163 - 99,106: - 1: 15 - 0: 34816 - 99,107: - 0: 15 - 100,104: - 1: 3007 - 100,105: - 1: 10231 - 100,106: - 1: 3215 - 100,107: - 0: 12111 - 96,109: - 0: 4 - 97,110: - 0: 53128 - 97,111: - 0: 3087 - 97,109: - 0: 174 - 98,110: - 0: 36402 - 98,111: - 0: 4383 - 98,109: - 0: 58438 - 99,110: - 0: 20256 - 99,111: - 0: 159 - 100,110: - 0: 12168 - 100,111: - 0: 2191 - 101,85: - 0: 41728 - 101,86: - 0: 36878 - 101,87: - 1: 1792 - 0: 28679 - 101,88: - 1: 3847 - 0: 61440 - 102,86: - 0: 58931 - 102,87: - 0: 20981 - 102,88: - 0: 23623 - 1: 256 - 103,86: - 0: 63680 - 103,87: - 0: 305 - 1: 49152 - 103,88: - 1: 52428 - 0: 272 - 104,86: - 0: 62704 - 104,87: - 1: 61440 - 0: 50 - 101,89: - 1: 1807 - 0: 61440 - 101,90: - 1: 7 - 0: 2048 - 101,91: - 1: 47551 - 101,92: - 1: 64443 - 102,89: - 1: 1 - 0: 63880 - 102,90: - 0: 257 - 1: 52416 - 102,91: - 1: 53497 - 102,92: - 1: 64799 - 103,89: - 0: 16 - 1: 52428 - 103,90: - 1: 57116 - 103,91: - 1: 55548 - 103,92: - 1: 56781 - 104,88: + -23,-14: + 1: 61471 + -23,-13: + 1: 39856 + -23,-17: + 1: 30579 + -23,-12: 1: 65535 - 104,89: + -22,-15: + 1: 65480 + -22,-14: + 1: 61455 + -22,-13: + 1: 65520 + -22,-12: 1: 65535 - 104,90: - 1: 16159 - 104,91: - 1: 57595 - 100,94: - 1: 49160 - 100,95: - 1: 32960 - 101,93: - 1: 64315 - 101,94: - 1: 47899 - 101,95: + -22,-16: + 1: 32768 + -21,-16: + 1: 4096 + -21,-15: + 1: 65395 + -21,-14: + 1: 61455 + -21,-13: + 1: 65520 + -21,-12: + 1: 65535 + -20,-15: + 1: 65416 + -20,-14: + 1: 47247 + -12,-8: + 1: 15 + 2: 30464 + -12,-9: + 1: 62702 + -13,-8: + 1: 13 + 2: 60928 + -12,-7: + 2: 127 + 1: 28672 + -13,-7: + 2: 1263 + 1: 28672 + -12,-6: + 1: 30711 + -13,-6: + 1: 30591 + -12,-5: + 1: 119 + -11,-8: + 1: 48059 + -11,-7: + 1: 14139 + -11,-6: 1: 48063 - 100,96: - 1: 49288 - 101,96: - 1: 46011 - 102,93: - 1: 65489 - 102,94: + -11,-9: + 1: 47167 + -10,-8: + 1: 65535 + -10,-7: + 1: 65407 + -10,-6: + 1: 65535 + -10,-9: + 1: 65309 + -9,-8: + 1: 65535 + -9,-7: + 1: 65039 + -9,-9: + 1: 65358 + -9,-6: + 1: 61006 + -9,-5: + 1: 3822 + -8,-8: + 1: 61423 + -8,-7: + 1: 65518 + -8,-6: + 1: 65199 + -12,-16: 1: 65295 - 102,95: - 1: 8191 - 102,96: - 1: 45367 - 6: 136 - 103,93: + -12,-17: + 1: 61644 + -13,-16: + 1: 65295 + -12,-15: + 1: 57599 + -13,-15: + 1: 61695 + -12,-14: + 1: 57583 + -13,-14: + 1: 65535 + -12,-13: + 1: 20206 + -13,-13: + 1: 62207 + -12,-12: + 1: 65535 + -11,-16: + 1: 58991 + -11,-17: + 1: 28799 + -11,-15: + 1: 26222 + -11,-14: + 1: 28262 + -11,-13: + 1: 26214 + -11,-12: + 1: 58982 + -10,-16: + 1: 62207 + -10,-15: + 1: 30511 + -10,-14: + 1: 48048 + -10,-13: + 1: 57296 + -10,-17: + 1: 65535 + -10,-12: + 1: 61660 + -9,-16: + 1: 61695 + -9,-15: + 1: 65359 + -9,-14: + 1: 65524 + -9,-13: + 1: 65520 + -9,-17: + 1: 65535 + -9,-12: + 1: 61695 + -8,-16: + 1: 61679 + -8,-15: + 1: 61167 + -8,-14: + 1: 61422 + -8,-13: + 1: 65252 + -13,-12: + 1: 65535 + -12,-11: + 1: 65359 + -13,-11: + 1: 65295 + -13,-10: + 1: 56796 + -12,-10: + 1: 61156 + -13,-9: + 1: 64975 + -11,-11: + 1: 32614 + -11,-10: + 1: 65520 + -10,-11: + 1: 56784 + -10,-10: + 1: 56732 + -9,-11: + 1: 65520 + -9,-10: + 1: 61007 + -8,-12: + 1: 65262 + -8,-11: + 1: 61422 + -16,-12: + 1: 65535 + -16,-13: + 1: 65297 + -17,-12: + 1: 65535 + -16,-11: + 1: 65535 + -17,-11: + 1: 65535 + -16,-10: + 1: 5119 + -17,-10: + 1: 24575 + -16,-9: + 1: 65535 + -17,-9: + 1: 64973 + -16,-8: + 1: 65535 + -15,-12: + 1: 65535 + -15,-11: + 1: 32639 + -15,-10: + 1: 19 + -15,-9: + 1: 63359 + -15,-13: + 1: 62208 + -15,-8: + 1: 32767 + -14,-12: + 1: 61438 + -14,-11: + 1: 65294 + -14,-10: + 1: 65520 + -14,-9: + 1: 65295 + -14,-8: + 1: 65535 + -14,-13: + 1: 57599 + -16,-16: + 1: 57297 + -16,-15: + 1: 65473 + -17,-15: 1: 65436 - 103,94: - 1: 56589 - 103,95: - 1: 36825 - 103,96: - 6: 17 - 1: 53454 - 104,92: - 1: 65039 - 104,93: - 1: 65504 - 104,94: - 1: 32013 - 104,95: - 1: 18268 - 100,97: - 1: 32960 - 101,97: + -16,-14: + 1: 65535 + -17,-14: + 1: 65535 + -17,-13: + 1: 65356 + -15,-15: + 1: 63270 + -15,-14: + 1: 26151 + -15,-16: + 1: 24576 + -14,-16: + 1: 64319 + -14,-15: + 1: 46011 + -14,-14: + 1: 65466 + -14,-17: + 1: 65520 + -13,-17: + 1: 65432 + -20,-9: + 1: 61482 + -20,-8: + 1: 3822 + -21,-8: + 1: 65327 + -20,-7: + 1: 8438 + -21,-7: + 1: 4095 + -20,-6: + 1: 10914 + -21,-6: + 1: 65535 + -20,-5: + 1: 802 + -21,-5: + 1: 3855 + -19,-7: + 1: 65532 + -19,-6: + 1: 39857 + -19,-8: + 1: 51336 + -19,-9: + 1: 35023 + -18,-7: + 1: 57309 + -18,-6: + 1: 65520 + -18,-8: + 1: 36590 + -18,-9: + 1: 61070 + -17,-8: + 1: 53247 + -17,-7: + 1: 57309 + -17,-6: + 1: 52972 + -16,-7: + 1: 65535 + -16,-6: + 1: 57599 + -15,-7: + 1: 30591 + -15,-6: + 1: 28415 + -14,-7: + 1: 63231 + -14,-6: + 1: 65535 + -13,-5: + 1: 119 + -24,-8: + 1: 65535 + -24,-9: + 1: 65535 + -25,-8: + 1: 47295 + -24,-7: + 1: 49151 + -25,-7: + 1: 47295 + -24,-6: + 1: 43963 + -25,-6: + 1: 35007 + -25,-5: + 1: 36044 + -23,-8: + 1: 47931 + -23,-7: + 1: 15295 + -23,-6: + 1: 65535 + -23,-5: + 1: 2995 + -23,-9: + 1: 49083 + -22,-8: + 1: 65291 + -22,-7: + 1: 8191 + -22,-6: 1: 48059 - 101,98: - 1: 45499 - 101,99: - 1: 191 - 0: 16384 - 101,100: - 0: 4 - 1: 64256 - 102,97: - 1: 48127 - 102,98: - 1: 45247 - 102,99: - 1: 32959 - 103,97: - 1: 57343 - 103,98: - 1: 47583 - 103,99: - 1: 12735 - 0: 32768 - 102,100: - 1: 64392 - 103,100: - 1: 45875 - 104,96: - 1: 55509 - 104,97: - 1: 53727 - 104,98: - 1: 55519 - 104,99: - 1: 51423 - 0: 4096 - 101,101: - 1: 47899 - 101,102: - 1: 48123 - 101,103: + -22,-5: + 1: 2873 + -22,-9: + 1: 48059 + -21,-9: + 1: 65535 + -20,-13: + 1: 43690 + -20,-12: + 1: 43690 + -19,-15: + 1: 57109 + -19,-14: + 1: 21791 + -19,-13: 1: 65521 - 101,104: + -19,-12: + 1: 12561 + -18,-15: + 1: 65443 + -18,-14: + 1: 48047 + -18,-12: + 1: 65534 + -18,-13: + 1: 51200 + -25,-12: + 1: 65535 + -24,-11: + 1: 7042 + -25,-11: + 1: 65295 + -24,-10: + 1: 7645 + -25,-10: 1: 8191 - 102,101: - 1: 47899 - 102,102: - 1: 48059 - 102,103: - 1: 16305 - 102,104: - 1: 35835 - 103,101: - 1: 45979 - 103,102: - 1: 64443 - 103,103: - 1: 4016 - 103,104: - 1: 49083 - 104,100: - 1: 56524 - 104,101: - 1: 55519 - 104,102: - 1: 56797 - 104,103: - 1: 272 - 0: 17408 - 100,108: - 0: 2 - 101,105: - 1: 3581 - 101,106: - 1: 446 - 0: 16384 - 101,107: - 0: 12096 - 102,105: - 1: 11195 - 102,106: - 1: 2303 - 0: 4096 - 102,107: - 0: 24465 - 102,108: - 0: 3473 - 103,105: - 1: 3007 - 103,106: - 1: 2751 - 103,107: - 0: 20386 - 104,104: - 1: 64305 - 104,105: - 1: 35771 - 104,106: + -25,-9: + 1: 47291 + -23,-11: + 1: 7089 + -23,-10: + 1: 8191 + -22,-11: + 1: 39857 + -22,-10: + 1: 3067 + -21,-11: + 1: 57330 + -21,-10: + 1: 4093 + -20,-11: + 1: 43690 + -20,-10: + 1: 43690 + -19,-11: + 1: 39219 + -19,-10: + 1: 4093 + -18,-11: + 1: 65535 + -18,-10: + 1: 61439 + -8,1: + 1: 61166 + -8,4: + 1: 61695 + -7,0: + 1: 20464 + -7,1: + 1: 61422 + -7,2: + 1: 65358 + -7,3: + 1: 65487 + -7,4: + 1: 64767 + -6,1: + 1: 61949 + -6,2: + 1: 56589 + -6,3: + 1: 7647 + -6,4: + 1: 57343 + -5,3: + 1: 819 + -5,4: + 1: 13107 + -8,-9: + 1: 61166 + -7,-8: + 1: 61439 + -7,-7: + 1: 65504 + -7,-6: + 1: 65294 + -7,-5: 1: 4095 - 104,107: - 0: 3874 - 100,109: - 0: 59392 - 101,110: - 0: 40705 - 101,111: - 0: 15 - 101,108: - 0: 36416 - 101,109: - 0: 8 - 102,110: - 0: 20236 - 102,111: - 0: 31 - 102,109: - 0: 228 - 103,108: - 0: 4898 - 103,110: - 0: 17525 - 103,111: - 0: 135 - 103,109: - 0: 4545 - 1: 3084 - 104,109: - 1: 3855 - 0: 240 - 104,111: - 0: 44615 - 105,86: - 0: 61440 - 105,87: + -7,-9: + 1: 57446 + -6,-8: + 1: 16383 + -6,-7: + 1: 48056 + -6,-6: + 1: 56587 + -6,-5: + 1: 3551 + -6,-9: + 1: 45183 + -5,-8: + 1: 10231 + -5,-7: + 1: 32631 + -5,-6: + 1: 63239 + -5,-5: + 1: 1911 + -5,-9: + 1: 29303 + -4,-8: + 1: 48123 + -4,-7: + 1: 30523 + -4,-6: + 1: 45943 + -8,-17: + 1: 61166 + -7,-16: + 1: 62719 + -7,-15: + 1: 65039 + -7,-13: + 1: 28512 + -7,-17: + 1: 65535 + -7,-14: + 1: 61152 + -6,-16: + 1: 61440 + -6,-15: + 1: 30223 + -6,-14: + 1: 32624 + -6,-13: + 1: 32631 + -5,-16: + 1: 64640 + -5,-15: + 1: 2287 + -5,-14: + 1: 30576 + -5,-13: + 1: 30576 + -5,-17: + 1: 32624 + -4,-16: + 1: 13105 + -4,-15: + 1: 29491 + -4,-14: + 1: 30583 + -4,-13: + 1: 65527 + -8,-10: + 1: 61166 + -7,-12: + 1: 65248 + -7,-10: + 1: 26470 + -7,-11: + 1: 24814 + -6,-12: + 1: 63344 + -6,-11: + 1: 28791 + -6,-10: + 1: 28799 + -5,-12: + 1: 30576 + -5,-11: + 1: 29303 + -5,-10: + 1: 30583 + -4,-12: + 1: 14207 + -4,-11: + 1: 48063 + -4,-10: + 1: 63291 + -4,-9: + 1: 47927 + -3,-11: + 1: 13107 + -3,-10: + 1: 65283 + -3,-9: + 1: 65295 + -3,-8: + 1: 65535 + -2,-10: + 1: 64768 + -2,-9: + 1: 13 + 0: 8704 + -2,-8: + 0: 34 + 1: 8704 + -1,-10: + 1: 256 + -1,-9: + 1: 1 + 0: 4352 + -1,-8: + 0: 4369 + -3,-7: + 1: 15 + -3,-6: 1: 61440 + -2,-7: + 1: 2 + 0: 12 + -2,-6: + 1: 57344 + 0: 192 + -4,-17: + 1: 14129 + 0: 8 + -3,-16: + 0: 19599 + -2,-16: 0: 17 - 105,88: - 1: 8187 - 106,86: - 0: 4096 - 106,87: - 1: 12288 - 0: 15 - 106,88: - 1: 9011 - 0: 32768 - 107,87: + -2,-17: 0: 4369 - 107,88: - 0: 12561 - 105,89: - 1: 41147 - 105,90: - 1: 61354 - 105,91: - 1: 60148 - 106,89: - 1: 8243 - 106,90: - 1: 13090 - 0: 34824 - 105,92: - 1: 28392 - 106,91: - 0: 680 - 107,90: - 0: 259 - 107,91: - 0: 8976 - 107,89: - 0: 5905 - 107,92: - 0: 3919 - 105,93: - 1: 32356 - 105,94: - 1: 59206 - 105,95: - 1: 48014 - 105,96: - 1: 55530 - 106,93: + -28,-16: + 0: 12288 + 1: 128 + -29,-16: + 0: 61713 + -28,-15: + 0: 4112 + 1: 3840 + -29,-15: + 0: 61681 + 1: 3840 + -29,-14: + 1: 65280 + -29,-13: + 1: 4095 + -28,-13: + 1: 61152 + -28,-12: + 1: 65268 + -28,-17: + 0: 63316 + -27,-16: + 1: 36092 + -27,-15: + 1: 61384 + -27,-14: + 1: 52975 + -27,-17: + 0: 4096 + 1: 34952 + -27,-13: + 1: 52428 + -27,-12: + 1: 65020 + -26,-15: + 1: 65329 + -26,-14: + 1: 14335 + -26,-13: + 1: 12561 + -26,-12: + 1: 49083 + -25,-16: + 1: 256 + -25,-13: + 1: 32 + -29,-12: 1: 65535 - 106,94: - 1: 12528 - 106,95: - 1: 35571 - 106,92: - 0: 3726 - 106,96: - 1: 61693 - 107,93: - 1: 4369 - 107,94: - 1: 48 - 0: 3084 - 107,96: - 1: 43247 - 107,95: - 1: 16384 - 108,92: - 0: 3887 - 108,94: - 0: 3999 - 105,97: - 1: 55517 - 105,98: - 1: 56575 - 105,99: - 1: 55519 - 105,100: + -29,-11: + 1: 65295 + -28,-11: + 1: 61156 + -29,-10: + 1: 4095 + -28,-9: + 1: 30464 + -29,-9: + 1: 60928 + -28,-8: + 1: 10111 + -27,-9: + 1: 65262 + -27,-10: + 1: 52940 + -27,-8: + 1: 61183 + -27,-11: + 1: 52428 + -26,-11: + 1: 64315 + -26,-10: + 1: 6555 + -26,-9: + 1: 45977 + -26,-8: + 1: 46011 + -29,-8: + 1: 3822 + -28,-7: + 1: 20735 + -29,-7: + 1: 28927 + -28,-6: + 1: 30549 + -29,-6: + 1: 32631 + -28,-5: + 1: 65520 + -29,-5: + 1: 65520 + -28,-4: + 1: 63487 + -27,-7: + 1: 61183 + -27,-5: + 1: 56776 + -27,-6: + 1: 35022 + -27,-4: + 1: 56541 + -26,-7: + 1: 46011 + -26,-6: + 1: 13243 + -26,-5: + 1: 29491 + -26,-4: 1: 65535 - 106,97: - 1: 55551 - 106,98: - 1: 52701 - 106,99: - 1: 56543 - 106,100: - 1: 64989 - 107,97: - 1: 53411 - 107,98: - 1: 53727 - 107,99: - 1: 53727 - 107,100: - 1: 53727 - 108,96: + -29,-4: + 1: 45311 + -28,-3: 1: 65535 - 105,101: - 1: 55775 - 105,102: - 1: 57309 - 105,103: - 0: 4368 - 1: 3264 - 105,104: - 0: 15 - 1: 7936 - 106,101: - 1: 55517 - 106,102: - 1: 56605 - 106,103: - 1: 4092 - 106,104: + -29,-3: + 1: 48123 + -28,-2: + 1: 65527 + -29,-2: + 1: 65520 + -28,-1: + 1: 61695 + -29,-1: + 1: 53503 + -27,-3: + 1: 57343 + -27,-2: + 1: 56728 + -27,-1: + 1: 39133 + -27,0: + 1: 56797 + -26,-3: + 1: 65523 + -26,-2: + 1: 13175 + -26,-1: + 1: 13299 + -26,0: + 1: 29491 + -28,0: + 3: 21840 + 4: 8736 + -28,1: + 1: 208 + 0: 32 + 3: 28672 + -29,1: + 1: 21973 + -28,2: + 3: 119 + 1: 61440 + -29,2: + 1: 54613 + -28,3: + 1: 65520 + -28,4: + 1: 4095 + -27,1: + 1: 56797 + -27,2: + 1: 56797 + -27,3: + 1: 54612 + -27,4: + 1: 52565 + -26,1: + 1: 65535 + -26,2: + 1: 65535 + -26,3: + 1: 65532 + -26,4: + 1: 3599 + -25,4: + 1: 35723 + -36,-13: + 1: 58470 + -36,-12: + 1: 61422 + -35,-15: 0: 15 + -35,-14: + 1: 45808 + -35,-13: + 1: 41659 + -35,-12: + 1: 43690 + -34,-14: + 1: 61690 + -34,-13: + 1: 61951 + -34,-16: + 0: 63176 + -34,-15: + 1: 43936 + -34,-12: + 1: 65535 + -33,-16: + 0: 61441 + -33,-15: + 1: 65520 + -33,-17: + 0: 63176 + -33,-14: + 1: 43680 + -33,-13: + 1: 58606 + -33,-12: + 1: 61422 + -32,-16: + 0: 62532 + -32,-15: + 1: 20464 + -32,-13: + 1: 62702 + -32,-9: + 1: 65359 + -32,-8: + 1: 28928 + -33,-8: 1: 65280 - 107,101: - 1: 61663 - 107,102: - 1: 4367 - 0: 17408 - 107,103: - 1: 273 - 0: 17476 - 107,104: - 0: 7 - 1: 30208 - 108,101: - 1: 63046 - 108,102: - 1: 39743 - 108,103: - 1: 30033 - 105,105: - 1: 18245 - 105,107: - 0: 20224 - 1: 68 - 105,106: - 1: 18022 - 105,108: - 0: 17652 - 1: 2827 - 106,105: - 0: 20224 - 106,106: - 0: 116 - 106,107: - 0: 312 - 107,105: - 0: 18240 - 107,107: - 0: 33017 - 107,106: - 0: 32780 - 108,104: - 1: 5973 - 108,106: - 0: 9763 - 108,107: - 0: 114 - 107,108: - 0: 2200 - 1: 257 - 104,108: - 1: 3855 - 0: 240 - 104,110: - 1: 3855 - 0: 240 - 104,112: - 0: 2 - 105,109: - 0: 20222 - 105,110: - 1: 2827 - 0: 17652 - 105,111: - 0: 28746 + -32,-7: + 1: 53503 + -33,-7: + 1: 61695 + -32,-6: + 1: 56829 + -33,-6: + 1: 65535 + -32,-5: + 1: 65520 + -33,-5: + 1: 32624 + -32,-4: + 1: 61695 + -31,-7: + 1: 45311 + -31,-6: + 1: 48123 + -31,-5: + 1: 48056 + -31,-9: + 1: 65224 + -31,-8: + 1: 60620 + -31,-4: + 1: 63931 + -30,-8: + 1: 13073 + -30,-7: + 1: 45567 + -30,-6: + 1: 48123 + -30,-5: + 1: 64435 + -30,-9: + 1: 4369 + -30,-4: + 1: 29627 + -32,-3: + 1: 65535 + -33,-4: + 1: 63239 + -33,-3: + 1: 65535 + -32,-2: + 1: 65520 + -33,-2: + 1: 65522 + -32,-1: + 1: 28927 + -33,-1: + 1: 61695 + -32,0: 1: 4 - 105,112: - 0: 5 - 106,108: - 1: 3855 - 0: 240 - 106,109: - 0: 240 - 1: 3598 - 106,110: - 1: 3855 - 0: 240 - 106,111: - 0: 43144 - 106,112: - 0: 415 - 107,109: - 1: 1799 - 0: 112 - 107,110: - 1: 257 - 0: 1232 - 107,111: - 0: 39 - 108,108: - 0: 57601 - 108,110: - 0: 4895 - 107,112: - 0: 1 - 109,91: - 0: 8192 - 109,92: - 0: 3991 - 108,95: - 1: 16384 - 109,94: - 0: 1863 - 109,93: - 0: 33152 - 109,96: - 1: 305 - 109,95: - 0: 8 - 108,97: - 1: 58094 - 108,98: - 1: 58094 - 108,99: - 1: 25838 - 108,100: - 1: 26214 - 109,98: - 1: 17 - 0: 19980 - 109,99: - 0: 1252 - 110,98: - 0: 1 - 1: 60996 - 110,99: - 1: 61006 - 110,97: - 1: 16384 - 110,100: - 1: 20196 - 111,98: - 0: 20047 - 111,99: - 0: 2276 - 111,97: - 0: 8192 - 112,99: - 0: 9120 - 109,101: - 0: 47 - 1: 61456 - 109,102: - 1: 64271 - 109,103: - 1: 187 - 0: 16384 - 109,100: - 0: 17636 - 110,101: - 1: 65262 - 110,102: - 1: 65311 - 110,103: - 1: 127 + 3: 4112 + 0: 17472 + -31,-3: + 1: 65535 + -31,-2: + 1: 56785 + -31,-1: + 1: 61661 + -31,0: + 1: 65535 + -30,-3: + 1: 30711 + -30,-2: + 1: 63345 + -30,-1: + 1: 61815 + -30,0: + 1: 65535 + -29,0: + 1: 21845 + -33,0: + 3: 49344 + 1: 4369 + -32,1: + 3: 4112 + 0: 17476 + -33,1: + 3: 49344 + 1: 4369 + -32,2: + 5: 16 + 6: 4096 + 0: 17476 + -33,2: + 5: 192 + 6: 49152 + 1: 4369 + -32,3: + 1: 29712 + 0: 68 + -33,3: + 1: 61905 + -32,4: + 1: 228 + -31,1: + 1: 65535 + -31,2: + 1: 65535 + -31,3: + 1: 65535 + -31,4: + 1: 61695 + -30,1: + 1: 65535 + -30,2: + 1: 65535 + -30,3: + 1: 65535 + -30,4: + 1: 45567 + -29,3: + 1: 5493 + -29,4: + 1: 7391 + -24,5: + 1: 65535 + -25,5: + 1: 36795 + -24,6: + 1: 62463 + -25,6: + 1: 57518 + -24,7: + 1: 12287 + -25,7: + 1: 20206 + -24,8: + 1: 65535 + -23,5: + 1: 65535 + -23,6: + 1: 45311 + -23,7: + 1: 35771 + -23,8: + 1: 48051 + -22,5: + 1: 65535 + -22,6: + 1: 62207 + -22,7: + 1: 65535 + -22,8: + 1: 13105 + 0: 34944 + -21,4: + 1: 1824 + -21,5: + 1: 39 0: 24576 - 110,104: - 0: 1826 - 111,101: - 1: 63351 - 111,102: - 1: 30479 - 111,103: - 1: 65287 - 111,100: - 0: 1542 - 111,104: - 1: 49087 - 112,100: - 1: 32624 - 112,101: - 1: 65394 - 112,102: - 1: 65335 - 112,103: - 1: 30575 - 108,105: - 0: 8192 - 110,105: - 0: 32770 - 110,107: - 0: 12 - 111,105: - 0: 4880 - 1: 2176 - 111,107: - 0: 54645 - 111,106: - 0: 22357 - 111,108: - 0: 30039 - 112,104: - 1: 65399 - 112,105: - 1: 4056 - 108,109: - 0: 24341 - 109,109: - 0: 20224 - 109,110: - 0: 15 - 110,109: - 0: 20243 - 110,110: - 0: 15 - 110,108: + -21,6: + 0: 17954 + -21,7: + 0: 17476 + -21,8: + 0: 17478 + -25,8: + 1: 61166 + -24,9: + 1: 8738 0: 2048 - 111,109: - 0: 3925 - 111,110: - 0: 3 - 113,91: - 0: 32768 - 113,92: - 0: 19790 - 114,91: - 0: 35983 - 114,90: - 0: 34816 - 115,90: - 0: 36640 - 114,92: - 0: 3631 - 115,91: - 0: 46 - 116,90: + -25,9: + 0: 7440 + 1: 8736 + -24,10: + 0: 30583 + -25,10: + 0: 13 + 1: 34 + -24,11: + 0: 30071 + -23,9: + 0: 3904 + -22,9: 0: 3976 - 116,91: - 0: 3 - 113,94: - 0: 14 - 113,93: - 0: 8192 - 114,94: - 0: 3983 - 115,92: - 0: 3487 - 115,94: - 0: 3919 - 116,92: - 0: 2895 - 116,94: - 0: 20271 - 113,99: - 0: 20558 - 113,98: - 0: 34816 - 114,99: - 0: 12077 - 115,99: - 0: 36258 - 115,98: - 0: 40960 - 116,98: - 0: 48640 - 115,100: - 0: 200 - 1: 4368 - 116,99: - 0: 55854 - 113,100: - 1: 32624 - 113,101: - 1: 65399 - 113,102: - 1: 65399 - 113,103: - 1: 48031 - 113,104: - 1: 4363 - 0: 34816 - 114,100: - 1: 65520 - 114,101: - 1: 65534 - 114,102: + -21,9: + 0: 1863 + -28,5: + 1: 20479 + -29,5: + 1: 3549 + -28,6: + 1: 58623 + -29,6: + 1: 62207 + -28,7: + 1: 61166 + -29,7: 1: 65535 - 114,103: - 1: 56719 - 114,104: - 1: 13 - 0: 50176 - 115,101: - 1: 56593 - 115,102: - 1: 4575 - 0: 32768 - 115,103: - 1: 4353 - 0: 49164 - 115,104: - 1: 1 - 0: 20480 - 116,100: - 0: 53552 - 116,103: - 0: 4183 - 112,106: - 0: 212 - 113,105: - 1: 272 - 0: 16396 - 113,106: - 0: 566 - 114,105: - 0: 86 - 117,90: - 0: 8064 - 117,92: - 0: 20271 - 117,91: - 0: 32780 - 118,90: - 0: 3840 - 1: 32768 - 118,91: - 0: 4103 - 1: 8256 - 118,92: - 1: 9282 - 0: 768 - 119,92: - 1: 51404 - 119,91: - 1: 32768 - 119,89: - 1: 32768 - 117,94: - 0: 19871 - 117,95: - 0: 14 - 117,93: - 0: 68 - 1: 18560 - 118,94: - 1: 39611 - 118,95: - 0: 801 - 118,93: - 1: 32769 - 119,93: - 1: 65440 - 119,94: - 1: 62323 - 119,95: - 1: 175 - 120,92: - 1: 65532 - 120,93: - 1: 63264 - 120,94: - 1: 63463 - 120,95: - 1: 12327 - 117,98: - 0: 35808 - 117,99: - 0: 12367 - 117,100: - 0: 305 - 118,98: - 0: 33012 - 118,99: - 0: 3079 - 118,97: - 0: 16384 - 119,98: - 0: 62706 - 119,99: - 0: 5090 - 120,96: - 1: 231 - 120,98: - 0: 62543 - 120,99: - 0: 16 - 116,101: - 0: 20032 - 116,104: - 0: 1 - 116,102: - 0: 51396 - 117,101: - 0: 37139 - 117,102: - 0: 62712 - 118,102: - 0: 62068 - 117,103: - 0: 8 - 118,101: - 0: 19584 - 118,103: - 0: 4 - 119,101: - 0: 11008 - 119,102: - 0: 23903 - 120,101: - 0: 40736 - 120,102: + -27,5: + 1: 52701 + -27,6: + 1: 56575 + -27,7: + 1: 48057 + -26,5: + 1: 61422 + -26,6: + 1: 61358 + -26,7: + 1: 3838 + -27,8: + 1: 34952 + -26,8: + 1: 35020 + -28,8: + 1: 12288 + -29,8: + 1: 51200 + -28,9: + 1: 19 + -29,9: + 1: 2254 + -27,9: + 1: 8 + -26,9: + 1: 35023 + 0: 1024 + -26,10: + 1: 136 + -28,-19: + 0: 17487 + -28,-18: + 0: 62532 + -29,-18: + 0: 50312 + 1: 12305 + -29,-17: + 0: 61836 + -27,-19: + 0: 34959 + -27,-18: + 0: 63624 + -26,-19: 0: 15 - 120,90: - 1: 4 - 120,91: - 1: 32768 - 121,91: - 1: 2050 - 122,91: - 1: 16384 - 121,92: - 1: 12544 - 121,93: - 1: 1 - 121,94: - 1: 51328 - 121,95: - 1: 2252 - 122,94: - 1: 37886 - 122,95: - 1: 1023 - 122,93: - 1: 34816 - 123,93: - 1: 4096 - 123,94: - 1: 63281 - 123,95: - 1: 63 - 124,94: + -26,-17: + 1: 1632 + -25,-19: + 0: 7 + -32,5: + 1: 26480 + -33,5: + 1: 4095 + -32,6: + 1: 61678 + -33,6: + 1: 39055 + -32,7: + 1: 51440 + -33,7: + 1: 34961 + -32,8: + 1: 4300 + -31,5: + 1: 4095 + -31,6: + 1: 47359 + -31,7: + 1: 39090 + -31,8: + 1: 52433 + -30,5: + 1: 7163 + -30,6: + 1: 46079 + -30,7: + 1: 49080 + -33,8: + 1: 52360 + -31,9: + 1: 12 + -30,8: + 1: 4368 + -30,9: 1: 1 - 0: 100 - 120,97: - 0: 8192 - 121,98: - 0: 12289 - 1: 16896 - 121,96: - 1: 256 - 121,97: - 1: 4353 - 121,99: - 0: 1 - 1: 8 - 122,98: - 1: 15 - 122,97: - 1: 61132 - 122,96: - 1: 51200 - 123,96: - 1: 4096 - 123,97: - 1: 4403 - 123,99: - 1: 29567 - 122,99: - 1: 2048 - 123,98: + -23,-19: 1: 58368 - 123,100: - 0: 19556 - 121,101: - 0: 20224 - 121,102: - 0: 15 - 122,101: - 0: 3985 - 122,102: - 0: 23 - 123,101: - 0: 1988 - 123,102: - 0: 14 - 124,100: - 0: 4881 - 1: 128 - 124,101: - 0: 12561 - 124,102: + -23,-18: + 1: 4 + -21,-19: + 1: 26487 + -21,-17: + 1: 16 + -21,-21: + 1: 30544 + -36,0: + 0: 48123 + -36,-1: + 0: 45056 + 1: 221 + -37,0: + 0: 34952 + 3: 13104 + -36,1: + 0: 8955 + 1: 20480 + -37,1: + 0: 8952 + 1: 20480 + -36,2: + 1: 21845 + 0: 8738 + -36,3: + 0: 8754 + 1: 20672 + -36,4: + 1: 21845 + 0: 8738 + -35,3: + 1: 20212 + -35,0: + 1: 238 + -35,2: + 1: 60928 + -35,-1: + 1: 57599 + -34,0: + 1: 26215 + -34,1: + 1: 30583 + -34,3: + 1: 26230 + -34,2: + 1: 26214 + -34,-1: + 1: 26214 + -34,4: + 1: 61030 + -36,-4: + 0: 17 + 1: 7372 + -36,-5: + 0: 4369 + 1: 52428 + -37,-4: + 0: 255 + 1: 61440 + -36,-3: + 1: 7677 + -37,-3: + 1: 65535 + -36,-2: + 1: 56797 + -37,-2: + 1: 65535 + -37,-1: + 1: 255 + 0: 61440 + -35,-4: + 1: 20479 + -35,-3: + 1: 20222 + -35,-2: + 1: 65535 + -35,-5: + 1: 65535 + -34,-3: + 1: 26358 + -34,-4: + 1: 26214 + -34,-2: + 1: 26214 + -34,-5: + 1: 26214 + -36,-8: + 1: 1365 + 0: 8738 + -36,-9: + 1: 21760 + 0: 8743 + -36,-7: + 0: 8751 + -37,-7: + 0: 8751 + 1: 21760 + -37,-5: + 0: 65535 + -36,-6: + 0: 34 + 1: 49152 + -35,-7: 0: 1 - 124,95: + 1: 206 + -35,-6: + 1: 61440 + -34,-7: + 1: 26351 + -34,-6: + 1: 26214 + -34,-9: + 1: 58027 + -34,-8: + 1: 32768 + -33,-9: + 1: 65038 + -35,6: + 0: 4096 + 1: 52302 + -35,5: + 1: 60928 + -35,7: + 1: 8 + -34,5: + 1: 4078 + -34,6: + 1: 49167 + -34,7: + 1: 204 + -34,8: + 1: 2 + -33,4: + 1: 13824 + -40,-11: + 0: 52300 + -40,-10: + 0: 17476 + -40,-9: + 0: 17484 + -40,-8: + 0: 17476 + -39,-11: + 1: 47 + 0: 16128 + -39,-9: + 0: 8751 + 1: 21760 + -39,-10: + 0: 44643 + -39,-8: + 1: 1365 + 0: 8738 + -38,-10: + 0: 4369 + 1: 34944 + -38,-9: + 0: 8739 + 1: 21760 + -38,-11: + 1: 238 + 0: 4096 + -38,-8: + 1: 1365 + 0: 8738 + -37,-11: + 1: 4607 + -37,-10: + 1: 13105 + -37,-9: + 1: 21760 + 0: 8744 + -37,-8: + 1: 1365 + 0: 8738 + -40,-4: + 0: 17604 + -40,-5: + 0: 50252 + -40,-3: + 0: 17604 + -40,-2: + 0: 17604 + -40,-1: + 0: 17604 + -40,0: + 0: 17604 + -39,-4: + 0: 762 + 1: 8192 + -39,-2: + 0: 8818 + -39,-1: + 0: 41586 + -39,-3: + 1: 9958 + -39,-5: + 0: 64175 + -39,0: + 0: 43770 + -38,-4: + 0: 255 + 1: 61440 + -38,-3: + 1: 65535 + -38,-2: + 1: 65535 + -38,-1: + 1: 255 + 0: 61440 + -38,-5: + 0: 65535 + -38,0: + 0: 13107 + 3: 34944 + -32,-14: + 1: 20206 + -32,-12: + 1: 65535 + -32,-17: + 0: 29697 + 1: 8 + -31,-16: + 0: 29764 + 1: 34952 + -31,-15: + 1: 36744 + 0: 24612 + -31,-13: + 1: 52975 + -31,-14: + 1: 61064 0: 4 - 125,94: - 0: 7938 - 125,95: - 0: 273 - 1: 36044 - 124,96: - 1: 2184 - 125,96: - 1: 3581 - 125,93: + -31,-12: + 1: 61422 + -31,-17: + 1: 36863 + -30,-16: + 0: 61713 + -30,-15: + 0: 61665 + 1: 3840 + -30,-14: + 0: 1 + 1: 47872 + -30,-13: + 1: 7103 + -30,-12: + 1: 65535 + -32,-11: + 1: 61951 + -33,-11: + 1: 61678 + -32,-10: + 1: 65535 + -33,-10: + 1: 61183 + -31,-10: + 1: 3823 + -31,-11: + 1: 61134 + -30,-11: + 1: 47903 + -30,-10: + 1: 7103 + -36,-11: + 1: 58606 + -36,-10: + 1: 238 0: 8192 - 126,94: - 0: 3840 - 126,95: - 1: 1911 - 126,96: - 1: 32631 - 127,94: - 0: 4352 - 127,95: - 0: 273 - 127,96: - 1: 63351 - 125,98: - 1: 61436 - 125,99: - 1: 95 - 125,97: + -35,-11: + 1: 47658 + -35,-10: + 1: 62143 + -35,-9: + 1: 14 + -34,-11: + 1: 65295 + -34,-10: + 1: 45311 + -9,5: + 1: 255 + -8,5: + 1: 58623 + -8,6: + 1: 2798 + -7,5: + 1: 255 + -6,5: + 1: 31 + -5,5: + 1: 3 + -5,6: + 0: 12 + -4,4: + 1: 16 + -4,6: + 0: 15 + -3,6: + 0: 15 + -3,5: + 0: 34952 + -2,6: + 0: 15 + -2,5: + 1: 1092 + 0: 34952 + -1,5: + 1: 1365 + 0: 34952 + -1,6: + 0: 15 + 0,4: + 1: 4368 + 0: 17476 + 0,5: + 1: 273 + 0: 17476 + 0,6: + 0: 7 + -8,-20: + 0: 12288 + -8,-19: + 1: 62224 + -9,-19: + 1: 65524 + -8,-18: + 1: 58623 + -9,-18: + 1: 4095 + -7,-19: + 1: 4096 + -7,-18: + 1: 61649 + -6,-19: + 0: 3857 + 1: 49344 + -6,-20: + 0: 7953 + 1: 49344 + -6,-21: + 0: 7953 + 1: 49344 + -5,-20: + 1: 28784 + 0: 3841 + -5,-19: + 1: 28784 + 0: 3841 + -5,-21: + 1: 28784 + 0: 3841 + -4,-20: + 0: 7953 + 1: 49344 + -4,-19: + 0: 7953 + 1: 49344 + -4,-18: + 1: 4368 + 0: 3073 + 0,-4: + 0: 17472 + 0,-2: + 0: 17472 + -16,-19: + 1: 51200 + -16,-18: 1: 36044 - 126,97: - 1: 9591 - 126,98: - 1: 29495 - 126,99: - 1: 18438 - 127,97: - 1: 2039 - 127,98: - 1: 560 - 127,99: - 1: 32 + -15,-19: + 1: 65280 + -15,-18: + 1: 65535 + -15,-17: + 1: 4080 + -15,-20: + 1: 3776 + -15,-21: + 1: 57344 + 0: 3584 + -14,-20: + 1: 272 + -14,-19: + 1: 30464 + -14,-18: + 1: 65535 + -14,-21: + 0: 30464 + -13,-18: + 1: 34959 + -40,1: + 0: 17604 + -40,2: + 0: 17476 + -39,1: + 0: 8954 + 1: 20480 + -39,2: + 1: 21845 + 0: 8738 + -38,1: + 0: 8947 + 1: 20480 + -38,2: + 1: 21845 + 0: 8738 + -37,2: + 1: 21845 + 0: 8738 + -40,-7: + 0: 17484 + -40,-6: + 0: 17476 + -39,-7: + 1: 21761 + 0: 8750 + -39,-6: + 1: 1365 + 0: 8738 + -38,-7: + 0: 8751 + 1: 21760 + -38,-6: + 1: 1365 + 0: 8738 + -37,-6: + 1: 1365 + 0: 8738 + -12,-19: + 1: 19520 + -12,-18: + 1: 52224 + -11,-19: + 1: 8480 + -11,-18: + 1: 32512 + -10,-19: + 1: 30583 + -10,-18: + 1: 10759 + -9,-20: + 1: 17472 + 0: 4 + -9,-21: + 1: 61183 + 0: 256 + -4,-21: + 0: 7953 + 1: 49344 + -3,-20: + 1: 28784 + 0: 3841 + -3,-19: + 1: 28784 + 0: 3841 + -3,-18: + 0: 7953 + -3,-17: + 0: 15 + -3,-21: + 1: 28784 + 0: 3841 + -2,-20: + 0: 4369 + -2,-19: + 0: 4369 + -2,-18: + 0: 4369 + -2,-21: + 0: 4369 + -8,-23: + 1: 4352 + -9,-23: + 1: 65280 + -8,-22: + 1: 13105 + 0: 2 + -9,-22: + 1: 65535 + -8,-21: + 1: 51 + 0: 768 + -6,-24: + 0: 61440 + -6,-23: + 0: 7953 + 1: 49344 + -6,-22: + 0: 7953 + 1: 49344 + -5,-24: + 0: 61440 + -5,-23: + 1: 28784 + 0: 3841 + -5,-22: + 1: 28784 + 0: 3841 + -4,-24: + 0: 61440 + -4,-23: + 0: 7937 + 1: 49360 + -4,-22: + 0: 7953 + 1: 49344 + -10,-22: + 0: 8 + 1: 34944 + -10,-21: + 1: 136 + 0: 2048 + -32,-20: + 0: 16 + 1: 17476 + -33,-20: + 0: 34952 + -32,-19: + 0: 4097 + 1: 17472 + -33,-19: + 0: 34944 + -32,-18: + 0: 4352 + 1: 32836 + -33,-18: + 0: 32904 + -32,-21: + 1: 17476 + 0: 16 + -31,-20: + 1: 65423 + -31,-19: + 1: 65520 + -31,-18: + 1: 63743 + -31,-21: + 1: 62459 + -30,-20: + 1: 30471 + -30,-19: + 1: 30576 + -30,-18: + 1: 61559 + -30,-17: + 1: 1911 + -30,-21: + 1: 30326 + -29,-20: + 1: 4369 + 0: 35016 + -29,-19: + 1: 4368 + 0: 51332 + -29,-21: + 1: 4369 + 0: 34888 + -32,-23: + 0: 327 + 1: 49152 + -33,-23: + 0: 32904 + -32,-22: + 0: 256 + 1: 17476 + -33,-22: + 0: 34952 + -32,-24: + 0: 40960 + -31,-24: + 0: 61440 + -31,-23: + 1: 7936 + 0: 8 + -31,-22: + 1: 16380 + -30,-24: + 0: 61440 + -30,-23: + 1: 50944 + -30,-22: + 1: 26481 + -29,-23: + 0: 33951 + 1: 4096 + -29,-22: + 1: 4369 + 0: 35976 + -29,-24: + 0: 8192 + -33,-21: + 0: 34824 + -3,-24: + 0: 61440 + -3,-23: + 1: 28784 + 0: 3841 + -3,-22: + 1: 28784 + 0: 3841 + -2,-24: + 0: 4096 + -2,-23: + 0: 4369 + -2,-22: + 0: 4369 uniqueMixes: - volume: 2500 immutable: True @@ -8837,10 +9511,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: - - 6666.982 - - 0 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -8855,7 +9529,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -8884,7 +9558,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -8897,10 +9571,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 + - 0 + - 6666.982 - 0 - 0 - 0 @@ -8912,136408 +9586,158235 @@ entities: - 0 - 0 chunkSize: 4 + - type: GasTileOverlay - type: RadiationGridResistance - - type: NavMap - type: BecomesStation - id: CuteInstallation - - uid: 446 + id: Plasma +- proto: AcousticGuitarInstrument + entities: + - uid: 6841 components: - - type: MetaData - name: OneYa station - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: Parallax - parallax: Sky - - type: MapLight - ambientLightColor: '#1A1A1AFF' - - uid: 5072 + pos: -89.47948,-23.456642 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -89.53047,-46.275448 + parent: 2 + - uid: 24353 + components: + - type: Transform + pos: -131.49832,-18.377594 + parent: 2 +- proto: ActionSleep + entities: + - uid: 2905 + components: + - type: Transform + parent: 2904 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 2904 +- proto: ActionToggleLight + entities: + - uid: 17811 + components: + - type: Transform + parent: 17810 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 17810 +- proto: AirAlarm + entities: + - uid: 346 components: - type: MetaData - name: grid + name: AME Air Alarm - type: Transform - pos: -106,-177 - parent: 446 - - type: MapGrid - chunks: - 0,1: - ind: 0,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAALAAAAAACkwAAAAAALAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABJgAAAAADkwAAAAAAJgAAAAADJgAAAAABkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJgAAAAADJgAAAAACJgAAAAADkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJgAAAAAAJgAAAAACkwAAAAAAkwAAAAAALAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAJgAAAAACJgAAAAACJgAAAAABJgAAAAACkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAADkwAAAAAALAAAAAAALAAAAAADLAAAAAABkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAJgAAAAACJgAAAAACJgAAAAADkwAAAAAAkwAAAAAAAAAAAAAAkwAAAAAALAAAAAACLAAAAAADLAAAAAADkwAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAJgAAAAADJgAAAAAAJgAAAAACkwAAAAAAkwAAAAAAAAAAAAAALAAAAAADLAAAAAABkwAAAAAALAAAAAAALAAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJgAAAAACJgAAAAADkwAAAAAAJgAAAAADkwAAAAAAkwAAAAAAAAAAAAAALAAAAAAAkwAAAAAAkwAAAAAALAAAAAABkwAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAJgAAAAADkwAAAAAAEgAAAAAAEgAAAAACkwAAAAAAAAAAAAAAkwAAAAAAkwAAAAAALAAAAAADLAAAAAADLAAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAEgAAAAABkwAAAAAAkwAAAAAAAAAAAAAALAAAAAACLAAAAAACLAAAAAABkwAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAALAAAAAADkwAAAAAALAAAAAACLAAAAAACLAAAAAABkwAAAAAAkwAAAAAAkwAAAAAALAAAAAAALAAAAAADkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAALAAAAAACLAAAAAACLAAAAAADkwAAAAAALAAAAAACLAAAAAACkwAAAAAALAAAAAACLAAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAADkwAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACkwAAAAAALAAAAAAALAAAAAADkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJwAAAAAAkwAAAAAAkwAAAAAAJwAAAAAAkwAAAAAAJQAAAAAAJQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJwAAAAAAkwAAAAAAJwAAAAAAJwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAkwAAAAAALAAAAAADkwAAAAAALAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAJwAAAAAAkwAAAAAAkwAAAAAALAAAAAADkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAADLAAAAAADLAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAALAAAAAADkwAAAAAALAAAAAAB - version: 6 - 0,2: - ind: 0,2 - tiles: LAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,1: - ind: 1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,2: - ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAALAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkInnerSe - decals: - 23: 6,17 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BrickTileDarkLineS - decals: - 24: 7,17 - 28: 9,17 - 30: 10,17 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 34: 10,19 - 35: 10,18 - 36: 9,19 - 37: 9,19 - 38: 7,20 - 39: 7,17 - 40: 9,17 - 41: 9,18 - 42: 10,17 - 43: 9,18 - 44: 4,24 - 45: 4,23 - 46: 3,25 - 47: 2,25 - 48: 2,24 - 49: 3,24 - 50: 2,27 - 51: 4,29 - 52: 3,29 - 53: 3,30 - 54: 1,30 - 55: 0,28 - 56: -1,30 - 57: 0,31 - 58: -1,31 - 59: 0,31 - 60: 5,30 - 61: 6,29 - 62: 7,30 - 63: 6,31 - 64: 6,31 - 65: 4,32 - 66: -2,31 - 67: -3,30 - 68: -3,29 - 69: -3,30 - 70: -5,28 - 71: -7,27 - 72: -7,27 - 73: -5,27 - 74: -6,28 - 75: -3,26 - 76: -1,24 - 77: -3,23 - 78: -3,24 - 79: -3,23 - 80: 0,24 - 81: 2,23 - 82: 3,24 - 83: 3,31 - 84: 8,25 - 85: 8,26 - 86: 8,24 - 87: 8,25 - 88: 9,16 - 89: 12,24 - 90: 12,26 - 113: 10,31 - 114: 14,20 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 91: 8,25 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 92: 3,27 - 93: -1,28 - 94: 5,30 - 95: 8,28 - 96: 7,30 - 97: 1,31 - 98: -1,31 - 99: -3,29 - 100: -1,28 - 101: -5,27 - 102: -5,28 - 104: -3,23 - 105: 4,23 - 106: 3,25 - 107: 8,24 - 108: 2,28 - 109: 6,30 - 110: 7,32 - 111: 10,31 - 112: 10,31 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale180 - decals: - 4: 0,28 - 7: 1,30 - 12: 2,30 - 13: 3,30 - 17: 4,30 - 18: 5,30 - 19: 6,28 - 25: 7,28 - 27: 8,28 - 29: 9,28 - 33: -1,28 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 0: 0,23 - 2: 0,25 - 3: 0,26 - - node: - color: '#334E6DC8' - id: HalfTileOverlayGreyscale90 - decals: - 6: 0,29 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale - decals: - 9: 2,23 - 10: 2,24 - 20: 6,28 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale270 - decals: - 22: 6,30 - - node: - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale90 - decals: - 5: 0,28 - 14: 4,23 - 16: 4,25 - - type: RadiationGridResistance - - type: GridAtmosphere - version: 2 - data: - chunkSize: 4 - - type: GasTileOverlay - - type: NavMap - - type: IFF - flags: HideLabel - - uid: 16114 + rot: -1.5707963267948966 rad + pos: -135.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 9330 + - 18807 + - uid: 374 components: - type: MetaData - name: СБ шаттл + name: Salvage Air Alarm - type: Transform - pos: 73.750114,-5.304456 - parent: 446 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: kwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACgAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACgAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: Bot - decals: - 88: -3,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: Box - decals: - 83: -4,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 87: -1,4 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: Delivery - decals: - 84: 1,4 - 86: 1,3 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 85: 1,3 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: FullTileOverlayGreyscale - decals: - 70: -4,4 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 62: -2,4 - 64: -1,4 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale180 - decals: - 67: -1,3 - 68: -2,3 - - node: - zIndex: 1 - color: '#EFB34196' - id: HerringboneOverlay - decals: - 76: -2,1 - 77: -2,2 - - node: - zIndex: 1 - color: '#9FED5896' - id: MonoOverlay - decals: - 74: 1,4 - 75: 1,3 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 71: -3,4 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 66: 0,3 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 65: 0,4 - 69: -3,3 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: WarnLineGreyscaleN - decals: - 78: -2,2 - 79: -2,2 - 80: -2,2 - - node: - zIndex: 1 - color: '#DE3A3A96' - id: WarnLineW - decals: - 81: -2,2 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnLineW - decals: - 82: -2,2 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 4912 - 1: 8192 - 2: 4 - 0,1: - 0: 19 - 2: 64 - -1,0: - 0: 58432 - 2: 2 - -1,1: - 0: 15 - -2,0: - 2: 32768 - -2,1: - 2: 128 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - uid: 17330 + rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 23516 + - 9976 + - 23320 + - uid: 428 components: - type: MetaData - name: Инженерный шаттл + name: Southwest Hallway Air Alarm - type: Transform - pos: -63.26686,-13.690965 - parent: 446 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: kwAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase + rot: -1.5707963267948966 rad + pos: -101.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 18223 + - 457 + - 972 + - 24697 + - 16816 + - 16201 + - uid: 461 + components: + - type: MetaData + name: Cryosleep Air Alarm + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 23370 + - 23872 + - 23368 + - uid: 927 + components: + - type: MetaData + name: Artifact Lab Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -143.5,-46.5 + parent: 2 + - type: DeviceList + devices: + - 2444 + - 2451 + - 6024 + - 6023 + - 16455 + - 17303 + - 25858 + - 25856 + - 25857 + - uid: 1848 + components: + - type: MetaData + name: West Hallway Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 24800 + - 3320 + - 24787 + - 15159 + - 24578 + - 24570 + - 24569 + - uid: 2136 + components: + - type: MetaData + name: Bridge Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2986 + - 2985 + - 2988 + - 2984 + - 2983 + - 10210 + - 10208 + - 10207 + - 10209 + - 10020 + - 10021 + - 6939 + - uid: 3073 + components: + - type: MetaData + name: Captain Bedroom Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 10393 + - 10410 + - 10411 + - 10392 + - 11250 + - 11253 + - 11254 + - uid: 3074 + components: + - type: MetaData + name: Captain Office Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 10394 + - 10402 + - 11246 + - 11254 + - uid: 3287 + components: + - type: MetaData + name: Boardroom Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 10273 + - 10251 + - 10038 + - 2981 + - 2982 + - 2974 + - 2973 + - 22877 + - 14978 + - 14979 + - 14288 + - 14996 + - 2969 + - 2970 + - 2971 + - 2968 + - 11246 + - 2979 + - 2980 + - 2987 + - 6938 + - uid: 4214 + components: + - type: MetaData + name: Exam Room Air Alarm + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 24047 + - 24046 + - 9135 + - 12517 + - 12524 + - 12513 + - 11070 + - 24045 + - uid: 5387 + components: + - type: MetaData + name: Atmospherics Burn Chamber Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 5385 + - uid: 5658 + components: + - type: MetaData + name: Plasma Storage Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 5379 + - uid: 5898 + components: + - type: MetaData + name: Botany Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 15367 + - 5747 + - 14952 + - 14951 + - 14950 + - 14948 + - uid: 5906 + components: + - type: MetaData + name: Gravity Generator Air Alarm + - type: Transform + pos: -122.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 19290 + - uid: 7346 + components: + - type: MetaData + name: Janitor Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 19755 + - 25698 + - 7776 + - 3494 + - 7808 + - 23895 + - 22713 + - uid: 8070 + components: + - type: MetaData + name: Artifact Chamber North Air Alarm + - type: Transform + pos: -149.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 25859 + - uid: 8072 + components: + - type: MetaData + name: Artifact Chamber South Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -149.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 25860 + - uid: 8411 + components: + - type: MetaData + name: Medical Entrance Air Alarm + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 860 + - 853 + - 24038 + - uid: 8934 + components: + - type: MetaData + name: Morgue Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 24051 + - 11070 + - 8885 + - 11072 + - 5744 + - uid: 8941 + components: + - type: MetaData + name: Surgery Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 12000 + - 15357 + - 12481 + - 12029 + - 11105 + - 5742 + - 13217 + - 12001 + - 13220 + - uid: 8947 + components: + - type: MetaData + name: Virology Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 12639 + - 12624 + - 12616 + - 12618 + - 12615 + - 12617 + - 12614 + - 15360 + - uid: 8954 + components: + - type: MetaData + name: Surgery Observation Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 15356 + - 5746 + - uid: 9146 + components: + - type: MetaData + name: Medical Storage Air Alarm + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 15361 + - 12569 + - 12570 + - 11100 + - uid: 9162 + components: + - type: MetaData + name: Chemistry Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 12267 + - 12250 + - 12269 + - 12270 + - 2488 + - uid: 9167 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11640 + - 24023 + - 23174 + - 11706 + - 24025 + - 24656 + - 18982 + - 24662 + - 4910 + - 7653 + - uid: 9253 + components: + - type: MetaData + name: Bar Air Alarm + - type: Transform + pos: -67.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 9244 + - 7046 + - 6594 + - 15848 + - 16965 + - 16404 + - 23865 + - 3308 + - 17426 + - 17447 + - 17145 + - 15037 + - 14353 + - 14356 + - 1782 + - uid: 9273 + components: + - type: MetaData + name: Southwest Hallway Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 18203 + - 24719 + - 788 + - uid: 9346 + components: + - type: MetaData + name: Kitchen Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 12298 + - 25653 + - 25651 + - uid: 9348 + components: + - type: MetaData + name: Freezer Air Alarm + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 14863 + - 14864 + - uid: 9430 + components: + - type: MetaData + name: Botany Backroom Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 15366 + - 5747 + - 14952 + - 14951 + - 14950 + - 13438 + - 19613 + - 14948 + - uid: 9624 + components: + - type: MetaData + name: Armory Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 9476 + - uid: 11242 + components: + - type: MetaData + name: HoP Office Air Alarm + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 10315 + - 10316 + - 2968 + - 2976 + - 11251 + - uid: 11243 + components: + - type: MetaData + name: HoP Bedroom Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 10337 + - 10317 + - 10331 + - 10318 + - 11249 + - 2976 + - 11252 + - uid: 11244 + components: + - type: MetaData + name: Showroom Air Alarm + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 11230 + - 11231 + - 23990 + - 14980 + - 7351 + - uid: 11298 + components: + - type: MetaData + name: Arrivals Checkpoint Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 11731 + - 11730 + - 11766 + - 11765 + - 11767 + - 11805 + - 24031 + - 24034 + - uid: 11722 + components: + - type: MetaData + name: Arcade Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11728 + - 17415 + - 7787 + - 14358 + - 14360 + - 24647 + - 24646 + - 24645 + - uid: 11837 + components: + - type: MetaData + name: Evac Air Alarm + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 13212 + - 11972 + - 13023 + - 11975 + - 11898 + - 12399 + - 941 + - 11803 + - 940 + - 11802 + - 11896 + - 14508 + - 14500 + - 14507 + - 11817 + - 11816 + - 11804 + - 11810 + - 11809 + - 23126 + - uid: 11893 + components: + - type: MetaData + name: Tool Storage Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 10628 + - 22172 + - 13437 + - 12949 + - 12942 + - 10350 + - 18989 + - 18141 + - 7345 + - 7808 + - 23895 + - 22713 + - uid: 12151 + components: + - type: MetaData + name: Service Plaza Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 14854 + - 14853 + - 23867 + - 15365 + - 14945 + - 14944 + - 14943 + - 14942 + - 24123 + - 14946 + - 14952 + - 14951 + - 14950 + - 14636 + - 14637 + - 1667 + - 9674 + - 14638 + - 14640 + - 19891 + - 23865 + - 16404 + - 16965 + - 15848 + - 9244 + - 7046 + - 15709 + - 15855 + - uid: 14861 + components: + - type: MetaData + name: Salvage Breakroom Air Alarm + - type: Transform + pos: -92.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 23614 + - 22162 + - 19738 + - uid: 15140 + components: + - type: MetaData + name: Library Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 14828 + - 15139 + - 24127 + - 24124 + - 24128 + - uid: 15348 + components: + - type: MetaData + name: Medbay Hallway Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 15352 + - 15351 + - 12378 + - 12379 + - 15353 + - 15355 + - 15354 + - uid: 15359 + components: + - type: MetaData + name: Cryogenics Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 12407 + - 15358 + - 22990 + - 12419 + - 11108 + - 11105 + - 9134 + - 12047 + - uid: 15364 + components: + - type: MetaData + name: Theatre Air Alarm + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 3864 + - 15103 + - 24123 + - 1599 + - uid: 15411 + components: + - type: MetaData + name: Chapel Air Alarm + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 15410 + - 24124 + - 24125 + - 24126 + - uid: 15412 + components: + - type: MetaData + name: Chapel Backroom Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 15079 + - 15078 + - 24126 + - uid: 15413 + components: + - type: MetaData + name: Library Backroom Air Alarm + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 24128 + - 14285 + - 15121 + - uid: 15415 + components: + - type: MetaData + name: Dorms Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-58.5 + parent: 2 + - type: DeviceList + devices: + - 15374 + - 15370 + - 15375 + - 15371 + - 15372 + - 15368 + - 15369 + - 15373 + - 15417 + - uid: 15416 + components: + - type: MetaData + name: Dorms Restroom Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-62.5 + parent: 2 + - uid: 15581 + components: + - type: MetaData + name: Robotics Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 20154 + - 20153 + - 20376 + - 4806 + - 4826 + - 5626 + - 5622 + - uid: 16218 + components: + - type: MetaData + name: Disposals Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 10556 + - 11656 + - 22218 + - 10448 + - 1166 + - uid: 17332 + components: + - type: MetaData + name: Artifact Lab Entrance Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -142.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 13824 + - 16746 + - uid: 17569 + components: + - type: MetaData + name: CMO Private Exam Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 17180 + - 24048 + - 24045 + - uid: 17849 + components: + - type: MetaData + name: Canister Storage Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 15036 + - 25561 + - 11829 + - uid: 18696 + components: + - type: MetaData + name: Warden Office Air Alarm + - type: Transform + pos: -89.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 17988 + - 17989 + - 18024 + - 18012 + - 18708 + - uid: 18697 + components: + - type: MetaData + name: Security Locker Room Air Alarm + - type: Transform + pos: -88.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 18709 + - 18046 + - 18037 + - 18038 + - 18048 + - uid: 18698 + components: + - type: MetaData + name: Detective Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 18720 + - 18183 + - 17859 + - 18719 + - 18137 + - uid: 18699 + components: + - type: MetaData + name: Security Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 17924 + - 17967 + - 17896 + - 17897 + - 17922 + - 17856 + - 17855 + - 17857 + - 17858 + - 17853 + - uid: 18700 + components: + - type: MetaData + name: Lawyer Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 18718 + - uid: 18701 + components: + - type: MetaData + name: Permabrig Air Alarm + - type: Transform + pos: -89.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 18717 + - 18716 + - 18715 + - 18714 + - 18166 + - uid: 18702 + components: + - type: MetaData + name: Permabrig Hallway Air Alarm + - type: Transform + pos: -89.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 18713 + - 18712 + - uid: 18703 + components: + - type: MetaData + name: Interogation Air Alarm + - type: Transform + pos: -87.5,-30.5 + parent: 2 + - uid: 18704 + components: + - type: MetaData + name: HoS Office Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 18060 + - 18722 + - 18072 + - uid: 18705 + components: + - type: MetaData + name: HoS Bedroom Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 16034 + - 17442 + - 18721 + - uid: 18706 + components: + - type: MetaData + name: Security Entrance Air Alarm + - type: Transform + pos: -97.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 17994 + - 18707 + - 17241 + - uid: 18723 + components: + - type: MetaData + name: Newsroom Air Alarm + - type: Transform + pos: -111.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 18725 + - 18201 + - 18200 + - 18724 + - 16206 + - 17865 + - uid: 19277 + components: + - type: MetaData + name: Engineering Workshop Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 17091 + - 19288 + - 18053 + - uid: 19278 + components: + - type: MetaData + name: Engineering Breakroom Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 18852 + - 18843 + - 18844 + - 19289 + - uid: 19280 + components: + - type: MetaData + name: CE Office Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 19291 + - 19292 + - uid: 19281 + components: + - type: MetaData + name: SMES Bank Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 10148 + - uid: 19282 + components: + - type: MetaData + name: Atmospherics Entrance Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 18892 + - 18893 + - 19285 + - 18985 + - uid: 19284 + components: + - type: MetaData + name: Atmospherics Air Alarm + - type: Transform + pos: -122.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 16940 + - 5384 + - uid: 19286 + components: + - type: MetaData + name: Engineering Hallway Air Alarm + - type: Transform + pos: -122.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 19287 + - 421 + - uid: 19293 + components: + - type: MetaData + name: TEG Control Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -139.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 19295 + - 19294 + - 18965 + - 15582 + - uid: 19297 + components: + - type: MetaData + name: TEG Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 19298 + - uid: 19798 + components: + - type: MetaData + name: QM Office Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 19687 + - 19796 + - 19689 + - 19713 + - 19797 + - 19714 + - uid: 19805 + components: + - type: MetaData + name: Cargo Front Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 19804 + - uid: 19806 + components: + - type: MetaData + name: Cargo Warehouse Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 19792 + - 19652 + - 19653 + - uid: 19910 + components: + - type: MetaData + name: East Hallway Air Alarm + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 11346 + - 18910 + - 10012 + - 10013 + - 143 + - 11794 + - 13448 + - 13442 + - 13439 + - 14628 + - 14635 + - 14627 + - 8328 + - 8331 + - 8327 + - 13443 + - 13441 + - 13440 + - 7894 + - 7864 + - 7805 + - 13467 + - 12928 + - 12903 + - 14507 + - 14508 + - 14500 + - 14955 + - 24779 + - 24782 + - 24783 + - uid: 20216 + components: + - type: MetaData + name: Medical Breakroom Air Alarm + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 4332 + - 19029 + - 20094 + - uid: 20303 + components: + - type: MetaData + name: Telecommunications Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 275 + - 20304 + - uid: 20316 + components: + - type: MetaData + name: Science Foyer Air Alarm + - type: Transform + pos: -117.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 20045 + - 20371 + - 20044 + - 20380 + - 21471 + - 21470 + - 21469 + - 21466 + - 21468 + - 21467 + - 21463 + - 12746 + - uid: 20318 + components: + - type: MetaData + name: Science Breakroom Air Alarm + - type: Transform + pos: -126.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 20373 + - 20374 + - 20375 + - uid: 20367 + components: + - type: MetaData + name: Charging Bay Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 20120 + - 20119 + - 20377 + - uid: 20372 + components: + - type: MetaData + name: RD Office Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 20252 + - 20251 + - 14633 + - 7825 + - 20079 + - uid: 20948 + components: + - type: MetaData + name: CMO Office Air Alarm + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 16901 + - 23776 + - 23925 + - 23926 + - 15795 + - 16840 + - 24050 + - 24048 + - 24049 + - uid: 21036 + components: + - type: MetaData + name: Cargo Desk Air Alarm + - type: Transform + pos: -102.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 15048 + - 19791 + - 14840 + - uid: 21473 + components: + - type: MetaData + name: Science Workshop Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 20074 + - 20104 + - 20472 + - uid: 22168 + components: + - type: MetaData + name: EVA Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 22171 + - 14935 + - 14877 + - 11265 + - 24682 + - 24680 + - 24681 + - 24693 + - uid: 23400 + components: + - type: MetaData + name: Cargo Breakroom Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 19571 + - 19790 + - uid: 23681 + components: + - type: MetaData + name: Central Hallway Air Alarm + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 23678 + - 23677 + - 13488 + - 442 + - 23679 + - 23680 + - 13514 + - 12948 + - 14979 + - 14978 + - 1667 + - 9674 + - 11251 + - 14288 + - 14996 + - 14627 + - 14635 + - 14628 + - 16293 + - 15676 + - uid: 23983 + components: + - type: MetaData + name: TEG Burn Chamber Air Alarm + - type: Transform + pos: -149.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 23984 + - uid: 24026 + components: + - type: MetaData + name: Arrivals Cafe Air Alarm + - type: Transform + pos: -18.5,21.5 + parent: 2 + - type: DeviceList + devices: + - 24032 + - 17444 + - 24020 + - 24027 + - 14937 + - 14938 + - 14936 + - uid: 24037 + components: + - type: MetaData + name: Medical Desk Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 25633 + - 25632 + - uid: 24043 + components: + - type: MetaData + name: Psychology Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 12344 + - 12307 + - 24044 + - uid: 24742 + components: + - type: MetaData + name: Pool Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 24743 + - 24722 + - 24720 + - 24130 + - 15021 + - 9250 + - uid: 25258 + components: + - type: MetaData + name: AI Core Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,-81.5 + parent: 2 + - type: DeviceList + devices: + - 25263 + - 25091 + - 25250 + - 25257 + - 25256 + - 25150 + - 25248 + - uid: 25264 + components: + - type: MetaData + name: AI Observation Air Alarm + - type: Transform + pos: -121.5,-75.5 + parent: 2 + - type: DeviceList + devices: + - 25090 + - 25266 + - 25235 + - uid: 25270 + components: + - type: MetaData + name: AI Power Air Alarm + - type: Transform + pos: -121.5,-64.5 + parent: 2 + - type: DeviceList + devices: + - 24899 + - 25192 + - uid: 25280 + components: + - type: MetaData + name: AI Upload Air Alarm + - type: Transform + pos: -119.5,-69.5 + parent: 2 + - type: DeviceList + devices: + - 25190 + - 25265 + - 25177 + - uid: 25402 + components: + - type: MetaData + name: Science Cargo Bay Air Alarm + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,-39.5 + parent: 2 + - uid: 25644 + components: + - type: MetaData + name: Paramedic Air Alarm + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 12271 + - 15039 + - 10133 + - uid: 25886 + components: + - type: MetaData + name: Anomally Lab Air Alarm + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 20370 + - 14618 + - 20190 + - 20361 + - 20362 + - 20203 + - uid: 25887 + components: + - type: MetaData + name: Cargo Bay Air Alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 19717 + - 13223 + - 19558 + - 19726 + - 24558 + - 19789 + - uid: 26179 + components: + - type: MetaData + name: Evac Checkpoint Air Alarm + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 11896 + - 13210 + - 13021 + - 11803 +- proto: AirCanister + entities: + - uid: 1236 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -115.5,-2.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -115.5,-3.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -140.5,-42.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -115.5,15.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: -138.5,-35.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: -115.5,14.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -71.5,-62.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -70.5,-62.5 + parent: 2 + - uid: 20035 + components: + - type: Transform + pos: -108.5,-41.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + pos: -129.5,13.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + pos: -134.5,-26.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: -94.5,-11.5 + parent: 2 + - uid: 21422 + components: + - type: Transform + pos: -108.5,-40.5 + parent: 2 + - uid: 21739 + components: + - type: Transform + pos: -123.5,19.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: -110.5,-26.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + pos: -124.5,-67.5 + parent: 2 + - uid: 25145 + components: + - type: Transform + pos: -124.5,-68.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + pos: -111.5,-26.5 + parent: 2 +- proto: Airlock + entities: + - uid: 3771 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -66.5,-62.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -62.5,-61.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: -70.5,-54.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3779 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: -112.5,-21.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -109.5,-22.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -111.5,-22.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -129.5,-49.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -91.5,-48.5 + parent: 2 + - uid: 10985 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -128.5,-52.5 + parent: 2 + - uid: 12466 + components: + - type: Transform + pos: -130.5,-52.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 3947 + components: + - type: Transform + pos: -87.5,-24.5 + parent: 2 +- proto: AirlockAssemblyShuttleGlass + entities: + - uid: 20323 + components: + - type: Transform + pos: -45.5,-73.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 411 + components: + - type: Transform + pos: -119.5,-1.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,-7.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-4.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 4828 + components: + - type: Transform + pos: -109.5,-43.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -114.5,16.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 2 +- proto: AirlockBarGlassLocked + entities: + - uid: 2543 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 3814 + components: + - type: Transform + pos: -68.5,-28.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: -66.5,-25.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 387: + - DoorStatus: Close + 386: + - DoorStatus: Close + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 4 + - type: DeviceLinkSource + linkedPorts: + 386: + - DoorStatus: Close + 387: + - DoorStatus: Close + - uid: 6887 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 2885 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 +- proto: AirlockCargo + entities: + - uid: 17165 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 4540 + components: + - type: Transform + pos: -97.5,7.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -97.5,15.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,13.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 3885 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 2671 + components: + - type: Transform + pos: -123.5,-13.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 6298 + components: + - type: Transform + pos: -128.5,-17.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 7952 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 23916 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 +- proto: AirlockCommand + entities: + - uid: 7468 + components: + - type: Transform + pos: -38.5,-68.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: -40.5,-67.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 20347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,-58.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - uid: 23422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,-78.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector +- proto: AirlockCommandGlassLocked + entities: + - uid: 684 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: -85.5,-0.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 23 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-9.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -120.5,-64.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - uid: 24915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -120.5,-69.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector +- proto: AirlockDetectiveLocked + entities: + - uid: 1822 + components: + - type: Transform + pos: -101.5,-40.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -95.5,-36.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: -99.5,-36.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 9073 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + pos: -29.5,-69.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-77.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 310 + components: + - type: Transform + pos: -87.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10197: + - DoorStatus: DoorBolt + - uid: 433 + components: + - type: Transform + pos: -113.5,-10.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -123.5,-7.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -137.5,-8.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -142.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 23296: + - DoorStatus: DoorBolt + - uid: 5964 + components: + - type: Transform + pos: -137.5,12.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: -117.5,-16.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: -117.5,-22.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -126.5,-22.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: -88.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 310: + - DoorStatus: DoorBolt + - uid: 17595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-65.5 + parent: 2 + - uid: 18318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -137.5,-12.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + pos: -130.5,-7.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -139.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5899: + - DoorStatus: DoorBolt +- proto: AirlockEngineeringLocked + entities: + - uid: 149 + components: + - type: Transform + pos: -27.5,-56.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -119.5,-25.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -132.5,-10.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -135.5,-10.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -88.5,3.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -73.5,-9.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -85.5,-10.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: -121.5,-22.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: -109.5,-47.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-41.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: -135.5,0.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 7378 + components: + - type: Transform + pos: -141.5,-49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7384: + - DoorStatus: DoorBolt + - uid: 17236 + components: + - type: Transform + pos: -82.5,-78.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 18032 + components: + - type: Transform + pos: -134.5,-55.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 13904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -135.5,-27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 17502: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 23005: + - DoorStatus: DoorBolt + - uid: 7659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,-44.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -106.5,-46.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,-44.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,-46.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8301 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10081 + components: + - type: Transform + pos: -33.5,-75.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 514: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5533: + - DoorStatus: DoorBolt + - uid: 5533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 608: + - DoorStatus: DoorBolt + - uid: 8598 + components: + - type: Transform + pos: -124.5,17.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1898 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalGlassCommandLocked + entities: + - uid: 1880 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 24574 + components: + - type: Transform + pos: -114.5,-68.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24883: + - DoorStatus: DoorBolt + - uid: 24883 + components: + - type: Transform + pos: -116.5,-68.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24574: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 6122 + components: + - type: Transform + pos: -152.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 6124: + - DoorStatus: DoorBolt + 6123: + - DoorStatus: DoorBolt + - uid: 6123 + components: + - type: Transform + pos: -154.5,-12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6122: + - DoorStatus: DoorBolt + - uid: 6124 + components: + - type: Transform + pos: -154.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6122: + - DoorStatus: DoorBolt + - uid: 17502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -138.5,-27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13904: + - DoorStatus: DoorBolt + - uid: 21310 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21322: + - DoorStatus: DoorBolt + - uid: 21322 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 21310: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassLocked + entities: + - uid: 5606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -139.5,13.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -141.5,13.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -141.5,-53.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7378: + - DoorStatus: DoorBolt + - uid: 9344 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 11057: + - DoorStatus: DoorBolt + - uid: 9652 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10487: + - DoorStatus: DoorBolt + - uid: 9984 + components: + - type: Transform + pos: -94.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9985: + - DoorStatus: DoorBolt + - uid: 9985 + components: + - type: Transform + pos: -94.5,39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9984: + - DoorStatus: DoorBolt + - uid: 10185 + components: + - type: Transform + pos: -102.5,36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10184: + - DoorStatus: DoorBolt + - uid: 11057 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9344: + - DoorStatus: DoorBolt + - uid: 17519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,-62.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 23005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1771: + - DoorStatus: DoorBolt + - uid: 24228 + components: + - type: Transform + pos: -104.5,-67.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24227: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 8647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 8718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 5882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,15.5 + parent: 2 + - uid: 13871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,-57.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 20898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,7.5 + parent: 2 + - uid: 22994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,-62.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 514 + components: + - type: Transform + pos: -33.5,-78.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 24217: + - DoorStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 16318 + components: + - type: Transform + pos: -81.5,-82.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 16324 + components: + - type: Transform + pos: -83.5,-82.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: AirlockExternalLocked + entities: + - uid: 10184 + components: + - type: Transform + pos: -104.5,35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10185: + - DoorStatus: DoorBolt + - uid: 10487 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9652: + - DoorStatus: DoorBolt + - uid: 24227 + components: + - type: Transform + pos: -104.5,-64.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 24228: + - DoorStatus: DoorBolt +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 3410 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 3409 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1946: + - DoorStatus: Close + 1936: + - DoorStatus: Close + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-16.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 1936: + - DoorStatus: Close + 1946: + - DoorStatus: Close + - uid: 3598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-45.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-46.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -85.5,-38.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: -82.5,-43.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,-43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6732: + - DoorStatus: DoorBolt + - uid: 14491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 6728: + - DoorStatus: DoorBolt + - uid: 14567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-50.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-50.5 + parent: 2 + - uid: 14593 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-17.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-55.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-57.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-17.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-12.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-13.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-14.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-13.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,-21.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,-21.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.5,-0.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,-0.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,-0.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: -66.5,-19.5 + parent: 2 + - uid: 25882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-55.5 + parent: 2 + - uid: 25883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-56.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-57.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 8652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 8742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 10564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,20.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 24212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-80.5 + parent: 2 +- proto: AirlockHatchMaintenance + entities: + - uid: 3340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,-2.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-2.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-58.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-60.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 397 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 5708 + components: + - type: Transform + pos: -82.5,-30.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 5716 + components: + - type: Transform + pos: -79.5,-32.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 3412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-19.5 + parent: 2 +- proto: AirlockHydroponics + entities: + - uid: 3414 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 7774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 1447 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 2 +- proto: AirlockMaintArmoryLocked + entities: + - uid: 2114 + components: + - type: Transform + pos: -87.5,-19.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 5810 + components: + - type: Transform + pos: -119.5,18.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 15696 + components: + - type: Transform + pos: -70.5,-25.5 + parent: 2 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 395 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 10747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,22.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + pos: -86.5,10.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + pos: -85.5,13.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: -94.5,6.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -104.5,15.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 3921 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 4310 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 1924 + components: + - type: Transform + pos: -81.5,-8.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 2912 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 8335 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 3502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 3411 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-59.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -76.5,-36.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: -18.5,9.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: -137.5,25.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: -133.5,-13.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -133.5,-7.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2389 + components: + - type: Transform + pos: -110.5,-57.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-32.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -56.5,-56.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: -56.5,-41.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -99.5,5.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,-55.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-38.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -108.5,-27.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-19.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: -114.5,26.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: -117.5,21.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: -117.5,30.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,13.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: -128.5,25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 3 + - type: DeviceLinkSource + linkedPorts: + 9820: + - DoorStatus: Close + 23603: + - DoorStatus: Close + - uid: 9820 + components: + - type: Transform + pos: -127.5,29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 9819: + - DoorStatus: Close + 9821: + - DoorStatus: Close + - uid: 9821 + components: + - type: Transform + pos: -128.5,32.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9820: + - DoorStatus: Close + - uid: 10142 + components: + - type: Transform + pos: -81.5,5.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: -124.5,30.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,22.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + pos: -75.5,-20.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: -75.5,-23.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 16396 + components: + - type: Transform + pos: -76.5,-53.5 + parent: 2 + - uid: 16453 + components: + - type: Transform + pos: -74.5,-37.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,-41.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -123.5,-57.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,-53.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -138.5,-37.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,-34.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: -104.5,-60.5 + parent: 2 + - uid: 20187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,-13.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-10.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-16.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,29.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -107.5,-57.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: -108.5,-26.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -126.5,23.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,23.5 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - uid: 23362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,12.5 + parent: 2 + - uid: 23427 + components: + - type: Transform + pos: -133.5,2.5 + parent: 2 + - uid: 23603 + components: + - type: Transform + pos: -135.5,24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 9819: + - DoorStatus: Close + - uid: 23999 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-62.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-59.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,-7.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -81.5,4.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -134.5,2.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - uid: 24616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-53.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-60.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -125.5,23.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-62.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-41.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-55.5 + parent: 2 + - uid: 25445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-44.5 + parent: 2 + - uid: 25446 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 26066 + components: + - type: Transform + pos: -119.5,23.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 1118 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-44.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 16520 + components: + - type: Transform + pos: -125.5,-56.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + pos: -119.5,-36.5 + parent: 2 + - uid: 17503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,-34.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 8659 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 19605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7455: + - DoorStatus: Close +- proto: AirlockMaintServiceLocked + entities: + - uid: 11001 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: -110.5,-28.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 1119 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 3967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-22.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-48.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 401 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 2 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-39.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 4713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,26.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 4705 + components: + - type: Transform + pos: -87.5,32.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 1600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -131.5,-45.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: -135.5,-49.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 4690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,26.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,31.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: -97.5,31.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,-51.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -137.5,-39.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -123.5,-39.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: -143.5,-45.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -151.5,-45.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,-51.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,-39.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,-49.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -127.5,-41.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-45.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,-49.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7859: + - DoorStatus: DoorBolt + - uid: 7857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,-41.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13624: + - DoorStatus: DoorBolt + - uid: 7859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,-51.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7848: + - DoorStatus: DoorBolt + - uid: 8080 + components: + - type: Transform + pos: -141.5,-41.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -147.5,-39.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7857: + - DoorStatus: DoorBolt + - uid: 13827 + components: + - type: Transform + pos: -120.5,-54.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 16086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -125.5,-52.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-31.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-23.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -97.5,-27.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-27.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: -91.5,-40.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14491: + - DoorStatus: DoorBolt + - uid: 6732 + components: + - type: Transform + pos: -87.5,-40.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 13565: + - DoorStatus: DoorBolt + - uid: 8247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,9.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 2 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 4905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,-45.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: -89.5,-33.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 7455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 19605: + - DoorStatus: Close +- proto: AirlockServiceLocked + entities: + - uid: 3850 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: -108.5,-31.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 3369 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 4164 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 4166 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19286 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9273 + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - uid: 1166 + components: + - type: Transform + pos: -101.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16218 + - uid: 2488 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9162 + - uid: 5379 + components: + - type: Transform + pos: -110.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5658 + - uid: 5385 + components: + - type: Transform + pos: -110.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5387 + - uid: 6938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3287 + - 3288 + - uid: 6939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22327 + - 2136 + - uid: 9976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 374 + - uid: 11794 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 14358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11722 + - uid: 14618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -127.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - uid: 14633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -133.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20372 + - uid: 15039 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25644 + - 25641 + - uid: 15139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15140 + - uid: 15353 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - 26109 + - uid: 15354 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - 17850 + - uid: 15355 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - 25647 + - uid: 15356 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8954 + - uid: 15357 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - 25645 + - uid: 15358 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - 15026 + - uid: 15360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - 25648 + - uid: 15361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9146 + - uid: 15365 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 15366 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9430 + - uid: 15367 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5898 + - uid: 15410 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15411 + - uid: 15417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - uid: 17180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17569 + - uid: 18707 + components: + - type: Transform + pos: -95.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18706 + - uid: 18708 + components: + - type: Transform + pos: -91.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18696 + - uid: 18709 + components: + - type: Transform + pos: -84.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - uid: 18710 + components: + - type: Transform + pos: -93.5,-30.5 + parent: 2 + - uid: 18712 + components: + - type: Transform + pos: -89.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18702 + - uid: 18713 + components: + - type: Transform + pos: -82.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18702 + - uid: 18714 + components: + - type: Transform + pos: -92.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18701 + - uid: 18715 + components: + - type: Transform + pos: -88.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18701 + - uid: 18716 + components: + - type: Transform + pos: -87.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18701 + - uid: 18717 + components: + - type: Transform + pos: -91.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18701 + - uid: 18718 + components: + - type: Transform + pos: -98.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18700 + - uid: 18719 + components: + - type: Transform + pos: -97.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18698 + - uid: 18720 + components: + - type: Transform + pos: -98.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18698 + - uid: 18721 + components: + - type: Transform + pos: -77.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18705 + - uid: 18722 + components: + - type: Transform + pos: -82.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18704 + - uid: 18724 + components: + - type: Transform + pos: -113.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - uid: 18725 + components: + - type: Transform + pos: -110.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - uid: 19285 + components: + - type: Transform + pos: -112.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19282 + - uid: 19287 + components: + - type: Transform + pos: -119.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19286 + - uid: 19288 + components: + - type: Transform + pos: -112.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19277 + - uid: 19289 + components: + - type: Transform + pos: -114.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19278 + - uid: 19290 + components: + - type: Transform + pos: -123.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5906 + - uid: 19291 + components: + - type: Transform + pos: -124.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19280 + - uid: 19292 + components: + - type: Transform + pos: -130.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19280 + - uid: 19294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19293 + - uid: 19295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19293 + - uid: 19298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -145.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19297 + - uid: 19738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14861 + - uid: 19789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - uid: 19790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23400 + - uid: 19791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21036 + - uid: 19792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19806 + - uid: 19796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - uid: 19797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -87.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - uid: 19804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19805 + - uid: 20094 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20216 + - uid: 20370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - uid: 20371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20316 + - uid: 20373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20318 + - uid: 20376 + components: + - type: Transform + pos: -120.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - uid: 20377 + components: + - type: Transform + pos: -114.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20367 + - uid: 20378 + components: + - type: Transform + pos: -114.5,-39.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20316 + - uid: 20472 + components: + - type: Transform + pos: -121.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21473 + - uid: 22171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - 24785 + - uid: 22172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - 24784 + - uid: 23126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15347 + - 11837 + - uid: 23370 + components: + - type: Transform + pos: -70.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 461 + - uid: 23680 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - uid: 23925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - uid: 23926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - uid: 23984 + components: + - type: Transform + pos: -147.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23983 + - uid: 23990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11244 + - 23991 + - uid: 24025 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1814 + - 9167 + - uid: 24027 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24026 + - uid: 24034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11298 + - uid: 24038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8411 + - uid: 24044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24043 + - uid: 24046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - 19747 + - uid: 24051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8934 + - uid: 24578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -103.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - uid: 24662 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - uid: 24697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -104.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - uid: 24743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24742 + - uid: 25263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,-80.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - uid: 25265 + components: + - type: Transform + pos: -120.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25280 + - uid: 25266 + components: + - type: Transform + pos: -120.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25264 + - uid: 25561 + components: + - type: Transform + pos: -110.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17849 + - uid: 25653 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9346 + - 25649 + - uid: 25692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,6.5 + parent: 2 + - uid: 25698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7346 + - uid: 25856 + components: + - type: Transform + pos: -152.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - uid: 25857 + components: + - type: Transform + pos: -147.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - uid: 25858 + components: + - type: Transform + pos: -141.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - uid: 25859 + components: + - type: Transform + pos: -147.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8070 + - uid: 25860 + components: + - type: Transform + pos: -147.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8072 +- proto: AltarChaos + entities: + - uid: 15414 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 1470 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 +- proto: AltarToolbox + entities: + - uid: 16714 + components: + - type: Transform + pos: -67.5,-72.5 + parent: 2 +- proto: AlwaysPoweredLightExterior + entities: + - uid: 1593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,9.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,9.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -144.5,-14.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -150.5,-14.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,46.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,46.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -150.5,-0.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -144.5,-0.5 + parent: 2 +- proto: AlwaysPoweredWallLight + entities: + - uid: 19331 + components: + - type: Transform + pos: -108.5,31.5 + parent: 2 + - uid: 22426 + components: + - type: Transform + pos: -132.5,29.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,27.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,29.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,20.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: -110.5,22.5 + parent: 2 +- proto: AmeController + entities: + - uid: 24284 + components: + - type: Transform + pos: -139.5,-13.5 + parent: 2 +- proto: AmeJar + entities: + - uid: 18753 + components: + - type: Transform + pos: -136.5,-13.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: -136.5,-13.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -136.5,-13.5 + parent: 2 +- proto: AmePartFlatpack + entities: + - uid: 1895 + components: + - type: Transform + parent: 1887 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14676 + components: + - type: Transform + parent: 14612 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: APCBasic + entities: + - uid: 341 + components: + - type: MetaData + name: Chapel APC + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 381 + components: + - type: MetaData + name: Atmospherics Entrance APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,-6.5 + parent: 2 + - uid: 973 + components: + - type: MetaData + name: Southwest Maintenance APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-54.5 + parent: 2 + - uid: 3069 + components: + - type: MetaData + name: Captain Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 3126 + components: + - type: MetaData + name: Boardroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-6.5 + parent: 2 + - uid: 3136 + components: + - type: MetaData + name: HoP Office APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - uid: 3322 + components: + - type: MetaData + name: Service Plaza APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-26.5 + parent: 2 + - uid: 3395 + components: + - type: MetaData + name: Solars APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,5.5 + parent: 2 + - uid: 3719 + components: + - type: MetaData + name: Bar APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-26.5 + parent: 2 + - uid: 4211 + components: + - type: MetaData + name: Cryogenics APC + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 4216 + components: + - type: MetaData + name: Exam Room APC + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-34.5 + parent: 2 + - uid: 4225 + components: + - type: MetaData + name: Station Anchor APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,1.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: -56.5,-76.5 + parent: 2 + - uid: 4387 + components: + - type: MetaData + name: Salvage APC + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,26.5 + parent: 2 + - uid: 4410 + components: + - type: MetaData + name: Telecommunications APC + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-10.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: -43.5,-72.5 + parent: 2 + - uid: 4990 + components: + - type: MetaData + name: Arcade APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 5159 + components: + - type: MetaData + name: EVA APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 2 + - uid: 5393 + components: + - type: MetaData + name: 'Plasma Pit #045' + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-1.5 + parent: 2 + - uid: 5836 + components: + - type: MetaData + name: Solars APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,14.5 + parent: 2 + - uid: 6228 + components: + - type: MetaData + name: Gravity Generator APC + - type: Transform + pos: -125.5,-19.5 + parent: 2 + - uid: 7226 + components: + - type: MetaData + name: Solars APC + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 7956 + components: + - type: MetaData + name: RD Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,-49.5 + parent: 2 + - uid: 8020 + components: + - type: MetaData + name: Science Breakroom APC + - type: Transform + rot: 3.141592653589793 rad + pos: -127.5,-49.5 + parent: 2 + - uid: 8021 + components: + - type: MetaData + name: Science Foyer APC + - type: Transform + rot: 3.141592653589793 rad + pos: -117.5,-48.5 + parent: 2 + - uid: 8023 + components: + - type: MetaData + name: Anomally Lab APC + - type: Transform + rot: 3.141592653589793 rad + pos: -129.5,-41.5 + parent: 2 + - uid: 8027 + components: + - type: MetaData + name: Science Workshop APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-38.5 + parent: 2 + - uid: 8310 + components: + - type: MetaData + name: Evac APC + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-21.5 + parent: 2 + - uid: 8342 + components: + - type: MetaData + name: Botany APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 2 + - uid: 8354 + components: + - type: MetaData + name: Arrivals APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,15.5 + parent: 2 + - uid: 8931 + components: + - type: MetaData + name: Medical Storage APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 2 + - uid: 8933 + components: + - type: MetaData + name: Morgue APC + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 9076 + components: + - type: MetaData + name: Old Dock APC + - type: Transform + pos: -31.5,-69.5 + parent: 2 + - uid: 9157 + components: + - type: MetaData + name: Virology APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-48.5 + parent: 2 + - uid: 9357 + components: + - type: MetaData + name: Old Engineering APC + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 9638 + components: + - type: MetaData + name: Old Cargo APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-65.5 + parent: 2 + - uid: 9833 + components: + - type: MetaData + name: Toolroom APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 10543 + components: + - type: MetaData + name: Kitchen APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-33.5 + parent: 2 + - uid: 11326 + components: + - type: MetaData + name: Arrivals Checkpoint APC + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 13009 + components: + - type: MetaData + name: Chemistry APC + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-24.5 + parent: 2 + - uid: 13016 + components: + - type: MetaData + name: Medical Entrance APC + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 13608 + components: + - type: MetaData + name: Science Maintenance APC + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,-37.5 + parent: 2 + - uid: 13720 + components: + - type: MetaData + name: Artifact Lab APC + - type: Transform + pos: -140.5,-37.5 + parent: 2 + - uid: 13742 + components: + - type: MetaData + name: East Maintenance APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - uid: 14167 + components: + - type: MetaData + name: Robotics APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-52.5 + parent: 2 + - uid: 14237 + components: + - type: MetaData + name: Cloning APC + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-28.5 + parent: 2 + - uid: 14281 + components: + - type: MetaData + name: CMO Office APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-39.5 + parent: 2 + - uid: 15262 + components: + - type: MetaData + name: Cryosleep APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-21.5 + parent: 2 + - uid: 15429 + components: + - type: MetaData + name: Library APC + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-55.5 + parent: 2 + - uid: 16220 + components: + - type: MetaData + name: Disposals APC + - type: Transform + pos: -99.5,23.5 + parent: 2 + - uid: 17134 + components: + - type: MetaData + name: Dorms APC + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-58.5 + parent: 2 + - uid: 18385 + components: + - type: MetaData + name: Science Utility APC + - type: Transform + pos: -110.5,-47.5 + parent: 2 + - uid: 18402 + components: + - type: MetaData + name: Warden Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-19.5 + parent: 2 + - uid: 18403 + components: + - type: MetaData + name: Security Storage APC + - type: Transform + rot: 3.141592653589793 rad + pos: -85.5,-30.5 + parent: 2 + - uid: 18404 + components: + - type: MetaData + name: Permabrig APC + - type: Transform + pos: -88.5,-36.5 + parent: 2 + - uid: 18405 + components: + - type: MetaData + name: HoS Office APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-31.5 + parent: 2 + - uid: 18406 + components: + - type: MetaData + name: Security APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,-30.5 + parent: 2 + - uid: 18407 + components: + - type: MetaData + name: Detective APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-37.5 + parent: 2 + - uid: 18408 + components: + - type: MetaData + name: Lawyer APC + - type: Transform + pos: -97.5,-42.5 + parent: 2 + - uid: 18990 + components: + - type: MetaData + name: Engineering Breakroom APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,-20.5 + parent: 2 + - uid: 19026 + components: + - type: MetaData + name: CE Office APC + - type: Transform + pos: -122.5,-13.5 + parent: 2 + - uid: 19028 + components: + - type: MetaData + name: Engineering Workshop APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,-14.5 + parent: 2 + - uid: 19053 + components: + - type: MetaData + name: SMES Bank APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.5,-5.5 + parent: 2 + - uid: 19075 + components: + - type: MetaData + name: Atmospherics APC + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,-1.5 + parent: 2 + - uid: 19156 + components: + - type: MetaData + name: AME APC + - type: Transform + pos: -136.5,-12.5 + parent: 2 + - uid: 19157 + components: + - type: MetaData + name: TEG APC + - type: Transform + rot: 3.141592653589793 rad + pos: -140.5,-8.5 + parent: 2 + - uid: 19764 + components: + - type: MetaData + name: QM Office APC + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,26.5 + parent: 2 + - uid: 19812 + components: + - type: MetaData + name: Cargo Warehouse APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,11.5 + parent: 2 + - uid: 19814 + components: + - type: MetaData + name: Cargo Desk APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,13.5 + parent: 2 + - uid: 19815 + components: + - type: MetaData + name: Cargo Dock APC + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,13.5 + parent: 2 + - uid: 20011 + components: + - type: MetaData + name: Cargo Breakroom APC + - type: Transform + pos: -92.5,13.5 + parent: 2 + - uid: 20851 + components: + - type: MetaData + name: Southeast Maintenance APC + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 21872 + components: + - type: MetaData + name: Medical Breakroom APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 + - uid: 22123 + components: + - type: MetaData + name: Northeast Maintenance APC + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 2 + - uid: 22493 + components: + - type: MetaData + name: Newsroom APC + - type: Transform + pos: -109.5,-28.5 + parent: 2 + - uid: 22703 + components: + - type: MetaData + name: Northwest Maintenance APC + - type: Transform + pos: -106.5,26.5 + parent: 2 + - uid: 22712 + components: + - type: MetaData + name: Theatre APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-36.5 + parent: 2 + - uid: 24078 + components: + - type: MetaData + name: Surgery APC + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 24477 + components: + - type: MetaData + name: 'Plasma Pit #046 APC' + - type: Transform + pos: -91.5,-60.5 + parent: 2 + - uid: 25110 + components: + - type: MetaData + name: AI Core APC + - type: Transform + rot: 3.141592653589793 rad + pos: -120.5,-88.5 + parent: 2 + - uid: 25136 + components: + - type: MetaData + name: AI Observation APC + - type: Transform + pos: -119.5,-75.5 + parent: 2 + - uid: 25271 + components: + - type: MetaData + name: AI Upload APC + - type: Transform + pos: -121.5,-69.5 + parent: 2 + - uid: 25272 + components: + - type: MetaData + name: AI Power APC + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,-69.5 + parent: 2 + - uid: 25880 + components: + - type: MetaData + name: Solars APC + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,-28.5 + parent: 2 + - uid: 25949 + components: + - type: MetaData + name: Central Hallway APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-11.5 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 2133 + components: + - type: MetaData + name: Bridge APC + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,1.5 + parent: 2 +- proto: APCHyperCapacity + entities: + - uid: 3246 + components: + - type: MetaData + name: Vault APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-3.5 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 23940 + components: + - type: Transform + pos: -61.346176,-4.3438354 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 26176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 +- proto: ArtifactFragment1 + entities: + - uid: 5997 + components: + - type: Transform + pos: -148.53247,-45.469967 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 24939 + components: + - type: Transform + pos: -117.333496,-74.33859 + parent: 2 +- proto: Ash + entities: + - uid: 995 + components: + - type: Transform + pos: -133.85779,0.399868 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: -25.143217,-62.774654 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -24.486967,-66.39966 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: -24.471342,-68.54028 + parent: 2 + - uid: 16888 + components: + - type: Transform + pos: -29.002594,-65.44653 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: -134.32654,-3.3819437 + parent: 2 + - uid: 23433 + components: + - type: Transform + pos: -133.469,-1.4781933 + parent: 2 +- proto: Ashtray + entities: + - uid: 20935 + components: + - type: Transform + pos: -53.49543,-40.523304 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 24941 + components: + - type: Transform + pos: -118.54267,-70.58629 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 145 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -113.5,34.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -109.5,37.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -76.5,5.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -76.5,3.5 + parent: 2 + - uid: 342 + components: + - type: Transform + pos: -77.5,5.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: -70.5,3.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: -108.5,37.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -74.5,3.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -90.5,-6.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -91.5,-10.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -90.5,-9.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -94.5,-7.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: -95.5,-10.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: -117.5,38.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -114.5,38.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -92.5,2.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: -97.5,-50.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -108.5,34.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -94.5,-9.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -132.5,32.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -122.5,-29.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: -94.5,-59.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -125.5,19.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -130.5,33.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -131.5,33.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -107.5,34.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -137.5,7.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -116.5,-32.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -91.5,-6.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -50.5,-74.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -91.5,1.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -96.5,-71.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -107.5,-52.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -99.5,1.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -99.5,-6.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -91.5,-69.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -108.5,36.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -106.5,-40.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -107.5,-38.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -107.5,36.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -109.5,36.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -107.5,35.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: -110.5,34.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -107.5,37.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -114.5,35.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -107.5,-33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -107.5,-34.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -128.5,18.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -90.5,-11.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -88.5,-11.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -129.5,19.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: -109.5,33.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: -100.5,-61.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: -87.5,-11.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -92.5,-69.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -78.5,-11.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -72.5,-11.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -70.5,-11.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -123.5,-29.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -71.5,-11.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -128.5,19.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: -91.5,-15.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -113.5,38.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -93.5,2.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -90.5,2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -94.5,2.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -76.5,-19.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -90.5,1.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -92.5,-10.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -92.5,-70.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -102.5,-34.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -91.5,2.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -92.5,-71.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: -127.5,20.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -93.5,-69.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -108.5,35.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -100.5,-63.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -101.5,-63.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -98.5,-64.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -17.5,-62.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -75.5,3.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -77.5,3.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -91.5,-7.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -91.5,-8.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -77.5,4.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -90.5,-8.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -97.5,-9.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: -97.5,-8.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -98.5,-8.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -91.5,-9.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -20.5,-62.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -90.5,-10.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -96.5,-9.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -100.5,-62.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: -57.5,-50.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -99.5,-60.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -97.5,-10.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -95.5,-7.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: -100.5,-58.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -93.5,-9.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -98.5,-58.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: -96.5,-53.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: -57.5,-49.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: -96.5,-54.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -98.5,-53.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: -97.5,-58.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: -102.5,-37.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: -102.5,-38.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: -97.5,-51.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: -97.5,-54.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -96.5,-49.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: -97.5,-49.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -98.5,-59.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: -106.5,-38.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: -102.5,-35.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: -117.5,-28.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: -19.5,-62.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -117.5,-29.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -116.5,-33.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -117.5,-34.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: -97.5,-53.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: -100.5,-59.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: -59.5,-80.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -97.5,-59.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: -99.5,-53.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: -96.5,-10.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -100.5,-60.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: -101.5,-61.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: -98.5,-61.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: -99.5,-64.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -48.5,-75.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: -98.5,-62.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: -62.5,-74.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: -136.5,30.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: -100.5,-53.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: -48.5,-73.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: -101.5,-60.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -102.5,-61.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -99.5,-58.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -133.5,33.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: -126.5,19.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: -49.5,-74.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -98.5,-63.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: -107.5,-24.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: -123.5,-30.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: -101.5,-19.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: -93.5,-10.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: -99.5,-59.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -99.5,-62.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -99.5,-15.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: -108.5,-35.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: -110.5,-35.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: -109.5,-35.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: -107.5,-53.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: -106.5,-52.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -102.5,-49.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -98.5,-60.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: -106.5,-49.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -106.5,-50.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: -110.5,-53.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -101.5,-59.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: -102.5,-60.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: -108.5,-53.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: -96.5,-68.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -139.5,7.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: -49.5,-75.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: -72.5,-43.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: -99.5,-63.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: -100.5,-17.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: -99.5,-19.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: -99.5,-18.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: -99.5,-17.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -100.5,-19.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -77.5,-15.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -99.5,-16.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -96.5,-7.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -87.5,-15.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -102.5,-62.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -80.5,-15.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -81.5,-15.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: -85.5,-15.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: -102.5,-63.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -82.5,-15.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: -83.5,-15.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -84.5,-15.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -105.5,-6.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -105.5,-7.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -92.5,-8.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -97.5,-7.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: -105.5,-1.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -101.5,-17.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -100.5,-18.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: -100.5,-5.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: -94.5,-8.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: -90.5,-7.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: -96.5,-8.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -94.5,-10.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: -95.5,-9.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: -93.5,-11.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: -99.5,2.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: -95.5,-8.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -99.5,-8.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -99.5,-7.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -101.5,-4.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -137.5,-29.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -107.5,-54.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -100.5,-0.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -100.5,0.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: -47.5,-76.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: -100.5,1.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -108.5,-54.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -127.5,-30.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: -100.5,-4.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: -132.5,-30.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -129.5,-30.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -130.5,-30.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: -131.5,-30.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -110.5,-59.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -55.5,-75.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -136.5,-22.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -133.5,-30.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -137.5,-22.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -135.5,-22.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -73.5,-42.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -74.5,-41.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -100.5,-7.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -100.5,-6.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -93.5,-7.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -101.5,-5.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -93.5,-8.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -43.5,-78.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -106.5,-58.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -135.5,31.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: -135.5,30.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: -101.5,-18.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -99.5,-65.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: -98.5,-7.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: -44.5,-78.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: -98.5,-65.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: -62.5,-75.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: -105.5,-19.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: -48.5,-74.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: -86.5,-15.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -101.5,-62.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: -91.5,-11.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: -92.5,-7.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -48.5,-76.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: -49.5,-76.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: -49.5,-73.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: -51.5,-73.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -50.5,-76.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -50.5,-73.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: -50.5,-75.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: -51.5,-74.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: -52.5,-74.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -98.5,2.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: -51.5,-75.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: -51.5,-76.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -95.5,2.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: -96.5,2.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: -97.5,2.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: -90.5,-0.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: -90.5,-1.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: -90.5,-2.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -90.5,-3.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: -90.5,-4.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: -90.5,-5.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: -52.5,-75.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -100.5,-16.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -52.5,-73.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -90.5,0.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: -16.5,11.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -15.5,11.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -45.5,-78.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -116.5,-34.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -76.5,-18.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -62.5,-68.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: -60.5,-37.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -57.5,-37.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: -61.5,-37.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: -60.5,-50.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -73.5,-46.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -71.5,-48.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -71.5,-48.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -71.5,-49.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -69.5,-50.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -67.5,-50.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -71.5,-47.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -69.5,-49.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -61.5,-50.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -62.5,-70.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: -74.5,-45.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -72.5,-47.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: -71.5,-50.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: -71.5,-49.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -72.5,-46.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -73.5,-45.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -73.5,-47.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -74.5,-46.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -110.5,-38.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: -63.5,-74.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: -54.5,-67.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -55.5,-67.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -116.5,-30.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: -118.5,-33.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -63.5,-71.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -62.5,-73.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -62.5,-71.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -62.5,-76.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -62.5,-69.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -63.5,-69.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -63.5,-72.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -63.5,-75.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -63.5,-70.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: -47.5,-75.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: -56.5,-75.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: -54.5,-75.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: -57.5,-75.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -58.5,-75.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -42.5,-78.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: -41.5,-78.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: -88.5,-10.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -74.5,-30.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -63.5,-68.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -62.5,-72.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -63.5,-73.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -96.5,-58.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: -94.5,-58.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -90.5,-58.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: -88.5,-58.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: -122.5,-34.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -131.5,17.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: -135.5,8.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -139.5,6.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -89.5,-58.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: -94.5,-71.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: -94.5,-72.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -117.5,-30.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -75.5,-34.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -99.5,-20.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: -98.5,-9.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: -80.5,-54.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -88.5,-15.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -86.5,-58.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -108.5,-60.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -89.5,-10.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -132.5,17.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -105.5,-20.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -107.5,-20.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -107.5,-22.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -106.5,-22.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -107.5,-23.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -107.5,-29.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -99.5,-49.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: -106.5,-42.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: -106.5,-41.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -108.5,-37.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -108.5,-36.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -107.5,-37.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -107.5,-35.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -107.5,-36.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -110.5,-37.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -110.5,-36.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -109.5,-37.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -109.5,-36.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -95.5,-72.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -100.5,-20.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -122.5,-30.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -123.5,-28.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -22.5,-71.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: -101.5,-20.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: -93.5,-72.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: -81.5,-59.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: -87.5,-58.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -21.5,-69.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -73.5,4.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -122.5,-31.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -17.5,-69.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -137.5,32.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -136.5,32.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -18.5,-70.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -74.5,-33.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -109.5,-60.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: -97.5,-70.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -17.5,-68.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: -22.5,-69.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: -36.5,23.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: -32.5,23.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: -32.5,24.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: -17.5,22.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: -26.5,23.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: -22.5,23.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: -21.5,24.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: -26.5,24.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: -25.5,24.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -15.5,19.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: -74.5,4.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: -82.5,10.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: -109.5,-53.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -72.5,-45.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: -90.5,-54.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: -94.5,-54.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -92.5,-11.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: -131.5,18.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -129.5,17.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: -128.5,17.5 + parent: 2 + - uid: 9005 + components: + - type: Transform + pos: -130.5,17.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -51.5,-68.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -49.5,-66.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -51.5,-67.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: -47.5,-69.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -47.5,-68.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -56.5,-67.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -93.5,-73.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -100.5,2.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -72.5,-44.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: -74.5,-34.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: -74.5,-40.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: -76.5,-34.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: -73.5,-41.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: -88.5,-68.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + pos: -87.5,-67.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: -87.5,-68.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: -86.5,-67.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + pos: -86.5,-68.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: -83.5,-69.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: -83.5,-68.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + pos: -87.5,-69.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + pos: -86.5,-69.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + pos: -85.5,-69.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + pos: -85.5,-68.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + pos: -84.5,-68.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + pos: -84.5,-69.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + pos: -83.5,-70.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + pos: -85.5,-66.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + pos: -87.5,-62.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: -87.5,-64.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: -87.5,-63.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: -83.5,-67.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: -83.5,-64.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: -83.5,-63.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: -83.5,-62.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: -84.5,-67.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: -84.5,-66.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + pos: -84.5,-65.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: -86.5,-66.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: -86.5,-65.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + pos: -86.5,-64.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: -86.5,-63.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -86.5,-62.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -87.5,-66.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: -87.5,-65.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: -84.5,-64.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + pos: -83.5,-65.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: -84.5,-63.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: -85.5,-67.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: -84.5,-62.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: -85.5,-65.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: -85.5,-64.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: -85.5,-63.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + pos: -85.5,-62.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: -97.5,-62.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: -97.5,-61.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: -97.5,-60.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: -79.5,-54.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: -83.5,-11.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: -97.5,-63.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: -97.5,-64.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: -82.5,-11.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: -133.5,32.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: -118.5,-35.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: -100.5,-50.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: -115.5,-35.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: -99.5,-50.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: -114.5,-35.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -113.5,-35.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: -99.5,-51.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: -100.5,-51.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: -112.5,-35.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: -98.5,-51.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: -98.5,-49.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: -116.5,-28.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -118.5,-31.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -117.5,-33.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -96.5,-70.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -121.5,-35.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -124.5,-29.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: -81.5,-54.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: -136.5,-24.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -136.5,31.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: -116.5,-29.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: -73.5,-43.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: -58.5,-63.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: -58.5,-64.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: -57.5,-62.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: -137.5,8.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: -139.5,8.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -82.5,8.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -75.5,-27.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -74.5,-28.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: -74.5,-29.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: -74.5,-31.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: -134.5,31.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: -133.5,31.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: -132.5,31.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: -131.5,31.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -130.5,31.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -58.5,-62.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -131.5,32.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -130.5,32.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: -123.5,35.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -125.5,35.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: -112.5,33.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -124.5,35.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: -114.5,33.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: -111.5,33.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: -113.5,33.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: -115.5,33.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: -114.5,34.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: -115.5,34.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: -115.5,35.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: -106.5,37.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: -117.5,33.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: -117.5,34.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: -117.5,35.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: -116.5,33.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -116.5,34.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: -116.5,35.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + pos: -85.5,-59.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: -87.5,-59.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: -87.5,-60.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + pos: -86.5,-61.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: -86.5,-60.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + pos: -137.5,31.5 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: -137.5,30.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: -135.5,33.5 + parent: 2 + - uid: 11142 + components: + - type: Transform + pos: -136.5,-32.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + pos: -102.5,-50.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + pos: -101.5,-52.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + pos: -118.5,-32.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: -117.5,-32.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -96.5,-52.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: -98.5,-52.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -99.5,-52.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -97.5,-52.5 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: -100.5,-52.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -111.5,-35.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: -96.5,-50.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -96.5,-51.5 + parent: 2 + - uid: 11890 + components: + - type: Transform + pos: -100.5,-49.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: -50.5,-66.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: -135.5,32.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -72.5,-42.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: -95.5,-71.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: -93.5,-71.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + pos: -136.5,8.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: -134.5,34.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: -118.5,-30.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: -85.5,-54.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: -87.5,-54.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: -136.5,-31.5 + parent: 2 + - uid: 13860 + components: + - type: Transform + pos: -138.5,29.5 + parent: 2 + - uid: 13863 + components: + - type: Transform + pos: -134.5,33.5 + parent: 2 + - uid: 13875 + components: + - type: Transform + pos: -140.5,-22.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: -136.5,33.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: -139.5,-23.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: -139.5,5.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -139.5,3.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: -139.5,-22.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: -139.5,4.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: -86.5,-54.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -83.5,-54.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -92.5,-54.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -84.5,-54.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: -93.5,-54.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: -89.5,-54.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: -88.5,-54.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: -82.5,-54.5 + parent: 2 + - uid: 14616 + components: + - type: Transform + pos: -138.5,-24.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -74.5,-27.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + pos: -136.5,7.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: -73.5,-33.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: -101.5,1.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: -101.5,2.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: -101.5,0.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -100.5,3.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: -73.5,-30.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -92.5,-15.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -73.5,-44.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: -92.5,-9.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + pos: -74.5,-47.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: -124.5,-28.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -94.5,-73.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -99.5,-66.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: -98.5,-66.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -97.5,-65.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -97.5,-66.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -99.5,-67.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -98.5,-67.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -97.5,-67.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -102.5,-68.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -99.5,-68.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -98.5,-68.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -97.5,-68.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -103.5,-68.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -96.5,-69.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -102.5,-69.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: -101.5,-69.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -98.5,-69.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + pos: -97.5,-69.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: -95.5,-69.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + pos: -94.5,-69.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -98.5,-70.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -87.5,-70.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -85.5,-70.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: -86.5,-70.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: -84.5,-70.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: -101.5,-70.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: -100.5,-70.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -95.5,-70.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: -94.5,-70.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: -83.5,-72.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + pos: -82.5,-71.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + pos: -100.5,-71.5 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: -99.5,-72.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: -100.5,-72.5 + parent: 2 + - uid: 16165 + components: + - type: Transform + pos: -97.5,-71.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: -86.5,-71.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: -86.5,-72.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -85.5,-71.5 + parent: 2 + - uid: 16171 + components: + - type: Transform + pos: -85.5,-72.5 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -84.5,-72.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -84.5,-71.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: -83.5,-71.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + pos: -80.5,-73.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -99.5,-73.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: -98.5,-73.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -97.5,-73.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: -86.5,-73.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: -85.5,-73.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: -84.5,-73.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: -86.5,-74.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: -84.5,-74.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: -87.5,-74.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: -80.5,-74.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: -79.5,-74.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -78.5,-74.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -85.5,-74.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -97.5,-74.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: -96.5,-74.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -92.5,-74.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -91.5,-74.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -87.5,-75.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -86.5,-75.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -85.5,-75.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -84.5,-75.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -80.5,-75.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -79.5,-75.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -96.5,-75.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: -95.5,-75.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: -94.5,-75.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -91.5,-75.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -90.5,-75.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -89.5,-75.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -88.5,-75.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -77.5,-76.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -75.5,-76.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -87.5,-76.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -85.5,-76.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -84.5,-76.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -76.5,-76.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -94.5,-76.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: -93.5,-76.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -86.5,-76.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: -93.5,-77.5 + parent: 2 + - uid: 16275 + components: + - type: Transform + pos: -92.5,-77.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: -90.5,-77.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: -89.5,-77.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: -91.5,-77.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: -84.5,-77.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -80.5,-77.5 + parent: 2 + - uid: 16287 + components: + - type: Transform + pos: -79.5,-77.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: -78.5,-77.5 + parent: 2 + - uid: 16289 + components: + - type: Transform + pos: -77.5,-77.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -76.5,-77.5 + parent: 2 + - uid: 16291 + components: + - type: Transform + pos: -75.5,-77.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: -136.5,-23.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -71.5,-78.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: -69.5,-78.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: -70.5,-78.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: -70.5,-75.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: -87.5,-78.5 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -76.5,-78.5 + parent: 2 + - uid: 16310 + components: + - type: Transform + pos: -75.5,-78.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + pos: -74.5,-78.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + pos: -73.5,-78.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: -72.5,-78.5 + parent: 2 + - uid: 16314 + components: + - type: Transform + pos: -89.5,-78.5 + parent: 2 + - uid: 16315 + components: + - type: Transform + pos: -88.5,-78.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + pos: -86.5,-78.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: -69.5,-79.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: -68.5,-79.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + pos: -67.5,-79.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: -65.5,-79.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: -66.5,-79.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: -64.5,-79.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: -63.5,-79.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: -62.5,-79.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: -86.5,-79.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + pos: -85.5,-79.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: -79.5,-79.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: -78.5,-79.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: -76.5,-80.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: -78.5,-80.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: -77.5,-80.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: -75.5,-80.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: -74.5,-80.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: -73.5,-80.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: -72.5,-80.5 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -71.5,-80.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: -71.5,-81.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: -70.5,-81.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: -68.5,-81.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: -67.5,-81.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -69.5,-81.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -65.5,-81.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -64.5,-81.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -61.5,-81.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -62.5,-81.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -60.5,-81.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: -59.5,-81.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -63.5,-81.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: -66.5,-81.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: -87.5,-61.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -86.5,-59.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -85.5,-60.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: -102.5,-59.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -84.5,-61.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -81.5,-60.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -82.5,-60.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: -83.5,-61.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: -85.5,-61.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: -82.5,-61.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: -82.5,-62.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -82.5,-63.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: -81.5,-63.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: -78.5,-58.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: -78.5,-59.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -78.5,-60.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: -78.5,-62.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: -78.5,-63.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + pos: -79.5,-58.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + pos: -79.5,-59.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: -78.5,-61.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + pos: -79.5,-60.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: -79.5,-61.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + pos: -80.5,-58.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + pos: -79.5,-62.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + pos: -80.5,-60.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + pos: -80.5,-61.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + pos: -80.5,-62.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + pos: -80.5,-63.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: -101.5,-58.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + pos: -81.5,-61.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + pos: -79.5,-63.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + pos: -81.5,-62.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: -105.5,-59.5 + parent: 2 + - uid: 16457 + components: + - type: Transform + pos: -116.5,-35.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: -106.5,-59.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + pos: -122.5,-35.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: -23.5,-72.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: -24.5,-72.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -24.5,-73.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: -25.5,-73.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: -25.5,-74.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: -26.5,-74.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: -28.5,-74.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: -27.5,-74.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: -28.5,-75.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: -29.5,-75.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: -35.5,-76.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: -35.5,-77.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: -36.5,-77.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: -38.5,-77.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: -39.5,-77.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: -37.5,-77.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: -39.5,-78.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: -40.5,-78.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + pos: -132.5,33.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: -45.5,-79.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: -46.5,-79.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: -47.5,-79.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: -49.5,-79.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: -50.5,-79.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: -51.5,-79.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: -52.5,-79.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: -53.5,-79.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: -48.5,-79.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: -80.5,-69.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: -80.5,-68.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: -79.5,-67.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: -81.5,-64.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + pos: -80.5,-70.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -81.5,-65.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: -81.5,-66.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -81.5,-68.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: -81.5,-69.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: -81.5,-70.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: -82.5,-64.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: -82.5,-65.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + pos: -82.5,-66.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + pos: -81.5,-67.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: -82.5,-67.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: -82.5,-68.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: -82.5,-69.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: -82.5,-70.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: -78.5,-64.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: -78.5,-66.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: -78.5,-67.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: -78.5,-65.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + pos: -78.5,-68.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: -79.5,-64.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: -79.5,-65.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: -79.5,-66.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + pos: -79.5,-68.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: -80.5,-65.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: -80.5,-64.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: -80.5,-66.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: -80.5,-67.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: -81.5,-71.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + pos: -80.5,-72.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: -78.5,-70.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: -78.5,-71.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + pos: -78.5,-72.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + pos: -77.5,-71.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + pos: -75.5,-71.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: -80.5,-71.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -77.5,-72.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: -74.5,-71.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: -71.5,-76.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: -64.5,-73.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: -77.5,-70.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: -77.5,-73.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: -72.5,-74.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: -70.5,-68.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: -70.5,-69.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: -70.5,-71.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: -70.5,-70.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -70.5,-72.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: -69.5,-69.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -71.5,-69.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -71.5,-70.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -71.5,-71.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -71.5,-68.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + pos: -74.5,-70.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: -72.5,-68.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -72.5,-70.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: -72.5,-69.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -72.5,-76.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: -73.5,-69.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: -73.5,-70.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: -75.5,-70.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + pos: -74.5,-69.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -75.5,-75.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -75.5,-69.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -77.5,-68.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -77.5,-74.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -70.5,-74.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + pos: -64.5,-74.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: -64.5,-68.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: -64.5,-69.5 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: -64.5,-70.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: -64.5,-71.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: -64.5,-72.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: -70.5,-73.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: -64.5,-75.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: -65.5,-68.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: -65.5,-69.5 + parent: 2 + - uid: 16805 + components: + - type: Transform + pos: -73.5,-76.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: -75.5,-74.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + pos: -69.5,-68.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: -70.5,-76.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: -73.5,-74.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: -74.5,-74.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: -75.5,-73.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: -127.5,19.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + pos: -47.5,-66.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -49.5,-67.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: -49.5,-68.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -92.5,-72.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + pos: -92.5,-73.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: -51.5,-72.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: -73.5,-40.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: -47.5,-77.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: -48.5,-77.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + pos: -51.5,-77.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: -52.5,-77.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: -50.5,-77.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: -49.5,-77.5 + parent: 2 + - uid: 16935 + components: + - type: Transform + pos: -52.5,-76.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + pos: -53.5,-77.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -62.5,-77.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: -64.5,-76.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + pos: -64.5,-77.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + pos: -63.5,-77.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + pos: -65.5,-78.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + pos: -59.5,-78.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + pos: -64.5,-78.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + pos: -63.5,-78.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + pos: -61.5,-78.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: -60.5,-78.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + pos: -62.5,-78.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -61.5,-79.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + pos: -47.5,-73.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -57.5,-67.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: -47.5,-72.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -47.5,-71.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: -48.5,-72.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -49.5,-72.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -50.5,-72.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -47.5,-74.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -56.5,-64.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -57.5,-64.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -56.5,-63.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -57.5,-63.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -136.5,6.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -136.5,3.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -136.5,4.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -136.5,5.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -47.5,-65.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -47.5,-70.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -51.5,-69.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -50.5,-69.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: -49.5,-69.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -50.5,-67.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + pos: -50.5,-68.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + pos: -52.5,-67.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + pos: -53.5,-67.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + pos: -50.5,-70.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + pos: -51.5,-70.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + pos: -49.5,-70.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + pos: -47.5,-67.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + pos: -59.5,-67.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: -60.5,-67.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + pos: -139.5,-24.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: -136.5,-30.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -135.5,-30.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: -136.5,-29.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: -137.5,4.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: -135.5,-24.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: -65.5,-67.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: -71.5,-67.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: -70.5,-67.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: -77.5,-60.5 + parent: 2 + - uid: 17549 + components: + - type: Transform + pos: -68.5,-67.5 + parent: 2 + - uid: 17550 + components: + - type: Transform + pos: -67.5,-67.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: -69.5,-67.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -66.5,-67.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -62.5,-67.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + pos: -117.5,-35.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -118.5,-34.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + pos: -117.5,-31.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -116.5,-31.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + pos: -58.5,-67.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: -77.5,-61.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + pos: -128.5,-30.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + pos: -108.5,-55.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: -109.5,-54.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -132.5,-29.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: -77.5,-67.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: -77.5,-66.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + pos: -133.5,-29.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -137.5,6.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -137.5,3.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: -137.5,5.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: -109.5,-55.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: -109.5,-59.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + pos: -126.5,-30.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: -135.5,-23.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -133.5,-28.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + pos: -134.5,-28.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: -77.5,-63.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + pos: -77.5,-64.5 + parent: 2 + - uid: 19637 + components: + - type: Transform + pos: -77.5,-62.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: -77.5,-65.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: -98.5,-15.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: -99.5,-9.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + pos: -126.5,20.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -106.5,33.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: -101.5,34.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: -108.5,-59.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -89.5,-11.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -132.5,34.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -131.5,34.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + pos: -130.5,34.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + pos: -106.5,36.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: -107.5,33.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -126.5,35.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -106.5,35.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: -106.5,34.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -124.5,36.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -115.5,37.5 + parent: 2 + - uid: 20465 + components: + - type: Transform + pos: -117.5,36.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: -116.5,36.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + pos: -114.5,37.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + pos: -111.5,38.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: -117.5,37.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - uid: 21357 + components: + - type: Transform + pos: -22.5,-67.5 + parent: 2 + - uid: 21358 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 2 + - uid: 21423 + components: + - type: Transform + pos: -90.5,-69.5 + parent: 2 + - uid: 21424 + components: + - type: Transform + pos: -91.5,-70.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: -93.5,-70.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: -89.5,-69.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -88.5,-69.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -116.5,37.5 + parent: 2 + - uid: 21444 + components: + - type: Transform + pos: -123.5,36.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: -115.5,36.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: -115.5,38.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: -109.5,38.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: -110.5,38.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -109.5,35.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 21597 + components: + - type: Transform + pos: -18.5,-62.5 + parent: 2 + - uid: 21598 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 21599 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 21600 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 21601 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: -110.5,37.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: -109.5,34.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: -110.5,33.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -109.5,-52.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: -110.5,-52.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: -106.5,-39.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + pos: -109.5,-38.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: -108.5,-38.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -124.5,-30.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -108.5,-52.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -125.5,-30.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: -116.5,38.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + pos: -101.5,35.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -126.5,-29.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: -125.5,-29.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -21.5,-67.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: -102.5,33.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: -102.5,32.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -102.5,34.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: -108.5,33.5 + parent: 2 + - uid: 22169 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -108.5,38.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -106.5,38.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -105.5,38.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -107.5,38.5 + parent: 2 + - uid: 22427 + components: + - type: Transform + pos: -127.5,33.5 + parent: 2 + - uid: 22428 + components: + - type: Transform + pos: -127.5,34.5 + parent: 2 + - uid: 22429 + components: + - type: Transform + pos: -129.5,33.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: -138.5,30.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: -88.5,-59.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: -88.5,-60.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -135.5,3.5 + parent: 2 + - uid: 22881 + components: + - type: Transform + pos: -61.5,-67.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: -96.5,-59.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: -90.5,-59.5 + parent: 2 + - uid: 22907 + components: + - type: Transform + pos: -89.5,-59.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + pos: -96.5,-60.5 + parent: 2 + - uid: 23055 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 + - uid: 23077 + components: + - type: Transform + pos: -63.5,-76.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: -57.5,-74.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + pos: -59.5,-76.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + pos: -56.5,-74.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + pos: -55.5,-74.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: -61.5,-77.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: -61.5,-76.5 + parent: 2 + - uid: 23090 + components: + - type: Transform + pos: -61.5,-74.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + pos: -60.5,-77.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + pos: -61.5,-75.5 + parent: 2 + - uid: 23093 + components: + - type: Transform + pos: -60.5,-76.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: -60.5,-74.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: -59.5,-77.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: -60.5,-75.5 + parent: 2 + - uid: 23097 + components: + - type: Transform + pos: -59.5,-75.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: -59.5,-74.5 + parent: 2 + - uid: 23102 + components: + - type: Transform + pos: -58.5,-74.5 + parent: 2 + - uid: 23106 + components: + - type: Transform + pos: -53.5,-76.5 + parent: 2 + - uid: 23107 + components: + - type: Transform + pos: -53.5,-74.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + pos: -54.5,-74.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + pos: -53.5,-75.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: -106.5,-51.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: -133.5,34.5 + parent: 2 + - uid: 23127 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: -82.5,9.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + pos: -15.5,9.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: -73.5,-32.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + pos: -73.5,-31.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: -18.5,-69.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: -18.5,-68.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: -106.5,-19.5 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: -22.5,-72.5 + parent: 2 + - uid: 24182 + components: + - type: Transform + pos: -101.5,-49.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: -21.5,-71.5 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: -102.5,-51.5 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: -101.5,-50.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: -43.5,-76.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: -43.5,-75.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: -42.5,-75.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + pos: -76.5,-24.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: -45.5,-75.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: -44.5,-76.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -44.5,-75.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + pos: -106.5,-20.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + pos: -101.5,-51.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -73.5,-29.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + pos: -46.5,-75.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + pos: -46.5,-76.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + pos: -42.5,-76.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + pos: -45.5,-76.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + pos: -41.5,-75.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + pos: -41.5,-76.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + pos: -41.5,-74.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + pos: -41.5,-73.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + pos: -41.5,-72.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + pos: -41.5,-71.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + pos: -42.5,-71.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + pos: -43.5,-71.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + pos: -44.5,-71.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: -46.5,-71.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: -45.5,-71.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + pos: -46.5,-72.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + pos: -46.5,-73.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + pos: -46.5,-74.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + pos: -106.5,-48.5 + parent: 2 + - uid: 25453 + components: + - type: Transform + pos: -89.5,-15.5 + parent: 2 + - uid: 25780 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 25781 + components: + - type: Transform + pos: -13.5,-57.5 + parent: 2 + - uid: 25783 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 25787 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 25791 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 25835 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 25839 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 25840 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 3444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-25.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-27.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -135.5,-57.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -137.5,15.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-65.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + pos: -81.5,-82.5 + parent: 2 + - uid: 22368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - uid: 22369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,12.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,20.5 + parent: 2 + - uid: 22371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - uid: 22372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 22986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 22987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 22988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,18.5 + parent: 2 + - uid: 22989 + components: + - type: Transform + pos: -83.5,-82.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 2 + - uid: 22992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,26.5 + parent: 2 + - uid: 25850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,-62.5 + parent: 2 + - uid: 26167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,7.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 3618 + components: + - type: Transform + pos: -129.5,5.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -128.5,5.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -127.5,5.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -127.5,7.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -128.5,7.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -129.5,7.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -129.5,3.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -128.5,1.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: -127.5,3.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: -128.5,3.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: -127.5,1.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -129.5,1.5 + parent: 2 + - uid: 22437 + components: + - type: Transform + pos: -111.5,3.5 + parent: 2 + - uid: 22438 + components: + - type: Transform + pos: -111.5,2.5 + parent: 2 + - uid: 22439 + components: + - type: Transform + pos: -111.5,1.5 + parent: 2 + - uid: 22443 + components: + - type: Transform + pos: -109.5,3.5 + parent: 2 + - uid: 22444 + components: + - type: Transform + pos: -109.5,2.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: -111.5,9.5 + parent: 2 + - uid: 22446 + components: + - type: Transform + pos: -109.5,1.5 + parent: 2 + - uid: 22447 + components: + - type: Transform + pos: -111.5,8.5 + parent: 2 + - uid: 22448 + components: + - type: Transform + pos: -111.5,7.5 + parent: 2 + - uid: 22449 + components: + - type: Transform + pos: -110.5,7.5 + parent: 2 + - uid: 22450 + components: + - type: Transform + pos: -109.5,8.5 + parent: 2 + - uid: 22451 + components: + - type: Transform + pos: -110.5,8.5 + parent: 2 + - uid: 22452 + components: + - type: Transform + pos: -110.5,9.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + pos: -109.5,9.5 + parent: 2 + - uid: 22454 + components: + - type: Transform + pos: -109.5,7.5 + parent: 2 + - uid: 22464 + components: + - type: Transform + pos: -148.5,1.5 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: -148.5,2.5 + parent: 2 + - uid: 22466 + components: + - type: Transform + pos: -147.5,1.5 + parent: 2 + - uid: 22467 + components: + - type: Transform + pos: -147.5,2.5 + parent: 2 + - uid: 22468 + components: + - type: Transform + pos: -147.5,3.5 + parent: 2 + - uid: 22469 + components: + - type: Transform + pos: -146.5,1.5 + parent: 2 + - uid: 22470 + components: + - type: Transform + pos: -146.5,2.5 + parent: 2 + - uid: 22471 + components: + - type: Transform + pos: -146.5,3.5 + parent: 2 + - uid: 22472 + components: + - type: Transform + pos: -148.5,3.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-26.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-27.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-27.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-27.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-26.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-27.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-26.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-27.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-28.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -82.5,-5.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: -82.5,-4.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: -82.5,-2.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -82.5,-3.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: -82.5,-1.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -83.5,-5.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: -83.5,-4.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -83.5,-3.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -88.5,-1.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -88.5,-2.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -88.5,-3.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: -87.5,-1.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: -86.5,-3.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: -85.5,-4.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: -88.5,-5.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -87.5,-4.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -88.5,-4.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: -86.5,-4.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: -87.5,-5.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -86.5,2.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -87.5,-3.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -86.5,1.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: -86.5,-1.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: -87.5,-2.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: -85.5,0.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -85.5,-1.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: -85.5,1.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: -85.5,2.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: -86.5,-5.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: -86.5,-2.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: -86.5,0.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -84.5,2.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -85.5,-5.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: -85.5,-3.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: -85.5,-2.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: -84.5,1.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: -85.5,-0.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -83.5,-1.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: -84.5,-5.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -84.5,-4.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: -84.5,-3.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: -84.5,-2.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -84.5,-1.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: -84.5,0.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 844 + components: + - type: Transform + pos: -129.5,11.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -127.5,11.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: -128.5,11.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 3759 + components: + - type: Transform + pos: -128.5,9.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: -129.5,9.5 + parent: 2 + - uid: 22806 + components: + - type: Transform + pos: -127.5,9.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 5717 + components: + - type: Transform + pos: -110.5,3.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: -110.5,2.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -110.5,1.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 5871 + components: + - type: Transform + pos: -110.5,-16.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: -103.5,16.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -121.5,-37.5 + parent: 2 +- proto: BannerCargo + entities: + - uid: 15922 + components: + - type: Transform + pos: -102.5,8.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 7577 + components: + - type: Transform + pos: -112.5,-11.5 + parent: 2 +- proto: BannerMedical + entities: + - uid: 978 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 2799 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 7578 + components: + - type: Transform + pos: -112.5,-43.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 15912 + components: + - type: Transform + pos: -95.5,-17.5 + parent: 2 +- proto: BarberScissors + entities: + - uid: 3403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-38.5 + parent: 2 +- proto: Barricade + entities: + - uid: 2132 + components: + - type: Transform + pos: -75.5,-49.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -73.5,-49.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 25907 + components: + - type: Transform + pos: -76.5,-49.5 + parent: 2 +- proto: BarSignEngineChange + entities: + - uid: 8776 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 +- proto: BarSignRobustaCafe + entities: + - uid: 15680 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 22381 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 9740 + components: + - type: Transform + pos: -118.34879,31.563398 + parent: 2 +- proto: BaseComputer + entities: + - uid: 2712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,5.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,4.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-55.5 + parent: 2 +- proto: BaseComputerAiAccess + entities: + - uid: 12335 + components: + - type: Transform + pos: -83.5,-7.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: -82.5,-7.5 + parent: 2 +- proto: BeachBall + entities: + - uid: 2492 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 +- proto: Beaker + entities: + - uid: 3952 + components: + - type: Transform + pos: -36.59973,-20.604137 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: -36.427856,-20.697887 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -26.594004,-52.75087 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -26.422129,-52.547745 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -133.65073,-43.445347 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: -133.36948,-43.226597 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: -46.741882,-24.273897 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: -46.413757,-24.539522 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: -54.579796,-29.695034 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: -54.22042,-29.585659 + parent: 2 +- proto: Bed + entities: + - uid: 1389 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -98.5,-34.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -71.5,-53.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: -129.5,-15.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -98.5,-26.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -76.5,-30.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -98.5,-30.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -98.5,-22.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -132.5,-51.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: -71.5,-59.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: -112.5,31.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + pos: -90.5,-42.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 2048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,-34.5 + parent: 2 + - uid: 12149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-26.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 7099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,1.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 6290 + components: + - type: Transform + pos: -129.5,-15.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 9709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,31.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 8507 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 +- proto: BedsheetCult + entities: + - uid: 14829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-51.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 6771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-30.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 4148 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-29.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 7040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-26.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-30.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + pos: -90.5,-42.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 950 + components: + - type: Transform + pos: -86.5,34.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 7375 + components: + - type: Transform + pos: -132.5,-51.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 1683 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: -71.5,-53.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 19894 + components: + - type: Transform + pos: -71.5,-59.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 +- proto: BenchBlueComfy + entities: + - uid: 4976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-53.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-52.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-54.5 + parent: 2 +- proto: Biogenerator + entities: + - uid: 16639 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 668 + components: + - type: Transform + pos: -110.5,4.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -110.5,6.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: -148.5,-55.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -100.5,31.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -152.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25870: + - DoorStatus: Input + - uid: 4923 + components: + - type: Transform + pos: -152.5,-5.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: -152.5,-3.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: -147.5,4.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -147.5,-55.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -103.5,20.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -97.5,20.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + pos: -146.5,-55.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: -147.5,-35.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: -148.5,-35.5 + parent: 2 + - uid: 13676 + components: + - type: Transform + pos: -146.5,-35.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: -97.5,18.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: -81.5,17.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: -81.5,21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 23169 + components: + - type: Transform + pos: -106.5,18.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + pos: -103.5,18.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: -98.5,26.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 1825 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2775 + components: + - type: Transform + pos: -69.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2776 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2777 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2778 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2780 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2781 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2783 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2784 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2785 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2786 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2787 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2788 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2789 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2790 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2793 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2794 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2795 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 2796 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4189 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -90.5,-36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 6659 + components: + - type: Transform + pos: -92.5,-36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6757 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 9642 + components: + - type: Transform + pos: -96.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 17813 + components: + - type: Transform + pos: -94.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 17814 + components: + - type: Transform + pos: -95.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: BlockGameArcade + entities: + - uid: 9587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-45.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 21013 + components: + - type: Transform + parent: 10908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21371 + components: + - type: Transform + parent: 10908 - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: [] - - type: GridAtmosphere - version: 2 - data: - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: NavMap - - uid: 20181 + canCollide: False + - type: InsideEntityStorage + - uid: 21372 + components: + - type: Transform + parent: 10908 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21373 + components: + - type: Transform + parent: 10908 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BlueprintFulton + entities: + - uid: 4429 + components: + - type: MetaData + desc: A highly detailed schematic for an older shuttle. A skilled engineer might discern the rough layout of an exploration shuttle - modified nearly beyond recognition. + name: shuttle blueprint + - type: Transform + pos: -55.51698,-77.4413 + parent: 2 + missingComponents: + - Blueprint + - StaticPrice + - DamageOnHighSpeedImpact + - DamageExaminable +- proto: Bonfire + entities: + - uid: 16729 + components: + - type: Transform + pos: -67.5,-73.5 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 26073 + components: + - type: Transform + pos: -48.674294,-54.610935 + parent: 2 + - uid: 26074 + components: + - type: Transform + pos: -48.53367,-54.47031 + parent: 2 + - uid: 26075 + components: + - type: Transform + pos: -48.40867,-54.28281 + parent: 2 +- proto: BooksBag + entities: + - uid: 22392 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1467 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: -48.5,-50.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 +- proto: BookSpaceLaw + entities: + - uid: 9558 + components: + - type: Transform + pos: -98.48817,-43.491272 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: -26.492687,8.519552 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 8791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + pos: -70.5,-35.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-31.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 7320 + components: + - type: Transform + pos: -115.5,-52.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -113.5,-52.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -113.5,-50.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: -115.5,-50.5 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 6471 + components: + - type: Transform + pos: -36.31848,-18.307262 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -147.97498,-45.376217 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 6600 + components: + - type: Transform + pos: -69.44247,-26.461073 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -69.69247,-26.289198 + parent: 2 + - uid: 22282 + components: + - type: Transform + pos: -82.74675,-22.28722 + parent: 2 + - uid: 22283 + components: + - type: Transform + pos: -82.3405,-22.271595 + parent: 2 + - uid: 22284 + components: + - type: Transform + pos: -82.731125,-22.69347 + parent: 2 + - uid: 22285 + components: + - type: Transform + pos: -82.356125,-22.69347 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 6473 + components: + - type: Transform + pos: -40.496006,-33.367466 + parent: 2 +- proto: BoxBottle + entities: + - uid: 6472 + components: + - type: Transform + pos: -35.27236,-27.271065 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: -35.350494,-30.40701 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 9351 + components: + - type: Transform + pos: -42.365578,-66.53682 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -98.52247,-46.534004 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -52.437374,-7.2991943 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 9178 + components: + - type: Transform + pos: -18.498915,-18.369574 + parent: 2 + - uid: 11103 + components: + - type: Transform + pos: -26.504606,-32.4328 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: -51.129547,-54.39753 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: -62.434715,-2.3035812 + parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 19468 + components: + - type: Transform + pos: -52.54664,-7.3773193 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 9043 + components: + - type: Transform + pos: -42.615578,-66.31807 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: -96.58497,-39.400845 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -90.45729,-31.509472 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: -52.656013,-7.5023193 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 3966 + components: + - type: Transform + pos: -31.57716,-18.555086 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -34.601242,-30.38113 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: -40.462494,-21.347675 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 6835 + components: + - type: Transform + pos: -80.4528,-27.475985 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: -93.49786,-32.33868 + parent: 2 +- proto: BoxingBell + entities: + - uid: 16101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-72.5 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 4183 + components: + - type: Transform + pos: -22.202202,-48.277267 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 22278 + components: + - type: Transform + pos: -82.731125,-21.66222 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: -82.403,-21.66222 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: -82.778,-21.365345 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: -82.403,-21.365345 + parent: 2 +- proto: BoxLightbulb + entities: + - uid: 3383 + components: + - type: Transform + pos: -17.48167,-5.364894 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 587 + components: + - type: Transform + pos: -27.5,-72.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + pos: -24.502157,-9.501452 + parent: 2 +- proto: BoxLighttube + entities: + - uid: 3334 + components: + - type: Transform + pos: -17.356392,-5.218974 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 4182 + components: + - type: Transform + pos: -21.629139,-48.317467 + parent: 2 +- proto: BoxPerformer + entities: + - uid: 20950 + components: + - type: Transform + pos: -55.446175,-36.496502 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 4181 + components: + - type: Transform + pos: -22.639702,-48.464767 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -34.443893,-27.24779 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 4187 + components: + - type: Transform + pos: -26.531504,-54.34988 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -35.497005,-27.418947 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -36.615356,-18.119762 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 25672 + components: + - type: Transform + pos: -17.66917,-5.489894 + parent: 2 +- proto: BrigTimer + entities: + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 357: + - Timer: AutoClose + - Start: Close + - Timer: Open + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 915: + - Timer: AutoClose + - Start: Close + - Timer: Open + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 512: + - Timer: AutoClose + - Start: Close + - Timer: Open +- proto: Brutepack + entities: + - uid: 20642 + components: + - type: Transform + pos: -32.480568,-56.536194 + parent: 2 + - uid: 22317 + components: + - type: Transform + pos: -60.85533,-3.5872755 + parent: 2 +- proto: Bucket + entities: + - uid: 4819 + components: + - type: Transform + pos: -82.43224,-49.377106 + parent: 2 + - uid: 8165 + components: + - type: Transform + parent: 7826 + - type: Physics + canCollide: False + - uid: 11188 + components: + - type: Transform + pos: -50.30467,-19.362368 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 1343 + components: + - type: Transform + pos: -102.5,31.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,26.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -97.5,36.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -145.5,-1.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -144.5,-1.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: -138.5,-1.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: -139.5,-1.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -145.5,-49.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -145.5,-41.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-3.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -60.5,4.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,4.25 + parent: 2 + - uid: 21089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,21.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,16.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,22.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 5327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,4.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: -111.5,6.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -114.5,10.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: -137.5,-1.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -152.5,-6.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,-35.5 + parent: 2 +- proto: ButtonFrameExit + entities: + - uid: 2446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + pos: -32.5,-21 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 1226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-61.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-68.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-24.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,13.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,-42.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: -116.5,-48.5 + parent: 2 + - uid: 22377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,19.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,-40.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,-48.5 + parent: 2 + - uid: 26037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 +- proto: ButtonFrameJanitor + entities: + - uid: 7044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -122.5,-42.5 + parent: 2 + - uid: 25627 + components: + - type: Transform + pos: -69.5,-28.5 + parent: 2 + - uid: 25630 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-8.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + pos: -112.5,-13.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,12.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-20.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 7 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: -129.5,-50.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: -68.5,-29.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -107.5,-16.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -72.5,-21.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -134.5,22.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -68.5,-28.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -141.5,-39.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -141.5,-41.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -32.5,-70.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -33.5,-70.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: -138.5,-47.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -138.5,-45.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -138.5,-43.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: -138.5,-50.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: -138.5,-46.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: -86.5,5.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: -42.5,-67.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: -42.5,-63.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: -124.5,0.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: -64.5,1.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -130.5,-32.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: -96.5,-2.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -95.5,-2.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: -95.5,-1.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: -95.5,-0.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: -95.5,-3.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -138.5,-42.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: -138.5,-44.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: -138.5,-48.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: -73.5,-11.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -108.5,-17.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: -119.5,34.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: -119.5,30.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: -119.5,32.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: -119.5,31.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: -118.5,30.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -119.5,33.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -76.5,-55.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: -67.5,5.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: -60.5,3.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: -76.5,-56.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: -76.5,-54.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: -76.5,-57.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: -76.5,-58.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: -64.5,2.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: -64.5,4.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -65.5,-3.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: -70.5,-3.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -104.5,-65.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -75.5,-54.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -95.5,26.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -98.5,32.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -74.5,-54.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -135.5,-39.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: -92.5,-64.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: -95.5,-4.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: -129.5,-39.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -94.5,-2.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -131.5,-39.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -93.5,-2.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -99.5,-2.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -133.5,-39.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -116.5,-6.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -136.5,-39.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -92.5,-62.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -92.5,-63.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -97.5,-2.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: -98.5,-2.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -104.5,-64.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: -93.5,-64.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: -91.5,-64.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -124.5,-32.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: -84.5,-10.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: -84.5,-9.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: -86.5,-4.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: -88.5,-4.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -130.5,-4.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: -88.5,-8.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: -100.5,28.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -100.5,32.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -100.5,29.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -94.5,17.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -98.5,20.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -100.5,26.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -94.5,16.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -100.5,38.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -99.5,23.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -104.5,18.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -104.5,34.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -129.5,-32.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -138.5,-38.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -134.5,-36.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -76.5,-37.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -137.5,-36.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -134.5,-35.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: -136.5,-36.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -138.5,-41.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -138.5,-39.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -135.5,-36.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -134.5,-34.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -134.5,-33.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: -110.5,-47.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: -42.5,-66.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -147.5,1.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -147.5,0.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -147.5,-0.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -48.5,-65.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -119.5,16.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: -124.5,16.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -122.5,12.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: -123.5,16.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -122.5,14.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -125.5,0.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -146.5,2.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: -145.5,2.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -147.5,-1.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: -105.5,25.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: -104.5,29.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: -125.5,-19.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: -125.5,-20.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: -125.5,-21.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -125.5,-22.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -126.5,-22.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -127.5,-22.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -129.5,-22.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -128.5,-22.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -124.5,-22.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: -122.5,-22.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -123.5,-22.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -76.5,-66.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -76.5,-69.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + pos: -86.5,-19.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -86.5,-18.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: -130.5,-5.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -122.5,10.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -128.5,2.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -121.5,16.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -128.5,11.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -45.5,-41.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -104.5,31.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -140.5,-37.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -140.5,-38.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -140.5,-39.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -134.5,-54.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -122.5,16.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: -119.5,-52.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: -120.5,-52.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -121.5,-52.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -122.5,-52.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: -132.5,-39.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: -134.5,-39.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: -130.5,-39.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -128.5,-39.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: -104.5,28.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: -104.5,32.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: -104.5,25.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: -120.5,-51.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: -120.5,-50.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: -120.5,-49.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: -121.5,-49.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: -119.5,-49.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: -118.5,-52.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: -118.5,-51.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: -117.5,-51.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: -116.5,-51.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: -114.5,-51.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: -113.5,-51.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: -115.5,-51.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -117.5,-48.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: -117.5,-47.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: -118.5,-47.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: -119.5,-47.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: -120.5,-47.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -121.5,-47.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: -116.5,-47.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: -115.5,-47.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: -113.5,-47.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: -114.5,-47.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: -117.5,-46.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: -117.5,-45.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: -117.5,-43.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: -117.5,-44.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: -118.5,-43.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: -120.5,-43.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: -121.5,-43.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: -119.5,-43.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: -116.5,-43.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: -115.5,-43.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: -113.5,-43.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: -114.5,-43.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: -115.5,-42.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: -115.5,-40.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: -115.5,-39.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: -115.5,-38.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: -115.5,-41.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: -68.5,-37.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: -76.5,-67.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: -122.5,-14.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -47.5,-61.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -47.5,-63.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: -47.5,-58.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: -128.5,0.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: -128.5,1.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -126.5,0.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: -128.5,3.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: -71.5,-21.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: -128.5,4.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: -85.5,-3.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: -97.5,20.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: -103.5,20.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: -98.5,37.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -98.5,29.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: -98.5,30.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -93.5,34.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: -92.5,34.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: -91.5,34.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: -94.5,40.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: -94.5,42.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: -94.5,41.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: -97.5,30.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: -94.5,29.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: -94.5,26.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + pos: -94.5,28.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + pos: -94.5,27.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -125.5,16.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: -122.5,13.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: -120.5,16.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: -94.5,33.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: -98.5,38.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: -98.5,25.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: -98.5,27.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: -98.5,26.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -88.5,-5.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: -85.5,-0.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: -85.5,1.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: -86.5,-8.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + pos: -100.5,27.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -98.5,33.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + pos: -100.5,30.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: -100.5,36.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: -101.5,26.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + pos: -65.5,-64.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: -134.5,-37.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -123.5,-52.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -55.5,-58.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + pos: -55.5,-56.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: -98.5,35.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -98.5,28.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + pos: -98.5,34.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 11508 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 11510 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 11511 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 11517 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -55.5,-57.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: -128.5,-57.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + pos: -100.5,35.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -98.5,24.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: -122.5,-13.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 13201 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 13202 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -43.5,-38.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: -44.5,-38.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: -45.5,-38.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: -45.5,-37.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + pos: -45.5,-35.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: -45.5,-33.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: -45.5,-36.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + pos: -123.5,0.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -127.5,0.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + pos: -128.5,5.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -128.5,6.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: -128.5,7.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: -128.5,8.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: -104.5,30.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: -104.5,33.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: -126.5,-32.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: -128.5,-32.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: -134.5,-32.5 + parent: 2 + - uid: 13708 + components: + - type: Transform + pos: -133.5,-32.5 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: -88.5,2.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -141.5,-40.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: -143.5,-45.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: -141.5,-43.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: -145.5,-45.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: -141.5,-42.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: -141.5,-45.5 + parent: 2 + - uid: 13803 + components: + - type: Transform + pos: -88.5,3.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: -147.5,4.5 + parent: 2 + - uid: 13818 + components: + - type: Transform + pos: -147.5,2.5 + parent: 2 + - uid: 13828 + components: + - type: Transform + pos: -147.5,-47.5 + parent: 2 + - uid: 13829 + components: + - type: Transform + pos: -147.5,-40.5 + parent: 2 + - uid: 13830 + components: + - type: Transform + pos: -141.5,-48.5 + parent: 2 + - uid: 13835 + components: + - type: Transform + pos: -147.5,-39.5 + parent: 2 + - uid: 13836 + components: + - type: Transform + pos: -152.5,-45.5 + parent: 2 + - uid: 13837 + components: + - type: Transform + pos: -151.5,-45.5 + parent: 2 + - uid: 13839 + components: + - type: Transform + pos: -141.5,-49.5 + parent: 2 + - uid: 13840 + components: + - type: Transform + pos: -147.5,-42.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: -142.5,-45.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: -141.5,-50.5 + parent: 2 + - uid: 13843 + components: + - type: Transform + pos: -141.5,-44.5 + parent: 2 + - uid: 13844 + components: + - type: Transform + pos: -141.5,-51.5 + parent: 2 + - uid: 13845 + components: + - type: Transform + pos: -141.5,-46.5 + parent: 2 + - uid: 13846 + components: + - type: Transform + pos: -141.5,-47.5 + parent: 2 + - uid: 13848 + components: + - type: Transform + pos: -149.5,-47.5 + parent: 2 + - uid: 13849 + components: + - type: Transform + pos: -147.5,-41.5 + parent: 2 + - uid: 13850 + components: + - type: Transform + pos: -145.5,-47.5 + parent: 2 + - uid: 13851 + components: + - type: Transform + pos: -147.5,-43.5 + parent: 2 + - uid: 13852 + components: + - type: Transform + pos: -147.5,-51.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -146.5,-47.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + pos: -148.5,-47.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: -147.5,-49.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: -147.5,-50.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: -145.5,-46.5 + parent: 2 + - uid: 13865 + components: + - type: Transform + pos: -147.5,-48.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: -149.5,-46.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + pos: -127.5,-49.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + pos: -127.5,-48.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: -127.5,-47.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: -127.5,-46.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: -127.5,-44.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: -127.5,-43.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -127.5,-42.5 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: -127.5,-45.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + pos: -126.5,-45.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: -125.5,-45.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: -124.5,-45.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: -123.5,-45.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: -126.5,-42.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: -124.5,-42.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: -125.5,-42.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: -128.5,-42.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: -130.5,-42.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -128.5,-43.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -128.5,-48.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: -129.5,-48.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -129.5,-49.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: -129.5,-43.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: -130.5,-43.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: -129.5,-41.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -129.5,-40.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: -126.5,-40.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + pos: -125.5,-40.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: -127.5,-40.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: -127.5,-39.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + pos: -127.5,-38.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: -127.5,-37.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: -127.5,-36.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: -126.5,-36.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -125.5,-36.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -128.5,-36.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -130.5,-36.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -129.5,-36.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: -123.5,-38.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: -122.5,-39.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: -120.5,-41.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: -119.5,-41.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: -118.5,-39.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: -117.5,-39.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: -121.5,-41.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: -118.5,-38.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: -122.5,-38.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: -122.5,-41.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: -122.5,-40.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: -118.5,-41.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: -118.5,-40.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: -122.5,-37.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: -120.5,-37.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -119.5,-37.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -118.5,-37.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: -121.5,-37.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: -132.5,-32.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: -134.5,-49.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: -134.5,-48.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: -133.5,-48.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: -132.5,-48.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: -132.5,-47.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: -132.5,-45.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: -132.5,-46.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: -131.5,-45.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: -132.5,-44.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: -132.5,-43.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: -134.5,-43.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: -135.5,-43.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: -136.5,-43.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + pos: -133.5,-43.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + pos: -135.5,-48.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: -136.5,-48.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: -136.5,-47.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + pos: -136.5,-46.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + pos: -136.5,-45.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: -136.5,-44.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: -135.5,-49.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: -135.5,-50.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + pos: -134.5,-50.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -138.5,-54.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -129.5,-57.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + pos: -104.5,26.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: -132.5,-57.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: -132.5,-56.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: -132.5,-55.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: -131.5,-57.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: -130.5,-57.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: -138.5,-40.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: -122.5,7.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: -95.5,30.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: -71.5,-59.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + pos: -69.5,-26.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -68.5,-33.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + pos: -122.5,9.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: -132.5,-54.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -87.5,-4.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: -94.5,19.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + pos: -138.5,-52.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: -130.5,-6.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: -138.5,-51.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + pos: -138.5,-53.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: -133.5,-54.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: -122.5,8.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: -138.5,-49.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: -54.5,-50.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: -55.5,-50.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: -55.5,-52.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: -55.5,-54.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: -55.5,-55.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: -53.5,-50.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: -44.5,-45.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: -53.5,-43.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -54.5,-45.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: -54.5,-47.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: -54.5,-48.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -53.5,-48.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -51.5,-48.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: -50.5,-48.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: -46.5,-47.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: -45.5,-51.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: -45.5,-50.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 2 + - uid: 15607 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 15614 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 15615 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: -59.5,-22.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -64.5,-22.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -65.5,-22.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: -65.5,-21.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: -65.5,-20.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: -65.5,-31.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -65.5,-35.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -65.5,-32.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -65.5,-23.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: -65.5,-26.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: -65.5,-27.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: -65.5,-28.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -65.5,-29.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: -65.5,-30.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: -65.5,-25.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: -64.5,-35.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: -63.5,-35.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: -57.5,-32.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + pos: -55.5,-37.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -55.5,-38.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -47.5,-27.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 15765 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + pos: -57.5,-16.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: -66.5,-15.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 15834 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 15842 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + pos: -122.5,11.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + pos: -148.5,-43.5 + parent: 2 + - uid: 15938 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 15941 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 15942 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 15945 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 15946 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 15947 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 15948 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 15949 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 15965 components: - - type: MetaData - name: Атмос Шаттл - type: Transform - pos: 215.75255,-155.91971 - parent: 446 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: kwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAkwAAAAAAkwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAACgAAAAAACgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAkwAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 71: 0,3 - 72: -1,3 - 73: -3,1 - 74: 2,4 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 69: 1,2 - 70: 2,2 - 130: 7,-3 - - node: - color: '#D4D4D43E' - id: BoxGreyscale - decals: - 131: 6,-2 - - node: - color: '#D4D4D496' - id: BoxGreyscale - decals: - 103: 0,2 - 104: 7,1 - 105: 3,4 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 6: 1,-3 - 7: -1,-3 - 8: 3,-3 - 75: 8,2 - 76: 8,1 - 132: 7,-2 - 133: 7,-1 - - node: - color: '#FFFFFFFF' - id: DeliveryGreyscale - decals: - 77: 7,2 - 78: 6,2 - 79: 3,-2 - 80: 1,-2 - 81: -1,-2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 141: 1,1 - 142: 3,2 - 143: 6,1 - 144: 8,2 - 145: -1,2 - 146: 0,3 - 147: 2,4 - 148: 6,-2 - 149: 7,-2 - 150: 6,-2 - 151: 0,0 - 158: 1,-3 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 152: 0,3 - 153: 3,4 - 154: -1,-3 - 155: 5,-3 - 156: 8,1 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 157: -3,1 - - node: - color: '#3EB38866' - id: HerringboneOverlay - decals: - 32: -3,2 - 33: -3,1 - - node: - color: '#3EB38896' - id: MiniTileEndOverlayE - decals: - 36: 3,4 - - node: - color: '#3EB38896' - id: MiniTileEndOverlayW - decals: - 35: 2,4 - - node: - color: '#3EB38896' - id: MiniTileLineOverlayE - decals: - 31: 8,1 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale - decals: - 22: 4,2 - 46: -1,3 - 47: 0,3 - 48: 1,2 - 49: 2,2 - 50: 3,2 - 53: -1,2 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale - decals: - 64: 6,1 - 65: 7,1 - 66: 8,1 - 67: 8,2 - 122: 6,-1 - 123: 6,-2 - 124: 6,-3 - 125: 7,-1 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale180 - decals: - 23: 4,2 - 24: 4,1 - 51: 0,3 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale180 - decals: - 68: 8,2 - 126: 7,-1 - 127: 7,-2 - 128: 7,-3 - 129: 6,-3 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale270 - decals: - 25: 6,1 - 29: 8,2 - 118: 7,-3 - 119: 6,-3 - 120: 6,-2 - 121: 6,-1 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale270 - decals: - 54: -1,2 - 55: -1,3 - - node: - color: '#3EB38896' - id: QuarterTileOverlayGreyscale90 - decals: - 27: 6,1 - 28: 7,1 - 30: 8,2 - 114: 6,-1 - 115: 7,-1 - 116: 7,-2 - 117: 7,-3 - - node: - color: '#EFB34196' - id: QuarterTileOverlayGreyscale90 - decals: - 56: -1,3 - 57: 0,3 - 58: 0,2 - 59: 1,2 - 60: 2,2 - 61: 3,2 - 62: 4,2 - 63: 4,1 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 40959 - -1,0: - 0: 36520 - 1: 4096 - 0,1: - 0: 140 - 1,0: - 0: 3573 - 1,1: - 1: 6 - 1,-1: - 0: 52960 - 2,0: - 0: 272 - 1: 9284 - 2,-1: - 1: 16384 - -1,-1: - 1: 8736 - 0: 2176 - -1,1: - 1: 2 - 0,-2: - 1: 28672 - -1,-2: - 1: 49152 - 0,-1: - 0: 2720 - 1,-2: - 1: 49152 - 2,-2: - 1: 4096 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - uid: 20527 + pos: -149.5,-44.5 + parent: 2 + - uid: 15968 components: - - type: MetaData - name: Шаттл частного адвоката - type: Transform - pos: -219.74486,144.41557 - parent: 446 - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: AgAAAAAAAgAAAAAAkwAAAAAAIwAAAAAAIwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAgAAAAAAkwAAAAAAIwAAAAAAIwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAgAAAAAAkwAAAAAAIwAAAAAAIwAAAAAADwAAAAAADwAAAAAADwAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAADwAAAAAADwAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACgAAAAAACgAAAAAAAwAAAAAADwAAAAAADwAAAAAADgAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAIgAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAkwAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: OccluderTree - - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: Bot - decals: - 65: 4,1 - 66: 3,3 - - node: - color: '#FFFFFFFF' - id: Box - decals: - 67: 0,5 - 120: 0,5 - - node: - color: '#808080FF' - id: BoxGreyscale - decals: - 74: 0,2 - 75: 0,3 - 76: 8,3 - 78: 4,2 - 79: 3,1 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 69: 6,2 - 70: 6,3 - 71: 6,4 - 72: 8,4 - 73: 8,3 - 77: 8,3 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 68: 0,0 - - node: - color: '#FFFFFFFF' - id: Dirt - decals: - 105: 7,5 - 106: 8,4 - 107: 6,2 - 108: 3,2 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 109: 0,4 - 110: 1,2 - 111: 0,1 - 112: 4,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 113: 0,5 - 114: 1,0 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 115: -1,2 - 116: 0,4 - 117: 6,5 - 118: 3,5 - - node: - color: '#203144FF' - id: QuarterTileOverlayGreyscale - decals: - 3: 1,5 - 25: 0,0 - 28: -1,2 - 29: -1,3 - 30: -1,1 - 56: 3,5 - 57: 4,5 - 58: 5,5 - 119: 0,5 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale - decals: - 48: 3,0 - 49: 3,1 - 50: 3,2 - 51: 3,3 - 52: 4,3 - - node: - color: '#203144FF' - id: QuarterTileOverlayGreyscale180 - decals: - 18: 1,5 - 19: 1,4 - 20: 1,3 - 21: 1,2 - 22: 1,1 - 23: 1,0 - 24: 0,0 - 31: -1,1 - 59: 5,5 - 60: 5,4 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale180 - decals: - 43: 4,1 - 44: 4,2 - 45: 4,3 - 46: 4,0 - 47: 3,0 - - node: - color: '#203144FF' - id: QuarterTileOverlayGreyscale270 - decals: - 33: 3,1 - 34: 3,0 - 35: 4,0 - 36: 3,2 - 37: 3,3 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale270 - decals: - 6: 0,5 - 7: -1,4 - 8: -1,3 - 9: -1,2 - 10: 0,1 - 11: 0,0 - 12: 1,0 - - node: - color: '#203144FF' - id: QuarterTileOverlayGreyscale90 - decals: - 27: -1,4 - 32: -1,1 - 38: 3,3 - 39: 4,3 - 40: 4,2 - 41: 4,1 - 42: 4,0 - - node: - color: '#334E6DFF' - id: QuarterTileOverlayGreyscale90 - decals: - 4: 1,5 - 5: 0,5 - 13: 1,0 - 14: 1,1 - 15: 1,2 - 16: 1,3 - 17: 1,4 - 61: 5,4 - 62: 5,5 - 63: 4,5 - 64: 3,5 - - node: - color: '#FFFFFFFF' - id: WarnBox - decals: - 0: 1,-1 - 101: 2,5 - 102: 2,1 - 103: 1,-1 - 104: 1,6 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinLineE - decals: - 80: 5,4 - 81: 5,5 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 48123 - -1,0: - 0: 34944 - 1: 4 - 0,1: - 0: 29427 - -1,1: - 0: 8 - 1: 17472 - 0,2: - 0: 7 - -1,2: - 1: 132 - 0,-1: - 0: 8192 - 1,0: - 0: 56593 - 1,1: - 0: 254 - 1: 4096 - 1,2: - 1: 17 - 1,-1: - 1: 8192 - 2,0: - 0: 4352 - 1: 32 - 2,1: - 0: 17 - 1: 512 - -1,-1: - 1: 16384 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance -- proto: AcousticGuitarInstrument - entities: - - uid: 16374 + pos: -102.5,26.5 + parent: 2 + - uid: 15969 components: - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21963 + pos: -100.5,37.5 + parent: 2 + - uid: 15977 components: - type: Transform - pos: 435.5,387.5 - parent: 1 -- proto: AirAlarm - entities: - - uid: 1858 + pos: -100.5,31.5 + parent: 2 + - uid: 16030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,395.5 - parent: 1 - - type: DeviceList - devices: - - 12852 - - 14585 - - 13581 - - 15077 - - 15076 - - uid: 3703 + pos: -149.5,-43.5 + parent: 2 + - uid: 16035 components: - type: Transform - pos: 407.5,423.5 - parent: 1 - - type: DeviceList - devices: - - 13956 - - 12682 - - 13955 - - 14402 - - 12696 - - 15134 - - 15128 - - uid: 5375 + pos: -146.5,-43.5 + parent: 2 + - uid: 16036 components: - type: Transform - pos: 405.5,419.5 - parent: 1 - - type: DeviceList - devices: - - 13919 - - 12658 - - 14399 - - 15124 - - 15130 - - 15119 - - 15118 - - 15121 - - 15122 - - uid: 6311 + pos: -145.5,-43.5 + parent: 2 + - uid: 16114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,409.5 - parent: 1 - - type: DeviceList - devices: - - 15171 - - 15172 - - 12510 - - 14149 - - 15362 - - uid: 6355 + pos: -15.5,0.5 + parent: 2 + - uid: 16175 components: - type: Transform - pos: 351.5,426.5 - parent: 1 - - uid: 11580 + pos: -100.5,23.5 + parent: 2 + - uid: 16184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 13221 - - 11964 - - 14382 - - 15039 - - 15213 - - 15037 - - uid: 12032 + pos: -128.5,9.5 + parent: 2 + - uid: 16186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,401.5 - parent: 1 - - type: DeviceList - devices: - - 13299 - - 11894 - - 14385 - - 15029 - - 15030 - - 15028 - - 15032 - - 15035 - - uid: 12120 + pos: -41.5,-2.5 + parent: 2 + - uid: 16232 components: - type: Transform - pos: 360.5,394.5 - parent: 1 - - type: DeviceList - devices: - - 15019 - - 15018 - - 15015 - - 15002 - - 15001 - - 15404 - - 15308 - - 15227 - - 14531 - - 12419 - - uid: 13123 + pos: -128.5,12.5 + parent: 2 + - uid: 16233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,395.5 - parent: 1 - - type: DeviceList - devices: - - 12413 - - 15384 - - 14944 - - 14945 - - uid: 13307 + pos: -128.5,10.5 + parent: 2 + - uid: 16273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,412.5 - parent: 1 - - type: DeviceList - devices: - - 15172 - - 14156 - - 15363 - - 12511 - - uid: 15222 + pos: -94.5,22.5 + parent: 2 + - uid: 16486 components: - type: Transform - pos: 345.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 15210 - - 15211 - - 15212 - - 15029 - - 15030 - - 15028 - - 15213 - - 15216 - - 15214 - - 15215 - - 15217 - - 15026 - - 15027 - - 15025 - - uid: 15226 + pos: -128.5,13.5 + parent: 2 + - uid: 16497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 12418 - - 15224 - - 15225 - - 15022 - - 15023 - - 15407 - - 15021 - - 15020 - - 15019 - - uid: 15228 + pos: -12.5,6.5 + parent: 2 + - uid: 16498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,391.5 - parent: 1 - - type: DeviceList - devices: - - 14576 - - 13600 - - 12780 - - 15015 - - 15014 - - 15017 - - 15016 - - uid: 15229 + pos: -34.5,-67.5 + parent: 2 + - uid: 16499 components: - type: Transform - pos: 351.5,394.5 - parent: 1 - - type: DeviceList - devices: - - 12819 - - 13593 - - 15075 - - 15017 - - 14577 - - uid: 15230 + pos: -34.5,-66.5 + parent: 2 + - uid: 16500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,386.5 - parent: 1 - - type: DeviceList - devices: - - 14575 - - 13589 - - 12813 - - 15013 - - 15075 - - 15074 - - 15072 - - 15073 - - 15071 - - uid: 15231 + pos: -32.5,-65.5 + parent: 2 + - uid: 16501 components: - type: Transform - pos: 340.5,395.5 - parent: 1 - - type: DeviceList - devices: - - 15076 - - 14586 - - 12853 - - 13582 - - uid: 15232 + pos: -34.5,-65.5 + parent: 2 + - uid: 16502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,391.5 - parent: 1 - - type: DeviceList - devices: - - 12850 - - 13572 - - 14584 - - 15078 - - 15077 - - 15074 - - uid: 15233 + pos: -33.5,-65.5 + parent: 2 + - uid: 16503 components: - type: Transform - pos: 348.5,401.5 - parent: 1 - - type: DeviceList - devices: - - 14582 - - 13547 - - 12859 - - 15080 - - 15217 - - 15079 - - 15078 - - uid: 15234 + pos: -73.5,-58.5 + parent: 2 + - uid: 16555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,397.5 - parent: 1 - - type: DeviceList - devices: - - 14581 - - 14580 - - 12795 - - 12808 - - 13536 - - 13545 - - 15016 - - 15020 - - 15407 - - 15082 - - 15081 - - 15080 - - uid: 15235 + pos: -42.5,-61.5 + parent: 2 + - uid: 16556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,396.5 - parent: 1 - - type: DeviceList - devices: - - 14583 - - 13562 - - 12863 - - 15216 - - 15214 - - 15215 - - 15079 - - uid: 15236 + pos: -42.5,-60.5 + parent: 2 + - uid: 16640 components: - type: Transform - pos: 353.5,386.5 - parent: 1 - - type: DeviceList - devices: - - 14573 - - 14572 - - 12790 - - 15012 - - 15011 - - uid: 15237 + pos: -85.5,-8.5 + parent: 2 + - uid: 16708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,384.5 - parent: 1 - - type: DeviceList - devices: - - 13623 - - 13628 - - 14574 - - 15012 - - uid: 15238 + pos: -123.5,-57.5 + parent: 2 + - uid: 16721 components: - type: Transform - pos: 329.5,388.5 - parent: 1 - - type: DeviceList - devices: - - 15239 - - 14334 - - 14291 - - 15060 - - 15061 - - 15059 - - uid: 15247 + pos: -115.5,-57.5 + parent: 2 + - uid: 16722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,381.5 - parent: 1 - - type: DeviceList - devices: - - 15245 - - 15246 - - 15243 - - 14339 - - 13117 - - uid: 15248 + pos: -120.5,-57.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: -85.5,-4.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: -121.5,-57.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: -125.5,-57.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: -110.5,-57.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -114.5,-57.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -113.5,-57.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -119.5,-57.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -118.5,-57.5 + parent: 2 + - uid: 16757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 318.5,384.5 - parent: 1 - - type: DeviceList - devices: - - 15246 - - 14340 - - 13116 - - 15244 - - uid: 15249 + pos: -13.5,6.5 + parent: 2 + - uid: 16767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,381.5 - parent: 1 - - type: DeviceList - devices: - - 15065 - - 15067 - - 15066 - - 15069 - - 15070 - - 15068 - - 14338 - - 13118 - - 15242 - - 15245 - - uid: 15250 + pos: -124.5,-57.5 + parent: 2 + - uid: 16769 components: - type: Transform - pos: 312.5,389.5 - parent: 1 - - type: DeviceList - devices: - - 14337 - - 15241 - - 13108 - - 15064 - - 15066 - - 15067 - - 15065 - - uid: 15251 + pos: -136.5,-54.5 + parent: 2 + - uid: 16770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,383.5 - parent: 1 - - type: DeviceList - devices: - - 14341 - - 13122 - - 15410 - - 15069 - - 15070 - - 15068 - - uid: 15252 + pos: -15.5,-0.5 + parent: 2 + - uid: 16780 components: - type: Transform - pos: 321.5,388.5 - parent: 1 - - type: DeviceList - devices: - - 14880 - - 14336 - - 13107 - - 15062 - - 15063 - - 15064 - - uid: 15253 + pos: -106.5,-45.5 + parent: 2 + - uid: 16793 components: - type: Transform - pos: 323.5,388.5 - parent: 1 - - type: DeviceList - devices: - - 13106 - - 15240 - - 14335 - - 15060 - - 15061 - - 15062 - - 15063 - - uid: 15254 + pos: -104.5,-35.5 + parent: 2 + - uid: 16795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 13043 - - 14276 - - 14389 - - 15033 - - uid: 15255 + pos: -100.5,34.5 + parent: 2 + - uid: 16796 components: - type: Transform - pos: 329.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 13301 - - 13053 - - 14386 - - 15032 - - 15036 - - uid: 15256 + pos: -94.5,18.5 + parent: 2 + - uid: 16818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,407.5 - parent: 1 - - type: DeviceList - devices: - - 15038 - - 14387 - - 13219 - - 12012 - - 15036 - - 15037 - - 15035 - - uid: 15257 + pos: -104.5,-46.5 + parent: 2 + - uid: 16824 components: - type: Transform - pos: 332.5,412.5 - parent: 1 - - type: DeviceList - devices: - - 14383 - - 14384 - - 11961 - - 15041 - - 15040 - - 15038 - - 15042 - - 15043 - - uid: 15258 + pos: -104.5,-45.5 + parent: 2 + - uid: 16829 components: - type: Transform - pos: 332.5,415.5 - parent: 1 - - type: DeviceList - devices: - - 11959 - - 14587 - - 13203 - - 15044 - - 15045 - - 15043 - - 15042 - - uid: 15259 + pos: -104.5,-47.5 + parent: 2 + - uid: 16834 components: - type: Transform - pos: 339.5,412.5 - parent: 1 - - type: DeviceList - devices: - - 11962 - - 14589 - - 13220 - - 15040 - - 15041 - - 15046 - - 15039 - - uid: 15260 + pos: -15.5,-2.5 + parent: 2 + - uid: 16843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,410.5 - parent: 1 - - type: DeviceList - devices: - - 15047 - - 11963 - - 14380 - - 13501 - - 15050 - - 15049 - - 15051 - - uid: 15261 + pos: -15.5,-3.5 + parent: 2 + - uid: 16947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 14378 - - 2397 - - 13838 - - 15051 - - 15052 - - uid: 15262 + pos: -36.5,-38.5 + parent: 2 + - uid: 16978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,409.5 - parent: 1 - - type: DeviceList - devices: - - 12007 - - 13837 - - 14381 - - 15049 - - uid: 15263 + pos: -88.5,-6.5 + parent: 2 + - uid: 16994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,414.5 - parent: 1 - - type: DeviceList - devices: - - 13839 - - 11966 - - 14379 - - 15052 - - uid: 15264 + pos: -92.5,-65.5 + parent: 2 + - uid: 17008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,419.5 - parent: 1 - - type: DeviceList - devices: - - 11917 - - 13185 - - 14367 - - 14366 - - 13161 - - 11916 - - 15045 - - 15044 - - 15056 - - 15053 - - uid: 15265 + pos: -34.5,-34.5 + parent: 2 + - uid: 17017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,422.5 - parent: 1 - - type: DeviceList - devices: - - 14377 - - 11919 - - 15053 - - 15054 - - 14376 - - 15058 - - 15057 - - uid: 15266 + pos: -127.5,-57.5 + parent: 2 + - uid: 17019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 321.5,418.5 - parent: 1 - - type: DeviceList - devices: - - 15055 - - 14375 - - 14374 - - 11918 - - 15054 - - uid: 15267 + pos: -112.5,-57.5 + parent: 2 + - uid: 17022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,408.5 - parent: 1 - - uid: 15268 + pos: -32.5,-34.5 + parent: 2 + - uid: 17036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,411.5 - parent: 1 - - uid: 15269 + pos: -32.5,-32.5 + parent: 2 + - uid: 17044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,410.5 - parent: 1 - - uid: 15270 + pos: -88.5,-7.5 + parent: 2 + - uid: 17063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,407.5 - parent: 1 - - uid: 15271 + pos: -85.5,0.5 + parent: 2 + - uid: 17064 components: - type: Transform - pos: 364.5,415.5 - parent: 1 - - uid: 15272 + pos: -85.5,-1.5 + parent: 2 + - uid: 17070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,413.5 - parent: 1 - - uid: 15273 + pos: -87.5,-8.5 + parent: 2 + - uid: 17129 components: - type: Transform - pos: 371.5,419.5 - parent: 1 - - uid: 15274 + pos: -15.5,-4.5 + parent: 2 + - uid: 17146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,414.5 - parent: 1 - - uid: 15275 + pos: -111.5,-57.5 + parent: 2 + - uid: 17184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,410.5 - parent: 1 - - uid: 15276 + pos: -31.5,-36.5 + parent: 2 + - uid: 17205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,406.5 - parent: 1 - - uid: 15277 + pos: -47.5,-59.5 + parent: 2 + - uid: 17208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,406.5 - parent: 1 - - uid: 15278 + pos: -47.5,-60.5 + parent: 2 + - uid: 17247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,409.5 - parent: 1 - - uid: 15279 + pos: -100.5,25.5 + parent: 2 + - uid: 17252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,413.5 - parent: 1 - - uid: 15280 + pos: -100.5,33.5 + parent: 2 + - uid: 17290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,422.5 - parent: 1 - - uid: 15281 + pos: -135.5,-54.5 + parent: 2 + - uid: 17291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,421.5 - parent: 1 - - uid: 15282 + pos: -126.5,-57.5 + parent: 2 + - uid: 17292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,421.5 - parent: 1 - - uid: 15283 + pos: -122.5,-57.5 + parent: 2 + - uid: 17294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,412.5 - parent: 1 - - uid: 15284 + pos: -117.5,-57.5 + parent: 2 + - uid: 17307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,406.5 - parent: 1 - - uid: 15285 + pos: -137.5,-54.5 + parent: 2 + - uid: 17318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,409.5 - parent: 1 - - uid: 15286 + pos: -116.5,-57.5 + parent: 2 + - uid: 17325 components: - type: Transform - pos: 303.5,415.5 - parent: 1 - - uid: 15287 + pos: -138.5,-37.5 + parent: 2 + - uid: 17326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,408.5 - parent: 1 - - uid: 15288 + pos: -138.5,-36.5 + parent: 2 + - uid: 17334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,408.5 - parent: 1 - - uid: 15289 + pos: -144.5,-45.5 + parent: 2 + - uid: 17335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,409.5 - parent: 1 - - uid: 15290 + pos: -150.5,-45.5 + parent: 2 + - uid: 17336 components: - type: Transform - pos: 308.5,417.5 - parent: 1 - - uid: 15291 + pos: -145.5,-44.5 + parent: 2 + - uid: 17337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 14981 - - 14980 - - 14979 - - 6698 - - 14985 - - 13368 - - 12107 - - 14522 - - 14983 - - 14982 - - uid: 15292 + pos: -149.5,-45.5 + parent: 2 + - uid: 17343 components: - type: Transform - pos: 398.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 13363 - - 11888 - - 14393 - - 14979 - - 14980 - - 14981 - - 13898 - - 12091 - - 14394 - - 2761 - - 4804 - - 3643 - - 15123 - - 15147 - - 15111 - - 15110 - - 3980 - - 1738 - - 4802 - - uid: 15294 + pos: -147.5,3.5 + parent: 2 + - uid: 17367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,401.5 - parent: 1 - - type: DeviceList - devices: - - 14436 - - 14435 - - 14434 - - 15149 - - uid: 15295 + pos: -127.5,-32.5 + parent: 2 + - uid: 17509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,394.5 - parent: 1 - - type: DeviceList - devices: - - 14440 - - 14441 - - 14439 - - 14438 - - 14437 - - 14937 - - 11885 - - 15533 - - 14942 - - 15384 - - 14944 - - 14945 - - 12249 - - 12413 - - 1545 - - 14436 - - 14435 - - 14434 - - 2761 - - 4804 - - 3643 - - 15149 - - 4818 - - 3981 - - 3960 - - uid: 15297 + pos: -88.5,5.5 + parent: 2 + - uid: 17537 components: - type: Transform - pos: 398.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 14438 - - 11885 - - 14437 - - 3960 - - 3981 - - 4818 - - 15533 - - 11886 - - 13726 - - 14521 - - 13367 - - 11895 - - 14985 - - 6698 - - 15492 - - uid: 15299 + pos: -131.5,-32.5 + parent: 2 + - uid: 17707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,393.5 - parent: 1 - - type: DeviceList - devices: - - 13370 - - 14520 - - 11896 - - 14987 - - 6708 - - 15492 - - uid: 15300 + pos: -15.5,-64.5 + parent: 2 + - uid: 17748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,380.5 - parent: 1 - - type: DeviceList - devices: - - 14988 - - 7389 - - 11887 - - 14508 - - 13371 - - 14978 - - 14977 - - uid: 15301 + pos: -15.5,-66.5 + parent: 2 + - uid: 17750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,381.5 - parent: 1 - - type: DeviceList - devices: - - 14991 - - 14990 - - 14523 - - 13369 - - 14992 - - 11884 - - uid: 15306 + pos: -16.5,-65.5 + parent: 2 + - uid: 17975 components: - type: Transform - pos: 377.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 11890 - - 13340 - - 14392 - - 11892 - - 13339 - - 14391 - - 15144 - - 5299 - - 15091 - - 15090 - - 14981 - - 14980 - - 14979 - - 4802 - - 1738 - - 3980 - - 14390 - - 11893 - - 13300 - - 15023 - - 15022 - - 15026 - - 15027 - - 15025 - - 15082 - - 15142 - - 15143 - - uid: 15307 + pos: -24.5,-2.5 + parent: 2 + - uid: 18174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,396.5 - parent: 1 - - type: DeviceList - devices: - - 15218 - - 15021 - - 15219 - - 13418 - - 12727 - - 14557 - - uid: 15309 + pos: -94.5,21.5 + parent: 2 + - uid: 18197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,393.5 - parent: 1 - - type: DeviceList - devices: - - 13418 - - 14556 - - 14560 - - 12728 - - uid: 15310 + pos: -73.5,-21.5 + parent: 2 + - uid: 18260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,393.5 - parent: 1 - - type: DeviceList - devices: - - 14525 - - 12717 - - 14559 - - 15221 - - uid: 15311 + pos: -125.5,-32.5 + parent: 2 + - uid: 18475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,397.5 - parent: 1 - - type: DeviceList - devices: - - 14558 - - 14524 - - 12718 - - 15220 - - 15221 - - 15219 - - uid: 15312 + pos: -87.5,-18.5 + parent: 2 + - uid: 18476 components: - type: Transform - pos: 371.5,390.5 - parent: 1 - - uid: 15313 + pos: -87.5,-19.5 + parent: 2 + - uid: 18477 components: - type: Transform - pos: 363.5,387.5 - parent: 1 - - type: DeviceList - devices: - - 12746 - - 14563 - - 14564 - - 15000 - - 15005 - - 15004 - - 5603 - - 5604 - - 5605 - - uid: 15314 + pos: -87.5,-21.5 + parent: 2 + - uid: 18478 components: - type: Transform - pos: 368.5,382.5 - parent: 1 - - type: DeviceList - devices: - - 14994 - - 11909 - - 14570 - - 13654 - - 15007 - - 15006 - - uid: 15315 + pos: -87.5,-22.5 + parent: 2 + - uid: 18479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,380.5 - parent: 1 - - uid: 15316 + pos: -87.5,-23.5 + parent: 2 + - uid: 18480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,379.5 - parent: 1 - - uid: 15317 + pos: -87.5,-20.5 + parent: 2 + - uid: 18481 components: - type: Transform - pos: 357.5,378.5 - parent: 1 - - uid: 15318 + pos: -88.5,-21.5 + parent: 2 + - uid: 18482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,379.5 - parent: 1 - - uid: 15319 + pos: -89.5,-21.5 + parent: 2 + - uid: 18483 components: - type: Transform - pos: 328.5,442.5 - parent: 1 - - type: DeviceList - devices: - - 15320 - - 14365 - - 15602 - - uid: 15321 + pos: -91.5,-21.5 + parent: 2 + - uid: 18484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,410.5 - parent: 1 - - type: DeviceList - devices: - - 13981 - - 12888 - - 15365 - - 15177 - - 15149 - - uid: 15322 + pos: -90.5,-21.5 + parent: 2 + - uid: 18485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,411.5 - parent: 1 - - type: DeviceList - devices: - - 15123 - - 13975 - - 12710 - - 14396 - - 15383 - - 15122 - - uid: 15323 + pos: -91.5,-20.5 + parent: 2 + - uid: 18486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,408.5 - parent: 1 - - type: DeviceList - devices: - - 15120 - - 14397 - - 12625 - - 13905 - - uid: 15324 + pos: -91.5,-19.5 + parent: 2 + - uid: 18487 components: - type: Transform - pos: 401.5,414.5 - parent: 1 - - type: DeviceList - devices: - - 14428 - - 14423 - - 12634 - - 15118 - - uid: 15325 + pos: -90.5,-19.5 + parent: 2 + - uid: 18488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,417.5 - parent: 1 - - type: DeviceList - devices: - - 1159 - - 6249 - - 6254 - - 15119 - - 15117 - - uid: 15327 + pos: -92.5,-18.5 + parent: 2 + - uid: 18489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,422.5 - parent: 1 - - type: DeviceList - devices: - - 12665 - - 13966 - - 14400 - - 15124 - - 15126 - - 15125 - - uid: 15328 + pos: -92.5,-17.5 + parent: 2 + - uid: 18490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 13967 - - 14401 - - 12666 - - 15125 - - 15126 - - 15135 - - uid: 15330 + pos: -92.5,-18.5 + parent: 2 + - uid: 18491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,420.5 - parent: 1 - - type: DeviceList - devices: - - 14404 - - 13951 - - 15128 - - 15129 - - 15130 - - uid: 15332 + pos: -92.5,-19.5 + parent: 2 + - uid: 18492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,419.5 - parent: 1 - - type: DeviceList - devices: - - 13950 - - 12692 - - 14405 - - 15129 - - 15133 - - 15131 - - uid: 15333 + pos: -90.5,-18.5 + parent: 2 + - uid: 18493 components: - type: Transform - pos: 397.5,423.5 - parent: 1 - - type: DeviceList - devices: - - 14406 - - 12693 - - 4410 - - 15131 - - 15132 - - uid: 15334 + pos: -90.5,-17.5 + parent: 2 + - uid: 18494 components: - type: Transform - pos: 397.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 15117 - - 15116 - - 14424 - - 12647 - - 14426 - - uid: 15335 + pos: -91.5,-22.5 + parent: 2 + - uid: 18495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,415.5 - parent: 1 - - type: DeviceList - devices: - - 15116 - - 12652 - - 14427 - - 14425 - - uid: 15336 + pos: -91.5,-23.5 + parent: 2 + - uid: 18496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,409.5 - parent: 1 - - type: DeviceList - devices: - - 14238 - - 12889 - - 15355 - - 15177 - - uid: 15337 + pos: -86.5,-21.5 + parent: 2 + - uid: 18497 components: - type: Transform - pos: 415.5,406.5 - parent: 1 - - type: DeviceList - devices: - - 15157 - - 12383 - - 14454 - - 14102 - - uid: 15338 + pos: -84.5,-21.5 + parent: 2 + - uid: 18498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,402.5 - parent: 1 - - type: DeviceList - devices: - - 12382 - - 14453 - - 14092 - - 15154 - - 15156 - - 15159 - - 15160 - - 15157 - - 14944 - - 14946 - - uid: 15339 + pos: -83.5,-21.5 + parent: 2 + - uid: 18499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,409.5 - parent: 1 - - type: DeviceList - devices: - - 14455 - - 12385 - - 14115 - - 15158 - - 15160 - - 15159 - - uid: 15340 + pos: -82.5,-21.5 + parent: 2 + - uid: 18500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,411.5 - parent: 1 - - type: DeviceList - devices: - - 15161 - - 15158 - - 15156 - - 12384 - - 14456 - - 14108 - - uid: 15341 + pos: -85.5,-30.5 + parent: 2 + - uid: 18501 components: - type: Transform - pos: 423.5,415.5 - parent: 1 - - type: DeviceList - devices: - - 15162 - - 15161 - - 12312 - - 14457 - - 14120 - - uid: 15342 + pos: -85.5,-21.5 + parent: 2 + - uid: 18502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,406.5 - parent: 1 - - uid: 15344 + pos: -82.5,-20.5 + parent: 2 + - uid: 18503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,395.5 - parent: 1 - - type: DeviceList - devices: - - 14053 - - 12417 - - 14446 - - 14449 - - 14447 - - 12431 - - 14948 - - 14947 - - 14946 - - 15384 - - 15382 - - 14945 - - uid: 15345 + pos: -82.5,-22.5 + parent: 2 + - uid: 18504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,402.5 - parent: 1 - - type: DeviceList - devices: - - 14474 - - 12463 - - 14479 - - 15151 - - uid: 15346 + pos: -82.5,-23.5 + parent: 2 + - uid: 18505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 12462 - - 14480 - - 14261 - - 15150 - - uid: 15347 + pos: -82.5,-24.5 + parent: 2 + - uid: 18506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,394.5 - parent: 1 - - type: DeviceList - devices: - - 12461 - - 14481 - - 14262 - - 15152 - - uid: 15348 + pos: -82.5,-19.5 + parent: 2 + - uid: 18507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,390.5 - parent: 1 - - type: DeviceList - devices: - - 14482 - - 12460 - - 14263 - - 15153 - - uid: 15349 + pos: -85.5,-29.5 + parent: 2 + - uid: 18508 components: - type: Transform - pos: 428.5,406.5 - parent: 1 - - type: DeviceList - devices: - - 14260 - - 12482 - - 14484 - - 14483 - - 14259 - - 12433 - - 15152 - - 15150 - - 15151 - - 15153 - - 14949 - - 14947 - - 15154 - - 15155 - - uid: 15350 + pos: -85.5,-28.5 + parent: 2 + - uid: 18509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,406.5 - parent: 1 - - type: DeviceList - devices: - - 14133 - - 14459 - - 621 - - 15169 - - 15170 - - 15167 - - 15168 - - uid: 15351 + pos: -86.5,-28.5 + parent: 2 + - uid: 18510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 12522 - - 14460 - - 14140 - - 15174 - - 15173 - - 15175 - - 15170 - - 15169 - - 15171 - - uid: 15352 + pos: -87.5,-28.5 + parent: 2 + - uid: 18511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,397.5 - parent: 1 - - type: DeviceList - devices: - - 14158 - - 14473 - - 12512 - - 15175 - - uid: 15353 + pos: -88.5,-28.5 + parent: 2 + - uid: 18512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,409.5 - parent: 1 - - type: DeviceList - devices: - - 12590 - - 14211 - - 14463 - - 15186 - - 15185 - - 15178 - - 15173 - - 14461 - - 14166 - - 12539 - - 15184 - - 15182 - - 15183 - - 15181 - - 15180 - - 15179 - - 14466 - - 12569 - - 14465 - - uid: 15354 + pos: -88.5,-27.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: -88.5,-25.5 + parent: 2 + - uid: 18514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,400.5 - parent: 1 - - type: DeviceList - devices: - - 15178 - - 14177 - - 14462 - - 12540 - - 15185 - - uid: 15356 + pos: -88.5,-26.5 + parent: 2 + - uid: 18515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 462.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 14464 - - 14203 - - 14212 - - 15184 - - uid: 15357 + pos: -85.5,-27.5 + parent: 2 + - uid: 18516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 14199 - - 14469 - - 12554 - - 15183 - - uid: 15358 + pos: -85.5,-26.5 + parent: 2 + - uid: 18517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 454.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 14196 - - 12552 - - 14468 - - 15182 - - uid: 15359 + pos: -85.5,-25.5 + parent: 2 + - uid: 18518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 451.5,416.5 - parent: 1 - - type: DeviceList - devices: - - 12553 - - 14467 - - 14185 - - 15181 - - uid: 15360 + pos: -84.5,-27.5 + parent: 2 + - uid: 18519 components: - type: Transform - pos: 446.5,417.5 - parent: 1 - - type: DeviceList - devices: - - 14470 - - 12541 - - 14230 - - 15187 - - 15179 - - 15180 - - 15188 - - uid: 15361 + pos: -83.5,-27.5 + parent: 2 + - uid: 18520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 449.5,421.5 - parent: 1 - - type: DeviceList - devices: - - 15188 - - 15189 - - 14231 - - 14471 - - 12542 - - uid: 15364 + pos: -81.5,-27.5 + parent: 2 + - uid: 18521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 446.5,422.5 - parent: 1 - - type: DeviceList - devices: - - 14472 - - 12543 - - 14232 - - 15189 - - uid: 15366 + pos: -80.5,-27.5 + parent: 2 + - uid: 18522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,387.5 - parent: 1 - - type: DeviceList - devices: - - 12435 - - 14486 - - 14079 - - 14950 - - uid: 15367 + pos: -82.5,-27.5 + parent: 2 + - uid: 18523 components: - type: Transform - pos: 425.5,390.5 - parent: 1 - - type: DeviceList - devices: - - 14485 - - 12434 - - 14078 - - 14949 - - 14950 - - 14951 - - 14948 - - uid: 15368 + pos: -79.5,-31.5 + parent: 2 + - uid: 18524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,386.5 - parent: 1 - - type: DeviceList - devices: - - 14003 - - 12326 - - 15378 - - 15377 - - 14936 - - 14957 - - uid: 15369 + pos: -81.5,-31.5 + parent: 2 + - uid: 18525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,385.5 - parent: 1 - - type: DeviceList - devices: - - 14958 - - 15600 - - 14957 - - 14491 - - 14008 - - 12337 - - uid: 15370 + pos: -82.5,-31.5 + parent: 2 + - uid: 18526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,383.5 - parent: 1 - - type: DeviceList - devices: - - 12338 - - 14490 - - 14030 - - uid: 15371 + pos: -80.5,-31.5 + parent: 2 + - uid: 18527 components: - type: Transform - pos: 410.5,383.5 - parent: 1 - - type: DeviceList - devices: - - 14961 - - 14016 - - 14489 - - 12342 - - 14015 - - 12341 - - 15601 - - 14956 - - uid: 15372 + pos: -82.5,-30.5 + parent: 2 + - uid: 18528 components: - type: Transform - pos: 414.5,380.5 - parent: 1 - - type: DeviceList - devices: - - 14031 - - 14488 - - 12349 - - 14955 - - 14959 - - uid: 15373 + pos: -82.5,-32.5 + parent: 2 + - uid: 18529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,381.5 - parent: 1 - - type: DeviceList - devices: - - 14031 - - 14488 - - 12349 - - 14955 - - 14959 - - 12348 - - 14487 - - 14956 - - 14954 - - 20018 - - uid: 15374 + pos: -82.5,-33.5 + parent: 2 + - uid: 18530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,386.5 - parent: 1 - - type: DeviceList - devices: - - 14953 - - 14042 - - 14445 - - 12370 - - 14952 - - uid: 15375 + pos: -82.5,-34.5 + parent: 2 + - uid: 18531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,390.5 - parent: 1 - - type: DeviceList - devices: - - 14000 - - 12369 - - 14444 - - 15381 - - 15380 - - 15379 - - 14938 - - 15382 - - 14942 - - 14952 - - uid: 15376 + pos: -83.5,-33.5 + parent: 2 + - uid: 18532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,391.5 - parent: 1 - - type: DeviceList - devices: - - 15379 - - 15380 - - 15381 - - 14442 - - 13993 - - 12320 - - 14937 - - 14936 - - 14938 - - 15378 - - 15377 - - uid: 15385 + pos: -84.5,-33.5 + parent: 2 + - uid: 18533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,411.5 - parent: 1 - - type: DeviceList - devices: - - 13901 - - 12617 - - 14395 - - 15147 - - 15120 - - 15383 - - 15121 - - uid: 15387 + pos: -80.5,-33.5 + parent: 2 + - uid: 18534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,422.5 - parent: 1 - - type: DeviceList - devices: - - 12674 - - 13968 - - 15388 - - 15389 - - uid: 15390 + pos: -80.5,-32.5 + parent: 2 + - uid: 18535 components: - type: Transform - pos: 397.5,411.5 - parent: 1 - - type: DeviceList - devices: - - 12921 - - 14429 - - 13887 - - 15113 - - uid: 15391 + pos: -79.5,-32.5 + parent: 2 + - uid: 18536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,410.5 - parent: 1 - - type: DeviceList - devices: - - 12922 - - 14432 - - 13882 - - 15114 - - 15115 - - uid: 15392 + pos: -78.5,-32.5 + parent: 2 + - uid: 18537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,406.5 - parent: 1 - - type: DeviceList - devices: - - 12923 - - 14431 - - 13883 - - 15112 - - uid: 15393 + pos: -77.5,-32.5 + parent: 2 + - uid: 18538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 394.5,406.5 - parent: 1 - - type: DeviceList - devices: - - 12919 - - 13876 - - 14430 - - 14433 - - 13881 - - 12920 - - uid: 15405 + pos: -77.5,-31.5 + parent: 2 + - uid: 18539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,388.5 - parent: 1 - - type: DeviceList - devices: - - 13641 - - 11915 - - 14569 - - 14999 - - 15000 - - 15002 - - 15001 - - 15404 - - 15003 - - uid: 15406 + pos: -77.5,-30.5 + parent: 2 + - uid: 18540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,387.5 - parent: 1 - - type: DeviceList - devices: - - 13615 - - 14571 - - 12791 - - 15003 - - 15014 - - 15013 - - 15011 - - uid: 15409 + pos: -77.5,-29.5 + parent: 2 + - uid: 18541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,397.5 - parent: 1 - - type: DeviceList - devices: - - 14388 - - 14277 - - 13046 - - 15033 - - 15031 - - 15034 - - uid: 15493 + pos: -89.5,-30.5 + parent: 2 + - uid: 18542 components: - type: Transform - pos: 391.5,375.5 - parent: 1 - - type: DeviceList - devices: - - 13372 - - 11906 - - 14507 - - 11907 - - 13373 - - 14978 - - 14977 - - uid: 15494 + pos: -90.5,-30.5 + parent: 2 + - uid: 18543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,371.5 - parent: 1 - - type: DeviceList - devices: - - 14964 - - 14963 - - 14962 - - 14965 - - 14967 - - 14506 - - 11904 - - 13742 - - 15599 - - uid: 15495 + pos: -91.5,-30.5 + parent: 2 + - uid: 18544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,370.5 - parent: 1 - - type: DeviceList - devices: - - 14505 - - 11905 - - 15599 - - 13745 - - uid: 15496 + pos: -91.5,-31.5 + parent: 2 + - uid: 18545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,369.5 - parent: 1 - - type: DeviceList - devices: - - 11901 - - 13729 - - 14493 - - 14965 - - 14963 - - 14962 - - 14964 - - 14967 - - uid: 15497 + pos: -91.5,-32.5 + parent: 2 + - uid: 18546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,370.5 - parent: 1 - - type: DeviceList - devices: - - 13735 - - 14494 - - 11900 - - 14965 - - 14966 - - 14968 - - 14969 - - 14970 - - uid: 15498 + pos: -91.5,-34.5 + parent: 2 + - uid: 18547 components: - type: Transform - pos: 411.5,369.5 - parent: 1 - - type: DeviceList - devices: - - 13751 - - 13136 - - 14496 - - 14969 - - uid: 15499 + pos: -91.5,-35.5 + parent: 2 + - uid: 18548 components: - type: Transform - pos: 411.5,372.5 - parent: 1 - - type: DeviceList - devices: - - 14970 - - 13135 - - 13736 - - 14495 - - uid: 15500 + pos: -91.5,-33.5 + parent: 2 + - uid: 18549 components: - type: Transform - pos: 418.5,372.5 - parent: 1 - - type: DeviceList - devices: - - 13134 - - 14501 - - 14502 - - 14972 - - uid: 15501 + pos: -90.5,-33.5 + parent: 2 + - uid: 18550 components: - type: Transform - pos: 418.5,369.5 - parent: 1 - - type: DeviceList - devices: - - 13133 - - 13768 - - 14497 - - 15504 - - uid: 15502 + pos: -89.5,-33.5 + parent: 2 + - uid: 18551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,370.5 - parent: 1 - - type: DeviceList - devices: - - 14498 - - 14503 - - 10802 - - 14971 - - 14972 - - 15504 - - uid: 15503 + pos: -88.5,-33.5 + parent: 2 + - uid: 18552 components: - type: Transform - pos: 417.5,376.5 - parent: 1 - - type: DeviceList - devices: - - 11903 - - 14504 - - 13760 - - 14971 - - 14976 - - 14963 - - 14966 - - uid: 15505 + pos: -86.5,-33.5 + parent: 2 + - uid: 18553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,362.5 - parent: 1 - - type: DeviceList - devices: - - 15528 - - 13777 - - 12254 - - 14510 - - 15527 - - uid: 15506 + pos: -87.5,-33.5 + parent: 2 + - uid: 18554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,364.5 - parent: 1 - - type: DeviceList - devices: - - 15514 - - 15513 - - 15528 - - 15526 - - 15525 - - 14973 - - 12253 - - 13776 - - 14509 - - uid: 15509 + pos: -92.5,-33.5 + parent: 2 + - uid: 18555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,360.5 - parent: 1 - - type: DeviceList - devices: - - 12307 - - 13802 - - 14515 - - 15517 - - uid: 15511 + pos: -94.5,-33.5 + parent: 2 + - uid: 18556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,359.5 - parent: 1 - - type: DeviceList - devices: - - 15522 - - 15523 - - 13806 - - 14512 - - 12255 - - 13815 - - 14511 - - 12268 - - 15513 - - uid: 15512 + pos: -95.5,-33.5 + parent: 2 + - uid: 18557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,354.5 - parent: 1 - - type: DeviceList - devices: - - 15523 - - 15522 - - 13827 - - 14513 - - 15521 - - uid: 15524 + pos: -96.5,-33.5 + parent: 2 + - uid: 18558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,382.5 - parent: 1 - - type: DeviceList - devices: - - 13728 - - 14492 - - 11899 - - 14961 - - 15531 - - 15532 - - 14962 - - uid: 15529 + pos: -93.5,-33.5 + parent: 2 + - uid: 18559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,356.5 - parent: 1 - - type: DeviceList - devices: - - 14514 - - 12270 - - 13828 - - 15521 - - uid: 15530 + pos: -96.5,-34.5 + parent: 2 + - uid: 18560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,390.5 - parent: 1 - - type: DeviceList - devices: - - 11898 - - 14591 - - 14590 - - 15531 - - 15532 - - 15533 - - uid: 16102 + pos: -96.5,-35.5 + parent: 2 + - uid: 18561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,361.5 - parent: 1 - - type: DeviceList - devices: - - 15518 - - 15517 - - 15516 - - 15515 - - 15519 - - 13795 - - 14518 - - 12298 - - uid: 20182 + pos: -96.5,-31.5 + parent: 2 + - uid: 18562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 20181 - - type: DeviceList - devices: - - 20388 - - 20191 - - 20383 - - 20296 - - 20298 - - 20297 - - uid: 20183 + pos: -96.5,-32.5 + parent: 2 + - uid: 18563 components: - type: Transform - pos: -2.5,3.5 - parent: 20181 - - type: DeviceList - devices: - - 20296 - - 20194 - - 20385 - - 20387 - - uid: 20184 + pos: -97.5,-31.5 + parent: 2 + - uid: 18564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 20181 - - type: DeviceList - devices: - - 20390 - - 20195 - - 20384 - - 20297 - - uid: 20185 + pos: -98.5,-31.5 + parent: 2 + - uid: 18565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,0.5 - parent: 20181 - - type: DeviceList - devices: - - 20192 - - 20382 - - 20391 - - 20298 - - 20299 - - 20386 - - 20389 - - uid: 20528 + pos: -99.5,-31.5 + parent: 2 + - uid: 18566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 20527 - - type: DeviceList - devices: - - 20684 - - 20689 - - 20536 - - 20642 - - 20641 - - 20643 - - uid: 20529 + pos: -96.5,-30.5 + parent: 2 + - uid: 18567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 - parent: 20527 - - type: DeviceList - devices: - - 20685 - - 20538 - - 20687 - - 20642 - - uid: 20530 + pos: -96.5,-29.5 + parent: 2 + - uid: 18568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 20527 - - type: DeviceList - devices: - - 20688 - - 20686 - - 20537 - - 20643 - - uid: 21436 + pos: -96.5,-28.5 + parent: 2 + - uid: 18569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,18.5 - parent: 5072 - - type: DeviceList - devices: - - 21376 - - 21584 - - 21475 - - 21547 - - uid: 21495 + pos: -96.5,-27.5 + parent: 2 + - uid: 18570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,27.5 - parent: 5072 - - type: DeviceList - devices: - - 21496 - - 21368 - - 21430 - - 21459 - - 21499 - - 21361 - - 21543 - - 21461 - - 21325 - - 21314 - - 21768 - - 21784 - - 21492 - - uid: 22141 + pos: -97.5,-27.5 + parent: 2 + - uid: 18571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 381.5,405.5 - parent: 1 - - type: DeviceList - devices: - - 13515 - - 12963 - - 14598 - - 14599 - - 13516 - - 12964 - - 15092 - - 15100 - - 15099 -- proto: AirAlarmVox - entities: - - uid: 15304 + pos: -98.5,-27.5 + parent: 2 + - uid: 18572 components: - type: Transform - pos: 377.5,398.5 - parent: 1 - - type: DeviceList - devices: - - 15302 - - 15305 - - 15303 - - 14982 - - 14983 - - 14998 - - 6696 -- proto: AirCanister - entities: - - uid: 6497 + pos: -99.5,-27.5 + parent: 2 + - uid: 18573 components: - type: Transform - pos: 309.5,427.5 - parent: 1 - - uid: 7372 + pos: -96.5,-26.5 + parent: 2 + - uid: 18574 components: - type: Transform - pos: 324.5,418.5 - parent: 1 - - uid: 7522 + pos: -96.5,-24.5 + parent: 2 + - uid: 18575 components: - type: Transform - pos: 351.5,393.5 - parent: 1 - - uid: 18979 + pos: -96.5,-23.5 + parent: 2 + - uid: 18576 components: - type: Transform - pos: 337.5,389.5 - parent: 1 - - uid: 20531 + pos: -96.5,-25.5 + parent: 2 + - uid: 18577 components: - type: Transform - pos: 0.5,8.5 - parent: 20527 -- proto: Airlock - entities: - - uid: 605 + pos: -97.5,-23.5 + parent: 2 + - uid: 18578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,368.5 - parent: 1 - - uid: 3655 + pos: -99.5,-23.5 + parent: 2 + - uid: 18579 components: - type: Transform - pos: 409.5,371.5 - parent: 1 - - uid: 3656 + pos: -98.5,-23.5 + parent: 2 + - uid: 18580 components: - type: Transform - pos: 409.5,368.5 - parent: 1 - - uid: 3658 + pos: -96.5,-22.5 + parent: 2 + - uid: 18581 components: - type: Transform - pos: 416.5,371.5 - parent: 1 - - uid: 3666 + pos: -96.5,-20.5 + parent: 2 + - uid: 18582 components: - type: Transform - pos: 418.5,362.5 - parent: 1 - - uid: 3667 + pos: -96.5,-19.5 + parent: 2 + - uid: 18583 components: - type: Transform - pos: 420.5,362.5 - parent: 1 - - uid: 3669 + pos: -96.5,-18.5 + parent: 2 + - uid: 18584 components: - type: Transform - pos: 425.5,355.5 - parent: 1 - - uid: 3811 + pos: -96.5,-17.5 + parent: 2 + - uid: 18585 components: - type: Transform - pos: 449.5,404.5 - parent: 1 - - uid: 3812 + pos: -96.5,-21.5 + parent: 2 + - uid: 18586 components: - type: Transform - pos: 451.5,402.5 - parent: 1 - - uid: 3813 + pos: -96.5,-16.5 + parent: 2 + - uid: 18587 components: - type: Transform - pos: 455.5,402.5 - parent: 1 - - uid: 3816 + pos: -95.5,-21.5 + parent: 2 + - uid: 18588 components: - type: Transform - pos: 452.5,413.5 - parent: 1 - - uid: 3817 + pos: -94.5,-21.5 + parent: 2 + - uid: 18589 components: - type: Transform - pos: 455.5,413.5 - parent: 1 - - uid: 3819 + pos: -94.5,-20.5 + parent: 2 + - uid: 18590 components: - type: Transform - pos: 461.5,408.5 - parent: 1 - - uid: 3820 + pos: -95.5,-17.5 + parent: 2 + - uid: 18591 components: - type: Transform - pos: 446.5,418.5 - parent: 1 - - uid: 3821 + pos: -94.5,-17.5 + parent: 2 + - uid: 18592 components: - type: Transform - pos: 451.5,420.5 - parent: 1 - - uid: 4353 + pos: -94.5,-16.5 + parent: 2 + - uid: 18593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,361.5 - parent: 1 - - uid: 4354 + pos: -88.5,-36.5 + parent: 2 + - uid: 18594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,361.5 - parent: 1 - - uid: 4355 + pos: -88.5,-37.5 + parent: 2 + - uid: 18595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,361.5 - parent: 1 - - uid: 18616 + pos: -88.5,-38.5 + parent: 2 + - uid: 18596 components: - type: Transform - pos: 338.5,443.5 - parent: 1 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 3784 + pos: -89.5,-38.5 + parent: 2 + - uid: 18597 components: - type: Transform - pos: 421.5,410.5 - parent: 1 -- proto: AirlockArmoryLocked - entities: - - uid: 3785 + pos: -90.5,-38.5 + parent: 2 + - uid: 18598 components: - type: Transform - pos: 423.5,406.5 - parent: 1 -- proto: AirlockAssemblyCommand - entities: - - uid: 21466 + pos: -92.5,-38.5 + parent: 2 + - uid: 18599 components: - type: Transform - pos: 6.5,17.5 - parent: 5072 - - uid: 21619 + pos: -93.5,-38.5 + parent: 2 + - uid: 18600 components: - type: Transform - pos: 12.5,25.5 - parent: 5072 -- proto: AirlockAssemblyCommandGlass - entities: - - uid: 21307 + pos: -91.5,-38.5 + parent: 2 + - uid: 18601 components: - type: Transform - pos: 1.5,24.5 - parent: 5072 - - uid: 21364 + pos: -87.5,-38.5 + parent: 2 + - uid: 18602 components: - type: Transform - pos: 5.5,25.5 - parent: 5072 - - uid: 21391 + pos: -86.5,-38.5 + parent: 2 + - uid: 18603 components: - type: Transform - pos: 3.5,26.5 - parent: 5072 -- proto: AirlockAssemblyExternalGlass - entities: - - uid: 21875 + pos: -84.5,-38.5 + parent: 2 + - uid: 18604 components: - type: Transform - pos: 16.5,19.5 - parent: 5072 -- proto: AirlockAssemblyHydroponics - entities: - - uid: 16097 + pos: -83.5,-38.5 + parent: 2 + - uid: 18605 components: - type: Transform - pos: 358.5,413.5 - parent: 1 -- proto: AirlockAssemblyMaintenance - entities: - - uid: 21803 + pos: -82.5,-38.5 + parent: 2 + - uid: 18606 components: - type: Transform - pos: -1.5,22.5 - parent: 5072 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 3500 + pos: -81.5,-43.5 + parent: 2 + - uid: 18607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,424.5 - parent: 1 - - uid: 3504 + pos: -80.5,-43.5 + parent: 2 + - uid: 18608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,415.5 - parent: 1 - - uid: 3505 + pos: -85.5,-38.5 + parent: 2 + - uid: 18609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,415.5 - parent: 1 - - uid: 20186 + pos: -83.5,-39.5 + parent: 2 + - uid: 18610 components: - type: Transform - pos: -1.5,2.5 - parent: 20181 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 3501 + pos: -83.5,-40.5 + parent: 2 + - uid: 18611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 323.5,419.5 - parent: 1 - - uid: 3502 + pos: -83.5,-41.5 + parent: 2 + - uid: 18612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,417.5 - parent: 1 - - uid: 3503 + pos: -82.5,-41.5 + parent: 2 + - uid: 18613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,417.5 - parent: 1 - - uid: 3506 + pos: -91.5,-39.5 + parent: 2 + - uid: 18614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,412.5 - parent: 1 - - uid: 3507 + pos: -91.5,-40.5 + parent: 2 + - uid: 18615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,412.5 - parent: 1 - - uid: 20187 + pos: -91.5,-42.5 + parent: 2 + - uid: 18616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 20181 - - uid: 20188 + pos: -91.5,-43.5 + parent: 2 + - uid: 18617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 20181 - - uid: 20189 + pos: -91.5,-44.5 + parent: 2 + - uid: 18618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 20181 -- proto: AirlockBarGlassLocked - entities: - - uid: 3746 + pos: -91.5,-41.5 + parent: 2 + - uid: 18619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,392.5 - parent: 1 -- proto: AirlockBarLocked - entities: - - uid: 3747 + pos: -91.5,-45.5 + parent: 2 + - uid: 18620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,388.5 - parent: 1 - - uid: 3752 + pos: -88.5,-45.5 + parent: 2 + - uid: 18621 components: - type: Transform - pos: 415.5,394.5 - parent: 1 -- proto: AirlockBrigLocked - entities: - - uid: 3754 + pos: -90.5,-45.5 + parent: 2 + - uid: 18622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,398.5 - parent: 1 - - uid: 3755 + pos: -89.5,-45.5 + parent: 2 + - uid: 18623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,394.5 - parent: 1 -- proto: AirlockCaptainGlassLocked - entities: - - uid: 3534 + pos: -87.5,-45.5 + parent: 2 + - uid: 18624 components: - type: Transform - pos: 366.5,410.5 - parent: 1 -- proto: AirlockCaptainLocked - entities: - - uid: 1842 + pos: -86.5,-45.5 + parent: 2 + - uid: 18625 components: - type: Transform - pos: 362.5,409.5 - parent: 1 - - uid: 3523 + pos: -85.5,-45.5 + parent: 2 + - uid: 18626 components: - type: Transform - pos: 370.5,410.5 - parent: 1 - - uid: 3535 + pos: -84.5,-45.5 + parent: 2 + - uid: 18627 components: - type: Transform - pos: 364.5,412.5 - parent: 1 - - uid: 6647 + pos: -83.5,-45.5 + parent: 2 + - uid: 18628 components: - type: Transform - pos: 360.5,409.5 - parent: 1 - - uid: 18217 + pos: -82.5,-45.5 + parent: 2 + - uid: 18629 components: - type: Transform - pos: 362.5,411.5 - parent: 1 - - uid: 21533 + pos: -82.5,-44.5 + parent: 2 + - uid: 18630 components: - - type: MetaData - name: Captain's Bedroom - type: Transform - pos: 9.5,25.5 - parent: 5072 -- proto: AirlockCargoGlassLocked - entities: - - uid: 3492 + pos: -82.5,-43.5 + parent: 2 + - uid: 18631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,391.5 - parent: 1 - - uid: 3621 + pos: -82.5,-42.5 + parent: 2 + - uid: 18632 components: - type: Transform - pos: 366.5,382.5 - parent: 1 - - uid: 4522 + pos: -79.5,-43.5 + parent: 2 + - uid: 18633 components: - type: Transform - pos: 373.5,388.5 - parent: 1 -- proto: AirlockCargoLocked - entities: - - uid: 3619 + pos: -79.5,-44.5 + parent: 2 + - uid: 18634 components: - type: Transform - pos: 364.5,389.5 - parent: 1 - - uid: 16902 + pos: -79.5,-45.5 + parent: 2 + - uid: 18635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,387.5 - parent: 1 -- proto: AirlockChapelLocked - entities: - - uid: 20046 + pos: -79.5,-47.5 + parent: 2 + - uid: 18636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,439.5 - parent: 1 -- proto: AirlockChemistry - entities: - - uid: 18394 + pos: -79.5,-48.5 + parent: 2 + - uid: 18637 components: - type: Transform - pos: 359.5,424.5 - parent: 1 -- proto: AirlockChemistryLocked - entities: - - uid: 3713 + pos: -79.5,-49.5 + parent: 2 + - uid: 18638 components: - type: Transform - pos: 408.5,412.5 - parent: 1 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 3493 + pos: -79.5,-46.5 + parent: 2 + - uid: 18639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,415.5 - parent: 1 - - uid: 3616 + pos: -91.5,-46.5 + parent: 2 + - uid: 18640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,413.5 - parent: 1 - - uid: 4346 + pos: -91.5,-47.5 + parent: 2 + - uid: 18641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 315.5,383.5 - parent: 1 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 3696 + pos: -91.5,-49.5 + parent: 2 + - uid: 18642 components: - type: Transform - pos: 398.5,415.5 - parent: 1 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 3695 + pos: -91.5,-50.5 + parent: 2 + - uid: 18643 components: - type: Transform - pos: 394.5,415.5 - parent: 1 -- proto: AirlockCommandGlassLocked - entities: - - uid: 2210 + pos: -91.5,-48.5 + parent: 2 + - uid: 18644 components: - type: Transform - pos: 372.5,412.5 - parent: 1 - - uid: 3511 + pos: -88.5,-49.5 + parent: 2 + - uid: 18645 components: - type: Transform - pos: 373.5,405.5 - parent: 1 - - uid: 3512 + pos: -88.5,-48.5 + parent: 2 + - uid: 18646 components: - type: Transform - pos: 372.5,405.5 - parent: 1 - - uid: 3516 + pos: -88.5,-47.5 + parent: 2 + - uid: 18647 components: - type: Transform - pos: 386.5,405.5 - parent: 1 - - uid: 3519 + pos: -88.5,-46.5 + parent: 2 + - uid: 18648 components: - type: Transform - pos: 385.5,412.5 - parent: 1 - - uid: 3521 + pos: -85.5,-46.5 + parent: 2 + - uid: 18649 components: - type: Transform - pos: 385.5,415.5 - parent: 1 - - uid: 3522 + pos: -85.5,-47.5 + parent: 2 + - uid: 18650 components: - type: Transform - pos: 386.5,415.5 - parent: 1 - - uid: 3524 + pos: -94.5,-37.5 + parent: 2 + - uid: 18651 components: - type: Transform - pos: 373.5,412.5 - parent: 1 - - uid: 3525 + pos: -95.5,-37.5 + parent: 2 + - uid: 18652 components: - type: Transform - pos: 373.5,415.5 - parent: 1 - - uid: 3526 + pos: -95.5,-38.5 + parent: 2 + - uid: 18653 components: - type: Transform - pos: 372.5,415.5 - parent: 1 - - uid: 3580 + pos: -95.5,-39.5 + parent: 2 + - uid: 18654 components: - type: Transform - pos: 307.5,417.5 - parent: 1 - - uid: 10004 + pos: -95.5,-41.5 + parent: 2 + - uid: 18655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,412.5 - parent: 1 - - uid: 16646 + pos: -95.5,-40.5 + parent: 2 + - uid: 18656 components: - type: Transform - pos: 385.5,405.5 - parent: 1 - - uid: 21303 + pos: -97.5,-45.5 + parent: 2 + - uid: 18657 components: - - type: MetaData - name: Bridge - type: Transform - pos: 3.5,22.5 - parent: 5072 - - uid: 21319 + pos: -96.5,-46.5 + parent: 2 + - uid: 18658 components: - - type: MetaData - name: Heads of Staff Meeting Room - type: Transform - pos: 1.5,25.5 - parent: 5072 -- proto: AirlockCommandLocked - entities: - - uid: 436 + pos: -99.5,-41.5 + parent: 2 + - uid: 18659 components: - type: Transform - pos: 331.5,401.5 - parent: 1 - - uid: 3513 + pos: -97.5,-46.5 + parent: 2 + - uid: 18660 components: - type: Transform - pos: 373.5,408.5 - parent: 1 - - uid: 3514 + pos: -99.5,-40.5 + parent: 2 + - uid: 18661 components: - type: Transform - pos: 372.5,408.5 - parent: 1 - - uid: 3518 + pos: -99.5,-39.5 + parent: 2 + - uid: 18662 components: - type: Transform - pos: 385.5,408.5 - parent: 1 - - uid: 3527 + pos: -99.5,-38.5 + parent: 2 + - uid: 18663 components: - type: Transform - pos: 383.5,410.5 - parent: 1 - - uid: 3528 + pos: -99.5,-36.5 + parent: 2 + - uid: 18664 components: - type: Transform - pos: 375.5,410.5 - parent: 1 - - uid: 3529 + pos: -99.5,-35.5 + parent: 2 + - uid: 18665 components: - type: Transform - pos: 379.5,416.5 - parent: 1 - - uid: 3570 + pos: -99.5,-37.5 + parent: 2 + - uid: 18666 components: - type: Transform - pos: 311.5,411.5 - parent: 1 - - uid: 3571 + pos: -98.5,-37.5 + parent: 2 + - uid: 18667 components: - type: Transform - pos: 310.5,412.5 - parent: 1 - - uid: 3572 + pos: -97.5,-37.5 + parent: 2 + - uid: 18668 components: - type: Transform - pos: 309.5,413.5 - parent: 1 - - uid: 3573 + pos: -96.5,-37.5 + parent: 2 + - uid: 18669 components: - type: Transform - pos: 305.5,413.5 - parent: 1 - - uid: 3574 + pos: -97.5,-42.5 + parent: 2 + - uid: 18670 components: - type: Transform - pos: 304.5,412.5 - parent: 1 - - uid: 3575 + pos: -97.5,-43.5 + parent: 2 + - uid: 18671 components: - type: Transform - pos: 304.5,409.5 - parent: 1 - - uid: 3576 + pos: -97.5,-44.5 + parent: 2 + - uid: 18672 components: - type: Transform - pos: 310.5,409.5 - parent: 1 - - uid: 3577 + pos: -97.5,-47.5 + parent: 2 + - uid: 18673 components: - type: Transform - pos: 309.5,407.5 - parent: 1 - - uid: 3578 + pos: -98.5,-46.5 + parent: 2 + - uid: 18674 components: - type: Transform - pos: 305.5,407.5 - parent: 1 - - uid: 3579 + pos: -100.5,-46.5 + parent: 2 + - uid: 18675 components: - type: Transform - pos: 307.5,415.5 - parent: 1 - - uid: 3581 + pos: -99.5,-46.5 + parent: 2 + - uid: 18676 components: - type: Transform - pos: 307.5,419.5 - parent: 1 - - uid: 3582 + pos: -98.5,-43.5 + parent: 2 + - uid: 18677 components: - type: Transform - pos: 308.5,424.5 - parent: 1 - - uid: 3583 + pos: -99.5,-43.5 + parent: 2 + - uid: 18678 components: - type: Transform - pos: 306.5,424.5 - parent: 1 - - uid: 10006 + pos: -100.5,-45.5 + parent: 2 + - uid: 18679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,408.5 - parent: 1 -- proto: AirlockDetectiveLocked - entities: - - uid: 3787 + pos: -101.5,-45.5 + parent: 2 + - uid: 18680 components: - type: Transform - pos: 412.5,405.5 - parent: 1 - - uid: 3788 + pos: -100.5,-40.5 + parent: 2 + - uid: 18681 components: - type: Transform - pos: 414.5,411.5 - parent: 1 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 558 + pos: -101.5,-40.5 + parent: 2 + - uid: 18682 components: - type: Transform - pos: 331.5,405.5 - parent: 1 - - uid: 1532 + pos: -100.5,-27.5 + parent: 2 + - uid: 18683 components: - type: Transform - pos: 322.5,387.5 - parent: 1 - - uid: 3484 + pos: -100.5,-29.5 + parent: 2 + - uid: 18684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,409.5 - parent: 1 - - type: AccessReader - access: - - - Security - - uid: 3486 + pos: -100.5,-28.5 + parent: 2 + - uid: 18686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,411.5 - parent: 1 - - uid: 3487 + pos: -100.5,-25.5 + parent: 2 + - uid: 18687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,410.5 - parent: 1 - - uid: 3553 + pos: -100.5,-24.5 + parent: 2 + - uid: 18688 components: - type: Transform - pos: 322.5,386.5 - parent: 1 - - uid: 3554 + pos: -100.5,-23.5 + parent: 2 + - uid: 18689 components: - type: Transform - pos: 328.5,387.5 - parent: 1 - - uid: 3555 + pos: -100.5,-26.5 + parent: 2 + - uid: 18690 components: - type: Transform - pos: 328.5,386.5 - parent: 1 -- proto: AirlockEngineeringLocked - entities: - - uid: 1192 + pos: -100.5,-31.5 + parent: 2 + - uid: 18691 components: - type: Transform - pos: 348.5,384.5 - parent: 1 - - uid: 3485 + pos: -100.5,-30.5 + parent: 2 + - uid: 18692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,409.5 - parent: 1 - - uid: 3488 + pos: -100.5,-32.5 + parent: 2 + - uid: 18728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,411.5 - parent: 1 - - uid: 3489 + pos: -36.5,-37.5 + parent: 2 + - uid: 18784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,411.5 - parent: 1 - - uid: 3538 + pos: -138.5,-9.5 + parent: 2 + - uid: 18972 components: - type: Transform - pos: 355.5,412.5 - parent: 1 - - uid: 3541 + pos: -115.5,-13.5 + parent: 2 + - uid: 18975 components: - type: Transform - pos: 322.5,429.5 - parent: 1 - - uid: 3542 + pos: -133.5,22.5 + parent: 2 + - uid: 19054 components: - type: Transform - pos: 360.5,407.5 - parent: 1 - - uid: 3543 + pos: -122.5,-5.5 + parent: 2 + - uid: 19055 components: - type: Transform - pos: 391.5,418.5 - parent: 1 - - uid: 3544 + pos: -123.5,-5.5 + parent: 2 + - uid: 19056 components: - type: Transform - pos: 422.5,423.5 - parent: 1 - - uid: 3545 + pos: -126.5,-4.5 + parent: 2 + - uid: 19057 components: - type: Transform - pos: 422.5,421.5 - parent: 1 - - uid: 3546 + pos: -123.5,-4.5 + parent: 2 + - uid: 19058 components: - type: Transform - pos: 434.5,414.5 - parent: 1 - - uid: 3547 + pos: -124.5,-4.5 + parent: 2 + - uid: 19059 components: - type: Transform - pos: 421.5,384.5 - parent: 1 - - uid: 3548 + pos: -125.5,-4.5 + parent: 2 + - uid: 19060 components: - type: Transform - pos: 363.5,383.5 - parent: 1 - - uid: 3549 + pos: -127.5,-4.5 + parent: 2 + - uid: 19061 components: - type: Transform - pos: 364.5,380.5 - parent: 1 - - uid: 3551 + pos: -128.5,-4.5 + parent: 2 + - uid: 19062 components: - type: Transform - pos: 308.5,383.5 - parent: 1 - - uid: 3556 + pos: -129.5,-4.5 + parent: 2 + - uid: 19081 components: - type: Transform - pos: 318.5,387.5 - parent: 1 - - uid: 3587 + pos: -121.5,-1.5 + parent: 2 + - uid: 19082 components: - type: Transform - pos: 336.5,381.5 - parent: 1 - - uid: 4173 + pos: -121.5,-0.5 + parent: 2 + - uid: 19083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,410.5 - parent: 1 - - uid: 4343 + pos: -121.5,0.5 + parent: 2 + - uid: 19084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 501.5,385.5 - parent: 1 - - uid: 8031 + pos: -122.5,0.5 + parent: 2 + - uid: 19085 components: - type: Transform - pos: 402.5,365.5 - parent: 1 - - uid: 21592 + pos: -122.5,1.5 + parent: 2 + - uid: 19086 components: - type: Transform - pos: 12.5,20.5 - parent: 5072 -- proto: AirlockExternalAtmosphericsLocked - entities: - - uid: 408 + pos: -122.5,2.5 + parent: 2 + - uid: 19087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,424.5 - parent: 1 - - uid: 3508 + pos: -122.5,4.5 + parent: 2 + - uid: 19088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,418.5 - parent: 1 - - uid: 3509 + pos: -122.5,5.5 + parent: 2 + - uid: 19092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,419.5 - parent: 1 - - uid: 3539 + pos: -122.5,3.5 + parent: 2 + - uid: 19103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,428.5 - parent: 1 - - uid: 3540 + pos: -118.5,16.5 + parent: 2 + - uid: 19104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,430.5 - parent: 1 -- proto: AirlockExternalCargoLocked - entities: - - uid: 499 + pos: -117.5,16.5 + parent: 2 + - uid: 19105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 505.5,391.5 - parent: 1 - - uid: 648 + pos: -116.5,16.5 + parent: 2 + - uid: 19106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 503.5,391.5 - parent: 1 - - uid: 21206 + pos: -122.5,6.5 + parent: 2 + - uid: 19107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 511.5,389.5 - parent: 1 - - uid: 21207 + pos: -116.5,6.5 + parent: 2 + - uid: 19108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 511.5,387.5 - parent: 1 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 3494 + pos: -116.5,13.5 + parent: 2 + - uid: 19109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,411.5 - parent: 1 - - uid: 3495 + pos: -116.5,5.5 + parent: 2 + - uid: 19110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,411.5 - parent: 1 - - uid: 3496 + pos: -116.5,4.5 + parent: 2 + - uid: 19111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 317.5,428.5 - parent: 1 - - uid: 3497 + pos: -116.5,2.5 + parent: 2 + - uid: 19112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 319.5,428.5 - parent: 1 - - uid: 3558 + pos: -116.5,3.5 + parent: 2 + - uid: 19113 components: - type: Transform - pos: 298.5,383.5 - parent: 1 - - uid: 3559 + pos: -116.5,1.5 + parent: 2 + - uid: 19114 components: - type: Transform - pos: 299.5,381.5 - parent: 1 - - uid: 3564 + pos: -116.5,0.5 + parent: 2 + - uid: 19115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,389.5 - parent: 1 - - uid: 3565 + pos: -116.5,15.5 + parent: 2 + - uid: 19116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,389.5 - parent: 1 - - uid: 3566 + pos: -116.5,14.5 + parent: 2 + - uid: 19117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,389.5 - parent: 1 - - uid: 3567 + pos: -116.5,12.5 + parent: 2 + - uid: 19118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,389.5 - parent: 1 - - uid: 3588 + pos: -116.5,11.5 + parent: 2 + - uid: 19119 components: - type: Transform - pos: 337.5,380.5 - parent: 1 - - uid: 3589 + pos: -116.5,10.5 + parent: 2 + - uid: 19120 components: - type: Transform - pos: 338.5,378.5 - parent: 1 - - uid: 3775 + pos: -116.5,9.5 + parent: 2 + - uid: 19121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,429.5 - parent: 1 - - uid: 3804 + pos: -116.5,8.5 + parent: 2 + - uid: 19122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,427.5 - parent: 1 - - uid: 3835 + pos: -116.5,7.5 + parent: 2 + - uid: 19123 components: - type: Transform - pos: 400.5,362.5 - parent: 1 - - uid: 3836 + pos: -117.5,0.5 + parent: 2 + - uid: 19124 components: - type: Transform - pos: 400.5,364.5 - parent: 1 - - uid: 9807 + pos: -118.5,0.5 + parent: 2 + - uid: 19125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 294.5,381.5 - parent: 1 - - uid: 11769 + pos: -120.5,0.5 + parent: 2 + - uid: 19126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 296.5,381.5 - parent: 1 -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1845 + pos: -115.5,2.5 + parent: 2 + - uid: 19127 components: - type: Transform - pos: 367.5,379.5 - parent: 1 - - uid: 1856 + pos: -119.5,0.5 + parent: 2 + - uid: 19128 components: - type: Transform - pos: 369.5,379.5 - parent: 1 -- proto: AirlockExternalGlassLocked - entities: - - uid: 21886 + pos: -114.5,2.5 + parent: 2 + - uid: 19129 components: - type: Transform - pos: 16.5,22.5 - parent: 5072 -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 3853 + pos: -112.5,2.5 + parent: 2 + - uid: 19130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,379.5 - parent: 1 - - uid: 3854 + pos: -111.5,2.5 + parent: 2 + - uid: 19131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,386.5 - parent: 1 - - uid: 6017 + pos: -110.5,2.5 + parent: 2 + - uid: 19132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,386.5 - parent: 1 - - uid: 6018 + pos: -113.5,2.5 + parent: 2 + - uid: 19133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,379.5 - parent: 1 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 1501 + pos: -115.5,8.5 + parent: 2 + - uid: 19134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,389.5 - parent: 1 - - uid: 1502 + pos: -113.5,8.5 + parent: 2 + - uid: 19135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,387.5 - parent: 1 - - uid: 1616 + pos: -112.5,8.5 + parent: 2 + - uid: 19136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,379.5 - parent: 1 - - uid: 1617 + pos: -111.5,8.5 + parent: 2 + - uid: 19137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,381.5 - parent: 1 - - uid: 1649 + pos: -110.5,8.5 + parent: 2 + - uid: 19138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,387.5 - parent: 1 - - uid: 1650 + pos: -114.5,8.5 + parent: 2 + - uid: 19139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,389.5 - parent: 1 - - uid: 1652 + pos: -112.5,16.5 + parent: 2 + - uid: 19140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,379.5 - parent: 1 - - uid: 1653 + pos: -115.5,16.5 + parent: 2 + - uid: 19141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,381.5 - parent: 1 -- proto: AirlockExternalGlassShuttleEscape - entities: - - uid: 13522 + pos: -114.5,16.5 + parent: 2 + - uid: 19142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,439.5 - parent: 1 - - uid: 16053 + pos: -113.5,16.5 + parent: 2 + - uid: 19143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,439.5 - parent: 1 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 237 + pos: -111.5,16.5 + parent: 2 + - uid: 19144 components: - type: Transform - pos: 305.5,378.5 - parent: 1 - - uid: 1857 + pos: -110.5,16.5 + parent: 2 + - uid: 19145 components: - type: Transform - pos: 369.5,377.5 - parent: 1 - - uid: 2735 + pos: -109.5,16.5 + parent: 2 + - uid: 19146 components: - type: Transform - pos: 430.5,383.5 - parent: 1 - - uid: 3016 + pos: -108.5,16.5 + parent: 2 + - uid: 19147 components: - type: Transform - pos: 307.5,378.5 - parent: 1 - - uid: 3017 + pos: -107.5,16.5 + parent: 2 + - uid: 19148 components: - type: Transform - pos: 442.5,391.5 - parent: 1 - - uid: 3592 + pos: -109.5,15.5 + parent: 2 + - uid: 19149 components: - type: Transform - pos: 358.5,375.5 - parent: 1 - - uid: 4537 + pos: -109.5,14.5 + parent: 2 + - uid: 19150 components: - type: Transform - pos: 367.5,377.5 - parent: 1 - - uid: 17329 + pos: -115.5,13.5 + parent: 2 + - uid: 19151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 16114 - - uid: 17331 + pos: -114.5,13.5 + parent: 2 + - uid: 19152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 17330 - - uid: 17332 + pos: -113.5,13.5 + parent: 2 + - uid: 19187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 17330 - - uid: 18532 + pos: -140.5,-8.5 + parent: 2 + - uid: 19188 components: - type: Transform - pos: 434.5,383.5 - parent: 1 - - uid: 20190 + pos: -140.5,-7.5 + parent: 2 + - uid: 19189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 20181 -- proto: AirlockExternalLocked - entities: - - uid: 3590 + pos: -140.5,-6.5 + parent: 2 + - uid: 19190 components: - type: Transform - pos: 354.5,377.5 - parent: 1 - - uid: 3591 + pos: -140.5,-4.5 + parent: 2 + - uid: 19191 components: - type: Transform - pos: 356.5,377.5 - parent: 1 - - uid: 4356 + pos: -140.5,-3.5 + parent: 2 + - uid: 19192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,385.5 - parent: 1 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 3728 + pos: -140.5,-5.5 + parent: 2 + - uid: 19193 components: - type: Transform - pos: 408.5,383.5 - parent: 1 -- proto: AirlockFreezerLocked - entities: - - uid: 3727 + pos: -139.5,-5.5 + parent: 2 + - uid: 19194 components: - type: Transform - pos: 410.5,384.5 - parent: 1 -- proto: AirlockGlass - entities: - - uid: 761 + pos: -137.5,-5.5 + parent: 2 + - uid: 19195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,361.5 - parent: 1 - - uid: 3642 + pos: -138.5,-5.5 + parent: 2 + - uid: 19196 components: - type: Transform - pos: 404.5,394.5 - parent: 1 - - uid: 3645 + pos: -137.5,-6.5 + parent: 2 + - uid: 19197 components: - type: Transform - pos: 390.5,394.5 - parent: 1 - - uid: 3646 + pos: -137.5,-7.5 + parent: 2 + - uid: 19198 components: - type: Transform - pos: 389.5,377.5 - parent: 1 - - uid: 3647 + pos: -137.5,-9.5 + parent: 2 + - uid: 19199 components: - type: Transform - pos: 390.5,377.5 - parent: 1 - - uid: 3648 + pos: -136.5,-10.5 + parent: 2 + - uid: 19200 components: - type: Transform - pos: 392.5,405.5 - parent: 1 - - uid: 3649 + pos: -137.5,-8.5 + parent: 2 + - uid: 19201 components: - type: Transform - pos: 393.5,405.5 - parent: 1 - - uid: 3652 + pos: -136.5,-11.5 + parent: 2 + - uid: 19202 components: - type: Transform - pos: 361.5,401.5 - parent: 1 - - uid: 3653 + pos: -154.5,-10.5 + parent: 2 + - uid: 19203 components: - type: Transform - pos: 362.5,401.5 - parent: 1 - - uid: 3654 + pos: -138.5,-10.5 + parent: 2 + - uid: 19204 components: - type: Transform - pos: 362.5,394.5 - parent: 1 - - uid: 3659 + pos: -139.5,-10.5 + parent: 2 + - uid: 19205 components: - type: Transform - pos: 404.5,377.5 - parent: 1 - - uid: 3660 + pos: -141.5,-10.5 + parent: 2 + - uid: 19206 components: - type: Transform - pos: 406.5,371.5 - parent: 1 - - uid: 3661 + pos: -142.5,-10.5 + parent: 2 + - uid: 19207 components: - type: Transform - pos: 406.5,375.5 - parent: 1 - - uid: 3662 + pos: -143.5,-10.5 + parent: 2 + - uid: 19208 components: - type: Transform - pos: 408.5,373.5 - parent: 1 - - uid: 3663 + pos: -144.5,-10.5 + parent: 2 + - uid: 19209 components: - type: Transform - pos: 415.5,373.5 - parent: 1 - - uid: 3664 + pos: -140.5,-10.5 + parent: 2 + - uid: 19210 components: - type: Transform - pos: 415.5,366.5 - parent: 1 - - uid: 3668 + pos: -145.5,-10.5 + parent: 2 + - uid: 19211 components: - type: Transform - pos: 422.5,351.5 - parent: 1 - - uid: 3814 + pos: -147.5,-10.5 + parent: 2 + - uid: 19212 components: - type: Transform - pos: 449.5,413.5 - parent: 1 - - uid: 3815 + pos: -148.5,-10.5 + parent: 2 + - uid: 19213 components: - type: Transform - pos: 450.5,413.5 - parent: 1 - - uid: 4477 + pos: -149.5,-10.5 + parent: 2 + - uid: 19214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,394.5 - parent: 1 -- proto: AirlockGlassShuttle - entities: - - uid: 20532 + pos: -150.5,-10.5 + parent: 2 + - uid: 19215 components: - type: Transform - pos: 1.5,-0.5 - parent: 20527 -- proto: AirlockHeadOfPersonnelGlassLocked - entities: - - uid: 3629 + pos: -146.5,-10.5 + parent: 2 + - uid: 19216 components: - type: Transform - pos: 363.5,397.5 - parent: 1 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 586 + pos: -151.5,-10.5 + parent: 2 + - uid: 19217 components: - type: Transform - pos: 373.5,396.5 - parent: 1 - - uid: 3628 + pos: -152.5,-10.5 + parent: 2 + - uid: 19218 components: - type: Transform - pos: 370.5,396.5 - parent: 1 - - uid: 3631 + pos: -153.5,-10.5 + parent: 2 + - uid: 19219 components: - type: Transform - pos: 372.5,394.5 - parent: 1 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 3756 + pos: -150.5,-9.5 + parent: 2 + - uid: 19220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,390.5 - parent: 1 - - uid: 3757 + pos: -150.5,-8.5 + parent: 2 + - uid: 19221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,390.5 - parent: 1 - - uid: 3758 + pos: -150.5,-6.5 + parent: 2 + - uid: 19222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,388.5 - parent: 1 -- proto: AirlockHydroGlassLocked - entities: - - uid: 2462 + pos: -150.5,-5.5 + parent: 2 + - uid: 19223 components: - type: Transform - pos: 413.5,382.5 - parent: 1 - - uid: 3731 + pos: -150.5,-4.5 + parent: 2 + - uid: 19224 components: - type: Transform - pos: 415.5,380.5 - parent: 1 -- proto: AirlockHydroponicsLocked - entities: - - uid: 3729 + pos: -150.5,-3.5 + parent: 2 + - uid: 19225 components: - type: Transform - pos: 406.5,380.5 - parent: 1 -- proto: AirlockJanitorLocked - entities: - - uid: 5640 + pos: -150.5,-7.5 + parent: 2 + - uid: 19230 components: - type: Transform - pos: 413.5,362.5 - parent: 1 -- proto: AirlockKitchenGlassLocked - entities: - - uid: 3726 + pos: -144.5,-3.5 + parent: 2 + - uid: 19232 components: - type: Transform - pos: 408.5,386.5 - parent: 1 -- proto: AirlockKitchenLocked - entities: - - uid: 2962 + pos: -144.5,-4.5 + parent: 2 + - uid: 19233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,384.5 - parent: 1 - - uid: 3725 + pos: -144.5,-5.5 + parent: 2 + - uid: 19234 components: - type: Transform - pos: 410.5,392.5 - parent: 1 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 20533 + pos: -144.5,-7.5 + parent: 2 + - uid: 19235 components: - type: Transform - pos: 2.5,1.5 - parent: 20527 - - uid: 20534 + pos: -144.5,-8.5 + parent: 2 + - uid: 19236 components: - type: Transform - pos: 2.5,5.5 - parent: 20527 -- proto: AirlockLawyerLocked - entities: - - uid: 3781 + pos: -144.5,-9.5 + parent: 2 + - uid: 19237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,409.5 - parent: 1 - - uid: 3782 + pos: -144.5,-6.5 + parent: 2 + - uid: 19238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,411.5 - parent: 1 -- proto: AirlockMaintAtmoLocked - entities: - - uid: 3499 + pos: -150.5,-11.5 + parent: 2 + - uid: 19239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,430.5 - parent: 1 - - uid: 19199 + pos: -150.5,-12.5 + parent: 2 + - uid: 19240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,427.5 - parent: 1 -- proto: AirlockMaintBarLocked - entities: - - uid: 3744 + pos: -144.5,-11.5 + parent: 2 + - uid: 19241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,386.5 - parent: 1 -- proto: AirlockMaintCargoLocked - entities: - - uid: 1314 + pos: -144.5,-12.5 + parent: 2 + - uid: 19242 components: - type: Transform - pos: 373.5,384.5 - parent: 1 - - uid: 5649 + pos: -150.5,-2.5 + parent: 2 + - uid: 19243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,382.5 - parent: 1 - - uid: 5669 + pos: -149.5,-2.5 + parent: 2 + - uid: 19244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,386.5 - parent: 1 -- proto: AirlockMaintCommandLocked - entities: - - uid: 1438 + pos: -147.5,-2.5 + parent: 2 + - uid: 19245 components: - type: Transform - pos: 388.5,421.5 - parent: 1 - - uid: 1758 + pos: -146.5,-2.5 + parent: 2 + - uid: 19246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,416.5 - parent: 1 - - uid: 3601 + pos: -145.5,-2.5 + parent: 2 + - uid: 19247 components: - type: Transform - pos: 335.5,394.5 - parent: 1 -- proto: AirlockMaintCommonLocked - entities: - - uid: 21732 + pos: -144.5,-2.5 + parent: 2 + - uid: 19248 components: - type: Transform - pos: -4.5,26.5 - parent: 5072 -- proto: AirlockMaintEngiLocked - entities: - - uid: 3491 + pos: -148.5,-2.5 + parent: 2 + - uid: 19263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,411.5 - parent: 1 - - uid: 3552 + pos: -136.5,-12.5 + parent: 2 + - uid: 19264 components: - type: Transform - pos: 331.5,389.5 - parent: 1 -- proto: AirlockMaintHeadOfSecurityLocked - entities: - - uid: 3760 + pos: -136.5,-13.5 + parent: 2 + - uid: 19265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,386.5 - parent: 1 -- proto: AirlockMaintHOPLocked - entities: - - uid: 21588 + pos: -136.5,-15.5 + parent: 2 + - uid: 19266 components: - type: Transform - pos: 11.5,19.5 - parent: 5072 -- proto: AirlockMaintHydroLocked - entities: - - uid: 3732 + pos: -136.5,-16.5 + parent: 2 + - uid: 19267 components: - type: Transform - pos: 417.5,382.5 - parent: 1 - - uid: 3733 + pos: -136.5,-14.5 + parent: 2 + - uid: 19268 components: - type: Transform - pos: 417.5,379.5 - parent: 1 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 5612 + pos: -137.5,-16.5 + parent: 2 + - uid: 19269 components: - type: Transform - pos: 411.5,364.5 - parent: 1 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 20535 + pos: -138.5,-16.5 + parent: 2 + - uid: 19270 components: - type: Transform - pos: 1.5,6.5 - parent: 20527 -- proto: AirlockMaintLocked - entities: - - uid: 2423 + pos: -140.5,-16.5 + parent: 2 + - uid: 19271 components: - type: Transform - pos: 358.5,425.5 - parent: 1 - - uid: 2624 + pos: -139.5,-16.5 + parent: 2 + - uid: 19273 components: - type: Transform - pos: 418.5,365.5 - parent: 1 - - uid: 3689 + pos: -135.5,-10.5 + parent: 2 + - uid: 19274 components: - type: Transform - pos: 390.5,420.5 - parent: 1 - - uid: 3790 + pos: -134.5,-10.5 + parent: 2 + - uid: 19275 components: - type: Transform - pos: 432.5,414.5 - parent: 1 - - uid: 3791 + pos: -132.5,-10.5 + parent: 2 + - uid: 19276 components: - type: Transform - pos: 428.5,419.5 - parent: 1 - - uid: 3792 + pos: -133.5,-10.5 + parent: 2 + - uid: 19327 components: - type: Transform - pos: 419.5,421.5 - parent: 1 - - uid: 3793 + pos: -116.5,-20.5 + parent: 2 + - uid: 19329 components: - type: Transform - pos: 406.5,424.5 - parent: 1 - - uid: 3794 + pos: -117.5,-20.5 + parent: 2 + - uid: 19339 components: - type: Transform - pos: 398.5,424.5 - parent: 1 - - uid: 3795 + pos: -115.5,-11.5 + parent: 2 + - uid: 19361 components: - type: Transform - pos: 393.5,422.5 - parent: 1 - - uid: 3796 + pos: -115.5,-20.5 + parent: 2 + - uid: 19362 components: - type: Transform - pos: 355.5,419.5 - parent: 1 - - uid: 3797 + pos: -115.5,-21.5 + parent: 2 + - uid: 19363 components: - type: Transform - pos: 355.5,426.5 - parent: 1 - - uid: 3798 + pos: -115.5,-23.5 + parent: 2 + - uid: 19364 components: - type: Transform - pos: 353.5,436.5 - parent: 1 - - uid: 3799 + pos: -115.5,-22.5 + parent: 2 + - uid: 19365 components: - type: Transform - pos: 349.5,436.5 - parent: 1 - - uid: 3800 + pos: -114.5,-21.5 + parent: 2 + - uid: 19366 components: - type: Transform - pos: 340.5,435.5 - parent: 1 - - uid: 3801 + pos: -113.5,-21.5 + parent: 2 + - uid: 19367 components: - type: Transform - pos: 331.5,434.5 - parent: 1 - - uid: 3826 + pos: -111.5,-21.5 + parent: 2 + - uid: 19368 components: - type: Transform - pos: 422.5,372.5 - parent: 1 - - uid: 3827 + pos: -110.5,-21.5 + parent: 2 + - uid: 19369 components: - type: Transform - pos: 423.5,374.5 - parent: 1 - - uid: 3828 + pos: -112.5,-21.5 + parent: 2 + - uid: 19370 components: - type: Transform - pos: 420.5,375.5 - parent: 1 - - uid: 3829 + pos: -109.5,-21.5 + parent: 2 + - uid: 19371 components: - type: Transform - pos: 422.5,364.5 - parent: 1 - - uid: 3830 + pos: -109.5,-22.5 + parent: 2 + - uid: 19372 components: - type: Transform - pos: 413.5,365.5 - parent: 1 - - uid: 3831 + pos: -109.5,-23.5 + parent: 2 + - uid: 19373 components: - type: Transform - pos: 407.5,366.5 - parent: 1 - - uid: 3832 + pos: -111.5,-23.5 + parent: 2 + - uid: 19374 components: - type: Transform - pos: 404.5,366.5 - parent: 1 - - uid: 3833 + pos: -111.5,-22.5 + parent: 2 + - uid: 19375 components: - type: Transform - pos: 406.5,364.5 - parent: 1 - - uid: 3866 + pos: -115.5,-14.5 + parent: 2 + - uid: 19376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,383.5 - parent: 1 - - uid: 3867 + pos: -108.5,-14.5 + parent: 2 + - uid: 19377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,383.5 - parent: 1 - - uid: 3868 + pos: -107.5,-14.5 + parent: 2 + - uid: 19378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,387.5 - parent: 1 - - uid: 3869 + pos: -117.5,-14.5 + parent: 2 + - uid: 19379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,391.5 - parent: 1 - - uid: 3870 + pos: -116.5,-14.5 + parent: 2 + - uid: 19380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,438.5 - parent: 1 - - uid: 3871 + pos: -114.5,-14.5 + parent: 2 + - uid: 19381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,390.5 - parent: 1 - - uid: 4175 + pos: -113.5,-14.5 + parent: 2 + - uid: 19382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,405.5 - parent: 1 - - uid: 4176 + pos: -112.5,-14.5 + parent: 2 + - uid: 19383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,405.5 - parent: 1 - - uid: 18577 + pos: -111.5,-14.5 + parent: 2 + - uid: 19384 components: - type: Transform - pos: 354.5,410.5 - parent: 1 - - uid: 18578 + pos: -110.5,-14.5 + parent: 2 + - uid: 19385 components: - type: Transform - pos: 355.5,409.5 - parent: 1 -- proto: AirlockMaintMedLocked - entities: - - uid: 3697 + pos: -109.5,-14.5 + parent: 2 + - uid: 19386 components: - type: Transform - pos: 396.5,423.5 - parent: 1 - - uid: 3698 + pos: -116.5,-15.5 + parent: 2 + - uid: 19387 components: - type: Transform - pos: 401.5,423.5 - parent: 1 - - uid: 3699 + pos: -116.5,-17.5 + parent: 2 + - uid: 19388 components: - type: Transform - pos: 409.5,423.5 - parent: 1 - - uid: 3712 + pos: -116.5,-18.5 + parent: 2 + - uid: 19389 components: - type: Transform - pos: 418.5,419.5 - parent: 1 -- proto: AirlockMaintRnDLocked - entities: - - uid: 3596 + pos: -116.5,-16.5 + parent: 2 + - uid: 19390 components: - type: Transform - pos: 347.5,386.5 - parent: 1 -- proto: AirlockMaintSecLocked - entities: - - uid: 1743 + pos: -112.5,-18.5 + parent: 2 + - uid: 19391 components: - type: Transform - pos: 434.5,406.5 - parent: 1 - - uid: 2191 + pos: -115.5,-18.5 + parent: 2 + - uid: 19392 components: - type: Transform - pos: 433.5,406.5 - parent: 1 - - uid: 2192 + pos: -114.5,-18.5 + parent: 2 + - uid: 19393 components: - type: Transform - pos: 433.5,409.5 - parent: 1 - - uid: 2193 + pos: -113.5,-18.5 + parent: 2 + - uid: 19394 components: - type: Transform - pos: 432.5,409.5 - parent: 1 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 3690 + pos: -111.5,-18.5 + parent: 2 + - uid: 19395 components: - type: Transform - pos: 390.5,415.5 - parent: 1 - - uid: 3691 + pos: -110.5,-18.5 + parent: 2 + - uid: 19396 components: - type: Transform - pos: 390.5,413.5 - parent: 1 -- proto: AirlockMedical - entities: - - uid: 3531 + pos: -109.5,-18.5 + parent: 2 + - uid: 19397 components: - type: Transform - pos: 404.5,412.5 - parent: 1 - - uid: 4345 + pos: -108.5,-18.5 + parent: 2 + - uid: 19399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,405.5 - parent: 1 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 2301 + pos: -107.5,-17.5 + parent: 2 + - uid: 19401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,416.5 - parent: 1 - - uid: 3704 + pos: -107.5,-15.5 + parent: 2 + - uid: 19405 components: - type: Transform - pos: 404.5,419.5 - parent: 1 -- proto: AirlockMedicalLocked - entities: - - uid: 3700 + pos: -113.5,-5.5 + parent: 2 + - uid: 19406 components: - type: Transform - pos: 398.5,421.5 - parent: 1 - - uid: 3701 + pos: -116.5,-5.5 + parent: 2 + - uid: 19407 components: - type: Transform - pos: 403.5,421.5 - parent: 1 - - uid: 3702 + pos: -115.5,-5.5 + parent: 2 + - uid: 19408 components: - type: Transform - pos: 405.5,421.5 - parent: 1 - - uid: 3707 + pos: -114.5,-5.5 + parent: 2 + - uid: 19409 components: - type: Transform - pos: 402.5,413.5 - parent: 1 - - uid: 3709 + pos: -112.5,-5.5 + parent: 2 + - uid: 19410 components: - type: Transform - pos: 402.5,409.5 - parent: 1 - - uid: 5537 + pos: -111.5,-5.5 + parent: 2 + - uid: 19411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,414.5 - parent: 1 - - uid: 16301 + pos: -110.5,-5.5 + parent: 2 + - uid: 19412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,414.5 - parent: 1 -- proto: AirlockQuartermasterLocked - entities: - - uid: 3622 + pos: -109.5,-5.5 + parent: 2 + - uid: 19413 components: - type: Transform - pos: 357.5,381.5 - parent: 1 - - uid: 3623 + pos: -108.5,-5.5 + parent: 2 + - uid: 19447 components: - type: Transform - pos: 354.5,381.5 - parent: 1 -- proto: AirlockResearchDirectorGlassLocked - entities: - - uid: 462 + pos: -88.5,4.5 + parent: 2 + - uid: 19452 components: - type: Transform - pos: 355.5,386.5 - parent: 1 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 3481 + pos: -108.5,-4.5 + parent: 2 + - uid: 19453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,384.5 - parent: 1 -- proto: AirlockSalvageLocked - entities: - - uid: 1032 + pos: -108.5,-3.5 + parent: 2 + - uid: 19544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 503.5,383.5 - parent: 1 - - uid: 1361 + pos: -68.5,-31.5 + parent: 2 + - uid: 19626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 507.5,386.5 - parent: 1 - - uid: 3624 + pos: -96.5,26.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + pos: -98.5,31.5 + parent: 2 + - uid: 19647 components: - type: Transform - pos: 359.5,379.5 - parent: 1 - - uid: 3625 + pos: -54.5,-36.5 + parent: 2 + - uid: 19720 components: - type: Transform - pos: 359.5,383.5 - parent: 1 -- proto: AirlockScienceGlassLocked - entities: - - uid: 3602 + pos: -71.5,-58.5 + parent: 2 + - uid: 19733 components: - type: Transform - pos: 345.5,398.5 - parent: 1 - - uid: 3603 + pos: -100.5,20.5 + parent: 2 + - uid: 19737 components: - type: Transform - pos: 347.5,396.5 - parent: 1 - - uid: 3604 + pos: -94.5,34.5 + parent: 2 + - uid: 19742 components: - type: Transform - pos: 346.5,393.5 - parent: 1 - - uid: 3605 + pos: -69.5,-21.5 + parent: 2 + - uid: 19743 components: - type: Transform - pos: 343.5,393.5 - parent: 1 - - uid: 3606 + pos: -70.5,-21.5 + parent: 2 + - uid: 19758 components: - type: Transform - pos: 347.5,390.5 - parent: 1 - - uid: 3608 + pos: -68.5,-19.5 + parent: 2 + - uid: 19759 components: - type: Transform - pos: 343.5,389.5 - parent: 1 - - uid: 3620 + pos: -75.5,-25.5 + parent: 2 + - uid: 19802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,394.5 - parent: 1 - - uid: 3626 + pos: -94.5,23.5 + parent: 2 + - uid: 19813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,401.5 - parent: 1 - - uid: 7457 + pos: -98.5,15.5 + parent: 2 + - uid: 19849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,389.5 - parent: 1 -- proto: AirlockScienceLocked - entities: - - uid: 3597 + pos: -97.5,13.5 + parent: 2 + - uid: 19850 components: - type: Transform - pos: 360.5,397.5 - parent: 1 - - uid: 3598 + pos: -98.5,13.5 + parent: 2 + - uid: 19862 components: - type: Transform - pos: 349.5,399.5 - parent: 1 - - uid: 3609 + pos: -97.5,24.5 + parent: 2 + - uid: 19873 components: - type: Transform - pos: 351.5,390.5 - parent: 1 - - uid: 3611 + pos: -94.5,30.5 + parent: 2 + - uid: 19874 components: - type: Transform - pos: 353.5,388.5 - parent: 1 - - uid: 3613 + pos: -96.5,30.5 + parent: 2 + - uid: 19899 components: - type: Transform - pos: 347.5,401.5 - parent: 1 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 2197 + pos: -94.5,26.5 + parent: 2 + - uid: 19906 components: - type: Transform - pos: 447.5,408.5 - parent: 1 - - uid: 2737 + pos: -94.5,36.5 + parent: 2 + - uid: 19907 components: - type: Transform - pos: 447.5,407.5 - parent: 1 - - uid: 3612 + pos: -94.5,37.5 + parent: 2 + - uid: 19908 components: - type: Transform - pos: 329.5,406.5 - parent: 1 - - uid: 3805 + pos: -94.5,38.5 + parent: 2 + - uid: 19917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,393.5 - parent: 1 - - uid: 3806 + pos: -88.5,26.5 + parent: 2 + - uid: 19918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,403.5 - parent: 1 - - uid: 5572 + pos: -88.5,27.5 + parent: 2 + - uid: 19919 components: - type: Transform - pos: 357.5,389.5 - parent: 1 - - uid: 5598 + pos: -88.5,28.5 + parent: 2 + - uid: 19920 components: - type: Transform - pos: 355.5,394.5 - parent: 1 -- proto: AirlockSecurityLawyerLocked - entities: - - uid: 1106 + pos: -87.5,28.5 + parent: 2 + - uid: 19921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,404.5 - parent: 1 - - uid: 3670 + pos: -85.5,28.5 + parent: 2 + - uid: 19922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,407.5 - parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3774: - - DoorStatus: DoorBolt - - uid: 3769 + pos: -84.5,28.5 + parent: 2 + - uid: 19923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,398.5 - parent: 1 - - uid: 3770 + pos: -86.5,28.5 + parent: 2 + - uid: 19924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,403.5 - parent: 1 - - uid: 3771 + pos: -86.5,27.5 + parent: 2 + - uid: 19925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,406.5 - parent: 1 - - uid: 3774 + pos: -86.5,30.5 + parent: 2 + - uid: 19926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,407.5 - parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 3670: - - DoorStatus: DoorBolt - - uid: 12211 + pos: -85.5,30.5 + parent: 2 + - uid: 19927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,408.5 - parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 12506: - - DoorStatus: DoorBolt - - uid: 12506 + pos: -84.5,30.5 + parent: 2 + - uid: 19928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,408.5 - parent: 1 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 12211: - - DoorStatus: DoorBolt - - uid: 17209 + pos: -87.5,29.5 + parent: 2 + - uid: 19929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,396.5 - parent: 1 -- proto: AirlockSecurityLocked - entities: - - uid: 1065 + pos: -87.5,30.5 + parent: 2 + - uid: 19930 components: - type: Transform - pos: 357.5,392.5 - parent: 1 - - uid: 2360 + pos: -87.5,32.5 + parent: 2 + - uid: 19931 components: - type: Transform - pos: 330.5,403.5 - parent: 1 - - uid: 3818 + pos: -87.5,33.5 + parent: 2 + - uid: 19932 components: - type: Transform - pos: 459.5,413.5 - parent: 1 - - uid: 4871 + pos: -87.5,34.5 + parent: 2 + - uid: 19933 components: - type: Transform - pos: 332.5,406.5 - parent: 1 - - uid: 5534 + pos: -87.5,31.5 + parent: 2 + - uid: 19934 components: - type: Transform - pos: 355.5,390.5 - parent: 1 - - uid: 9277 + pos: -86.5,34.5 + parent: 2 + - uid: 19935 components: - type: Transform - pos: 353.5,392.5 - parent: 1 -- proto: AirlockServiceGlassLocked - entities: - - uid: 3894 + pos: -86.5,13.5 + parent: 2 + - uid: 19936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,371.5 - parent: 1 -- proto: AirlockServiceLocked - entities: - - uid: 3893 + pos: -85.5,13.5 + parent: 2 + - uid: 19937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,373.5 - parent: 1 -- proto: AirlockTheatreLocked - entities: - - uid: 3692 + pos: -85.5,14.5 + parent: 2 + - uid: 19938 components: - type: Transform - pos: 391.5,411.5 - parent: 1 - - uid: 3693 + pos: -85.5,15.5 + parent: 2 + - uid: 19939 components: - type: Transform - pos: 391.5,407.5 - parent: 1 - - uid: 3694 + pos: -85.5,16.5 + parent: 2 + - uid: 19940 components: - type: Transform - pos: 396.5,408.5 - parent: 1 -- proto: AirlockVirologyLocked - entities: - - uid: 3706 + pos: -85.5,17.5 + parent: 2 + - uid: 19941 components: - type: Transform - pos: 410.5,417.5 - parent: 1 - - uid: 3710 + pos: -85.5,18.5 + parent: 2 + - uid: 19942 components: - type: Transform - pos: 414.5,418.5 - parent: 1 - - uid: 3711 + pos: -85.5,19.5 + parent: 2 + - uid: 19943 components: - type: Transform - pos: 414.5,420.5 - parent: 1 -- proto: AirlossAutoInjector - entities: - - uid: 20998 + pos: -85.5,20.5 + parent: 2 + - uid: 19944 components: - type: Transform - pos: 393.5,418.5 - parent: 1 -- proto: AirSensor - entities: - - uid: 1159 + pos: -85.5,21.5 + parent: 2 + - uid: 19945 components: - type: Transform - pos: 399.5,417.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15325 - - uid: 1545 + pos: -84.5,20.5 + parent: 2 + - uid: 19946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 - - uid: 14366 + pos: -83.5,20.5 + parent: 2 + - uid: 19947 components: - type: Transform - pos: 335.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 - - uid: 14367 + pos: -82.5,20.5 + parent: 2 + - uid: 19948 components: - type: Transform - pos: 346.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 - - uid: 14375 + pos: -84.5,18.5 + parent: 2 + - uid: 19949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,417.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15266 - - uid: 14377 + pos: -83.5,18.5 + parent: 2 + - uid: 19950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,423.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15265 - - uid: 14378 + pos: -82.5,18.5 + parent: 2 + - uid: 19951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15261 - - uid: 14379 + pos: -82.5,21.5 + parent: 2 + - uid: 19952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15263 - - uid: 14380 + pos: -82.5,17.5 + parent: 2 + - uid: 19953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 - - uid: 14381 + pos: -85.5,22.5 + parent: 2 + - uid: 19954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15262 - - uid: 14382 + pos: -85.5,23.5 + parent: 2 + - uid: 19955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 11580 - - uid: 14384 + pos: -85.5,24.5 + parent: 2 + - uid: 19956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15257 - - uid: 14385 + pos: -86.5,24.5 + parent: 2 + - uid: 19957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 - - uid: 14386 + pos: -87.5,24.5 + parent: 2 + - uid: 19958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15255 - - uid: 14387 + pos: -89.5,24.5 + parent: 2 + - uid: 19959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15256 - - uid: 14388 + pos: -90.5,24.5 + parent: 2 + - uid: 19960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15409 - - uid: 14389 + pos: -91.5,24.5 + parent: 2 + - uid: 19961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15254 - - uid: 14390 + pos: -92.5,24.5 + parent: 2 + - uid: 19962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 - - uid: 14391 + pos: -93.5,24.5 + parent: 2 + - uid: 19963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 - - uid: 14392 + pos: -94.5,24.5 + parent: 2 + - uid: 19965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 - - uid: 14393 + pos: -88.5,24.5 + parent: 2 + - uid: 19971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 - - uid: 14394 + pos: -95.5,18.5 + parent: 2 + - uid: 19975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 - - uid: 14395 + pos: -94.5,15.5 + parent: 2 + - uid: 19976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15385 - - uid: 14396 + pos: -92.5,15.5 + parent: 2 + - uid: 19977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15322 - - uid: 14397 + pos: -91.5,15.5 + parent: 2 + - uid: 19978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15323 - - uid: 14398 + pos: -90.5,15.5 + parent: 2 + - uid: 19979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,414.5 - parent: 1 - - uid: 14399 + pos: -89.5,15.5 + parent: 2 + - uid: 19980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 5375 - - uid: 14400 + pos: -93.5,15.5 + parent: 2 + - uid: 19981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15327 - - uid: 14401 + pos: -88.5,15.5 + parent: 2 + - uid: 19982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15328 - - uid: 14402 + pos: -87.5,15.5 + parent: 2 + - uid: 19983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 3703 - - uid: 14404 + pos: -86.5,15.5 + parent: 2 + - uid: 19984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,420.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15330 - - uid: 14405 + pos: -86.5,11.5 + parent: 2 + - uid: 19985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15332 - - uid: 14406 + pos: -87.5,11.5 + parent: 2 + - uid: 19986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15333 - - uid: 14426 + pos: -89.5,11.5 + parent: 2 + - uid: 19987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15334 - - uid: 14427 + pos: -88.5,11.5 + parent: 2 + - uid: 19988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15335 - - uid: 14428 + pos: -88.5,12.5 + parent: 2 + - uid: 19989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15324 - - uid: 14429 + pos: -88.5,10.5 + parent: 2 + - uid: 19990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15390 - - uid: 14430 + pos: -88.5,9.5 + parent: 2 + - uid: 19991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 - - uid: 14431 + pos: -88.5,7.5 + parent: 2 + - uid: 19992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15392 - - uid: 14432 + pos: -88.5,8.5 + parent: 2 + - uid: 19993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15391 - - uid: 14433 + pos: -94.5,7.5 + parent: 2 + - uid: 19994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 - - uid: 14436 + pos: -94.5,8.5 + parent: 2 + - uid: 19995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15294 - - 15295 - - uid: 14438 + pos: -94.5,10.5 + parent: 2 + - uid: 19996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 - - 15297 - - uid: 14441 + pos: -94.5,11.5 + parent: 2 + - uid: 19997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 - - uid: 14442 + pos: -94.5,12.5 + parent: 2 + - uid: 19998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15376 - - uid: 14443 + pos: -94.5,9.5 + parent: 2 + - uid: 19999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,389.5 - parent: 1 - - uid: 14444 + pos: -95.5,12.5 + parent: 2 + - uid: 20000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 - - uid: 14445 + pos: -96.5,12.5 + parent: 2 + - uid: 20001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15374 - - uid: 14446 + pos: -98.5,14.5 + parent: 2 + - uid: 20002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 - - uid: 14447 + pos: -93.5,10.5 + parent: 2 + - uid: 20003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 - - uid: 14453 + pos: -92.5,10.5 + parent: 2 + - uid: 20004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15338 - - uid: 14454 + pos: -95.5,7.5 + parent: 2 + - uid: 20005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15337 - - uid: 14455 + pos: -96.5,7.5 + parent: 2 + - uid: 20006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15339 - - uid: 14456 + pos: -97.5,7.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: -98.5,7.5 + parent: 2 + - uid: 20008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15340 - - uid: 14457 + pos: -99.5,7.5 + parent: 2 + - uid: 20009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15341 - - uid: 14458 + pos: -100.5,7.5 + parent: 2 + - uid: 20010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,407.5 - parent: 1 - - uid: 14459 + pos: -101.5,7.5 + parent: 2 + - uid: 20014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15350 - - uid: 14460 + pos: -93.5,12.5 + parent: 2 + - uid: 20015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15351 - - uid: 14461 + pos: -92.5,12.5 + parent: 2 + - uid: 20016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 - - uid: 14462 + pos: -92.5,13.5 + parent: 2 + - uid: 20017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15354 - - uid: 14463 + pos: -99.5,15.5 + parent: 2 + - uid: 20018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 459.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 - - uid: 14464 + pos: -101.5,15.5 + parent: 2 + - uid: 20019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 462.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15356 - - uid: 14466 + pos: -102.5,15.5 + parent: 2 + - uid: 20020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 457.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 - - uid: 14467 + pos: -100.5,15.5 + parent: 2 + - uid: 20021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15359 - - uid: 14468 + pos: -102.5,14.5 + parent: 2 + - uid: 20022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 455.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15358 - - uid: 14469 + pos: -102.5,13.5 + parent: 2 + - uid: 20023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 459.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15357 - - uid: 14470 + pos: -102.5,12.5 + parent: 2 + - uid: 20341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 447.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15360 - - uid: 14471 + pos: -85.5,-2.5 + parent: 2 + - uid: 20364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15361 - - uid: 14472 + pos: -40.5,-2.5 + parent: 2 + - uid: 20387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 448.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15364 - - uid: 14473 + pos: -109.5,-46.5 + parent: 2 + - uid: 20388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15352 - - uid: 14474 + pos: -109.5,-45.5 + parent: 2 + - uid: 20389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15345 - - uid: 14480 + pos: -109.5,-44.5 + parent: 2 + - uid: 20390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15346 - - uid: 14481 + pos: -109.5,-43.5 + parent: 2 + - uid: 20391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15347 - - uid: 14482 + pos: -109.5,-42.5 + parent: 2 + - uid: 20392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15348 - - uid: 14483 + pos: -109.5,-41.5 + parent: 2 + - uid: 20393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 - - uid: 14484 + pos: -109.5,-47.5 + parent: 2 + - uid: 20394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 - - uid: 14485 + pos: -108.5,-45.5 + parent: 2 + - uid: 20395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15367 - - uid: 14486 + pos: -107.5,-45.5 + parent: 2 + - uid: 20396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15366 - - uid: 14487 + pos: -110.5,-45.5 + parent: 2 + - uid: 20452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,382.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15373 - - uid: 14488 + pos: -10.5,-43.5 + parent: 2 + - uid: 20542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,378.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15372 - - 15373 - - uid: 14489 + pos: -48.5,-52.5 + parent: 2 + - uid: 20598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 - - uid: 14490 + pos: -115.5,-10.5 + parent: 2 + - uid: 20600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15370 - - uid: 14491 + pos: -115.5,-12.5 + parent: 2 + - uid: 20601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15369 - - uid: 14492 + pos: -115.5,-9.5 + parent: 2 + - uid: 20602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15524 - - uid: 14493 + pos: -115.5,-8.5 + parent: 2 + - uid: 20603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15496 - - uid: 14494 + pos: -114.5,-10.5 + parent: 2 + - uid: 20604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15497 - - uid: 14495 + pos: -113.5,-10.5 + parent: 2 + - uid: 20606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15499 - - uid: 14496 + pos: -112.5,-10.5 + parent: 2 + - uid: 20607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,368.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15498 - - uid: 14497 + pos: -111.5,-10.5 + parent: 2 + - uid: 20646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,368.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15501 - - uid: 14502 + pos: -110.5,-10.5 + parent: 2 + - uid: 20647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15500 - - uid: 14503 + pos: -109.5,-10.5 + parent: 2 + - uid: 20728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15502 - - uid: 14504 + pos: -71.5,-57.5 + parent: 2 + - uid: 20872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,375.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15503 - - uid: 14505 + pos: -35.5,-58.5 + parent: 2 + - uid: 20873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15495 - - uid: 14506 + pos: -35.5,-59.5 + parent: 2 + - uid: 20874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,373.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15494 - - uid: 14507 + pos: -34.5,-59.5 + parent: 2 + - uid: 20875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15493 - - uid: 14508 + pos: -33.5,-59.5 + parent: 2 + - uid: 20876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15300 - - uid: 14509 + pos: -32.5,-59.5 + parent: 2 + - uid: 20877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,364.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15506 - - uid: 14510 + pos: -33.5,-58.5 + parent: 2 + - uid: 20878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,362.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15505 - - uid: 14511 + pos: -33.5,-57.5 + parent: 2 + - uid: 20879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,353.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 - - uid: 14512 + pos: -33.5,-55.5 + parent: 2 + - uid: 20880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,360.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 - - uid: 14513 + pos: -33.5,-54.5 + parent: 2 + - uid: 20881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,353.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15512 - - uid: 14514 + pos: -33.5,-53.5 + parent: 2 + - uid: 20882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,356.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15529 - - uid: 14515 + pos: -33.5,-56.5 + parent: 2 + - uid: 20883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,359.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15509 - - uid: 14518 + pos: -32.5,-53.5 + parent: 2 + - uid: 20884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,363.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 16102 - - uid: 14519 + pos: -31.5,-59.5 + parent: 2 + - uid: 20885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,374.5 - parent: 1 - - uid: 14520 + pos: -31.5,-53.5 + parent: 2 + - uid: 20886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15299 - - uid: 14521 + pos: -30.5,-59.5 + parent: 2 + - uid: 20887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 - - uid: 14522 + pos: -29.5,-59.5 + parent: 2 + - uid: 20888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15291 - - uid: 14523 + pos: -27.5,-59.5 + parent: 2 + - uid: 20889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,381.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15301 - - uid: 14524 + pos: -26.5,-59.5 + parent: 2 + - uid: 20890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15311 - - uid: 14525 + pos: -25.5,-59.5 + parent: 2 + - uid: 20891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15310 - - uid: 14560 + pos: -28.5,-59.5 + parent: 2 + - uid: 20899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15309 - - uid: 14561 + pos: -108.5,-10.5 + parent: 2 + - uid: 20900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,397.5 - parent: 1 - - uid: 14562 + pos: -107.5,-10.5 + parent: 2 + - uid: 20902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,389.5 - parent: 1 - - uid: 14564 + pos: -116.5,-4.5 + parent: 2 + - uid: 20903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 - - uid: 14565 + pos: -117.5,-4.5 + parent: 2 + - uid: 20904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,381.5 - parent: 1 - - uid: 14566 + pos: -34.5,-64.5 + parent: 2 + - uid: 20905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,381.5 - parent: 1 - - uid: 14567 + pos: -35.5,-64.5 + parent: 2 + - uid: 20906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,381.5 - parent: 1 - - uid: 14568 + pos: -36.5,-64.5 + parent: 2 + - uid: 20907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,377.5 - parent: 1 - - uid: 14569 + pos: -38.5,-64.5 + parent: 2 + - uid: 20908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 - - uid: 14570 + pos: -38.5,-66.5 + parent: 2 + - uid: 20909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,381.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15314 - - uid: 14571 + pos: -38.5,-67.5 + parent: 2 + - uid: 20910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 - - uid: 14573 + pos: -38.5,-65.5 + parent: 2 + - uid: 20911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15236 - - uid: 14574 + pos: -38.5,-68.5 + parent: 2 + - uid: 20912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15237 - - uid: 14575 + pos: -38.5,-69.5 + parent: 2 + - uid: 20913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - uid: 14576 + pos: -38.5,-70.5 + parent: 2 + - uid: 20914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15228 - - uid: 14577 + pos: -38.5,-71.5 + parent: 2 + - uid: 20915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15229 - - uid: 14580 + pos: -36.5,-59.5 + parent: 2 + - uid: 20916 components: - type: Transform - pos: 355.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 - - uid: 14581 + pos: -37.5,-59.5 + parent: 2 + - uid: 20917 components: - type: Transform - pos: 353.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 - - uid: 14582 + pos: -39.5,-59.5 + parent: 2 + - uid: 20918 components: - type: Transform - pos: 347.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15233 - - uid: 14583 + pos: -40.5,-59.5 + parent: 2 + - uid: 20919 components: - type: Transform - pos: 344.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15235 - - uid: 14584 + pos: -41.5,-59.5 + parent: 2 + - uid: 20920 components: - type: Transform - pos: 347.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15232 - - uid: 14585 + pos: -38.5,-59.5 + parent: 2 + - uid: 20921 components: - type: Transform - pos: 345.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1858 - - uid: 14586 + pos: -42.5,-59.5 + parent: 2 + - uid: 20922 components: - type: Transform - pos: 342.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15231 - - uid: 14587 + pos: -42.5,-58.5 + parent: 2 + - uid: 20923 components: - type: Transform - pos: 331.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15258 - - uid: 14588 + pos: -42.5,-57.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 331.5,410.5 - parent: 1 - - uid: 14589 + pos: -42.5,-55.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 337.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 - - uid: 14591 + pos: -42.5,-54.5 + parent: 2 + - uid: 20926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15530 - - uid: 14594 + pos: -42.5,-53.5 + parent: 2 + - uid: 20927 components: - type: Transform - pos: 385.5,407.5 - parent: 1 - - uid: 14595 + pos: -42.5,-56.5 + parent: 2 + - uid: 20928 components: - type: Transform - pos: 373.5,407.5 - parent: 1 - - uid: 14596 + pos: -41.5,-53.5 + parent: 2 + - uid: 20929 components: - type: Transform - pos: 373.5,410.5 - parent: 1 - - uid: 14597 + pos: -40.5,-53.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 385.5,410.5 - parent: 1 - - uid: 14598 + pos: -39.5,-53.5 + parent: 2 + - uid: 21055 components: - type: Transform - pos: 381.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 - - uid: 14599 + pos: -38.5,-72.5 + parent: 2 + - uid: 21057 components: - type: Transform - pos: 377.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 - - uid: 14600 + pos: -38.5,-73.5 + parent: 2 + - uid: 21058 components: - type: Transform - pos: 373.5,414.5 - parent: 1 - - uid: 14601 + pos: -38.5,-75.5 + parent: 2 + - uid: 21059 components: - type: Transform - pos: 385.5,414.5 - parent: 1 - - uid: 14602 + pos: -38.5,-74.5 + parent: 2 + - uid: 21077 components: - type: Transform - pos: 386.5,417.5 - parent: 1 - - uid: 14604 + pos: -104.5,36.5 + parent: 2 + - uid: 21085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,416.5 - parent: 1 - - uid: 14605 + pos: -68.5,-30.5 + parent: 2 + - uid: 21337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,420.5 - parent: 1 - - uid: 14606 + pos: -17.5,-65.5 + parent: 2 + - uid: 21345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,420.5 - parent: 1 - - uid: 14607 + pos: -18.5,-65.5 + parent: 2 + - uid: 21384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,422.5 - parent: 1 - - uid: 14608 + pos: -11.5,6.5 + parent: 2 + - uid: 21386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,413.5 - parent: 1 - - uid: 14609 + pos: -10.5,6.5 + parent: 2 + - uid: 21387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,408.5 - parent: 1 - - uid: 14610 + pos: -8.5,6.5 + parent: 2 + - uid: 21388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,410.5 - parent: 1 - - uid: 14611 + pos: -9.5,6.5 + parent: 2 + - uid: 21391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,407.5 - parent: 1 - - uid: 14758 + pos: -35.5,-46.5 + parent: 2 + - uid: 21455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,413.5 - parent: 1 - - uid: 14762 + pos: -53.5,-36.5 + parent: 2 + - uid: 21478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 303.5,410.5 - parent: 1 - - uid: 14763 + pos: -127.5,22.5 + parent: 2 + - uid: 21497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 303.5,413.5 - parent: 1 - - uid: 14764 + pos: -29.5,3.5 + parent: 2 + - uid: 21498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,411.5 - parent: 1 - - uid: 14765 + pos: -118.5,-4.5 + parent: 2 + - uid: 21499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,411.5 - parent: 1 - - uid: 14766 + pos: -73.5,-57.5 + parent: 2 + - uid: 21500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,407.5 - parent: 1 - - uid: 14767 + pos: -63.5,-56.5 + parent: 2 + - uid: 21501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,407.5 - parent: 1 - - uid: 14768 + pos: -64.5,-56.5 + parent: 2 + - uid: 21502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,406.5 - parent: 1 - - uid: 14771 + pos: -62.5,-56.5 + parent: 2 + - uid: 21503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,413.5 - parent: 1 - - uid: 14773 + pos: -61.5,-56.5 + parent: 2 + - uid: 21504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,416.5 - parent: 1 - - uid: 14775 + pos: -60.5,-56.5 + parent: 2 + - uid: 21505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,420.5 - parent: 1 - - uid: 14776 + pos: -59.5,-56.5 + parent: 2 + - uid: 21506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,423.5 - parent: 1 - - uid: 14777 + pos: -58.5,-56.5 + parent: 2 + - uid: 21507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,423.5 - parent: 1 - - uid: 14880 + pos: -57.5,-56.5 + parent: 2 + - uid: 21508 components: - type: Transform - pos: 321.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15252 - - uid: 15212 + pos: -65.5,-56.5 + parent: 2 + - uid: 21509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 - - uid: 15225 + pos: -73.5,-56.5 + parent: 2 + - uid: 21510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15226 - - uid: 15227 + pos: -71.5,-56.5 + parent: 2 + - uid: 21511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12120 - - uid: 15239 + pos: -70.5,-56.5 + parent: 2 + - uid: 21512 components: - type: Transform - pos: 330.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15238 - - uid: 15240 + pos: -69.5,-56.5 + parent: 2 + - uid: 21513 components: - type: Transform - pos: 327.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15253 - - uid: 15241 + pos: -68.5,-56.5 + parent: 2 + - uid: 21514 components: - type: Transform - pos: 315.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 - - uid: 15242 + pos: -67.5,-56.5 + parent: 2 + - uid: 21515 components: - type: Transform - pos: 307.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 - - uid: 15243 + pos: -72.5,-56.5 + parent: 2 + - uid: 21516 components: - type: Transform - pos: 313.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15247 - - uid: 15244 + pos: -66.5,-56.5 + parent: 2 + - uid: 21517 components: - type: Transform - pos: 317.5,382.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15248 - - uid: 15305 + pos: -58.5,-58.5 + parent: 2 + - uid: 21519 components: - type: Transform - pos: 375.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15304 - - uid: 15355 + pos: -58.5,-55.5 + parent: 2 + - uid: 21520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15336 - - uid: 15362 + pos: -58.5,-54.5 + parent: 2 + - uid: 21521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 6311 - - uid: 15363 + pos: -58.5,-57.5 + parent: 2 + - uid: 21523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 13307 - - uid: 15365 + pos: -70.5,-55.5 + parent: 2 + - uid: 21524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15321 - - uid: 15388 + pos: -70.5,-54.5 + parent: 2 + - uid: 21525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15387 - - uid: 15410 + pos: -64.5,-57.5 + parent: 2 + - uid: 21526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 302.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15251 - - uid: 15601 + pos: -64.5,-58.5 + parent: 2 + - uid: 21527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 - - uid: 15602 + pos: -64.5,-59.5 + parent: 2 + - uid: 21528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,439.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15319 - - uid: 20191 + pos: -64.5,-61.5 + parent: 2 + - uid: 21529 components: - type: Transform - pos: 2.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20182 - - uid: 20192 + pos: -64.5,-62.5 + parent: 2 + - uid: 21530 components: - type: Transform - pos: 6.5,1.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20185 - - uid: 20193 + pos: -64.5,-60.5 + parent: 2 + - uid: 21531 components: - type: Transform - pos: 6.5,-0.5 - parent: 20181 - - uid: 20194 + pos: -65.5,-62.5 + parent: 2 + - uid: 21532 components: - type: Transform - pos: -2.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20183 - - uid: 20195 + pos: -65.5,-63.5 + parent: 2 + - uid: 21533 components: - type: Transform - pos: 2.5,4.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20184 - - uid: 20536 + pos: -66.5,-62.5 + parent: 2 + - uid: 21534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20528 - - uid: 20537 + pos: -65.5,-60.5 + parent: 2 + - uid: 21535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20530 - - uid: 20538 + pos: -66.5,-60.5 + parent: 2 + - uid: 21536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20529 -- proto: AltarSpawner - entities: - - uid: 15491 + pos: -63.5,-61.5 + parent: 2 + - uid: 21537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,441.5 - parent: 1 -- proto: AmmoTechFab - entities: - - uid: 4840 + pos: -62.5,-61.5 + parent: 2 + - uid: 21538 components: - type: Transform - pos: 420.5,406.5 - parent: 1 -- proto: AnimalRandomSpawner - entities: - - uid: 5476 + pos: -61.5,-61.5 + parent: 2 + - uid: 21539 components: - type: Transform - pos: 410.5,362.5 - parent: 1 -- proto: AnomalyScanner - entities: - - uid: 16342 + pos: -64.5,-55.5 + parent: 2 + - uid: 21540 components: - type: Transform - pos: 354.5,397.5 - parent: 1 - - uid: 16343 + pos: -64.5,-54.5 + parent: 2 + - uid: 21541 components: - type: Transform - pos: 342.5,395.5 - parent: 1 - - uid: 16344 + pos: -64.5,-52.5 + parent: 2 + - uid: 21542 components: - type: Transform - pos: 342.5,395.5 - parent: 1 -- proto: APCBasic - entities: - - uid: 8723 + pos: -64.5,-51.5 + parent: 2 + - uid: 21543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,400.5 - parent: 1 - - uid: 8950 + pos: -64.5,-53.5 + parent: 2 + - uid: 21544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,422.5 - parent: 1 - - uid: 8951 + pos: -61.5,-55.5 + parent: 2 + - uid: 21545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,421.5 - parent: 1 - - uid: 8952 + pos: -61.5,-54.5 + parent: 2 + - uid: 21546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,416.5 - parent: 1 - - uid: 8953 + pos: -61.5,-53.5 + parent: 2 + - uid: 21547 components: - type: Transform - pos: 395.5,416.5 - parent: 1 - - uid: 8954 + pos: -67.5,-55.5 + parent: 2 + - uid: 21548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,415.5 - parent: 1 - - uid: 8955 + pos: -67.5,-53.5 + parent: 2 + - uid: 21549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,419.5 - parent: 1 - - uid: 8956 + pos: -67.5,-54.5 + parent: 2 + - uid: 21554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,408.5 - parent: 1 - - uid: 8957 + pos: -75.5,-56.5 + parent: 2 + - uid: 21716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,410.5 - parent: 1 - - uid: 8958 + pos: -131.5,22.5 + parent: 2 + - uid: 21740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,407.5 - parent: 1 - - uid: 8959 + pos: -119.5,-4.5 + parent: 2 + - uid: 21775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,409.5 - parent: 1 - - uid: 8960 + pos: -126.5,22.5 + parent: 2 + - uid: 21778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,407.5 - parent: 1 - - uid: 8961 + pos: -130.5,22.5 + parent: 2 + - uid: 21954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,412.5 - parent: 1 - - uid: 8962 + pos: -15.5,-69.5 + parent: 2 + - uid: 22053 components: - type: Transform - pos: 377.5,419.5 - parent: 1 - - uid: 8963 + pos: -132.5,22.5 + parent: 2 + - uid: 22101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,409.5 - parent: 1 - - uid: 8964 + pos: -68.5,-21.5 + parent: 2 + - uid: 22124 components: - type: Transform - pos: 387.5,415.5 - parent: 1 - - uid: 8965 + pos: -101.5,20.5 + parent: 2 + - uid: 22125 components: - type: Transform - pos: 371.5,415.5 - parent: 1 - - uid: 8966 + pos: -94.5,20.5 + parent: 2 + - uid: 22126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,409.5 - parent: 1 - - uid: 8967 + pos: -99.5,20.5 + parent: 2 + - uid: 22138 components: - type: Transform - pos: 365.5,415.5 - parent: 1 - - uid: 8968 + pos: -102.5,20.5 + parent: 2 + - uid: 22184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,420.5 - parent: 1 - - uid: 8992 + pos: -104.5,35.5 + parent: 2 + - uid: 22239 components: - type: Transform - pos: 322.5,427.5 - parent: 1 - - uid: 8993 + pos: -119.5,-5.5 + parent: 2 + - uid: 22325 components: - type: Transform - pos: 318.5,429.5 - parent: 1 - - uid: 8994 + pos: -18.5,-25.5 + parent: 2 + - uid: 22326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,440.5 - parent: 1 - - uid: 8995 + pos: -19.5,-25.5 + parent: 2 + - uid: 22328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,419.5 - parent: 1 - - uid: 8996 + pos: -20.5,-25.5 + parent: 2 + - uid: 22329 components: - type: Transform - pos: 349.5,417.5 - parent: 1 - - uid: 8997 + pos: -18.5,-27.5 + parent: 2 + - uid: 22330 components: - type: Transform - pos: 329.5,412.5 - parent: 1 - - uid: 8998 + pos: -18.5,-26.5 + parent: 2 + - uid: 22331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,408.5 - parent: 1 - - uid: 8999 + pos: -18.5,-24.5 + parent: 2 + - uid: 22332 components: - type: Transform - pos: 336.5,412.5 - parent: 1 - - uid: 9000 + pos: -18.5,-23.5 + parent: 2 + - uid: 22333 components: - type: Transform - pos: 337.5,408.5 - parent: 1 - - uid: 9001 + pos: -18.5,-28.5 + parent: 2 + - uid: 22486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,410.5 - parent: 1 - - uid: 9002 + pos: -119.5,-7.5 + parent: 2 + - uid: 22487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,405.5 - parent: 1 - - uid: 9003 + pos: -119.5,-6.5 + parent: 2 + - uid: 22488 components: - type: Transform - pos: 328.5,399.5 - parent: 1 - - uid: 9005 + pos: -119.5,-3.5 + parent: 2 + - uid: 22489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,399.5 - parent: 1 - - uid: 9006 + pos: -119.5,-1.5 + parent: 2 + - uid: 22490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,398.5 - parent: 1 - - uid: 9007 + pos: -119.5,-2.5 + parent: 2 + - uid: 22491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,398.5 - parent: 1 - - uid: 9009 + pos: -120.5,-4.5 + parent: 2 + - uid: 22492 components: - type: Transform - pos: 352.5,394.5 - parent: 1 - - uid: 9010 + pos: -121.5,-4.5 + parent: 2 + - uid: 22494 components: - type: Transform - pos: 346.5,390.5 - parent: 1 - - uid: 9011 + pos: -109.5,-28.5 + parent: 2 + - uid: 22495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,395.5 - parent: 1 - - uid: 9012 + pos: -109.5,-30.5 + parent: 2 + - uid: 22496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,391.5 - parent: 1 - - uid: 9013 + pos: -109.5,-31.5 + parent: 2 + - uid: 22497 components: - type: Transform - pos: 327.5,388.5 - parent: 1 - - uid: 9014 + pos: -109.5,-29.5 + parent: 2 + - uid: 22498 components: - type: Transform - pos: 313.5,389.5 - parent: 1 - - uid: 9015 + pos: -109.5,-32.5 + parent: 2 + - uid: 22499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 300.5,383.5 - parent: 1 - - uid: 9018 + pos: -110.5,-31.5 + parent: 2 + - uid: 22500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,379.5 - parent: 1 - - uid: 9019 + pos: -111.5,-31.5 + parent: 2 + - uid: 22501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,387.5 - parent: 1 - - uid: 9020 + pos: -113.5,-31.5 + parent: 2 + - uid: 22502 components: - type: Transform - pos: 354.5,386.5 - parent: 1 - - uid: 9021 + pos: -114.5,-31.5 + parent: 2 + - uid: 22503 components: - type: Transform - pos: 351.5,386.5 - parent: 1 - - uid: 9022 + pos: -112.5,-31.5 + parent: 2 + - uid: 22504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,390.5 - parent: 1 - - uid: 9023 + pos: -108.5,-31.5 + parent: 2 + - uid: 22505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,393.5 - parent: 1 - - uid: 9024 + pos: -110.5,-27.5 + parent: 2 + - uid: 22506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,399.5 - parent: 1 - - uid: 9025 + pos: -108.5,-27.5 + parent: 2 + - uid: 22507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,386.5 - parent: 1 - - uid: 9026 + pos: -109.5,-27.5 + parent: 2 + - uid: 22508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,381.5 - parent: 1 - - uid: 9027 + pos: -119.5,-27.5 + parent: 2 + - uid: 22509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,380.5 - parent: 1 - - uid: 9028 + pos: -111.5,-27.5 + parent: 2 + - uid: 22510 components: - type: Transform - pos: 353.5,382.5 - parent: 1 - - uid: 9029 + pos: -112.5,-27.5 + parent: 2 + - uid: 22511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,378.5 - parent: 1 - - uid: 9030 + pos: -113.5,-27.5 + parent: 2 + - uid: 22512 components: - type: Transform - pos: 369.5,382.5 - parent: 1 - - uid: 9031 + pos: -115.5,-27.5 + parent: 2 + - uid: 22513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,392.5 - parent: 1 - - uid: 9033 + pos: -116.5,-27.5 + parent: 2 + - uid: 22514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,424.5 - parent: 1 - - uid: 9034 + pos: -117.5,-27.5 + parent: 2 + - uid: 22515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,407.5 - parent: 1 - - uid: 9035 + pos: -118.5,-27.5 + parent: 2 + - uid: 22516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,408.5 - parent: 1 - - uid: 9036 + pos: -114.5,-27.5 + parent: 2 + - uid: 22578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,412.5 - parent: 1 - - uid: 9039 + pos: -123.5,-6.5 + parent: 2 + - uid: 22579 components: - type: Transform - pos: 416.5,406.5 - parent: 1 - - uid: 9040 + pos: -123.5,-7.5 + parent: 2 + - uid: 22580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,404.5 - parent: 1 - - uid: 9041 + pos: -96.5,-13.5 + parent: 2 + - uid: 22581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,391.5 - parent: 1 - - uid: 9042 + pos: -90.5,-13.5 + parent: 2 + - uid: 22582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,390.5 - parent: 1 - - uid: 9043 + pos: -94.5,-13.5 + parent: 2 + - uid: 22583 components: - type: Transform - pos: 426.5,390.5 - parent: 1 - - uid: 9044 + pos: -95.5,-13.5 + parent: 2 + - uid: 22584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,388.5 - parent: 1 - - uid: 9045 + pos: -97.5,-13.5 + parent: 2 + - uid: 22585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,389.5 - parent: 1 - - uid: 9046 + pos: -93.5,-13.5 + parent: 2 + - uid: 22586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,386.5 - parent: 1 - - uid: 9047 + pos: -99.5,-13.5 + parent: 2 + - uid: 22587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,392.5 - parent: 1 - - uid: 9048 + pos: -100.5,-13.5 + parent: 2 + - uid: 22588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,384.5 - parent: 1 - - uid: 9049 + pos: -98.5,-13.5 + parent: 2 + - uid: 22589 components: - type: Transform - pos: 409.5,383.5 - parent: 1 - - uid: 9050 + pos: -86.5,-13.5 + parent: 2 + - uid: 22590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,378.5 - parent: 1 - - uid: 9051 + pos: -83.5,-13.5 + parent: 2 + - uid: 22591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,403.5 - parent: 1 - - uid: 9052 + pos: -87.5,-13.5 + parent: 2 + - uid: 22592 components: - type: Transform - pos: 384.5,405.5 - parent: 1 - - uid: 9053 + pos: -84.5,-13.5 + parent: 2 + - uid: 22593 components: - type: Transform - pos: 370.5,405.5 - parent: 1 - - uid: 9054 + pos: -88.5,-13.5 + parent: 2 + - uid: 22594 components: - type: Transform - pos: 355.5,405.5 - parent: 1 - - uid: 9055 + pos: -89.5,-13.5 + parent: 2 + - uid: 22595 components: - type: Transform - pos: 338.5,405.5 - parent: 1 - - uid: 9336 + pos: -91.5,-13.5 + parent: 2 + - uid: 22596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 318.5,383.5 - parent: 1 - - uid: 9337 + pos: -92.5,-13.5 + parent: 2 + - uid: 22597 components: - type: Transform - pos: 314.5,385.5 - parent: 1 - - uid: 9737 + pos: -76.5,-13.5 + parent: 2 + - uid: 22598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,406.5 - parent: 1 - - uid: 9738 + pos: -78.5,-13.5 + parent: 2 + - uid: 22599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,406.5 - parent: 1 - - uid: 9739 + pos: -79.5,-13.5 + parent: 2 + - uid: 22600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,412.5 - parent: 1 - - uid: 9740 + pos: -80.5,-13.5 + parent: 2 + - uid: 22601 components: - type: Transform - pos: 451.5,408.5 - parent: 1 - - uid: 9741 + pos: -81.5,-13.5 + parent: 2 + - uid: 22602 components: - type: Transform - pos: 453.5,417.5 - parent: 1 - - uid: 9742 + pos: -82.5,-13.5 + parent: 2 + - uid: 22603 components: - type: Transform - pos: 456.5,417.5 - parent: 1 - - uid: 9743 + pos: -77.5,-13.5 + parent: 2 + - uid: 22604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,415.5 - parent: 1 - - uid: 9744 + pos: -85.5,-13.5 + parent: 2 + - uid: 22605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,415.5 - parent: 1 - - uid: 9745 + pos: -101.5,-13.5 + parent: 2 + - uid: 22606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,400.5 - parent: 1 - - uid: 9975 + pos: -102.5,-13.5 + parent: 2 + - uid: 22607 components: - type: Transform - pos: 413.5,376.5 - parent: 1 - - uid: 10037 + pos: -103.5,-13.5 + parent: 2 + - uid: 22608 components: - type: Transform - pos: 412.5,372.5 - parent: 1 - - uid: 10038 + pos: -103.5,-14.5 + parent: 2 + - uid: 22609 components: - type: Transform - pos: 412.5,369.5 - parent: 1 - - uid: 10039 + pos: -103.5,-16.5 + parent: 2 + - uid: 22610 components: - type: Transform - pos: 419.5,372.5 - parent: 1 - - uid: 10040 + pos: -103.5,-17.5 + parent: 2 + - uid: 22611 components: - type: Transform - pos: 419.5,369.5 - parent: 1 - - uid: 10041 + pos: -103.5,-18.5 + parent: 2 + - uid: 22612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,372.5 - parent: 1 - - uid: 10042 + pos: -103.5,-19.5 + parent: 2 + - uid: 22613 components: - type: Transform - pos: 401.5,371.5 - parent: 1 - - uid: 10043 + pos: -103.5,-20.5 + parent: 2 + - uid: 22614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,375.5 - parent: 1 - - uid: 10119 + pos: -103.5,-21.5 + parent: 2 + - uid: 22615 components: - type: Transform - pos: 386.5,398.5 - parent: 1 - - uid: 10198 + pos: -103.5,-15.5 + parent: 2 + - uid: 22616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,365.5 - parent: 1 - - uid: 10199 + pos: -103.5,-12.5 + parent: 2 + - uid: 22617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,360.5 - parent: 1 - - uid: 10200 + pos: -103.5,-11.5 + parent: 2 + - uid: 22618 components: - type: Transform - pos: 424.5,355.5 - parent: 1 - - uid: 10237 + pos: -103.5,-10.5 + parent: 2 + - uid: 22619 components: - type: Transform - pos: 423.5,364.5 - parent: 1 - - uid: 10255 + pos: -103.5,-9.5 + parent: 2 + - uid: 22620 components: - type: Transform - pos: 428.5,376.5 - parent: 1 - - uid: 10666 + pos: -103.5,-8.5 + parent: 2 + - uid: 22621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,375.5 - parent: 1 - - uid: 13124 + pos: -103.5,-6.5 + parent: 2 + - uid: 22622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,398.5 - parent: 1 - - uid: 14778 + pos: -103.5,-5.5 + parent: 2 + - uid: 22623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,422.5 - parent: 1 - - uid: 14779 + pos: -103.5,-4.5 + parent: 2 + - uid: 22624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,420.5 - parent: 1 - - uid: 14780 + pos: -103.5,-3.5 + parent: 2 + - uid: 22625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,420.5 - parent: 1 - - uid: 14781 + pos: -103.5,-2.5 + parent: 2 + - uid: 22626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,412.5 - parent: 1 - - uid: 14782 + pos: -103.5,-1.5 + parent: 2 + - uid: 22627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,412.5 - parent: 1 - - uid: 14783 + pos: -103.5,-0.5 + parent: 2 + - uid: 22628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,413.5 - parent: 1 - - uid: 14784 + pos: -103.5,-7.5 + parent: 2 + - uid: 22637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,409.5 - parent: 1 - - uid: 14785 + pos: -72.5,-19.5 + parent: 2 + - uid: 22638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,410.5 - parent: 1 - - uid: 14786 + pos: -71.5,-19.5 + parent: 2 + - uid: 22642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,406.5 - parent: 1 - - uid: 14787 + pos: -68.5,-20.5 + parent: 2 + - uid: 22644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,406.5 - parent: 1 - - uid: 14788 + pos: -96.5,18.5 + parent: 2 + - uid: 22645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,408.5 - parent: 1 - - uid: 14789 + pos: -97.5,18.5 + parent: 2 + - uid: 22646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 314.5,410.5 - parent: 1 - - uid: 16116 + pos: -98.5,18.5 + parent: 2 + - uid: 22647 components: - type: Transform - pos: -1.5,5.5 - parent: 16114 - - uid: 17875 + pos: -100.5,18.5 + parent: 2 + - uid: 22648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 511.5,384.5 - parent: 1 - - uid: 17927 + pos: -101.5,18.5 + parent: 2 + - uid: 22649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,389.5 - parent: 1 - - uid: 17929 + pos: -102.5,18.5 + parent: 2 + - uid: 22650 components: - type: Transform - pos: 505.5,383.5 - parent: 1 - - uid: 20146 + pos: -103.5,18.5 + parent: 2 + - uid: 22651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,438.5 - parent: 1 - - uid: 20147 + pos: -94.5,31.5 + parent: 2 + - uid: 22652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,440.5 - parent: 1 - - uid: 20196 + pos: -105.5,18.5 + parent: 2 + - uid: 22653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 20181 - - uid: 20197 + pos: -106.5,18.5 + parent: 2 + - uid: 22654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 20181 - - uid: 20198 + pos: -107.5,18.5 + parent: 2 + - uid: 22655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 20181 - - uid: 20539 + pos: -109.5,18.5 + parent: 2 + - uid: 22656 components: - type: Transform - pos: 6.5,6.5 - parent: 20527 - - uid: 20540 + pos: -110.5,18.5 + parent: 2 + - uid: 22657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 20527 - - uid: 20541 + pos: -111.5,18.5 + parent: 2 + - uid: 22658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 20527 - - uid: 21038 + pos: -99.5,18.5 + parent: 2 + - uid: 22659 components: - type: Transform - pos: 340.5,450.5 - parent: 1 - - uid: 21414 + pos: -112.5,18.5 + parent: 2 + - uid: 22660 components: - - type: MetaData - name: HoP's Office APC - type: Transform - pos: 9.5,22.5 - parent: 5072 - - type: Battery - startingCharge: 11999.066 - - uid: 21576 + pos: -108.5,18.5 + parent: 2 + - uid: 22673 components: - - type: MetaData - name: Captain's Quarters APC - type: Transform - pos: 8.5,27.5 - parent: 5072 - - uid: 21761 + pos: -135.5,22.5 + parent: 2 + - uid: 22675 components: - - type: MetaData - name: Bridge APC - type: Transform - pos: -2.5,27.5 - parent: 5072 - - type: Battery - startingCharge: 11999.3 -- proto: APCElectronics - entities: - - uid: 5869 + pos: -136.5,23.5 + parent: 2 + - uid: 22676 components: - type: Transform - pos: 309.5,382.5 - parent: 1 -- proto: APCHighCapacity - entities: - - uid: 9016 + pos: -136.5,22.5 + parent: 2 + - uid: 22691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 297.5,380.5 - parent: 1 -- proto: ArtistCircuitBoard - entities: - - uid: 6660 + pos: -106.5,25.5 + parent: 2 + - uid: 22692 components: - type: Transform - pos: 302.5,407.5 - parent: 1 -- proto: Ashtray - entities: - - uid: 18940 + pos: -106.5,26.5 + parent: 2 + - uid: 22710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,401.5 - parent: 1 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 386 + pos: -68.5,-32.5 + parent: 2 + - uid: 22719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 505.5,391.5 - parent: 1 - - uid: 450 + pos: -116.5,25.5 + parent: 2 + - uid: 22720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 503.5,391.5 - parent: 1 - - uid: 1615 + pos: -109.5,25.5 + parent: 2 + - uid: 22721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,381.5 - parent: 1 - - uid: 2631 + pos: -119.5,25.5 + parent: 2 + - uid: 22722 components: - type: Transform - pos: 430.5,383.5 - parent: 1 - - uid: 4617 + pos: -117.5,25.5 + parent: 2 + - uid: 22723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,379.5 - parent: 1 - - uid: 5108 + pos: -118.5,25.5 + parent: 2 + - uid: 22724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,381.5 - parent: 1 - - uid: 5109 + pos: -107.5,25.5 + parent: 2 + - uid: 22725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,387.5 - parent: 1 - - uid: 5111 + pos: -108.5,25.5 + parent: 2 + - uid: 22726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,389.5 - parent: 1 - - uid: 5112 + pos: -110.5,25.5 + parent: 2 + - uid: 22727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,379.5 - parent: 1 - - uid: 5115 + pos: -111.5,25.5 + parent: 2 + - uid: 22728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,384.5 - parent: 1 - - uid: 5116 + pos: -112.5,25.5 + parent: 2 + - uid: 22729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,384.5 - parent: 1 - - uid: 7449 + pos: -113.5,25.5 + parent: 2 + - uid: 22730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 315.5,411.5 - parent: 1 - - uid: 8434 + pos: -114.5,25.5 + parent: 2 + - uid: 22731 components: - type: Transform - pos: 434.5,383.5 - parent: 1 - - uid: 10327 + pos: -115.5,25.5 + parent: 2 + - uid: 22732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,387.5 - parent: 1 - - uid: 14593 + pos: -114.5,26.5 + parent: 2 + - uid: 22733 components: - type: Transform - pos: 367.5,377.5 - parent: 1 - - uid: 14613 + pos: -114.5,28.5 + parent: 2 + - uid: 22734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,439.5 - parent: 1 - - uid: 14614 + pos: -114.5,29.5 + parent: 2 + - uid: 22735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 317.5,428.5 - parent: 1 - - uid: 14615 + pos: -114.5,27.5 + parent: 2 + - uid: 22736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,411.5 - parent: 1 - - uid: 14616 + pos: -114.5,30.5 + parent: 2 + - uid: 22737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,389.5 - parent: 1 - - uid: 14617 + pos: -115.5,30.5 + parent: 2 + - uid: 22738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,389.5 - parent: 1 - - uid: 14618 + pos: -117.5,30.5 + parent: 2 + - uid: 22739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,389.5 - parent: 1 - - uid: 14619 + pos: -116.5,30.5 + parent: 2 + - uid: 22740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,389.5 - parent: 1 - - uid: 14620 + pos: -119.5,26.5 + parent: 2 + - uid: 22741 components: - type: Transform - pos: 307.5,378.5 - parent: 1 - - uid: 14621 + pos: -119.5,24.5 + parent: 2 + - uid: 22742 components: - type: Transform - pos: 305.5,378.5 - parent: 1 - - uid: 14622 + pos: -119.5,23.5 + parent: 2 + - uid: 22743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 294.5,381.5 - parent: 1 - - uid: 14623 + pos: -119.5,22.5 + parent: 2 + - uid: 22744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 299.5,381.5 - parent: 1 - - uid: 14624 + pos: -119.5,20.5 + parent: 2 + - uid: 22745 components: - type: Transform - pos: 338.5,378.5 - parent: 1 - - uid: 14625 + pos: -119.5,21.5 + parent: 2 + - uid: 22746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,377.5 - parent: 1 - - uid: 14626 + pos: -118.5,21.5 + parent: 2 + - uid: 22747 components: - type: Transform - pos: 369.5,377.5 - parent: 1 - - uid: 14627 + pos: -116.5,21.5 + parent: 2 + - uid: 22748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,379.5 - parent: 1 - - uid: 14628 + pos: -115.5,21.5 + parent: 2 + - uid: 22749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,386.5 - parent: 1 - - uid: 14629 + pos: -117.5,21.5 + parent: 2 + - uid: 22750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,386.5 - parent: 1 - - uid: 14630 + pos: -120.5,20.5 + parent: 2 + - uid: 22751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,379.5 - parent: 1 - - uid: 14636 + pos: -122.5,20.5 + parent: 2 + - uid: 22752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,389.5 - parent: 1 - - uid: 14640 + pos: -121.5,20.5 + parent: 2 + - uid: 22753 components: - type: Transform - pos: 400.5,362.5 - parent: 1 - - uid: 14642 + pos: -120.5,25.5 + parent: 2 + - uid: 22754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,385.5 - parent: 1 - - uid: 14644 + pos: -121.5,25.5 + parent: 2 + - uid: 22755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,429.5 - parent: 1 - - uid: 15408 + pos: -122.5,25.5 + parent: 2 + - uid: 22756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,419.5 - parent: 1 - - uid: 16044 + pos: -124.5,25.5 + parent: 2 + - uid: 22757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,439.5 - parent: 1 - - uid: 16117 + pos: -125.5,25.5 + parent: 2 + - uid: 22758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 16114 - - uid: 17333 + pos: -126.5,25.5 + parent: 2 + - uid: 22759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 17330 - - uid: 17334 + pos: -127.5,25.5 + parent: 2 + - uid: 22760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 17330 - - uid: 17438 + pos: -128.5,25.5 + parent: 2 + - uid: 22761 components: - type: Transform - pos: 358.5,375.5 - parent: 1 - - uid: 17453 + pos: -123.5,25.5 + parent: 2 + - uid: 22762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 511.5,389.5 - parent: 1 - - uid: 17470 + pos: -128.5,24.5 + parent: 2 + - uid: 22763 components: - type: Transform - pos: 442.5,391.5 - parent: 1 - - uid: 17666 + pos: -129.5,24.5 + parent: 2 + - uid: 22764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 511.5,387.5 - parent: 1 - - uid: 20199 + pos: -131.5,24.5 + parent: 2 + - uid: 22765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 20181 - - uid: 20542 + pos: -132.5,24.5 + parent: 2 + - uid: 22766 components: - type: Transform - pos: 1.5,-0.5 - parent: 20527 - - uid: 21194 + pos: -130.5,24.5 + parent: 2 + - uid: 22767 components: - type: Transform - pos: 425.5,376.5 - parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 22001 + pos: -133.5,24.5 + parent: 2 + - uid: 22771 components: - type: Transform - pos: 338.5,431.5 - parent: 1 - - uid: 22002 + pos: -128.5,26.5 + parent: 2 + - uid: 22772 components: - type: Transform - pos: 338.5,430.5 - parent: 1 - - uid: 22003 + pos: -128.5,27.5 + parent: 2 + - uid: 22773 components: - type: Transform - pos: 338.5,429.5 - parent: 1 - - uid: 22004 + pos: -127.5,27.5 + parent: 2 + - uid: 22774 components: - type: Transform - pos: 339.5,431.5 - parent: 1 - - uid: 22005 + pos: -126.5,27.5 + parent: 2 + - uid: 22775 components: - type: Transform - pos: 339.5,430.5 - parent: 1 - - uid: 22006 + pos: -124.5,27.5 + parent: 2 + - uid: 22776 components: - type: Transform - pos: 339.5,429.5 - parent: 1 - - uid: 22007 + pos: -123.5,27.5 + parent: 2 + - uid: 22777 components: - type: Transform - pos: 341.5,431.5 - parent: 1 - - uid: 22008 + pos: -122.5,27.5 + parent: 2 + - uid: 22778 components: - type: Transform - pos: 341.5,430.5 - parent: 1 - - uid: 22009 + pos: -125.5,27.5 + parent: 2 + - uid: 22779 components: - type: Transform - pos: 341.5,429.5 - parent: 1 - - uid: 22010 + pos: -122.5,28.5 + parent: 2 + - uid: 22780 components: - type: Transform - pos: 342.5,431.5 - parent: 1 - - uid: 22011 + pos: -122.5,29.5 + parent: 2 + - uid: 22781 components: - type: Transform - pos: 342.5,430.5 - parent: 1 - - uid: 22012 + pos: -123.5,29.5 + parent: 2 + - uid: 22782 components: - type: Transform - pos: 342.5,429.5 - parent: 1 - - uid: 22013 + pos: -124.5,29.5 + parent: 2 + - uid: 22783 components: - type: Transform - pos: 344.5,431.5 - parent: 1 - - uid: 22014 + pos: -126.5,29.5 + parent: 2 + - uid: 22784 components: - type: Transform - pos: 344.5,430.5 - parent: 1 - - uid: 22015 + pos: -127.5,29.5 + parent: 2 + - uid: 22785 components: - type: Transform - pos: 344.5,429.5 - parent: 1 - - uid: 22016 + pos: -128.5,29.5 + parent: 2 + - uid: 22786 components: - type: Transform - pos: 345.5,431.5 - parent: 1 - - uid: 22017 + pos: -125.5,29.5 + parent: 2 + - uid: 22787 components: - type: Transform - pos: 345.5,429.5 - parent: 1 - - uid: 22018 + pos: -128.5,30.5 + parent: 2 + - uid: 22788 components: - type: Transform - pos: 345.5,430.5 - parent: 1 - - uid: 22028 + pos: -128.5,31.5 + parent: 2 + - uid: 22794 components: - type: Transform - pos: 352.5,430.5 - parent: 1 - - uid: 22029 + pos: -126.5,24.5 + parent: 2 + - uid: 22795 components: - type: Transform - pos: 352.5,429.5 - parent: 1 - - uid: 22169 + pos: -126.5,23.5 + parent: 2 + - uid: 22799 components: - type: Transform - pos: 350.5,429.5 - parent: 1 - - uid: 22170 + pos: -128.5,22.5 + parent: 2 + - uid: 22800 components: - type: Transform - pos: 349.5,429.5 - parent: 1 - - uid: 22171 + pos: -31.5,2.5 + parent: 2 + - uid: 22801 components: - type: Transform - pos: 348.5,429.5 - parent: 1 - - uid: 22172 + pos: -129.5,22.5 + parent: 2 + - uid: 22829 components: - type: Transform - pos: 348.5,430.5 - parent: 1 - - uid: 22173 + pos: -99.5,21.5 + parent: 2 + - uid: 22833 components: - type: Transform - pos: 348.5,431.5 - parent: 1 - - uid: 22174 + pos: -107.5,-27.5 + parent: 2 + - uid: 22834 components: - type: Transform - pos: 349.5,430.5 - parent: 1 - - uid: 22175 + pos: -106.5,-27.5 + parent: 2 + - uid: 22835 components: - type: Transform - pos: 349.5,431.5 - parent: 1 - - uid: 22176 + pos: -104.5,-27.5 + parent: 2 + - uid: 22836 components: - type: Transform - pos: 350.5,430.5 - parent: 1 - - uid: 22177 + pos: -105.5,-27.5 + parent: 2 + - uid: 22837 components: - type: Transform - pos: 350.5,431.5 - parent: 1 -- proto: AtmosFixFreezerMarker - entities: - - uid: 5892 + pos: -104.5,-28.5 + parent: 2 + - uid: 22838 components: - type: Transform - pos: 411.5,385.5 - parent: 1 - - uid: 5893 + pos: -104.5,-29.5 + parent: 2 + - uid: 22839 components: - type: Transform - pos: 412.5,385.5 - parent: 1 - - uid: 5894 + pos: -104.5,-30.5 + parent: 2 + - uid: 22840 components: - type: Transform - pos: 412.5,384.5 - parent: 1 - - uid: 5895 + pos: -104.5,-32.5 + parent: 2 + - uid: 22841 components: - type: Transform - pos: 411.5,384.5 - parent: 1 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 21167 + pos: -104.5,-33.5 + parent: 2 + - uid: 22844 components: - type: Transform - pos: 332.5,431.5 - parent: 1 - - uid: 21168 + pos: -104.5,-36.5 + parent: 2 + - uid: 22845 components: - type: Transform - pos: 332.5,429.5 - parent: 1 - - uid: 21169 + pos: -104.5,-31.5 + parent: 2 + - uid: 22846 components: - type: Transform - pos: 333.5,431.5 - parent: 1 - - uid: 21170 + pos: -104.5,-53.5 + parent: 2 + - uid: 22847 components: - type: Transform - pos: 333.5,430.5 - parent: 1 - - uid: 21171 + pos: -104.5,-55.5 + parent: 2 + - uid: 22848 components: - type: Transform - pos: 333.5,429.5 - parent: 1 - - uid: 21172 + pos: -104.5,-56.5 + parent: 2 + - uid: 22849 components: - type: Transform - pos: 332.5,430.5 - parent: 1 -- proto: AtmosFixOxygenMarker - entities: - - uid: 21173 + pos: -104.5,-54.5 + parent: 2 + - uid: 22850 components: - type: Transform - pos: 329.5,431.5 - parent: 1 - - uid: 21174 + pos: -88.5,-56.5 + parent: 2 + - uid: 22851 components: - type: Transform - pos: 329.5,429.5 - parent: 1 - - uid: 21175 + pos: -85.5,-56.5 + parent: 2 + - uid: 22852 components: - type: Transform - pos: 330.5,431.5 - parent: 1 - - uid: 21176 + pos: -84.5,-56.5 + parent: 2 + - uid: 22853 components: - type: Transform - pos: 330.5,430.5 - parent: 1 - - uid: 21177 + pos: -82.5,-56.5 + parent: 2 + - uid: 22854 components: - type: Transform - pos: 330.5,429.5 - parent: 1 - - uid: 21178 + pos: -83.5,-56.5 + parent: 2 + - uid: 22855 components: - type: Transform - pos: 329.5,430.5 - parent: 1 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 21179 + pos: -81.5,-56.5 + parent: 2 + - uid: 22856 components: - type: Transform - pos: 335.5,431.5 - parent: 1 - - uid: 21180 + pos: -80.5,-56.5 + parent: 2 + - uid: 22857 components: - type: Transform - pos: 335.5,430.5 - parent: 1 - - uid: 21181 + pos: -79.5,-56.5 + parent: 2 + - uid: 22858 components: - type: Transform - pos: 335.5,429.5 - parent: 1 - - uid: 21182 + pos: -78.5,-56.5 + parent: 2 + - uid: 22859 components: - type: Transform - pos: 336.5,431.5 - parent: 1 - - uid: 21183 + pos: -89.5,-56.5 + parent: 2 + - uid: 22860 components: - type: Transform - pos: 336.5,430.5 - parent: 1 - - uid: 21184 + pos: -93.5,-56.5 + parent: 2 + - uid: 22861 components: - type: Transform - pos: 336.5,429.5 - parent: 1 -- proto: AtmosIDCard - entities: - - uid: 20200 + pos: -92.5,-56.5 + parent: 2 + - uid: 22862 components: - type: Transform - pos: 6.5,-1.5 - parent: 20181 -- proto: Autolathe - entities: - - uid: 2273 + pos: -95.5,-56.5 + parent: 2 + - uid: 22863 components: - type: Transform - pos: 405.5,369.5 - parent: 1 - - uid: 3595 + pos: -94.5,-56.5 + parent: 2 + - uid: 22864 components: - type: Transform - pos: 361.5,391.5 - parent: 1 - - uid: 7527 + pos: -91.5,-56.5 + parent: 2 + - uid: 22865 components: - type: Transform - pos: 351.5,398.5 - parent: 1 - - uid: 16241 + pos: -90.5,-56.5 + parent: 2 + - uid: 22866 components: - type: Transform - pos: 335.5,406.5 - parent: 1 -- proto: BalloonSyn - entities: - - uid: 18410 + pos: -87.5,-56.5 + parent: 2 + - uid: 22867 components: - - type: MetaData - desc: Говорят мапперы обесценили их щитспавном на своих картах буквально ВЕЗДЕ. Хехе - type: Transform - pos: 361.5,428.5 - parent: 1 -- proto: BannerCargo - entities: - - uid: 5614 + pos: -86.5,-56.5 + parent: 2 + - uid: 22868 components: - type: Transform - pos: 363.5,390.5 - parent: 1 -- proto: BannerEngineering - entities: - - uid: 6694 + pos: -103.5,-56.5 + parent: 2 + - uid: 22869 components: - type: Transform - pos: 337.5,410.5 - parent: 1 -- proto: BannerSecurity - entities: - - uid: 16367 + pos: -102.5,-56.5 + parent: 2 + - uid: 22870 components: - type: Transform - pos: 422.5,405.5 - parent: 1 -- proto: Barricade - entities: - - uid: 17537 + pos: -100.5,-56.5 + parent: 2 + - uid: 22871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 506.5,390.5 - parent: 1 - - uid: 17665 + pos: -99.5,-56.5 + parent: 2 + - uid: 22872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 502.5,390.5 - parent: 1 - - uid: 18691 + pos: -98.5,-56.5 + parent: 2 + - uid: 22873 components: - type: Transform - pos: 333.5,450.5 - parent: 1 -- proto: BarricadeBlock - entities: - - uid: 3550 + pos: -97.5,-56.5 + parent: 2 + - uid: 22874 components: - type: Transform - pos: 358.5,413.5 - parent: 1 - - uid: 5177 + pos: -96.5,-56.5 + parent: 2 + - uid: 22875 components: - type: Transform - pos: 433.5,406.5 - parent: 1 - - uid: 5178 + pos: -101.5,-56.5 + parent: 2 + - uid: 22876 components: - type: Transform - pos: 433.5,409.5 - parent: 1 - - uid: 5182 + pos: -77.5,-56.5 + parent: 2 + - uid: 22900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,405.5 - parent: 1 - - uid: 5985 + pos: -136.5,24.5 + parent: 2 + - uid: 22922 components: - type: Transform - pos: 332.5,406.5 - parent: 1 - - uid: 14448 + pos: -34.5,-63.5 + parent: 2 + - uid: 22923 components: - type: Transform - pos: 332.5,446.5 - parent: 1 - - uid: 17452 + pos: -34.5,-62.5 + parent: 2 + - uid: 22924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 507.5,386.5 - parent: 1 - - uid: 17535 + pos: -34.5,-61.5 + parent: 2 + - uid: 22925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 505.5,391.5 - parent: 1 - - uid: 18218 + pos: -31.5,-69.5 + parent: 2 + - uid: 22926 components: - type: Transform - pos: 362.5,411.5 - parent: 1 - - uid: 18330 + pos: -31.5,-71.5 + parent: 2 + - uid: 22927 components: - type: Transform - pos: 431.5,418.5 - parent: 1 - - uid: 18402 + pos: -31.5,-72.5 + parent: 2 + - uid: 22928 components: - type: Transform - pos: 359.5,424.5 - parent: 1 - - uid: 18565 + pos: -31.5,-73.5 + parent: 2 + - uid: 22929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,409.5 - parent: 1 - - uid: 18613 + pos: -31.5,-70.5 + parent: 2 + - uid: 22930 components: - type: Transform - pos: 338.5,443.5 - parent: 1 - - uid: 20174 + pos: -31.5,-74.5 + parent: 2 + - uid: 22931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,447.5 - parent: 1 - - uid: 20175 + pos: -32.5,-74.5 + parent: 2 + - uid: 22932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,451.5 - parent: 1 - - uid: 21222 + pos: -33.5,-74.5 + parent: 2 + - uid: 22933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 511.5,389.5 - parent: 1 - - uid: 21274 + pos: -33.5,-75.5 + parent: 2 + - uid: 22934 components: - type: Transform - pos: 334.5,384.5 - parent: 1 - - uid: 21914 + pos: -33.5,-76.5 + parent: 2 + - uid: 22937 components: - type: Transform - pos: 16.5,22.5 - parent: 5072 - - uid: 21943 + pos: -34.5,-69.5 + parent: 2 + - uid: 22938 components: - type: Transform - pos: 3.5,22.5 - parent: 5072 - - uid: 21944 + pos: -26.5,-61.5 + parent: 2 + - uid: 22939 components: - type: Transform - pos: 5.5,25.5 - parent: 5072 - - uid: 21945 + pos: -26.5,-62.5 + parent: 2 + - uid: 22940 components: - type: Transform - pos: 11.5,19.5 - parent: 5072 - - uid: 21946 + pos: -26.5,-63.5 + parent: 2 + - uid: 22941 components: - type: Transform - pos: 12.5,20.5 - parent: 5072 - - uid: 21947 + pos: -27.5,-63.5 + parent: 2 + - uid: 22942 components: - type: Transform - pos: 12.5,25.5 - parent: 5072 -- proto: BarricadeDirectional - entities: - - uid: 5179 + pos: -28.5,-63.5 + parent: 2 + - uid: 22943 components: - type: Transform - pos: 432.5,410.5 - parent: 1 - - uid: 5180 + pos: -29.5,-63.5 + parent: 2 + - uid: 22944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 434.5,405.5 - parent: 1 - - uid: 17664 + pos: -29.5,-64.5 + parent: 2 + - uid: 22945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 503.5,390.5 - parent: 1 - - uid: 18404 + pos: -29.5,-65.5 + parent: 2 + - uid: 22946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,423.5 - parent: 1 - - uid: 18409 + pos: -29.5,-66.5 + parent: 2 + - uid: 22947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,388.5 - parent: 1 - - uid: 18550 + pos: -29.5,-67.5 + parent: 2 + - uid: 22948 components: - type: Transform - pos: 358.5,409.5 - parent: 1 - - uid: 20173 + pos: -28.5,-67.5 + parent: 2 + - uid: 22949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,446.5 - parent: 1 - - uid: 21221 + pos: -27.5,-67.5 + parent: 2 + - uid: 22950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 510.5,387.5 - parent: 1 - - uid: 21441 + pos: -26.5,-64.5 + parent: 2 + - uid: 22951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,28.5 - parent: 5072 - - uid: 21512 + pos: -26.5,-65.5 + parent: 2 + - uid: 22952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,28.5 - parent: 5072 - - uid: 21735 + pos: -58.5,-33.5 + parent: 2 + - uid: 23124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 5072 - - uid: 21941 + pos: -48.5,-63.5 + parent: 2 + - uid: 23142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,24.5 - parent: 5072 - - uid: 21942 + pos: -134.5,24.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: -135.5,24.5 + parent: 2 + - uid: 23191 components: - type: Transform - pos: -4.5,27.5 - parent: 5072 -- proto: BarSign - entities: - - uid: 18257 + pos: -49.5,-63.5 + parent: 2 + - uid: 23192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,445.5 - parent: 1 -- proto: BaseGasCondenser - entities: - - uid: 16275 + pos: -51.5,-63.5 + parent: 2 + - uid: 23193 components: - type: Transform - pos: 328.5,416.5 - parent: 1 -- proto: Beaker - entities: - - uid: 5478 + pos: -52.5,-63.5 + parent: 2 + - uid: 23194 components: - type: Transform - pos: 411.5,418.5 - parent: 1 -- proto: Bed - entities: - - uid: 2558 + pos: -53.5,-63.5 + parent: 2 + - uid: 23195 components: - type: Transform - pos: 371.5,392.5 - parent: 1 - - uid: 2752 + pos: -55.5,-62.5 + parent: 2 + - uid: 23197 components: - type: Transform - pos: 415.5,407.5 - parent: 1 - - uid: 4310 + pos: -50.5,-63.5 + parent: 2 + - uid: 23206 components: - type: Transform - pos: 351.5,414.5 - parent: 1 - - uid: 4832 + pos: -48.5,-66.5 + parent: 2 + - uid: 23208 components: - type: Transform - pos: 353.5,380.5 - parent: 1 - - uid: 4912 + pos: -48.5,-67.5 + parent: 2 + - uid: 23209 components: - type: Transform - pos: 419.5,389.5 - parent: 1 - - uid: 5046 + pos: -48.5,-68.5 + parent: 2 + - uid: 23210 components: - type: Transform - pos: 430.5,405.5 - parent: 1 - - uid: 5047 + pos: -48.5,-69.5 + parent: 2 + - uid: 23211 components: - type: Transform - pos: 430.5,403.5 - parent: 1 - - uid: 5048 + pos: -48.5,-70.5 + parent: 2 + - uid: 23212 components: - type: Transform - pos: 430.5,401.5 - parent: 1 - - uid: 5052 + pos: -48.5,-71.5 + parent: 2 + - uid: 23213 components: - type: Transform - pos: 430.5,397.5 - parent: 1 - - uid: 5053 + pos: -49.5,-71.5 + parent: 2 + - uid: 23214 components: - type: Transform - pos: 430.5,391.5 - parent: 1 - - uid: 5060 + pos: -50.5,-71.5 + parent: 2 + - uid: 23215 components: - type: Transform - pos: 429.5,387.5 - parent: 1 - - uid: 5100 + pos: -52.5,-71.5 + parent: 2 + - uid: 23216 components: - type: Transform - pos: 424.5,408.5 - parent: 1 - - uid: 5246 + pos: -53.5,-71.5 + parent: 2 + - uid: 23217 components: - type: Transform - pos: 456.5,416.5 - parent: 1 - - uid: 5253 + pos: -54.5,-71.5 + parent: 2 + - uid: 23218 components: - type: Transform - pos: 460.5,416.5 - parent: 1 - - uid: 5254 + pos: -55.5,-71.5 + parent: 2 + - uid: 23219 components: - type: Transform - pos: 458.5,416.5 - parent: 1 - - uid: 5507 + pos: -56.5,-71.5 + parent: 2 + - uid: 23220 components: - type: Transform - pos: 390.5,410.5 - parent: 1 - - uid: 5510 + pos: -57.5,-71.5 + parent: 2 + - uid: 23221 components: - type: Transform - pos: 397.5,410.5 - parent: 1 - - uid: 5524 + pos: -58.5,-71.5 + parent: 2 + - uid: 23222 components: - type: Transform - pos: 390.5,406.5 - parent: 1 - - uid: 5756 + pos: -51.5,-71.5 + parent: 2 + - uid: 23223 components: - type: Transform - pos: 365.5,414.5 - parent: 1 - - uid: 7489 + pos: -59.5,-71.5 + parent: 2 + - uid: 23224 components: - type: Transform - pos: 351.5,385.5 - parent: 1 - - uid: 18012 + pos: -60.5,-71.5 + parent: 2 + - uid: 23225 components: - type: Transform - pos: 412.5,370.5 - parent: 1 - - uid: 18013 + pos: -60.5,-70.5 + parent: 2 + - uid: 23226 components: - type: Transform - pos: 412.5,367.5 - parent: 1 - - uid: 18014 + pos: -60.5,-69.5 + parent: 2 + - uid: 23227 components: - type: Transform - pos: 419.5,370.5 - parent: 1 - - uid: 18015 + pos: -57.5,-72.5 + parent: 2 + - uid: 23228 components: - type: Transform - pos: 419.5,367.5 - parent: 1 - - uid: 18948 + pos: -76.5,-59.5 + parent: 2 + - uid: 23229 components: - type: Transform - pos: 436.5,410.5 - parent: 1 - - uid: 21563 + pos: -76.5,-61.5 + parent: 2 + - uid: 23230 components: - type: Transform - pos: 12.5,23.5 - parent: 5072 - - uid: 21627 + pos: -76.5,-62.5 + parent: 2 + - uid: 23231 components: - type: Transform - pos: 10.5,16.5 - parent: 5072 -- proto: BedsheetBlack - entities: - - uid: 4913 + pos: -76.5,-63.5 + parent: 2 + - uid: 23232 components: - type: Transform - pos: 419.5,389.5 - parent: 1 - - uid: 18951 + pos: -76.5,-64.5 + parent: 2 + - uid: 23233 components: - type: Transform - pos: 436.5,410.5 - parent: 1 -- proto: BedsheetBrigmedic - entities: - - uid: 6212 + pos: -76.5,-65.5 + parent: 2 + - uid: 23234 components: - type: Transform - pos: 426.5,399.5 - parent: 1 -- proto: BedsheetCaptain - entities: - - uid: 5757 + pos: -76.5,-60.5 + parent: 2 + - uid: 23235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,414.5 - parent: 1 - - uid: 21697 + pos: -75.5,-65.5 + parent: 2 + - uid: 23236 components: - type: Transform - pos: 12.5,23.5 - parent: 5072 -- proto: BedsheetCE - entities: - - uid: 4311 + pos: -74.5,-65.5 + parent: 2 + - uid: 23237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,414.5 - parent: 1 -- proto: BedsheetClown - entities: - - uid: 5257 + pos: -73.5,-65.5 + parent: 2 + - uid: 23238 components: - type: Transform - pos: 456.5,416.5 - parent: 1 - - uid: 5523 + pos: -71.5,-65.5 + parent: 2 + - uid: 23242 components: - type: Transform - pos: 390.5,410.5 - parent: 1 -- proto: BedsheetCMO - entities: - - uid: 5332 + pos: -72.5,-65.5 + parent: 2 + - uid: 23253 components: - type: Transform - parent: 5482 - - type: Physics - canCollide: False -- proto: BedsheetCult - entities: - - uid: 18020 + pos: -10.5,-21.5 + parent: 2 + - uid: 23255 components: - type: Transform - pos: 412.5,367.5 - parent: 1 -- proto: BedsheetGreen - entities: - - uid: 5456 + pos: -55.5,-61.5 + parent: 2 + - uid: 23256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,422.5 - parent: 1 - - uid: 5457 + pos: -55.5,-60.5 + parent: 2 + - uid: 23257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,421.5 - parent: 1 - - uid: 5460 + pos: -54.5,-60.5 + parent: 2 + - uid: 23258 components: - type: Transform - pos: 417.5,421.5 - parent: 1 - - uid: 5461 + pos: -53.5,-60.5 + parent: 2 + - uid: 23259 components: - type: Transform - pos: 417.5,422.5 - parent: 1 -- proto: BedsheetHOP - entities: - - uid: 1318 + pos: -52.5,-60.5 + parent: 2 + - uid: 23260 components: - type: Transform - pos: 371.5,392.5 - parent: 1 - - uid: 21708 + pos: -51.5,-60.5 + parent: 2 + - uid: 23261 components: - type: Transform - pos: 10.5,16.5 - parent: 5072 -- proto: BedsheetHOS - entities: - - uid: 5117 + pos: -49.5,-60.5 + parent: 2 + - uid: 23262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,387.5 - parent: 1 -- proto: BedsheetIan - entities: - - uid: 18023 + pos: -48.5,-60.5 + parent: 2 + - uid: 23263 components: - type: Transform - pos: 419.5,367.5 - parent: 1 -- proto: BedsheetMedical - entities: - - uid: 5378 + pos: -50.5,-60.5 + parent: 2 + - uid: 23264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,416.5 - parent: 1 - - uid: 5391 + pos: -47.5,-60.5 + parent: 2 + - uid: 23265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,415.5 - parent: 1 - - uid: 5392 + pos: -47.5,-59.5 + parent: 2 + - uid: 23266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,414.5 - parent: 1 - - uid: 18593 + pos: -76.5,-70.5 + parent: 2 + - uid: 23267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,437.5 - parent: 1 -- proto: BedsheetMime - entities: - - uid: 2345 + pos: -76.5,-71.5 + parent: 2 + - uid: 23268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,410.5 - parent: 1 -- proto: BedsheetNT - entities: - - uid: 5258 + pos: -76.5,-72.5 + parent: 2 + - uid: 23269 components: - type: Transform - pos: 460.5,416.5 - parent: 1 - - uid: 5259 + pos: -76.5,-73.5 + parent: 2 + - uid: 23270 components: - type: Transform - pos: 458.5,416.5 - parent: 1 -- proto: BedsheetOrange - entities: - - uid: 5064 + pos: -76.5,-74.5 + parent: 2 + - uid: 23271 components: - type: Transform - pos: 430.5,391.5 - parent: 1 - - uid: 5065 + pos: -76.5,-75.5 + parent: 2 + - uid: 23272 components: - type: Transform - pos: 430.5,401.5 - parent: 1 - - uid: 5066 + pos: -76.5,-68.5 + parent: 2 + - uid: 23273 components: - type: Transform - pos: 431.5,392.5 - parent: 1 - - uid: 5067 + pos: -77.5,-75.5 + parent: 2 + - uid: 23274 components: - type: Transform - pos: 430.5,397.5 - parent: 1 - - uid: 5068 + pos: -78.5,-75.5 + parent: 2 + - uid: 23275 components: - type: Transform - pos: 430.5,403.5 - parent: 1 - - uid: 5070 + pos: -78.5,-76.5 + parent: 2 + - uid: 23276 components: - type: Transform - pos: 431.5,396.5 - parent: 1 -- proto: BedsheetQM - entities: - - uid: 5657 + pos: -79.5,-76.5 + parent: 2 + - uid: 23277 components: - type: Transform - pos: 353.5,380.5 - parent: 1 -- proto: BedsheetRainbow - entities: - - uid: 18022 + pos: -81.5,-76.5 + parent: 2 + - uid: 23278 components: - type: Transform - pos: 419.5,370.5 - parent: 1 -- proto: BedsheetRD - entities: - - uid: 7491 + pos: -82.5,-76.5 + parent: 2 + - uid: 23279 components: - type: Transform - pos: 351.5,385.5 - parent: 1 -- proto: BedsheetRed - entities: - - uid: 5158 + pos: -80.5,-76.5 + parent: 2 + - uid: 23280 components: - type: Transform - pos: 415.5,407.5 - parent: 1 -- proto: BedsheetSyndie - entities: - - uid: 5103 + pos: -82.5,-77.5 + parent: 2 + - uid: 23281 components: - type: Transform - pos: 424.5,408.5 - parent: 1 - - uid: 18021 + pos: -82.5,-78.5 + parent: 2 + - uid: 23282 components: - - type: MetaData - desc: СБ отнимают его потому что ты круче их. - name: мужицкое одеяло - type: Transform - pos: 412.5,370.5 - parent: 1 -- proto: BedsheetWiz - entities: - - uid: 5535 + pos: -82.5,-79.5 + parent: 2 + - uid: 23283 components: - type: Transform - pos: 390.5,406.5 - parent: 1 -- proto: BenchBlueComfy - entities: - - uid: 3002 + pos: -82.5,-80.5 + parent: 2 + - uid: 23284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,408.5 - parent: 1 - - uid: 5325 + pos: -82.5,-81.5 + parent: 2 + - uid: 23300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,407.5 - parent: 1 - - uid: 5326 + pos: -76.5,-44.5 + parent: 2 + - uid: 23301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,408.5 - parent: 1 - - uid: 5327 + pos: -76.5,-43.5 + parent: 2 + - uid: 23302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,407.5 - parent: 1 - - uid: 20543 + pos: -76.5,-50.5 + parent: 2 + - uid: 23303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 20527 - - uid: 20544 + pos: -76.5,-41.5 + parent: 2 + - uid: 23304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 20527 - - uid: 20545 + pos: -76.5,-39.5 + parent: 2 + - uid: 23305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 20527 -- proto: BiofabricatorMachineCircuitboard - entities: - - uid: 10329 + pos: -76.5,-38.5 + parent: 2 + - uid: 23306 components: - type: Transform - pos: 397.5,414.5 - parent: 1 -- proto: Biogenerator - entities: - - uid: 2802 + pos: -76.5,-42.5 + parent: 2 + - uid: 23307 components: - type: Transform - pos: 416.5,381.5 - parent: 1 -- proto: BiomassReclaimer - entities: - - uid: 3530 + pos: -76.5,-40.5 + parent: 2 + - uid: 23309 components: - type: Transform - pos: 395.5,421.5 - parent: 1 -- proto: BlastDoor - entities: - - uid: 974 + pos: -76.5,-52.5 + parent: 2 + - uid: 23310 components: - type: Transform - pos: 304.5,388.5 - parent: 1 - - uid: 1339 + pos: -76.5,-51.5 + parent: 2 + - uid: 23311 components: - type: Transform - pos: 370.5,377.5 - parent: 1 - - uid: 1522 + pos: -76.5,-49.5 + parent: 2 + - uid: 23312 components: - type: Transform - pos: 304.5,387.5 - parent: 1 - - uid: 2070 + pos: -76.5,-48.5 + parent: 2 + - uid: 23313 components: - type: Transform - pos: 333.5,401.5 - parent: 1 - - uid: 2213 + pos: -76.5,-47.5 + parent: 2 + - uid: 23314 components: - type: Transform - pos: 366.5,377.5 - parent: 1 - - uid: 2461 + pos: -76.5,-46.5 + parent: 2 + - uid: 23315 components: - type: Transform - pos: 427.5,409.5 - parent: 1 - - uid: 2502 + pos: -76.5,-45.5 + parent: 2 + - uid: 23316 components: - type: Transform - pos: 350.5,428.5 - parent: 1 - - uid: 2630 + pos: -96.5,25.5 + parent: 2 + - uid: 23322 components: - type: Transform - pos: 334.5,401.5 - parent: 1 - - uid: 2728 + pos: -75.5,-16.5 + parent: 2 + - uid: 23323 components: - type: Transform - pos: 341.5,387.5 - parent: 1 - - uid: 2765 + pos: -75.5,-17.5 + parent: 2 + - uid: 23324 components: - type: Transform - pos: 340.5,387.5 - parent: 1 - - uid: 2766 + pos: -75.5,-18.5 + parent: 2 + - uid: 23325 components: - type: Transform - pos: 342.5,387.5 - parent: 1 - - uid: 2767 + pos: -75.5,-20.5 + parent: 2 + - uid: 23326 components: - type: Transform - pos: 425.5,376.5 - parent: 1 - - uid: 3079 + pos: -75.5,-21.5 + parent: 2 + - uid: 23327 components: - type: Transform - pos: 329.5,442.5 - parent: 1 - - uid: 3460 + pos: -75.5,-19.5 + parent: 2 + - uid: 23328 components: - type: Transform - pos: 335.5,401.5 - parent: 1 - - uid: 3837 + pos: -75.5,-22.5 + parent: 2 + - uid: 23329 components: - type: Transform - pos: 304.5,386.5 - parent: 1 - - uid: 12246 + pos: -75.5,-24.5 + parent: 2 + - uid: 23330 components: - type: Transform - pos: 316.5,424.5 - parent: 1 -- proto: BlastDoorOpen - entities: - - uid: 1353 + pos: -75.5,-23.5 + parent: 2 + - uid: 23335 components: - type: Transform - pos: 372.5,415.5 - parent: 1 - - uid: 2703 + pos: -67.5,-19.5 + parent: 2 + - uid: 23358 components: - type: Transform - pos: 373.5,415.5 - parent: 1 - - uid: 2725 + pos: -68.5,-26.5 + parent: 2 + - uid: 23359 components: - type: Transform - pos: 372.5,405.5 - parent: 1 - - uid: 2732 + pos: -68.5,-27.5 + parent: 2 + - uid: 23465 components: - type: Transform - pos: 385.5,405.5 - parent: 1 - - uid: 2733 + pos: -20.5,12.5 + parent: 2 + - uid: 23467 components: - type: Transform - pos: 386.5,405.5 - parent: 1 - - uid: 2738 + pos: -18.5,10.5 + parent: 2 + - uid: 23468 components: - type: Transform - pos: 373.5,405.5 - parent: 1 - - uid: 2753 + pos: -18.5,9.5 + parent: 2 + - uid: 23469 components: - type: Transform - pos: 379.5,416.5 - parent: 1 - - uid: 3056 + pos: -21.5,12.5 + parent: 2 + - uid: 23470 components: - type: Transform - pos: 386.5,415.5 - parent: 1 - - uid: 3057 + pos: -22.5,12.5 + parent: 2 + - uid: 23471 components: - type: Transform - pos: 385.5,415.5 - parent: 1 - - uid: 3058 + pos: -23.5,9.5 + parent: 2 + - uid: 23472 components: - type: Transform - pos: 374.5,423.5 - parent: 1 - - uid: 3060 + pos: -23.5,8.5 + parent: 2 + - uid: 23473 components: - type: Transform - pos: 373.5,422.5 - parent: 1 - - uid: 3061 + pos: -23.5,7.5 + parent: 2 + - uid: 23474 components: - type: Transform - pos: 372.5,422.5 - parent: 1 - - uid: 3062 + pos: -23.5,5.5 + parent: 2 + - uid: 23475 components: - type: Transform - pos: 383.5,424.5 - parent: 1 - - uid: 3063 + pos: -23.5,4.5 + parent: 2 + - uid: 23476 components: - type: Transform - pos: 386.5,422.5 - parent: 1 - - uid: 3064 + pos: -23.5,6.5 + parent: 2 + - uid: 23477 components: - type: Transform - pos: 384.5,423.5 - parent: 1 - - uid: 3067 + pos: -24.5,4.5 + parent: 2 + - uid: 23478 components: - type: Transform - pos: 385.5,422.5 - parent: 1 - - uid: 3069 + pos: -25.5,4.5 + parent: 2 + - uid: 23480 components: - type: Transform - pos: 376.5,424.5 - parent: 1 - - uid: 3071 + pos: -25.5,5.5 + parent: 2 + - uid: 23481 components: - type: Transform - pos: 375.5,424.5 - parent: 1 - - uid: 5013 + pos: -25.5,6.5 + parent: 2 + - uid: 23482 components: - type: Transform - pos: 379.5,425.5 - parent: 1 - - uid: 5106 + pos: -26.5,6.5 + parent: 2 + - uid: 23483 components: - type: Transform - pos: 378.5,425.5 - parent: 1 - - uid: 5107 + pos: -27.5,6.5 + parent: 2 + - uid: 23484 components: - type: Transform - pos: 380.5,425.5 - parent: 1 - - uid: 9406 + pos: -28.5,6.5 + parent: 2 + - uid: 23485 components: - type: Transform - pos: 377.5,425.5 - parent: 1 - - uid: 14612 + pos: -29.5,6.5 + parent: 2 + - uid: 23486 components: - type: Transform - pos: 381.5,425.5 - parent: 1 - - uid: 14856 + pos: -29.5,7.5 + parent: 2 + - uid: 23487 components: - type: Transform - pos: 314.5,411.5 - parent: 1 - - uid: 14857 + pos: -29.5,8.5 + parent: 2 + - uid: 23488 components: - type: Transform - pos: 310.5,412.5 - parent: 1 - - uid: 14858 + pos: -29.5,5.5 + parent: 2 + - uid: 23489 components: - type: Transform - pos: 311.5,411.5 - parent: 1 - - uid: 14859 + pos: -29.5,4.5 + parent: 2 + - uid: 23491 components: - type: Transform - pos: 310.5,409.5 - parent: 1 - - uid: 14860 + pos: -15.5,3.5 + parent: 2 + - uid: 23492 components: - type: Transform - pos: 304.5,409.5 - parent: 1 - - uid: 14861 + pos: -15.5,2.5 + parent: 2 + - uid: 23493 components: - type: Transform - pos: 304.5,412.5 - parent: 1 - - uid: 14862 + pos: -15.5,1.5 + parent: 2 + - uid: 23505 components: - type: Transform - pos: 309.5,407.5 - parent: 1 - - uid: 14863 + pos: -96.5,24.5 + parent: 2 + - uid: 23507 components: - type: Transform - pos: 305.5,407.5 - parent: 1 - - uid: 14864 + pos: -94.5,32.5 + parent: 2 + - uid: 23519 components: - type: Transform - pos: 305.5,413.5 - parent: 1 - - uid: 14865 + pos: -72.5,-38.5 + parent: 2 + - uid: 23520 components: - type: Transform - pos: 309.5,413.5 - parent: 1 - - uid: 14866 + pos: -39.5,4.5 + parent: 2 + - uid: 23521 components: - type: Transform - pos: 308.5,424.5 - parent: 1 - - uid: 14867 + pos: -39.5,5.5 + parent: 2 + - uid: 23522 components: - type: Transform - pos: 306.5,424.5 - parent: 1 - - uid: 14868 + pos: -39.5,3.5 + parent: 2 + - uid: 23523 components: - type: Transform - pos: 307.5,419.5 - parent: 1 - - uid: 14960 + pos: -43.5,-10.5 + parent: 2 + - uid: 23524 components: - type: Transform - pos: 382.5,424.5 - parent: 1 - - uid: 20546 + pos: -43.5,-17.5 + parent: 2 + - uid: 23525 components: - type: Transform - pos: 5.5,2.5 - parent: 20527 - - uid: 20547 + pos: -22.5,15.5 + parent: 2 + - uid: 23526 components: - type: Transform - pos: 6.5,1.5 - parent: 20527 - - uid: 20548 + pos: -23.5,15.5 + parent: 2 + - uid: 23527 components: - type: Transform - pos: 7.5,1.5 - parent: 20527 - - uid: 20549 + pos: -23.5,16.5 + parent: 2 + - uid: 23528 components: - type: Transform - pos: 9.5,5.5 - parent: 20527 - - uid: 20550 + pos: -23.5,18.5 + parent: 2 + - uid: 23529 components: - type: Transform - pos: 7.5,6.5 - parent: 20527 - - uid: 20551 + pos: -23.5,19.5 + parent: 2 + - uid: 23530 components: - type: Transform - pos: 8.5,6.5 - parent: 20527 - - uid: 20552 + pos: -23.5,20.5 + parent: 2 + - uid: 23531 components: - type: Transform - pos: 5.5,1.5 - parent: 20527 - - uid: 20553 + pos: -23.5,17.5 + parent: 2 + - uid: 23532 components: - type: Transform - pos: 5.5,0.5 - parent: 20527 - - uid: 20554 + pos: -22.5,20.5 + parent: 2 + - uid: 23533 components: - type: Transform - pos: 4.5,-0.5 - parent: 20527 - - uid: 20555 + pos: -21.5,20.5 + parent: 2 + - uid: 23534 components: - type: Transform - pos: 3.5,-0.5 - parent: 20527 - - uid: 20556 + pos: -19.5,20.5 + parent: 2 + - uid: 23535 components: - type: Transform - pos: 2.5,2.5 - parent: 20527 -- proto: BookAtmosAirAlarms - entities: - - uid: 20202 + pos: -20.5,20.5 + parent: 2 + - uid: 23536 components: - type: Transform - parent: 20201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosDistro - entities: - - uid: 20203 + pos: -19.5,19.5 + parent: 2 + - uid: 23537 components: - type: Transform - parent: 20201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosVentsMore - entities: - - uid: 20204 + pos: -19.5,17.5 + parent: 2 + - uid: 23538 components: - type: Transform - parent: 20201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAtmosWaste - entities: - - uid: 20205 + pos: -19.5,16.5 + parent: 2 + - uid: 23539 components: - type: Transform - parent: 20201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookBartendersManual - entities: - - uid: 18239 + pos: -19.5,18.5 + parent: 2 + - uid: 23540 components: - type: Transform - pos: 337.5,450.5 - parent: 1 -- proto: BookDAM - entities: - - uid: 21279 + pos: -24.5,20.5 + parent: 2 + - uid: 23541 components: - type: Transform - pos: 380.5,408.5 - parent: 1 -- proto: BookFaks - entities: - - uid: 5502 + pos: -25.5,20.5 + parent: 2 + - uid: 23542 components: - type: Transform - pos: 396.5,414.5 - parent: 1 -- proto: BookFeather - entities: - - uid: 21282 + pos: -26.5,20.5 + parent: 2 + - uid: 23543 components: - type: Transform - pos: 381.5,406.5 - parent: 1 -- proto: BookGior - entities: - - uid: 5448 + pos: -28.5,20.5 + parent: 2 + - uid: 23544 components: - type: Transform - pos: 371.5,411.5 - parent: 1 -- proto: BookGrav - entities: - - uid: 21281 + pos: -29.5,20.5 + parent: 2 + - uid: 23545 components: - type: Transform - pos: 376.5,406.5 - parent: 1 -- proto: BookNakamura - entities: - - uid: 18541 + pos: -27.5,20.5 + parent: 2 + - uid: 23546 components: - type: Transform - pos: 339.5,406.5 - parent: 1 - - uid: 18542 + pos: -29.5,21.5 + parent: 2 + - uid: 23547 components: - type: Transform - pos: 337.5,406.5 - parent: 1 -- proto: BookRandomStory - entities: - - uid: 5313 + pos: -29.5,23.5 + parent: 2 + - uid: 23548 components: - type: Transform - pos: 462.5,409.5 - parent: 1 - - uid: 5314 + pos: -29.5,24.5 + parent: 2 + - uid: 23549 components: - type: Transform - pos: 463.5,406.5 - parent: 1 - - uid: 18026 + pos: -29.5,22.5 + parent: 2 + - uid: 23550 components: - type: Transform - pos: 411.5,367.5 - parent: 1 -- proto: Bookshelf - entities: - - uid: 2365 + pos: -29.5,25.5 + parent: 2 + - uid: 23551 components: - type: Transform - pos: 415.5,359.5 - parent: 1 -- proto: BookshelfFilled - entities: - - uid: 1180 + pos: -30.5,20.5 + parent: 2 + - uid: 23552 components: - type: Transform - pos: 418.5,357.5 - parent: 1 - - uid: 2277 + pos: -31.5,20.5 + parent: 2 + - uid: 23553 components: - type: Transform - pos: 418.5,359.5 - parent: 1 - - uid: 2362 + pos: -33.5,20.5 + parent: 2 + - uid: 23554 components: - type: Transform - pos: 415.5,357.5 - parent: 1 - - uid: 3122 + pos: -34.5,20.5 + parent: 2 + - uid: 23555 components: - type: Transform - pos: 423.5,357.5 - parent: 1 - - uid: 5830 + pos: -35.5,20.5 + parent: 2 + - uid: 23556 components: - type: Transform - pos: 382.5,412.5 - parent: 1 - - uid: 5831 + pos: -32.5,20.5 + parent: 2 + - uid: 23557 components: - type: Transform - pos: 376.5,412.5 - parent: 1 - - uid: 20037 + pos: -35.5,19.5 + parent: 2 + - uid: 23558 components: - type: Transform - pos: 340.5,439.5 - parent: 1 - - uid: 21144 + pos: -35.5,17.5 + parent: 2 + - uid: 23559 components: - type: Transform - pos: 419.5,359.5 - parent: 1 - - uid: 21145 + pos: -35.5,16.5 + parent: 2 + - uid: 23560 components: - type: Transform - pos: 414.5,359.5 - parent: 1 - - uid: 21146 + pos: -35.5,15.5 + parent: 2 + - uid: 23561 components: - type: Transform - pos: 414.5,357.5 - parent: 1 -- proto: BookSlothClownPranks - entities: - - uid: 2897 + pos: -35.5,14.5 + parent: 2 + - uid: 23562 components: - type: Transform - parent: 3632 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookSNK - entities: - - uid: 21283 + pos: -35.5,18.5 + parent: 2 + - uid: 23563 components: - type: Transform - pos: 376.5,414.5 - parent: 1 -- proto: BookSpaceLaw - entities: - - uid: 5201 + pos: -35.5,13.5 + parent: 2 + - uid: 23564 components: - type: Transform - pos: 440.5,413.5 - parent: 1 -- proto: BookStationsAndAgents - entities: - - uid: 6649 + pos: -35.5,12.5 + parent: 2 + - uid: 23565 components: - type: Transform - pos: 452.5,416.5 - parent: 1 -- proto: BookSun - entities: - - uid: 21280 + pos: -36.5,12.5 + parent: 2 + - uid: 23566 components: - type: Transform - pos: 376.5,406.5 - parent: 1 -- proto: BookTemple - entities: - - uid: 18290 + pos: -37.5,12.5 + parent: 2 + - uid: 23567 components: - type: Transform - pos: 418.5,426.5 - parent: 1 - - uid: 20086 + pos: -36.5,19.5 + parent: 2 + - uid: 23568 components: - type: Transform - pos: 333.5,442.5 - parent: 1 -- proto: BookTheBookOfControl - entities: - - uid: 5850 + pos: -37.5,19.5 + parent: 2 + - uid: 23569 components: - type: Transform - pos: 382.5,407.5 - parent: 1 -- proto: BookZP - entities: - - uid: 18203 + pos: -35.5,11.5 + parent: 2 + - uid: 23570 components: - type: Transform - pos: 379.5,411.5 - parent: 1 -- proto: BoozeDispenser - entities: - - uid: 4905 + pos: -35.5,10.5 + parent: 2 + - uid: 23571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,387.5 - parent: 1 - - uid: 15892 + pos: -34.5,10.5 + parent: 2 + - uid: 23572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,452.5 - parent: 1 -- proto: BorgCharger - entities: - - uid: 7434 + pos: -33.5,10.5 + parent: 2 + - uid: 23573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,399.5 - parent: 1 - - uid: 7435 + pos: -33.5,9.5 + parent: 2 + - uid: 23574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,399.5 - parent: 1 -- proto: BorgModuleAdvancedTreatment - entities: - - uid: 21104 + pos: -24.5,10.5 + parent: 2 + - uid: 23575 components: - type: Transform - pos: 354.5,408.5 - parent: 1 -- proto: BoxBeaker - entities: - - uid: 5888 + pos: -32.5,10.5 + parent: 2 + - uid: 23576 components: - type: Transform - pos: 407.5,389.5 - parent: 1 - - uid: 7552 + pos: -31.5,10.5 + parent: 2 + - uid: 23577 components: - type: Transform - pos: 357.5,400.5 - parent: 1 -- proto: BoxBodyBag - entities: - - uid: 5432 + pos: -29.5,10.5 + parent: 2 + - uid: 23578 components: - type: Transform - pos: 397.5,422.5 - parent: 1 - - uid: 6220 + pos: -28.5,10.5 + parent: 2 + - uid: 23579 components: - type: Transform - pos: 426.5,397.5 - parent: 1 -- proto: BoxBottle - entities: - - uid: 2065 + pos: -27.5,10.5 + parent: 2 + - uid: 23580 components: - type: Transform - pos: 406.5,422.5 - parent: 1 -- proto: BoxCandle - entities: - - uid: 20083 + pos: -26.5,10.5 + parent: 2 + - uid: 23581 components: - type: Transform - pos: 331.5,438.5 - parent: 1 -- proto: BoxFolderBlack - entities: - - uid: 21684 + pos: -25.5,10.5 + parent: 2 + - uid: 23582 components: - type: Transform - pos: 7.6804676,19.441128 - parent: 5072 -- proto: BoxFolderBlue - entities: - - uid: 5783 + pos: -30.5,10.5 + parent: 2 + - uid: 23583 components: - type: Transform - pos: 363.5,407.5 - parent: 1 - - uid: 5813 + pos: -24.5,11.5 + parent: 2 + - uid: 23584 components: - type: Transform - pos: 366.5,399.5 - parent: 1 - - uid: 5832 + pos: -24.5,12.5 + parent: 2 + - uid: 23585 components: - type: Transform - pos: 379.5,412.5 - parent: 1 - - uid: 21683 + pos: -24.5,15.5 + parent: 2 + - uid: 23586 components: - type: Transform - pos: 7.4773426,19.456753 - parent: 5072 -- proto: BoxFolderGreen - entities: - - uid: 5826 + pos: -22.5,17.5 + parent: 2 + - uid: 23587 components: - type: Transform - pos: 378.5,408.5 - parent: 1 -- proto: BoxFolderGrey - entities: - - uid: 5676 + pos: -21.5,17.5 + parent: 2 + - uid: 23588 components: - type: Transform - pos: 422.5,354.5 - parent: 1 -- proto: BoxFolderRed - entities: - - uid: 5825 + pos: -24.5,13.5 + parent: 2 + - uid: 23589 components: - type: Transform - pos: 380.5,408.5 - parent: 1 - - uid: 6008 + pos: -24.5,14.5 + parent: 2 + - uid: 23590 components: - type: Transform - pos: 328.5,402.5 - parent: 1 - - uid: 6112 + pos: -20.5,17.5 + parent: 2 + - uid: 23613 components: - type: Transform - pos: 420.5,403.5 - parent: 1 - - uid: 21717 + pos: -99.5,22.5 + parent: 2 + - uid: 23622 components: - type: Transform - pos: 9.497662,30.598364 - parent: 5072 -- proto: BoxFolderYellow - entities: - - uid: 5668 + pos: -94.5,35.5 + parent: 2 + - uid: 23649 components: - type: Transform - pos: 358.5,388.5 - parent: 1 - - uid: 6180 + pos: -70.5,-26.5 + parent: 2 + - uid: 23661 components: - type: Transform - pos: 448.5,405.5 - parent: 1 - - uid: 21816 + pos: -71.5,-20.5 + parent: 2 + - uid: 23662 components: - type: Transform - pos: -1.4738462,25.430975 - parent: 5072 -- proto: BoxForensicPad - entities: - - uid: 4170 + pos: -73.5,-19.5 + parent: 2 + - uid: 23672 components: - type: Transform - pos: 415.5,410.5 - parent: 1 -- proto: BoxHandcuff - entities: - - uid: 6109 + pos: -68.5,-35.5 + parent: 2 + - uid: 23775 components: - type: Transform - pos: 424.5,392.5 - parent: 1 - - uid: 17325 + pos: -36.5,-40.5 + parent: 2 + - uid: 23850 components: - type: Transform - pos: 413.5,409.5 - parent: 1 -- proto: BoxID - entities: - - uid: 5812 + pos: -104.5,-44.5 + parent: 2 + - uid: 23851 components: - type: Transform - pos: 367.5,397.5 - parent: 1 -- proto: BoxingBell - entities: - - uid: 3657 + pos: -104.5,-43.5 + parent: 2 + - uid: 23852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,369.5 - parent: 1 -- proto: BoxLatexGloves - entities: - - uid: 7537 + pos: -104.5,-42.5 + parent: 2 + - uid: 23853 components: - type: Transform - pos: 354.5,400.5 - parent: 1 - - uid: 16289 + pos: -104.5,-40.5 + parent: 2 + - uid: 23854 components: - type: Transform - pos: 407.5,415.5 - parent: 1 -- proto: BoxLightbulb - entities: - - uid: 16246 + pos: -104.5,-39.5 + parent: 2 + - uid: 23855 components: - type: Transform - pos: 338.5,406.5 - parent: 1 -- proto: BoxLighttube - entities: - - uid: 16245 + pos: -104.5,-41.5 + parent: 2 + - uid: 23856 components: - type: Transform - pos: 331.5,406.5 - parent: 1 -- proto: BoxMesonScanners - entities: - - uid: 6399 + pos: -104.5,-38.5 + parent: 2 + - uid: 23857 components: - type: Transform - pos: 340.5,410.5 - parent: 1 -- proto: BoxMouthSwab - entities: - - uid: 5901 + pos: -104.5,-36.5 + parent: 2 + - uid: 23858 components: - type: Transform - pos: 407.5,380.5 - parent: 1 -- proto: BoxMRE - entities: - - uid: 5061 + pos: -104.5,-37.5 + parent: 2 + - uid: 23862 components: - type: Transform - pos: 431.5,395.5 - parent: 1 - - uid: 5084 + pos: -15.5,4.5 + parent: 2 + - uid: 23863 components: - type: Transform - pos: 431.5,391.5 - parent: 1 - - uid: 5123 + pos: -15.5,6.5 + parent: 2 + - uid: 23864 components: - type: Transform - pos: 431.5,403.5 - parent: 1 -- proto: BoxPillCanister - entities: - - uid: 16292 + pos: -15.5,5.5 + parent: 2 + - uid: 23882 components: - type: Transform - pos: 399.5,410.5 - parent: 1 -- proto: BoxSyringe - entities: - - uid: 3715 + pos: -23.5,-0.5 + parent: 2 + - uid: 23884 components: - type: Transform - pos: 411.5,382.5 - parent: 1 - - uid: 7557 + pos: -23.5,-1.5 + parent: 2 + - uid: 23888 components: - type: Transform - pos: 356.5,395.5 - parent: 1 - - uid: 16291 + pos: -70.5,-19.5 + parent: 2 + - uid: 23912 components: - type: Transform - pos: 400.5,410.5 - parent: 1 - - uid: 18590 + pos: -32.5,-36.5 + parent: 2 + - uid: 23945 components: - type: Transform - pos: 352.5,438.5 - parent: 1 - - uid: 20026 + pos: -104.5,-63.5 + parent: 2 + - uid: 23985 components: - type: Transform - pos: 417.5,417.5 - parent: 1 -- proto: BrbSign - entities: - - uid: 21679 + pos: -72.5,-2.5 + parent: 2 + - uid: 23986 components: - type: Transform - pos: 7.4759226,20.405302 - parent: 5072 -- proto: BriefcaseBrown - entities: - - uid: 5192 + pos: -73.5,-2.5 + parent: 2 + - uid: 23987 components: - type: Transform - pos: 446.5,411.5 - parent: 1 - - uid: 5193 + pos: -75.5,-2.5 + parent: 2 + - uid: 23988 components: - type: Transform - pos: 445.5,410.5 - parent: 1 - - uid: 5194 + pos: -74.5,-2.5 + parent: 2 + - uid: 23989 components: - type: Transform - pos: 442.5,412.5 - parent: 1 - - uid: 5195 + pos: -70.5,-2.5 + parent: 2 + - uid: 24041 components: - type: Transform - pos: 443.5,411.5 - parent: 1 - - uid: 5827 + pos: -100.5,24.5 + parent: 2 + - uid: 24060 components: - type: Transform - pos: 379.5,411.5 - parent: 1 -- proto: BriefcaseBrownFilled - entities: - - uid: 20557 + pos: -15.5,-33.5 + parent: 2 + - uid: 24061 components: - type: Transform - pos: 4.5,2.5 - parent: 20527 -- proto: BrigTimer - entities: - - uid: 2506 + pos: -15.5,-32.5 + parent: 2 + - uid: 24062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,403.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1106: - - Start: DoorBolt - - Timer: DoorBolt - - Timer: Open - - uid: 3641 + pos: -15.5,-31.5 + parent: 2 + - uid: 24063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,391.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3765: - - Start: Close - - Timer: AutoClose - - Timer: Open - 3766: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 4385 + pos: -15.5,-30.5 + parent: 2 + - uid: 24064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,399.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3759: - - Start: Close - - Timer: AutoClose - - Timer: Open - 3761: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 4419 + pos: -15.5,-29.5 + parent: 2 + - uid: 24065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,395.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3767: - - Start: Close - - Timer: AutoClose - - Timer: Open - 3764: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 5043 + pos: -15.5,-27.5 + parent: 2 + - uid: 24066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,403.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3762: - - Start: Close - - Timer: AutoClose - - Timer: Open - 3763: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 16118 + pos: -15.5,-26.5 + parent: 2 + - uid: 24067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 16114 - - type: DeviceLinkSource - linkedPorts: - 16224: - - Start: Close - - Timer: AutoClose - - Timer: Open -- proto: Brutepack - entities: - - uid: 16287 + pos: -15.5,-25.5 + parent: 2 + - uid: 24068 components: - type: Transform - pos: 407.5,413.5 - parent: 1 -- proto: Brutepack1 - entities: - - uid: 5344 + pos: -15.5,-24.5 + parent: 2 + - uid: 24069 components: - type: Transform - pos: 405.5,408.5 - parent: 1 -- proto: Bucket - entities: - - uid: 5916 + pos: -15.5,-28.5 + parent: 2 + - uid: 24070 components: - type: Transform - pos: 411.5,362.5 - parent: 1 - - uid: 21162 + pos: -14.5,-24.5 + parent: 2 + - uid: 24071 components: - type: Transform - pos: 397.5,421.5 - parent: 1 - - uid: 21198 + pos: -13.5,-24.5 + parent: 2 + - uid: 24072 components: - type: Transform - pos: 411.5,363.5 - parent: 1 - - uid: 21199 + pos: -13.5,-30.5 + parent: 2 + - uid: 24073 components: - type: Transform - pos: 411.5,363.5 - parent: 1 -- proto: CableApcExtension - entities: - - uid: 1280 + pos: -12.5,-30.5 + parent: 2 + - uid: 24074 components: - type: Transform - pos: 372.5,398.5 - parent: 1 - - uid: 1281 + pos: -11.5,-30.5 + parent: 2 + - uid: 24075 components: - type: Transform - pos: 328.5,397.5 - parent: 1 - - uid: 1575 + pos: -10.5,-30.5 + parent: 2 + - uid: 24076 components: - type: Transform - pos: 355.5,390.5 - parent: 1 - - uid: 2089 + pos: -10.5,-31.5 + parent: 2 + - uid: 24077 components: - type: Transform - pos: 355.5,389.5 - parent: 1 - - uid: 2260 + pos: -10.5,-32.5 + parent: 2 + - uid: 24080 components: - type: Transform - pos: 329.5,397.5 - parent: 1 - - uid: 2337 + pos: -17.5,-33.5 + parent: 2 + - uid: 24081 components: - type: Transform - pos: 330.5,397.5 - parent: 1 - - uid: 2482 + pos: -11.5,-36.5 + parent: 2 + - uid: 24082 components: - type: Transform - pos: 328.5,398.5 - parent: 1 - - uid: 2541 + pos: -9.5,-36.5 + parent: 2 + - uid: 24083 components: - type: Transform - pos: 328.5,399.5 - parent: 1 - - uid: 3075 + pos: -8.5,-36.5 + parent: 2 + - uid: 24084 components: - type: Transform - pos: 422.5,379.5 - parent: 1 - - uid: 3077 + pos: -7.5,-36.5 + parent: 2 + - uid: 24085 components: - type: Transform - pos: 423.5,382.5 - parent: 1 - - uid: 3078 + pos: -6.5,-36.5 + parent: 2 + - uid: 24086 components: - type: Transform - pos: 423.5,380.5 - parent: 1 - - uid: 3498 + pos: -5.5,-36.5 + parent: 2 + - uid: 24087 components: - type: Transform - pos: 423.5,381.5 - parent: 1 - - uid: 3607 + pos: -10.5,-36.5 + parent: 2 + - uid: 24088 components: - type: Transform - pos: 505.5,388.5 - parent: 1 - - uid: 3730 + pos: -15.5,-37.5 + parent: 2 + - uid: 24089 components: - type: Transform - pos: 422.5,380.5 - parent: 1 - - uid: 5042 + pos: -15.5,-38.5 + parent: 2 + - uid: 24090 components: - type: Transform - pos: 336.5,381.5 - parent: 1 - - uid: 10334 + pos: -15.5,-39.5 + parent: 2 + - uid: 24091 components: - type: Transform - pos: 411.5,396.5 - parent: 1 - - uid: 10336 + pos: -15.5,-40.5 + parent: 2 + - uid: 24092 components: - type: Transform - pos: 372.5,397.5 - parent: 1 - - uid: 10337 + pos: -15.5,-42.5 + parent: 2 + - uid: 24093 components: - type: Transform - pos: 372.5,396.5 - parent: 1 - - uid: 10338 + pos: -15.5,-43.5 + parent: 2 + - uid: 24094 components: - type: Transform - pos: 371.5,396.5 - parent: 1 - - uid: 10339 + pos: -15.5,-41.5 + parent: 2 + - uid: 24095 components: - type: Transform - pos: 369.5,396.5 - parent: 1 - - uid: 10340 + pos: -14.5,-43.5 + parent: 2 + - uid: 24096 components: - type: Transform - pos: 368.5,396.5 - parent: 1 - - uid: 10341 + pos: -13.5,-43.5 + parent: 2 + - uid: 24097 components: - type: Transform - pos: 367.5,396.5 - parent: 1 - - uid: 10342 + pos: -12.5,-43.5 + parent: 2 + - uid: 24098 components: - type: Transform - pos: 366.5,396.5 - parent: 1 - - uid: 10343 + pos: -11.5,-43.5 + parent: 2 + - uid: 24099 components: - type: Transform - pos: 365.5,396.5 - parent: 1 - - uid: 10344 + pos: -11.5,-42.5 + parent: 2 + - uid: 24100 components: - type: Transform - pos: 370.5,396.5 - parent: 1 - - uid: 10345 + pos: -11.5,-41.5 + parent: 2 + - uid: 24101 components: - type: Transform - pos: 366.5,395.5 - parent: 1 - - uid: 10346 + pos: -11.5,-40.5 + parent: 2 + - uid: 24102 components: - type: Transform - pos: 366.5,393.5 - parent: 1 - - uid: 10347 + pos: -12.5,-40.5 + parent: 2 + - uid: 24110 components: - type: Transform - pos: 366.5,394.5 - parent: 1 - - uid: 10348 + pos: -15.5,-67.5 + parent: 2 + - uid: 24117 components: - type: Transform - pos: 367.5,393.5 - parent: 1 - - uid: 10349 + pos: -59.5,-33.5 + parent: 2 + - uid: 24118 components: - type: Transform - pos: 368.5,393.5 - parent: 1 - - uid: 10350 + pos: -60.5,-33.5 + parent: 2 + - uid: 24119 components: - type: Transform - pos: 366.5,397.5 - parent: 1 - - uid: 10351 + pos: -62.5,-33.5 + parent: 2 + - uid: 24120 components: - type: Transform - pos: 373.5,392.5 - parent: 1 - - uid: 10352 + pos: -63.5,-33.5 + parent: 2 + - uid: 24121 components: - type: Transform - pos: 372.5,392.5 - parent: 1 - - uid: 10353 + pos: -61.5,-33.5 + parent: 2 + - uid: 24122 components: - type: Transform - pos: 372.5,395.5 - parent: 1 - - uid: 10354 + pos: -63.5,-34.5 + parent: 2 + - uid: 24135 components: - type: Transform - pos: 372.5,393.5 - parent: 1 - - uid: 10355 + pos: -45.5,-40.5 + parent: 2 + - uid: 24136 components: - type: Transform - pos: 363.5,399.5 - parent: 1 - - uid: 10356 + pos: -46.5,-40.5 + parent: 2 + - uid: 24137 components: - type: Transform - pos: 362.5,399.5 - parent: 1 - - uid: 10357 + pos: -47.5,-40.5 + parent: 2 + - uid: 24138 components: - type: Transform - pos: 362.5,400.5 - parent: 1 - - uid: 10358 + pos: -49.5,-40.5 + parent: 2 + - uid: 24139 components: - type: Transform - pos: 362.5,398.5 - parent: 1 - - uid: 10359 + pos: -48.5,-40.5 + parent: 2 + - uid: 24140 components: - type: Transform - pos: 362.5,396.5 - parent: 1 - - uid: 10360 + pos: -49.5,-41.5 + parent: 2 + - uid: 24141 components: - type: Transform - pos: 362.5,397.5 - parent: 1 - - uid: 10361 + pos: -50.5,-41.5 + parent: 2 + - uid: 24142 components: - type: Transform - pos: 364.5,393.5 - parent: 1 - - uid: 10362 + pos: -52.5,-41.5 + parent: 2 + - uid: 24143 components: - type: Transform - pos: 363.5,393.5 - parent: 1 - - uid: 10363 + pos: -53.5,-41.5 + parent: 2 + - uid: 24144 components: - type: Transform - pos: 362.5,393.5 - parent: 1 - - uid: 10364 + pos: -54.5,-41.5 + parent: 2 + - uid: 24145 components: - type: Transform - pos: 361.5,393.5 - parent: 1 - - uid: 10365 + pos: -55.5,-41.5 + parent: 2 + - uid: 24146 components: - type: Transform - pos: 359.5,393.5 - parent: 1 - - uid: 10366 + pos: -51.5,-41.5 + parent: 2 + - uid: 24147 components: - type: Transform - pos: 360.5,393.5 - parent: 1 - - uid: 10367 + pos: -45.5,-42.5 + parent: 2 + - uid: 24168 components: - type: Transform - pos: 357.5,390.5 - parent: 1 - - uid: 10368 + pos: -122.5,-15.5 + parent: 2 + - uid: 24169 components: - type: Transform - pos: 358.5,390.5 - parent: 1 - - uid: 10369 + pos: -122.5,-17.5 + parent: 2 + - uid: 24170 components: - type: Transform - pos: 359.5,390.5 - parent: 1 - - uid: 10370 + pos: -122.5,-16.5 + parent: 2 + - uid: 24171 components: - type: Transform - pos: 359.5,389.5 - parent: 1 - - uid: 10371 + pos: -123.5,-17.5 + parent: 2 + - uid: 24172 components: - type: Transform - pos: 361.5,389.5 - parent: 1 - - uid: 10372 + pos: -124.5,-17.5 + parent: 2 + - uid: 24173 components: - type: Transform - pos: 362.5,389.5 - parent: 1 - - uid: 10373 + pos: -126.5,-17.5 + parent: 2 + - uid: 24174 components: - type: Transform - pos: 360.5,389.5 - parent: 1 - - uid: 10375 + pos: -127.5,-17.5 + parent: 2 + - uid: 24175 components: - type: Transform - pos: 355.5,391.5 - parent: 1 - - uid: 10377 + pos: -128.5,-17.5 + parent: 2 + - uid: 24176 components: - type: Transform - pos: 355.5,392.5 - parent: 1 - - uid: 10378 + pos: -129.5,-17.5 + parent: 2 + - uid: 24177 components: - type: Transform - pos: 352.5,394.5 - parent: 1 - - uid: 10379 + pos: -130.5,-17.5 + parent: 2 + - uid: 24178 components: - type: Transform - pos: 352.5,392.5 - parent: 1 - - uid: 10380 + pos: -125.5,-17.5 + parent: 2 + - uid: 24179 components: - type: Transform - pos: 352.5,393.5 - parent: 1 - - uid: 10381 + pos: -130.5,-16.5 + parent: 2 + - uid: 24180 components: - type: Transform - pos: 351.5,392.5 - parent: 1 - - uid: 10382 + pos: -127.5,-16.5 + parent: 2 + - uid: 24181 components: - type: Transform - pos: 346.5,390.5 - parent: 1 - - uid: 10383 + pos: -127.5,-15.5 + parent: 2 + - uid: 24183 components: - type: Transform - pos: 346.5,389.5 - parent: 1 - - uid: 10384 + pos: -48.5,-51.5 + parent: 2 + - uid: 24184 components: - type: Transform - pos: 345.5,389.5 - parent: 1 - - uid: 10385 + pos: -48.5,-50.5 + parent: 2 + - uid: 24185 components: - type: Transform - pos: 343.5,389.5 - parent: 1 - - uid: 10386 + pos: -49.5,-50.5 + parent: 2 + - uid: 24216 components: - type: Transform - pos: 342.5,389.5 - parent: 1 - - uid: 10387 + pos: -33.5,-77.5 + parent: 2 + - uid: 24218 components: - type: Transform - pos: 341.5,389.5 - parent: 1 - - uid: 10388 + pos: -104.5,-57.5 + parent: 2 + - uid: 24219 components: - type: Transform - pos: 344.5,389.5 - parent: 1 - - uid: 10389 + pos: -104.5,-58.5 + parent: 2 + - uid: 24220 components: - type: Transform - pos: 341.5,388.5 - parent: 1 - - uid: 10390 + pos: -104.5,-59.5 + parent: 2 + - uid: 24221 components: - type: Transform - pos: 341.5,387.5 - parent: 1 - - uid: 10391 + pos: -104.5,-61.5 + parent: 2 + - uid: 24222 components: - type: Transform - pos: 347.5,389.5 - parent: 1 - - uid: 10392 + pos: -104.5,-62.5 + parent: 2 + - uid: 24223 components: - type: Transform - pos: 348.5,388.5 - parent: 1 - - uid: 10393 + pos: -104.5,-60.5 + parent: 2 + - uid: 24224 components: - type: Transform - pos: 349.5,388.5 - parent: 1 - - uid: 10394 + pos: -105.5,-62.5 + parent: 2 + - uid: 24225 components: - type: Transform - pos: 350.5,388.5 - parent: 1 - - uid: 10395 + pos: -106.5,-62.5 + parent: 2 + - uid: 24226 components: - type: Transform - pos: 351.5,388.5 - parent: 1 - - uid: 10396 + pos: -107.5,-62.5 + parent: 2 + - uid: 24229 components: - type: Transform - pos: 347.5,388.5 - parent: 1 - - uid: 10397 + pos: -104.5,-66.5 + parent: 2 + - uid: 24261 components: - type: Transform - pos: 353.5,388.5 - parent: 1 - - uid: 10398 + pos: -85.5,11.5 + parent: 2 + - uid: 24262 components: - type: Transform - pos: 354.5,388.5 - parent: 1 - - uid: 10399 + pos: -85.5,10.5 + parent: 2 + - uid: 24263 components: - type: Transform - pos: 355.5,388.5 - parent: 1 - - uid: 10400 + pos: -85.5,9.5 + parent: 2 + - uid: 24264 components: - type: Transform - pos: 352.5,388.5 - parent: 1 - - uid: 10401 + pos: -85.5,8.5 + parent: 2 + - uid: 24265 components: - type: Transform - pos: 354.5,386.5 - parent: 1 - - uid: 10402 + pos: -85.5,6.5 + parent: 2 + - uid: 24266 components: - type: Transform - pos: 354.5,384.5 - parent: 1 - - uid: 10403 + pos: -85.5,5.5 + parent: 2 + - uid: 24267 components: - type: Transform - pos: 354.5,385.5 - parent: 1 - - uid: 10404 + pos: -85.5,7.5 + parent: 2 + - uid: 24268 components: - type: Transform - pos: 355.5,384.5 - parent: 1 - - uid: 10405 + pos: -84.5,5.5 + parent: 2 + - uid: 24269 components: - type: Transform - pos: 351.5,386.5 - parent: 1 - - uid: 10406 + pos: -83.5,5.5 + parent: 2 + - uid: 24270 components: - type: Transform - pos: 351.5,384.5 - parent: 1 - - uid: 10407 + pos: -82.5,5.5 + parent: 2 + - uid: 24271 components: - type: Transform - pos: 351.5,385.5 - parent: 1 - - uid: 10408 + pos: -81.5,5.5 + parent: 2 + - uid: 24272 components: - type: Transform - pos: 350.5,384.5 - parent: 1 - - uid: 10409 + pos: -80.5,5.5 + parent: 2 + - uid: 24273 components: - type: Transform - pos: 341.5,391.5 - parent: 1 - - uid: 10410 + pos: -80.5,6.5 + parent: 2 + - uid: 24274 components: - type: Transform - pos: 341.5,393.5 - parent: 1 - - uid: 10411 + pos: -80.5,7.5 + parent: 2 + - uid: 24276 components: - type: Transform - pos: 341.5,392.5 - parent: 1 - - uid: 10412 + pos: -87.5,5.5 + parent: 2 + - uid: 24277 components: - type: Transform - pos: 343.5,393.5 - parent: 1 - - uid: 10413 + pos: -79.5,7.5 + parent: 2 + - uid: 24278 components: - type: Transform - pos: 344.5,393.5 - parent: 1 - - uid: 10414 + pos: -84.5,-8.5 + parent: 2 + - uid: 24291 components: - type: Transform - pos: 345.5,393.5 - parent: 1 - - uid: 10415 + pos: -122.5,15.5 + parent: 2 + - uid: 24350 components: - type: Transform - pos: 342.5,393.5 - parent: 1 - - uid: 10416 + pos: -43.5,-63.5 + parent: 2 + - uid: 24351 components: - type: Transform - pos: 346.5,395.5 - parent: 1 - - uid: 10417 + pos: -44.5,-63.5 + parent: 2 + - uid: 24434 components: - type: Transform - pos: 347.5,395.5 - parent: 1 - - uid: 10418 + pos: -99.5,-1.5 + parent: 2 + - uid: 24438 components: - type: Transform - pos: 347.5,394.5 - parent: 1 - - uid: 10419 + pos: -100.5,-1.5 + parent: 2 + - uid: 24607 components: - type: Transform - pos: 347.5,392.5 - parent: 1 - - uid: 10420 + pos: -91.5,-60.5 + parent: 2 + - uid: 24608 components: - type: Transform - pos: 347.5,391.5 - parent: 1 - - uid: 10421 + pos: -92.5,-60.5 + parent: 2 + - uid: 24609 components: - type: Transform - pos: 347.5,393.5 - parent: 1 - - uid: 10422 + pos: -92.5,-61.5 + parent: 2 + - uid: 24629 components: - type: Transform - pos: 349.5,398.5 - parent: 1 - - uid: 10423 + pos: -104.5,-34.5 + parent: 2 + - uid: 24630 components: - type: Transform - pos: 347.5,398.5 - parent: 1 - - uid: 10424 + pos: -16.5,-13.5 + parent: 2 + - uid: 24631 components: - type: Transform - pos: 348.5,398.5 - parent: 1 - - uid: 10425 + pos: -17.5,-13.5 + parent: 2 + - uid: 24632 components: - type: Transform - pos: 347.5,399.5 - parent: 1 - - uid: 10426 + pos: -18.5,-13.5 + parent: 2 + - uid: 24633 components: - type: Transform - pos: 344.5,399.5 - parent: 1 - - uid: 10427 + pos: -19.5,-13.5 + parent: 2 + - uid: 24634 components: - type: Transform - pos: 345.5,399.5 - parent: 1 - - uid: 10428 + pos: -20.5,-13.5 + parent: 2 + - uid: 24666 components: - type: Transform - pos: 343.5,398.5 - parent: 1 - - uid: 10429 + pos: -18.5,11.5 + parent: 2 + - uid: 24667 components: - type: Transform - pos: 342.5,398.5 - parent: 1 - - uid: 10430 + pos: -17.5,11.5 + parent: 2 + - uid: 24668 components: - type: Transform - pos: 341.5,398.5 - parent: 1 - - uid: 10431 + pos: -18.5,12.5 + parent: 2 + - uid: 24669 components: - type: Transform - pos: 340.5,398.5 - parent: 1 - - uid: 10432 + pos: -19.5,12.5 + parent: 2 + - uid: 24744 components: - type: Transform - pos: 339.5,398.5 - parent: 1 - - uid: 10433 + pos: -14.5,-3.5 + parent: 2 + - uid: 24745 components: - type: Transform - pos: 344.5,398.5 - parent: 1 - - uid: 10434 + pos: -13.5,-3.5 + parent: 2 + - uid: 24746 components: - type: Transform - pos: 352.5,398.5 - parent: 1 - - uid: 10435 + pos: -12.5,-3.5 + parent: 2 + - uid: 24747 components: - type: Transform - pos: 352.5,399.5 - parent: 1 - - uid: 10436 + pos: -11.5,-3.5 + parent: 2 + - uid: 24748 components: - type: Transform - pos: 351.5,399.5 - parent: 1 - - uid: 10437 + pos: -11.5,-2.5 + parent: 2 + - uid: 24749 components: - type: Transform - pos: 353.5,399.5 - parent: 1 - - uid: 10438 + pos: -11.5,-1.5 + parent: 2 + - uid: 24750 components: - type: Transform - pos: 355.5,399.5 - parent: 1 - - uid: 10439 + pos: -11.5,-0.5 + parent: 2 + - uid: 24751 components: - type: Transform - pos: 354.5,399.5 - parent: 1 - - uid: 10440 + pos: -11.5,1.5 + parent: 2 + - uid: 24752 components: - type: Transform - pos: 356.5,399.5 - parent: 1 - - uid: 10441 + pos: -11.5,2.5 + parent: 2 + - uid: 24753 components: - type: Transform - pos: 357.5,399.5 - parent: 1 - - uid: 10442 + pos: -11.5,0.5 + parent: 2 + - uid: 24802 components: - type: Transform - pos: 358.5,399.5 - parent: 1 - - uid: 10443 + pos: -93.5,29.5 + parent: 2 + - uid: 24803 components: - type: Transform - pos: 355.5,398.5 - parent: 1 - - uid: 10444 + pos: -92.5,29.5 + parent: 2 + - uid: 24804 components: - type: Transform - pos: 355.5,397.5 - parent: 1 - - uid: 10445 + pos: -91.5,29.5 + parent: 2 + - uid: 24808 components: - type: Transform - pos: 355.5,396.5 - parent: 1 - - uid: 10446 + pos: -94.5,43.5 + parent: 2 + - uid: 24809 components: - type: Transform - pos: 354.5,396.5 - parent: 1 - - uid: 10447 + pos: -94.5,44.5 + parent: 2 + - uid: 24810 components: - type: Transform - pos: 358.5,398.5 - parent: 1 - - uid: 10448 + pos: -94.5,45.5 + parent: 2 + - uid: 25114 components: - type: Transform - pos: 358.5,396.5 - parent: 1 - - uid: 10449 + pos: -120.5,-88.5 + parent: 2 + - uid: 25115 components: - type: Transform - pos: 358.5,397.5 - parent: 1 - - uid: 10450 + pos: -120.5,-87.5 + parent: 2 + - uid: 25116 components: - type: Transform - pos: 353.5,382.5 - parent: 1 - - uid: 10451 + pos: -120.5,-86.5 + parent: 2 + - uid: 25117 components: - type: Transform - pos: 353.5,381.5 - parent: 1 - - uid: 10452 + pos: -120.5,-85.5 + parent: 2 + - uid: 25118 components: - type: Transform - pos: 354.5,380.5 - parent: 1 - - uid: 10453 + pos: -121.5,-85.5 + parent: 2 + - uid: 25119 components: - type: Transform - pos: 355.5,380.5 - parent: 1 - - uid: 10454 + pos: -122.5,-85.5 + parent: 2 + - uid: 25120 components: - type: Transform - pos: 356.5,380.5 - parent: 1 - - uid: 10455 + pos: -122.5,-84.5 + parent: 2 + - uid: 25121 components: - type: Transform - pos: 361.5,378.5 - parent: 1 - - uid: 10456 + pos: -122.5,-83.5 + parent: 2 + - uid: 25122 components: - type: Transform - pos: 360.5,378.5 - parent: 1 - - uid: 10457 + pos: -122.5,-82.5 + parent: 2 + - uid: 25123 components: - type: Transform - pos: 359.5,378.5 - parent: 1 - - uid: 10458 + pos: -122.5,-80.5 + parent: 2 + - uid: 25124 components: - type: Transform - pos: 359.5,377.5 - parent: 1 - - uid: 10459 + pos: -122.5,-81.5 + parent: 2 + - uid: 25125 components: - type: Transform - pos: 358.5,377.5 - parent: 1 - - uid: 10460 + pos: -121.5,-80.5 + parent: 2 + - uid: 25126 components: - type: Transform - pos: 357.5,377.5 - parent: 1 - - uid: 10461 + pos: -120.5,-80.5 + parent: 2 + - uid: 25127 components: - type: Transform - pos: 361.5,381.5 - parent: 1 - - uid: 10462 + pos: -119.5,-80.5 + parent: 2 + - uid: 25128 components: - type: Transform - pos: 360.5,381.5 - parent: 1 - - uid: 10463 + pos: -118.5,-80.5 + parent: 2 + - uid: 25129 components: - type: Transform - pos: 359.5,381.5 - parent: 1 - - uid: 10464 + pos: -118.5,-81.5 + parent: 2 + - uid: 25130 components: - type: Transform - pos: 369.5,386.5 - parent: 1 - - uid: 10465 + pos: -118.5,-82.5 + parent: 2 + - uid: 25131 components: - type: Transform - pos: 369.5,387.5 - parent: 1 - - uid: 10466 + pos: -118.5,-83.5 + parent: 2 + - uid: 25132 components: - type: Transform - pos: 368.5,387.5 - parent: 1 - - uid: 10467 + pos: -118.5,-84.5 + parent: 2 + - uid: 25133 components: - type: Transform - pos: 366.5,387.5 - parent: 1 - - uid: 10468 + pos: -118.5,-85.5 + parent: 2 + - uid: 25134 components: - type: Transform - pos: 367.5,387.5 - parent: 1 - - uid: 10469 + pos: -119.5,-85.5 + parent: 2 + - uid: 25212 components: - type: Transform - pos: 366.5,388.5 - parent: 1 - - uid: 10470 + pos: -119.5,-75.5 + parent: 2 + - uid: 25215 components: - type: Transform - pos: 366.5,389.5 - parent: 1 - - uid: 10471 + pos: -120.5,-75.5 + parent: 2 + - uid: 25216 components: - type: Transform - pos: 366.5,386.5 - parent: 1 - - uid: 10472 + pos: -120.5,-76.5 + parent: 2 + - uid: 25217 components: - type: Transform - pos: 366.5,384.5 - parent: 1 - - uid: 10473 + pos: -120.5,-77.5 + parent: 2 + - uid: 25218 components: - type: Transform - pos: 366.5,385.5 - parent: 1 - - uid: 10474 + pos: -121.5,-77.5 + parent: 2 + - uid: 25219 components: - type: Transform - pos: 365.5,385.5 - parent: 1 - - uid: 10475 + pos: -122.5,-77.5 + parent: 2 + - uid: 25220 components: - type: Transform - pos: 363.5,385.5 - parent: 1 - - uid: 10476 + pos: -123.5,-77.5 + parent: 2 + - uid: 25221 components: - type: Transform - pos: 364.5,385.5 - parent: 1 - - uid: 10477 + pos: -119.5,-77.5 + parent: 2 + - uid: 25222 components: - type: Transform - pos: 362.5,385.5 - parent: 1 - - uid: 10478 + pos: -118.5,-77.5 + parent: 2 + - uid: 25223 components: - type: Transform - pos: 361.5,385.5 - parent: 1 - - uid: 10479 + pos: -117.5,-77.5 + parent: 2 + - uid: 25224 components: - type: Transform - pos: 360.5,385.5 - parent: 1 - - uid: 10480 + pos: -120.5,-66.5 + parent: 2 + - uid: 25225 components: - type: Transform - pos: 359.5,385.5 - parent: 1 - - uid: 10481 + pos: -121.5,-70.5 + parent: 2 + - uid: 25226 components: - type: Transform - pos: 369.5,388.5 - parent: 1 - - uid: 10482 + pos: -121.5,-71.5 + parent: 2 + - uid: 25227 components: - type: Transform - pos: 371.5,388.5 - parent: 1 - - uid: 10483 + pos: -119.5,-72.5 + parent: 2 + - uid: 25228 components: - type: Transform - pos: 372.5,388.5 - parent: 1 - - uid: 10484 + pos: -118.5,-72.5 + parent: 2 + - uid: 25229 components: - type: Transform - pos: 370.5,388.5 - parent: 1 - - uid: 10485 + pos: -117.5,-72.5 + parent: 2 + - uid: 25230 components: - type: Transform - pos: 366.5,390.5 - parent: 1 - - uid: 10486 + pos: -120.5,-72.5 + parent: 2 + - uid: 25231 components: - type: Transform - pos: 367.5,390.5 - parent: 1 - - uid: 10487 + pos: -121.5,-72.5 + parent: 2 + - uid: 25232 components: - type: Transform - pos: 363.5,389.5 - parent: 1 - - uid: 10488 + pos: -123.5,-72.5 + parent: 2 + - uid: 25233 components: - type: Transform - pos: 369.5,382.5 - parent: 1 - - uid: 10489 + pos: -122.5,-72.5 + parent: 2 + - uid: 25234 components: - type: Transform - pos: 369.5,380.5 - parent: 1 - - uid: 10490 + pos: -121.5,-69.5 + parent: 2 + - uid: 25267 components: - type: Transform - pos: 369.5,381.5 - parent: 1 - - uid: 10491 + pos: -119.5,-68.5 + parent: 2 + - uid: 25268 components: - type: Transform - pos: 368.5,380.5 - parent: 1 - - uid: 10492 + pos: -119.5,-69.5 + parent: 2 + - uid: 25269 components: - type: Transform - pos: 366.5,380.5 - parent: 1 - - uid: 10493 + pos: -120.5,-67.5 + parent: 2 + - uid: 25273 components: - type: Transform - pos: 367.5,380.5 - parent: 1 - - uid: 10494 + pos: -120.5,-65.5 + parent: 2 + - uid: 25274 components: - type: Transform - pos: 370.5,380.5 - parent: 1 - - uid: 10495 + pos: -120.5,-64.5 + parent: 2 + - uid: 25275 components: - type: Transform - pos: 369.5,379.5 - parent: 1 - - uid: 10496 + pos: -118.5,-68.5 + parent: 2 + - uid: 25276 components: - type: Transform - pos: 367.5,379.5 - parent: 1 - - uid: 10497 + pos: -116.5,-68.5 + parent: 2 + - uid: 25277 components: - type: Transform - pos: 371.5,380.5 - parent: 1 - - uid: 10498 + pos: -115.5,-68.5 + parent: 2 + - uid: 25278 components: - type: Transform - pos: 386.5,397.5 - parent: 1 - - uid: 10499 + pos: -117.5,-68.5 + parent: 2 + - uid: 25279 + components: + - type: Transform + pos: -120.5,-68.5 + parent: 2 + - uid: 25430 components: - type: Transform - pos: 386.5,398.5 - parent: 1 - - uid: 10500 + pos: -94.5,39.5 + parent: 2 + - uid: 25970 components: - type: Transform - pos: 386.5,396.5 - parent: 1 - - uid: 10501 + pos: -70.5,-25.5 + parent: 2 + - uid: 25971 components: - type: Transform - pos: 385.5,396.5 - parent: 1 - - uid: 10502 + pos: -71.5,-25.5 + parent: 2 + - uid: 25972 components: - type: Transform - pos: 383.5,396.5 - parent: 1 - - uid: 10503 + pos: -72.5,-25.5 + parent: 2 + - uid: 25973 components: - type: Transform - pos: 382.5,396.5 - parent: 1 - - uid: 10504 + pos: -72.5,-35.5 + parent: 2 + - uid: 25974 components: - type: Transform - pos: 384.5,396.5 - parent: 1 - - uid: 10505 + pos: -72.5,-34.5 + parent: 2 + - uid: 25975 components: - type: Transform - pos: 381.5,396.5 - parent: 1 - - uid: 10506 + pos: -72.5,-26.5 + parent: 2 + - uid: 25976 components: - type: Transform - pos: 380.5,396.5 - parent: 1 - - uid: 10507 + pos: -72.5,-27.5 + parent: 2 + - uid: 25977 components: - type: Transform - pos: 378.5,396.5 - parent: 1 - - uid: 10508 + pos: -72.5,-29.5 + parent: 2 + - uid: 25978 components: - type: Transform - pos: 379.5,396.5 - parent: 1 - - uid: 10509 + pos: -72.5,-30.5 + parent: 2 + - uid: 25979 components: - type: Transform - pos: 377.5,396.5 - parent: 1 - - uid: 10510 + pos: -72.5,-31.5 + parent: 2 + - uid: 25980 components: - type: Transform - pos: 375.5,396.5 - parent: 1 - - uid: 10511 + pos: -72.5,-32.5 + parent: 2 + - uid: 25981 components: - type: Transform - pos: 376.5,396.5 - parent: 1 - - uid: 10512 + pos: -72.5,-33.5 + parent: 2 + - uid: 25982 components: - type: Transform - pos: 375.5,395.5 - parent: 1 - - uid: 10513 + pos: -72.5,-28.5 + parent: 2 + - uid: 25983 components: - type: Transform - pos: 375.5,393.5 - parent: 1 - - uid: 10514 + pos: -73.5,-35.5 + parent: 2 + - uid: 25984 components: - type: Transform - pos: 375.5,392.5 - parent: 1 - - uid: 10515 + pos: -74.5,-35.5 + parent: 2 + - uid: 25985 components: - type: Transform - pos: 375.5,391.5 - parent: 1 - - uid: 10516 + pos: -75.5,-35.5 + parent: 2 + - uid: 25986 components: - type: Transform - pos: 375.5,390.5 - parent: 1 - - uid: 10517 + pos: -76.5,-35.5 + parent: 2 + - uid: 25987 components: - type: Transform - pos: 375.5,389.5 - parent: 1 - - uid: 10518 + pos: -76.5,-36.5 + parent: 2 + - uid: 25988 components: - type: Transform - pos: 375.5,388.5 - parent: 1 - - uid: 10519 + pos: -76.5,-37.5 + parent: 2 + - uid: 25989 components: - type: Transform - pos: 375.5,387.5 - parent: 1 - - uid: 10520 + pos: -75.5,-37.5 + parent: 2 + - uid: 25990 components: - type: Transform - pos: 375.5,386.5 - parent: 1 - - uid: 10521 + pos: -74.5,-37.5 + parent: 2 + - uid: 25991 components: - type: Transform - pos: 375.5,385.5 - parent: 1 - - uid: 10522 + pos: -73.5,-37.5 + parent: 2 + - uid: 25992 components: - type: Transform - pos: 375.5,384.5 - parent: 1 - - uid: 10523 + pos: -72.5,-37.5 + parent: 2 + - uid: 25993 components: - type: Transform - pos: 375.5,394.5 - parent: 1 - - uid: 10524 + pos: -71.5,-37.5 + parent: 2 + - uid: 25994 components: - type: Transform - pos: 375.5,383.5 - parent: 1 - - uid: 10525 + pos: -70.5,-37.5 + parent: 2 + - uid: 25995 components: - type: Transform - pos: 375.5,381.5 - parent: 1 - - uid: 10526 + pos: -69.5,-37.5 + parent: 2 + - uid: 25997 components: - type: Transform - pos: 375.5,382.5 - parent: 1 - - uid: 10527 + pos: -72.5,-39.5 + parent: 2 + - uid: 25998 components: - type: Transform - pos: 375.5,380.5 - parent: 1 - - uid: 10528 + pos: -72.5,-40.5 + parent: 2 + - uid: 25999 components: - type: Transform - pos: 375.5,379.5 - parent: 1 - - uid: 10529 + pos: -137.5,-4.5 + parent: 2 + - uid: 26000 components: - type: Transform - pos: 375.5,378.5 - parent: 1 - - uid: 10530 + pos: -137.5,-3.5 + parent: 2 + - uid: 26003 components: - type: Transform - pos: 387.5,396.5 - parent: 1 - - uid: 10531 + pos: -135.5,14.5 + parent: 2 + - uid: 26004 components: - type: Transform - pos: 389.5,396.5 - parent: 1 - - uid: 10532 + pos: -135.5,13.5 + parent: 2 + - uid: 26005 components: - type: Transform - pos: 390.5,396.5 - parent: 1 - - uid: 10533 + pos: -136.5,13.5 + parent: 2 + - uid: 26006 components: - type: Transform - pos: 388.5,396.5 - parent: 1 - - uid: 10534 + pos: -137.5,13.5 + parent: 2 + - uid: 26007 components: - type: Transform - pos: 390.5,395.5 - parent: 1 - - uid: 10535 + pos: -137.5,12.5 + parent: 2 + - uid: 26008 components: - type: Transform - pos: 390.5,393.5 - parent: 1 - - uid: 10536 + pos: -137.5,11.5 + parent: 2 + - uid: 26009 components: - type: Transform - pos: 390.5,392.5 - parent: 1 - - uid: 10537 + pos: -138.5,13.5 + parent: 2 + - uid: 26010 components: - type: Transform - pos: 390.5,391.5 - parent: 1 - - uid: 10538 + pos: -139.5,13.5 + parent: 2 + - uid: 26011 components: - type: Transform - pos: 390.5,390.5 - parent: 1 - - uid: 10539 + pos: -140.5,13.5 + parent: 2 + - uid: 26012 components: - type: Transform - pos: 390.5,389.5 - parent: 1 - - uid: 10540 + pos: -133.5,-0.5 + parent: 2 + - uid: 26013 components: - type: Transform - pos: 390.5,388.5 - parent: 1 - - uid: 10541 + pos: -133.5,0.5 + parent: 2 + - uid: 26014 components: - type: Transform - pos: 390.5,387.5 - parent: 1 - - uid: 10542 + pos: -133.5,1.5 + parent: 2 + - uid: 26015 components: - type: Transform - pos: 390.5,386.5 - parent: 1 - - uid: 10543 + pos: -133.5,-3.5 + parent: 2 + - uid: 26016 components: - type: Transform - pos: 390.5,385.5 - parent: 1 - - uid: 10544 + pos: -133.5,-9.5 + parent: 2 + - uid: 26017 components: - type: Transform - pos: 390.5,394.5 - parent: 1 - - uid: 10545 + pos: -133.5,-8.5 + parent: 2 + - uid: 26018 components: - type: Transform - pos: 390.5,384.5 - parent: 1 - - uid: 10546 + pos: -133.5,-7.5 + parent: 2 + - uid: 26019 components: - type: Transform - pos: 390.5,383.5 - parent: 1 - - uid: 10547 + pos: -133.5,-6.5 + parent: 2 + - uid: 26020 components: - type: Transform - pos: 390.5,382.5 - parent: 1 - - uid: 10548 + pos: -133.5,-5.5 + parent: 2 + - uid: 26021 components: - type: Transform - pos: 390.5,381.5 - parent: 1 - - uid: 10549 + pos: -133.5,-4.5 + parent: 2 + - uid: 26022 components: - type: Transform - pos: 390.5,379.5 - parent: 1 - - uid: 10550 + pos: -133.5,-2.5 + parent: 2 + - uid: 26023 components: - type: Transform - pos: 390.5,380.5 - parent: 1 - - uid: 10551 + pos: -133.5,-1.5 + parent: 2 + - uid: 26024 components: - type: Transform - pos: 390.5,378.5 - parent: 1 - - uid: 10552 + pos: -133.5,-11.5 + parent: 2 + - uid: 26025 components: - type: Transform - pos: 388.5,375.5 - parent: 1 - - uid: 10553 + pos: -133.5,-12.5 + parent: 2 + - uid: 26026 components: - type: Transform - pos: 390.5,375.5 - parent: 1 - - uid: 10554 + pos: -104.5,27.5 + parent: 2 + - uid: 26029 components: - type: Transform - pos: 389.5,375.5 - parent: 1 - - uid: 10555 + pos: -33.5,8.5 + parent: 2 + - uid: 26030 components: - type: Transform - pos: 390.5,374.5 - parent: 1 - - uid: 10556 + pos: -33.5,7.5 + parent: 2 + - uid: 26031 components: - type: Transform - pos: 390.5,372.5 - parent: 1 - - uid: 10557 + pos: -33.5,5.5 + parent: 2 + - uid: 26032 components: - type: Transform - pos: 390.5,371.5 - parent: 1 - - uid: 10558 + pos: -33.5,4.5 + parent: 2 + - uid: 26033 components: - type: Transform - pos: 390.5,373.5 - parent: 1 - - uid: 10559 + pos: -30.5,2.5 + parent: 2 + - uid: 26034 components: - type: Transform - pos: 390.5,370.5 - parent: 1 - - uid: 10560 + pos: -29.5,2.5 + parent: 2 + - uid: 26035 components: - type: Transform - pos: 391.5,370.5 - parent: 1 - - uid: 10561 + pos: -33.5,6.5 + parent: 2 + - uid: 26040 components: - type: Transform - pos: 393.5,370.5 - parent: 1 - - uid: 10562 + pos: -39.5,2.5 + parent: 2 + - uid: 26042 components: - type: Transform - pos: 394.5,370.5 - parent: 1 - - uid: 10563 + pos: -32.5,2.5 + parent: 2 + - uid: 26043 components: - type: Transform - pos: 395.5,370.5 - parent: 1 - - uid: 10564 + pos: -28.5,2.5 + parent: 2 + - uid: 26044 components: - type: Transform - pos: 392.5,370.5 - parent: 1 - - uid: 10565 + pos: -27.5,2.5 + parent: 2 + - uid: 26045 components: - type: Transform - pos: 391.5,373.5 - parent: 1 - - uid: 10566 + pos: -26.5,2.5 + parent: 2 + - uid: 26046 components: - type: Transform - pos: 393.5,373.5 - parent: 1 - - uid: 10567 + pos: -40.5,-1.5 + parent: 2 + - uid: 26047 components: - type: Transform - pos: 394.5,373.5 - parent: 1 - - uid: 10568 + pos: -40.5,-0.5 + parent: 2 + - uid: 26048 components: - type: Transform - pos: 395.5,373.5 - parent: 1 - - uid: 10569 + pos: -40.5,1.5 + parent: 2 + - uid: 26049 components: - type: Transform - pos: 392.5,373.5 - parent: 1 - - uid: 10570 + pos: -40.5,2.5 + parent: 2 + - uid: 26050 components: - type: Transform - pos: 384.5,405.5 - parent: 1 - - uid: 10571 + pos: -40.5,0.5 + parent: 2 + - uid: 26181 components: - type: Transform - pos: 384.5,403.5 - parent: 1 - - uid: 10572 + pos: -129.5,-51.5 + parent: 2 + - uid: 26182 components: - type: Transform - pos: 384.5,402.5 - parent: 1 - - uid: 10573 + pos: -128.5,-51.5 + parent: 2 + - uid: 26183 components: - type: Transform - pos: 384.5,401.5 - parent: 1 - - uid: 10574 + pos: -128.5,-52.5 + parent: 2 + - uid: 26184 components: - type: Transform - pos: 384.5,400.5 - parent: 1 - - uid: 10575 + pos: -130.5,-51.5 + parent: 2 + - uid: 26185 components: - type: Transform - pos: 384.5,404.5 - parent: 1 - - uid: 10576 + pos: -130.5,-52.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 4360 components: - type: Transform - pos: 384.5,399.5 - parent: 1 - - uid: 10577 + pos: -26.681332,-6.5260487 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 21068 components: - type: Transform - pos: 384.5,398.5 - parent: 1 - - uid: 10578 + pos: -37.5,-64.5 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 6303 components: - type: Transform - pos: 385.5,403.5 - parent: 1 - - uid: 10579 + pos: -127.567604,-15.923107 + parent: 2 + - uid: 8869 components: - type: Transform - pos: 387.5,403.5 - parent: 1 - - uid: 10580 + pos: -36.319096,-53.09528 + parent: 2 +- proto: Cablecuffs + entities: + - uid: 9741 components: - type: Transform - pos: 388.5,403.5 - parent: 1 - - uid: 10581 + pos: -118.77067,31.625898 + parent: 2 +- proto: CableHV + entities: + - uid: 159 components: - type: Transform - pos: 389.5,403.5 - parent: 1 - - uid: 10582 + pos: -97.5,-25.5 + parent: 2 + - uid: 263 components: - type: Transform - pos: 390.5,403.5 - parent: 1 - - uid: 10583 + pos: -130.5,-5.5 + parent: 2 + - uid: 282 components: - type: Transform - pos: 391.5,403.5 - parent: 1 - - uid: 10584 + pos: -97.5,-22.5 + parent: 2 + - uid: 317 components: - type: Transform - pos: 392.5,403.5 - parent: 1 - - uid: 10585 + pos: -69.5,-1.5 + parent: 2 + - uid: 318 components: - type: Transform - pos: 393.5,403.5 - parent: 1 - - uid: 10586 + pos: -15.5,-69.5 + parent: 2 + - uid: 319 components: - type: Transform - pos: 394.5,403.5 - parent: 1 - - uid: 10587 + pos: -15.5,-66.5 + parent: 2 + - uid: 354 components: - type: Transform - pos: 395.5,403.5 - parent: 1 - - uid: 10588 + pos: -97.5,-23.5 + parent: 2 + - uid: 427 components: - type: Transform - pos: 396.5,403.5 - parent: 1 - - uid: 10589 + pos: -77.5,-8.5 + parent: 2 + - uid: 507 components: - type: Transform - pos: 397.5,403.5 - parent: 1 - - uid: 10590 + pos: -88.5,4.5 + parent: 2 + - uid: 525 components: - type: Transform - pos: 386.5,403.5 - parent: 1 - - uid: 10591 + pos: -137.5,-8.5 + parent: 2 + - uid: 546 components: - type: Transform - pos: 398.5,403.5 - parent: 1 - - uid: 10592 + pos: -137.5,-7.5 + parent: 2 + - uid: 569 components: - type: Transform - pos: 400.5,403.5 - parent: 1 - - uid: 10593 + pos: -137.5,-10.5 + parent: 2 + - uid: 785 components: - type: Transform - pos: 402.5,403.5 - parent: 1 - - uid: 10594 + pos: -151.5,11.5 + parent: 2 + - uid: 909 components: - type: Transform - pos: 403.5,403.5 - parent: 1 - - uid: 10595 + pos: -26.5,-57.5 + parent: 2 + - uid: 990 components: - type: Transform - pos: 404.5,403.5 - parent: 1 - - uid: 10596 + pos: -145.5,16.5 + parent: 2 + - uid: 1332 components: - type: Transform - pos: 399.5,403.5 - parent: 1 - - uid: 10597 + pos: -141.5,-31.5 + parent: 2 + - uid: 1410 components: - type: Transform - pos: 405.5,403.5 - parent: 1 - - uid: 10598 + pos: -15.5,-61.5 + parent: 2 + - uid: 1722 components: - type: Transform - pos: 406.5,403.5 - parent: 1 - - uid: 10599 + pos: -153.5,18.5 + parent: 2 + - uid: 1723 components: - type: Transform - pos: 407.5,403.5 - parent: 1 - - uid: 10600 + pos: -76.5,-36.5 + parent: 2 + - uid: 1787 components: - type: Transform - pos: 408.5,403.5 - parent: 1 - - uid: 10601 + pos: -149.5,18.5 + parent: 2 + - uid: 1799 components: - type: Transform - pos: 409.5,403.5 - parent: 1 - - uid: 10602 + pos: -147.5,15.5 + parent: 2 + - uid: 1818 components: - type: Transform - pos: 401.5,403.5 - parent: 1 - - uid: 10603 + pos: -147.5,17.5 + parent: 2 + - uid: 1842 components: - type: Transform - pos: 414.5,403.5 - parent: 1 - - uid: 10604 + pos: -38.5,2.5 + parent: 2 + - uid: 1853 components: - type: Transform - pos: 412.5,403.5 - parent: 1 - - uid: 10605 + pos: -145.5,18.5 + parent: 2 + - uid: 1854 components: - type: Transform - pos: 411.5,403.5 - parent: 1 - - uid: 10606 + pos: -16.5,2.5 + parent: 2 + - uid: 1857 components: - type: Transform - pos: 413.5,403.5 - parent: 1 - - uid: 10607 + pos: -149.5,16.5 + parent: 2 + - uid: 1860 components: - type: Transform - pos: 412.5,402.5 - parent: 1 - - uid: 10608 + pos: -21.5,2.5 + parent: 2 + - uid: 1868 components: - type: Transform - pos: 412.5,400.5 - parent: 1 - - uid: 10609 + pos: -109.5,-47.5 + parent: 2 + - uid: 1901 components: - type: Transform - pos: 412.5,401.5 - parent: 1 - - uid: 10610 + pos: -93.5,-44.5 + parent: 2 + - uid: 1919 components: - type: Transform - pos: 412.5,399.5 - parent: 1 - - uid: 10611 + pos: -101.5,-24.5 + parent: 2 + - uid: 1948 components: - type: Transform - pos: 412.5,398.5 - parent: 1 - - uid: 10612 + pos: -78.5,-17.5 + parent: 2 + - uid: 1949 components: - type: Transform - pos: 412.5,397.5 - parent: 1 - - uid: 10613 + pos: -84.5,-17.5 + parent: 2 + - uid: 1951 components: - type: Transform - pos: 412.5,396.5 - parent: 1 - - uid: 10614 + pos: -78.5,-18.5 + parent: 2 + - uid: 1952 components: - type: Transform - pos: 413.5,396.5 - parent: 1 - - uid: 10615 + pos: -78.5,-20.5 + parent: 2 + - uid: 1953 components: - type: Transform - pos: 415.5,396.5 - parent: 1 - - uid: 10616 + pos: -78.5,-21.5 + parent: 2 + - uid: 1954 components: - type: Transform - pos: 414.5,396.5 - parent: 1 - - uid: 10617 + pos: -78.5,-22.5 + parent: 2 + - uid: 1955 components: - type: Transform - pos: 416.5,396.5 - parent: 1 - - uid: 10618 + pos: -78.5,-23.5 + parent: 2 + - uid: 1957 components: - type: Transform - pos: 417.5,396.5 - parent: 1 - - uid: 10619 + pos: -78.5,-19.5 + parent: 2 + - uid: 1983 components: - type: Transform - pos: 418.5,396.5 - parent: 1 - - uid: 10620 + pos: -83.5,-17.5 + parent: 2 + - uid: 2010 components: - type: Transform - pos: 419.5,396.5 - parent: 1 - - uid: 10621 + pos: -40.5,-8.5 + parent: 2 + - uid: 2017 components: - type: Transform - pos: 409.5,396.5 - parent: 1 - - uid: 10622 + pos: -61.5,-8.5 + parent: 2 + - uid: 2018 components: - type: Transform - pos: 408.5,396.5 - parent: 1 - - uid: 10623 + pos: -61.5,-5.5 + parent: 2 + - uid: 2021 components: - type: Transform - pos: 407.5,396.5 - parent: 1 - - uid: 10624 + pos: -71.5,-9.5 + parent: 2 + - uid: 2029 components: - type: Transform - pos: 406.5,396.5 - parent: 1 - - uid: 10625 + pos: -72.5,-9.5 + parent: 2 + - uid: 2030 components: - type: Transform - pos: 405.5,396.5 - parent: 1 - - uid: 10626 + pos: -61.5,-4.5 + parent: 2 + - uid: 2031 components: - type: Transform - pos: 404.5,396.5 - parent: 1 - - uid: 10627 + pos: -61.5,-11.5 + parent: 2 + - uid: 2033 components: - type: Transform - pos: 403.5,396.5 - parent: 1 - - uid: 10628 + pos: -74.5,-9.5 + parent: 2 + - uid: 2082 components: + - type: MetaData + name: Security Deterence SMES - type: Transform - pos: 402.5,396.5 - parent: 1 - - uid: 10629 + pos: -86.5,-17.5 + parent: 2 + - uid: 2083 components: - type: Transform - pos: 401.5,396.5 - parent: 1 - - uid: 10630 + pos: -78.5,-44.5 + parent: 2 + - uid: 2084 components: - type: Transform - pos: 410.5,396.5 - parent: 1 - - uid: 10631 + pos: -154.5,13.5 + parent: 2 + - uid: 2089 components: - type: Transform - pos: 400.5,396.5 - parent: 1 - - uid: 10632 + pos: -85.5,-17.5 + parent: 2 + - uid: 2097 components: - type: Transform - pos: 399.5,396.5 - parent: 1 - - uid: 10633 + pos: -82.5,-17.5 + parent: 2 + - uid: 2098 components: - type: Transform - pos: 397.5,396.5 - parent: 1 - - uid: 10634 + pos: -81.5,-17.5 + parent: 2 + - uid: 2101 components: - type: Transform - pos: 396.5,396.5 - parent: 1 - - uid: 10635 + pos: -79.5,-17.5 + parent: 2 + - uid: 2109 components: - type: Transform - pos: 395.5,396.5 - parent: 1 - - uid: 10636 + pos: -80.5,-17.5 + parent: 2 + - uid: 2111 components: - type: Transform - pos: 394.5,396.5 - parent: 1 - - uid: 10637 + pos: -61.5,-9.5 + parent: 2 + - uid: 2112 components: - type: Transform - pos: 393.5,396.5 - parent: 1 - - uid: 10638 + pos: -61.5,-10.5 + parent: 2 + - uid: 2116 components: - type: Transform - pos: 398.5,396.5 - parent: 1 - - uid: 10639 + pos: -66.5,-3.5 + parent: 2 + - uid: 2117 components: - type: Transform - pos: 392.5,396.5 - parent: 1 - - uid: 10640 + pos: -87.5,-17.5 + parent: 2 + - uid: 2118 components: - type: Transform - pos: 404.5,395.5 - parent: 1 - - uid: 10641 + pos: -61.5,-7.5 + parent: 2 + - uid: 2120 components: - type: Transform - pos: 404.5,393.5 - parent: 1 - - uid: 10642 + pos: -66.5,-2.5 + parent: 2 + - uid: 2121 components: - type: Transform - pos: 404.5,392.5 - parent: 1 - - uid: 10643 + pos: -87.5,-18.5 + parent: 2 + - uid: 2122 components: - type: Transform - pos: 404.5,391.5 - parent: 1 - - uid: 10644 + pos: -139.5,-5.5 + parent: 2 + - uid: 2124 components: - type: Transform - pos: 404.5,394.5 - parent: 1 - - uid: 10645 + pos: -82.5,-27.5 + parent: 2 + - uid: 2137 components: - type: Transform - pos: 404.5,390.5 - parent: 1 - - uid: 10646 + pos: -140.5,-5.5 + parent: 2 + - uid: 2138 components: - type: Transform - pos: 404.5,389.5 - parent: 1 - - uid: 10647 + pos: -141.5,-5.5 + parent: 2 + - uid: 2140 components: - type: Transform - pos: 404.5,388.5 - parent: 1 - - uid: 10648 + pos: -73.5,-9.5 + parent: 2 + - uid: 2141 components: - type: Transform - pos: 404.5,387.5 - parent: 1 - - uid: 10649 + pos: -71.5,-8.5 + parent: 2 + - uid: 2142 components: - type: Transform - pos: 404.5,386.5 - parent: 1 - - uid: 10650 + pos: -109.5,-10.5 + parent: 2 + - uid: 2143 components: - type: Transform - pos: 404.5,385.5 - parent: 1 - - uid: 10651 + pos: -106.5,-10.5 + parent: 2 + - uid: 2146 components: - type: Transform - pos: 404.5,384.5 - parent: 1 - - uid: 10652 + pos: -108.5,-10.5 + parent: 2 + - uid: 2147 components: - type: Transform - pos: 404.5,383.5 - parent: 1 - - uid: 10653 + pos: -107.5,-10.5 + parent: 2 + - uid: 2158 components: - type: Transform - pos: 404.5,382.5 - parent: 1 - - uid: 10654 + pos: -91.5,-27.5 + parent: 2 + - uid: 2170 components: - type: Transform - pos: 404.5,380.5 - parent: 1 - - uid: 10655 + pos: -94.5,-47.5 + parent: 2 + - uid: 2172 components: - type: Transform - pos: 404.5,379.5 - parent: 1 - - uid: 10656 + pos: -94.5,-46.5 + parent: 2 + - uid: 2173 components: - type: Transform - pos: 404.5,378.5 - parent: 1 - - uid: 10657 + pos: -94.5,-45.5 + parent: 2 + - uid: 2177 components: - type: Transform - pos: 404.5,377.5 - parent: 1 - - uid: 10658 + pos: -94.5,-44.5 + parent: 2 + - uid: 2197 components: - type: Transform - pos: 404.5,381.5 - parent: 1 - - uid: 10659 + pos: -103.5,-1.5 + parent: 2 + - uid: 2206 components: - type: Transform - pos: 401.5,371.5 - parent: 1 - - uid: 10660 + pos: -40.5,0.5 + parent: 2 + - uid: 2211 components: - type: Transform - pos: 400.5,371.5 - parent: 1 - - uid: 10661 + pos: -33.5,2.5 + parent: 2 + - uid: 2249 components: - type: Transform - pos: 400.5,372.5 - parent: 1 - - uid: 10662 + pos: -40.5,-0.5 + parent: 2 + - uid: 2275 components: - type: Transform - pos: 400.5,373.5 - parent: 1 - - uid: 10663 + pos: -103.5,-0.5 + parent: 2 + - uid: 2276 components: - type: Transform - pos: 399.5,373.5 - parent: 1 - - uid: 10664 + pos: -103.5,0.5 + parent: 2 + - uid: 2279 components: - type: Transform - pos: 400.5,370.5 - parent: 1 - - uid: 10667 + pos: -103.5,-13.5 + parent: 2 + - uid: 2285 components: - type: Transform - pos: 402.5,375.5 - parent: 1 - - uid: 10668 + pos: -102.5,-13.5 + parent: 2 + - uid: 2286 components: - type: Transform - pos: 403.5,375.5 - parent: 1 - - uid: 10669 + pos: -40.5,-4.5 + parent: 2 + - uid: 2292 components: - type: Transform - pos: 404.5,375.5 - parent: 1 - - uid: 10670 + pos: -103.5,-12.5 + parent: 2 + - uid: 2294 components: - type: Transform - pos: 404.5,373.5 - parent: 1 - - uid: 10671 + pos: -103.5,1.5 + parent: 2 + - uid: 2295 components: - type: Transform - pos: 404.5,372.5 - parent: 1 - - uid: 10672 + pos: -103.5,2.5 + parent: 2 + - uid: 2296 components: - type: Transform - pos: 404.5,371.5 - parent: 1 - - uid: 10673 + pos: -101.5,-13.5 + parent: 2 + - uid: 2309 components: - type: Transform - pos: 404.5,370.5 - parent: 1 - - uid: 10674 + pos: -103.5,-7.5 + parent: 2 + - uid: 2310 components: - type: Transform - pos: 404.5,369.5 - parent: 1 - - uid: 10675 + pos: -103.5,-9.5 + parent: 2 + - uid: 2315 components: - type: Transform - pos: 404.5,368.5 - parent: 1 - - uid: 10676 + pos: -139.5,-27.5 + parent: 2 + - uid: 2319 components: - type: Transform - pos: 404.5,374.5 - parent: 1 - - uid: 10677 + pos: -103.5,3.5 + parent: 2 + - uid: 2321 components: - type: Transform - pos: 406.5,372.5 - parent: 1 - - uid: 10678 + pos: -103.5,-10.5 + parent: 2 + - uid: 2338 components: - type: Transform - pos: 408.5,372.5 - parent: 1 - - uid: 10679 + pos: -40.5,-5.5 + parent: 2 + - uid: 2345 components: - type: Transform - pos: 407.5,372.5 - parent: 1 - - uid: 10680 + pos: -143.5,11.5 + parent: 2 + - uid: 2351 components: - type: Transform - pos: 408.5,371.5 - parent: 1 - - uid: 10681 + pos: -104.5,-10.5 + parent: 2 + - uid: 2353 components: - type: Transform - pos: 408.5,369.5 - parent: 1 - - uid: 10682 + pos: -105.5,-10.5 + parent: 2 + - uid: 2354 components: - type: Transform - pos: 408.5,368.5 - parent: 1 - - uid: 10683 + pos: -103.5,-11.5 + parent: 2 + - uid: 2355 components: - type: Transform - pos: 408.5,370.5 - parent: 1 - - uid: 10684 + pos: -88.5,-27.5 + parent: 2 + - uid: 2356 components: - type: Transform - pos: 412.5,372.5 - parent: 1 - - uid: 10685 + pos: -87.5,-27.5 + parent: 2 + - uid: 2359 components: - type: Transform - pos: 412.5,371.5 - parent: 1 - - uid: 10686 + pos: -99.5,-27.5 + parent: 2 + - uid: 2360 components: - type: Transform - pos: 411.5,371.5 - parent: 1 - - uid: 10687 + pos: -98.5,-27.5 + parent: 2 + - uid: 2361 components: - type: Transform - pos: 412.5,369.5 - parent: 1 - - uid: 10688 + pos: -100.5,-27.5 + parent: 2 + - uid: 2383 components: - type: Transform - pos: 412.5,368.5 - parent: 1 - - uid: 10689 + pos: -137.5,-13.5 + parent: 2 + - uid: 2386 components: - type: Transform - pos: 411.5,368.5 - parent: 1 - - uid: 10690 + pos: -133.5,-23.5 + parent: 2 + - uid: 2491 components: - type: Transform - pos: 413.5,376.5 - parent: 1 - - uid: 10691 + pos: -40.5,1.5 + parent: 2 + - uid: 2510 components: - type: Transform - pos: 413.5,375.5 - parent: 1 - - uid: 10692 + pos: -72.5,-8.5 + parent: 2 + - uid: 2512 components: - type: Transform - pos: 412.5,375.5 - parent: 1 - - uid: 10693 + pos: -70.5,-8.5 + parent: 2 + - uid: 2527 components: - type: Transform - pos: 410.5,375.5 - parent: 1 - - uid: 10694 + pos: -103.5,-8.5 + parent: 2 + - uid: 2528 components: - type: Transform - pos: 409.5,375.5 - parent: 1 - - uid: 10695 + pos: -103.5,-6.5 + parent: 2 + - uid: 2529 components: - type: Transform - pos: 408.5,375.5 - parent: 1 - - uid: 10696 + pos: -103.5,-5.5 + parent: 2 + - uid: 2535 components: - type: Transform - pos: 411.5,375.5 - parent: 1 - - uid: 10697 + pos: -110.5,-10.5 + parent: 2 + - uid: 2536 components: - type: Transform - pos: 414.5,375.5 - parent: 1 - - uid: 10698 + pos: -111.5,-10.5 + parent: 2 + - uid: 2563 components: - type: Transform - pos: 415.5,375.5 - parent: 1 - - uid: 10699 + pos: -78.5,-35.5 + parent: 2 + - uid: 2572 components: - type: Transform - pos: 416.5,375.5 - parent: 1 - - uid: 10700 + pos: -78.5,-36.5 + parent: 2 + - uid: 2573 components: - type: Transform - pos: 417.5,375.5 - parent: 1 - - uid: 10701 + pos: -78.5,-37.5 + parent: 2 + - uid: 2576 components: - type: Transform - pos: 418.5,375.5 - parent: 1 - - uid: 10702 + pos: -78.5,-47.5 + parent: 2 + - uid: 2578 components: - type: Transform - pos: 419.5,372.5 - parent: 1 - - uid: 10703 + pos: -78.5,-46.5 + parent: 2 + - uid: 2579 components: - type: Transform - pos: 419.5,371.5 - parent: 1 - - uid: 10704 + pos: -78.5,-38.5 + parent: 2 + - uid: 2580 components: - type: Transform - pos: 418.5,371.5 - parent: 1 - - uid: 10705 + pos: -78.5,-48.5 + parent: 2 + - uid: 2583 components: - type: Transform - pos: 419.5,369.5 - parent: 1 - - uid: 10706 + pos: -78.5,-49.5 + parent: 2 + - uid: 2584 components: - type: Transform - pos: 419.5,368.5 - parent: 1 - - uid: 10707 + pos: -78.5,-40.5 + parent: 2 + - uid: 2585 components: - type: Transform - pos: 418.5,368.5 - parent: 1 - - uid: 10708 + pos: -78.5,-41.5 + parent: 2 + - uid: 2586 components: - type: Transform - pos: 415.5,374.5 - parent: 1 - - uid: 10709 + pos: -78.5,-50.5 + parent: 2 + - uid: 2587 components: - type: Transform - pos: 415.5,372.5 - parent: 1 - - uid: 10710 + pos: -78.5,-51.5 + parent: 2 + - uid: 2603 components: - type: Transform - pos: 415.5,371.5 - parent: 1 - - uid: 10711 + pos: -80.5,-38.5 + parent: 2 + - uid: 2608 components: - type: Transform - pos: 415.5,370.5 - parent: 1 - - uid: 10712 + pos: -92.5,-44.5 + parent: 2 + - uid: 2635 components: - type: Transform - pos: 415.5,369.5 - parent: 1 - - uid: 10713 + pos: -133.5,-27.5 + parent: 2 + - uid: 2649 components: - type: Transform - pos: 415.5,368.5 - parent: 1 - - uid: 10714 + pos: -94.5,-49.5 + parent: 2 + - uid: 2676 components: - type: Transform - pos: 415.5,373.5 - parent: 1 - - uid: 10715 + pos: -78.5,-39.5 + parent: 2 + - uid: 2805 components: - type: Transform - pos: 411.5,386.5 - parent: 1 - - uid: 10716 + pos: -43.5,-8.5 + parent: 2 + - uid: 2808 components: - type: Transform - pos: 411.5,388.5 - parent: 1 - - uid: 10717 + pos: -42.5,-8.5 + parent: 2 + - uid: 2818 components: - type: Transform - pos: 411.5,387.5 - parent: 1 - - uid: 10718 + pos: -40.5,-7.5 + parent: 2 + - uid: 2825 components: - type: Transform - pos: 412.5,388.5 - parent: 1 - - uid: 10719 + pos: -40.5,-6.5 + parent: 2 + - uid: 3038 components: - type: Transform - pos: 412.5,389.5 - parent: 1 - - uid: 10720 + pos: -59.5,8.5 + parent: 2 + - uid: 3039 components: - type: Transform - pos: 412.5,390.5 - parent: 1 - - uid: 10721 + pos: -60.5,8.5 + parent: 2 + - uid: 3040 components: - type: Transform - pos: 412.5,391.5 - parent: 1 - - uid: 10722 + pos: -60.5,9.5 + parent: 2 + - uid: 3041 components: - type: Transform - pos: 412.5,392.5 - parent: 1 - - uid: 10723 + pos: -61.5,9.5 + parent: 2 + - uid: 3042 components: - type: Transform - pos: 417.5,389.5 - parent: 1 - - uid: 10724 + pos: -62.5,9.5 + parent: 2 + - uid: 3043 components: - type: Transform - pos: 415.5,389.5 - parent: 1 - - uid: 10725 + pos: -62.5,8.5 + parent: 2 + - uid: 3045 components: - type: Transform - pos: 416.5,389.5 - parent: 1 - - uid: 10726 + pos: -66.5,7.5 + parent: 2 + - uid: 3046 components: - type: Transform - pos: 415.5,390.5 - parent: 1 - - uid: 10727 + pos: -67.5,7.5 + parent: 2 + - uid: 3047 components: - type: Transform - pos: 415.5,392.5 - parent: 1 - - uid: 10728 + pos: -68.5,7.5 + parent: 2 + - uid: 3048 components: - type: Transform - pos: 415.5,391.5 - parent: 1 - - uid: 10729 + pos: -68.5,6.5 + parent: 2 + - uid: 3049 components: - type: Transform - pos: 406.5,392.5 - parent: 1 - - uid: 10730 + pos: -69.5,4.5 + parent: 2 + - uid: 3050 components: - type: Transform - pos: 418.5,388.5 - parent: 1 - - uid: 10731 + pos: -69.5,6.5 + parent: 2 + - uid: 3051 components: - type: Transform - pos: 417.5,388.5 - parent: 1 - - uid: 10732 + pos: -69.5,5.5 + parent: 2 + - uid: 3054 components: - type: Transform - pos: 419.5,388.5 - parent: 1 - - uid: 10733 + pos: -63.5,8.5 + parent: 2 + - uid: 3055 components: - type: Transform - pos: 408.5,392.5 - parent: 1 - - uid: 10734 + pos: -64.5,9.5 + parent: 2 + - uid: 3056 components: - type: Transform - pos: 407.5,392.5 - parent: 1 - - uid: 10735 + pos: -65.5,8.5 + parent: 2 + - uid: 3057 components: - type: Transform - pos: 408.5,391.5 - parent: 1 - - uid: 10736 + pos: -64.5,8.5 + parent: 2 + - uid: 3058 components: - type: Transform - pos: 408.5,389.5 - parent: 1 - - uid: 10737 + pos: -66.5,8.5 + parent: 2 + - uid: 3059 components: - type: Transform - pos: 408.5,388.5 - parent: 1 - - uid: 10738 + pos: -58.5,8.5 + parent: 2 + - uid: 3060 components: - type: Transform - pos: 408.5,387.5 - parent: 1 - - uid: 10739 + pos: -58.5,9.5 + parent: 2 + - uid: 3061 components: - type: Transform - pos: 408.5,390.5 - parent: 1 - - uid: 10740 + pos: -56.5,8.5 + parent: 2 + - uid: 3062 components: - type: Transform - pos: 406.5,384.5 - parent: 1 - - uid: 10741 + pos: -57.5,8.5 + parent: 2 + - uid: 3063 components: - type: Transform - pos: 408.5,384.5 - parent: 1 - - uid: 10742 + pos: -56.5,7.5 + parent: 2 + - uid: 3064 components: - type: Transform - pos: 409.5,384.5 - parent: 1 - - uid: 10743 + pos: -55.5,7.5 + parent: 2 + - uid: 3065 components: - type: Transform - pos: 410.5,384.5 - parent: 1 - - uid: 10744 + pos: -54.5,7.5 + parent: 2 + - uid: 3066 components: - type: Transform - pos: 411.5,384.5 - parent: 1 - - uid: 10745 + pos: -54.5,6.5 + parent: 2 + - uid: 3067 components: - type: Transform - pos: 407.5,384.5 - parent: 1 - - uid: 10746 + pos: -53.5,6.5 + parent: 2 + - uid: 3068 components: - type: Transform - pos: 412.5,384.5 - parent: 1 - - uid: 10747 + pos: -53.5,5.5 + parent: 2 + - uid: 3070 components: - type: Transform - pos: 409.5,383.5 - parent: 1 - - uid: 10748 + pos: -53.5,4.5 + parent: 2 + - uid: 3071 components: - type: Transform - pos: 409.5,382.5 - parent: 1 - - uid: 10749 + pos: -54.5,4.5 + parent: 2 + - uid: 3072 components: - type: Transform - pos: 409.5,380.5 - parent: 1 - - uid: 10750 + pos: -54.5,3.5 + parent: 2 + - uid: 3105 components: - type: Transform - pos: 409.5,379.5 - parent: 1 - - uid: 10751 + pos: -55.5,-0.5 + parent: 2 + - uid: 3106 components: - type: Transform - pos: 409.5,381.5 - parent: 1 - - uid: 10752 + pos: -56.5,-0.5 + parent: 2 + - uid: 3107 components: - type: Transform - pos: 410.5,382.5 - parent: 1 - - uid: 10753 + pos: -56.5,0.5 + parent: 2 + - uid: 3109 components: - type: Transform - pos: 411.5,382.5 - parent: 1 - - uid: 10754 + pos: -53.5,-0.5 + parent: 2 + - uid: 3114 components: - type: Transform - pos: 411.5,381.5 - parent: 1 - - uid: 10755 + pos: -56.5,1.5 + parent: 2 + - uid: 3115 components: - type: Transform - pos: 411.5,379.5 - parent: 1 - - uid: 10756 + pos: -56.5,2.5 + parent: 2 + - uid: 3116 components: - type: Transform - pos: 411.5,380.5 - parent: 1 - - uid: 10757 + pos: -55.5,2.5 + parent: 2 + - uid: 3117 components: - type: Transform - pos: 412.5,382.5 - parent: 1 - - uid: 10758 + pos: -55.5,3.5 + parent: 2 + - uid: 3135 components: - type: Transform - pos: 414.5,382.5 - parent: 1 - - uid: 10759 + pos: -130.5,-10.5 + parent: 2 + - uid: 3170 components: - type: Transform - pos: 415.5,382.5 - parent: 1 - - uid: 10760 + pos: -123.5,-3.5 + parent: 2 + - uid: 3174 components: - type: Transform - pos: 413.5,382.5 - parent: 1 - - uid: 10761 + pos: -107.5,-45.5 + parent: 2 + - uid: 3178 components: - type: Transform - pos: 415.5,383.5 - parent: 1 - - uid: 10762 + pos: -69.5,-6.5 + parent: 2 + - uid: 3179 components: - type: Transform - pos: 416.5,378.5 - parent: 1 - - uid: 10763 + pos: -69.5,-4.5 + parent: 2 + - uid: 3180 components: - type: Transform - pos: 415.5,378.5 - parent: 1 - - uid: 10764 + pos: -69.5,-5.5 + parent: 2 + - uid: 3181 components: - type: Transform - pos: 417.5,378.5 - parent: 1 - - uid: 10765 + pos: -70.5,-6.5 + parent: 2 + - uid: 3182 components: - type: Transform - pos: 415.5,379.5 - parent: 1 - - uid: 10766 + pos: -72.5,-6.5 + parent: 2 + - uid: 3183 components: - type: Transform - pos: 415.5,380.5 - parent: 1 - - uid: 10768 + pos: -73.5,-6.5 + parent: 2 + - uid: 3184 components: - type: Transform - pos: 355.5,405.5 - parent: 1 - - uid: 10769 + pos: -74.5,-6.5 + parent: 2 + - uid: 3185 components: - type: Transform - pos: 355.5,404.5 - parent: 1 - - uid: 10770 + pos: -71.5,-6.5 + parent: 2 + - uid: 3186 components: - type: Transform - pos: 355.5,403.5 - parent: 1 - - uid: 10771 + pos: -76.5,-6.5 + parent: 2 + - uid: 3187 components: - type: Transform - pos: 357.5,403.5 - parent: 1 - - uid: 10772 + pos: -75.5,-6.5 + parent: 2 + - uid: 3188 components: - type: Transform - pos: 356.5,403.5 - parent: 1 - - uid: 10773 + pos: -77.5,-6.5 + parent: 2 + - uid: 3189 components: - type: Transform - pos: 358.5,403.5 - parent: 1 - - uid: 10774 + pos: -77.5,-5.5 + parent: 2 + - uid: 3190 components: - type: Transform - pos: 359.5,403.5 - parent: 1 - - uid: 10775 + pos: -77.5,-3.5 + parent: 2 + - uid: 3191 components: - type: Transform - pos: 360.5,403.5 - parent: 1 - - uid: 10776 + pos: -77.5,-2.5 + parent: 2 + - uid: 3192 components: - type: Transform - pos: 361.5,403.5 - parent: 1 - - uid: 10777 + pos: -77.5,-1.5 + parent: 2 + - uid: 3193 components: - type: Transform - pos: 354.5,403.5 - parent: 1 - - uid: 10778 + pos: -77.5,-0.5 + parent: 2 + - uid: 3194 components: - type: Transform - pos: 352.5,403.5 - parent: 1 - - uid: 10779 + pos: -77.5,0.5 + parent: 2 + - uid: 3195 components: - type: Transform - pos: 353.5,403.5 - parent: 1 - - uid: 10780 + pos: -77.5,1.5 + parent: 2 + - uid: 3196 components: - type: Transform - pos: 350.5,403.5 - parent: 1 - - uid: 10781 + pos: -77.5,-4.5 + parent: 2 + - uid: 3197 components: - type: Transform - pos: 351.5,403.5 - parent: 1 - - uid: 10782 + pos: -76.5,1.5 + parent: 2 + - uid: 3198 components: - type: Transform - pos: 349.5,403.5 - parent: 1 - - uid: 10783 + pos: -75.5,1.5 + parent: 2 + - uid: 3199 components: - type: Transform - pos: 347.5,403.5 - parent: 1 - - uid: 10784 + pos: -73.5,1.5 + parent: 2 + - uid: 3200 components: - type: Transform - pos: 348.5,403.5 - parent: 1 - - uid: 10785 + pos: -72.5,1.5 + parent: 2 + - uid: 3201 components: - type: Transform - pos: 345.5,403.5 - parent: 1 - - uid: 10786 + pos: -71.5,1.5 + parent: 2 + - uid: 3202 components: - type: Transform - pos: 343.5,403.5 - parent: 1 - - uid: 10787 + pos: -70.5,1.5 + parent: 2 + - uid: 3203 components: - type: Transform - pos: 342.5,403.5 - parent: 1 - - uid: 10788 + pos: -69.5,1.5 + parent: 2 + - uid: 3204 components: - type: Transform - pos: 346.5,403.5 - parent: 1 - - uid: 10789 + pos: -74.5,1.5 + parent: 2 + - uid: 3205 components: - type: Transform - pos: 341.5,403.5 - parent: 1 - - uid: 10790 + pos: -69.5,0.5 + parent: 2 + - uid: 3206 components: - type: Transform - pos: 340.5,403.5 - parent: 1 - - uid: 10791 + pos: -69.5,-0.5 + parent: 2 + - uid: 3209 components: - type: Transform - pos: 339.5,403.5 - parent: 1 - - uid: 10792 + pos: -57.5,-78.5 + parent: 2 + - uid: 3210 components: - type: Transform - pos: 344.5,403.5 - parent: 1 - - uid: 10793 + pos: -57.5,-76.5 + parent: 2 + - uid: 3413 components: - type: Transform - pos: 336.5,403.5 - parent: 1 - - uid: 10794 + pos: -57.5,-80.5 + parent: 2 + - uid: 3421 components: - type: Transform - pos: 338.5,403.5 - parent: 1 - - uid: 10795 + pos: -88.5,1.5 + parent: 2 + - uid: 3423 components: - type: Transform - pos: 334.5,403.5 - parent: 1 - - uid: 10796 + pos: -88.5,0.5 + parent: 2 + - uid: 3425 components: - type: Transform - pos: 333.5,403.5 - parent: 1 - - uid: 10797 + pos: -78.5,-31.5 + parent: 2 + - uid: 3427 components: - type: Transform - pos: 332.5,403.5 - parent: 1 - - uid: 10798 + pos: -78.5,-33.5 + parent: 2 + - uid: 3456 components: - type: Transform - pos: 335.5,403.5 - parent: 1 - - uid: 10799 + pos: -78.5,-29.5 + parent: 2 + - uid: 3542 components: - type: Transform - pos: 337.5,403.5 - parent: 1 - - uid: 10800 + pos: -94.5,-27.5 + parent: 2 + - uid: 3556 components: - type: Transform - pos: 331.5,403.5 - parent: 1 - - uid: 10803 + pos: -92.5,-27.5 + parent: 2 + - uid: 3577 components: - type: Transform - pos: 331.5,398.5 - parent: 1 - - uid: 10804 + pos: -105.5,-45.5 + parent: 2 + - uid: 3600 components: - type: Transform - pos: 331.5,399.5 - parent: 1 - - uid: 10805 + pos: -95.5,-27.5 + parent: 2 + - uid: 3687 components: - type: Transform - pos: 332.5,399.5 - parent: 1 - - uid: 10806 + pos: -78.5,-32.5 + parent: 2 + - uid: 3696 components: - type: Transform - pos: 333.5,399.5 - parent: 1 - - uid: 10807 + pos: -93.5,-27.5 + parent: 2 + - uid: 3715 components: - type: Transform - pos: 334.5,399.5 - parent: 1 - - uid: 10808 + pos: -90.5,-27.5 + parent: 2 + - uid: 3720 components: - type: Transform - pos: 335.5,399.5 - parent: 1 - - uid: 10809 + pos: -78.5,-34.5 + parent: 2 + - uid: 3740 components: - type: Transform - pos: 335.5,398.5 - parent: 1 - - uid: 10810 + pos: -78.5,-30.5 + parent: 2 + - uid: 3784 components: - type: Transform - pos: 335.5,397.5 - parent: 1 - - uid: 10811 + pos: 0.5,6.5 + parent: 2 + - uid: 3812 components: - type: Transform - pos: 335.5,396.5 - parent: 1 - - uid: 10812 + pos: -84.5,-38.5 + parent: 2 + - uid: 3946 components: - type: Transform - pos: 334.5,396.5 - parent: 1 - - uid: 10813 + pos: -82.5,-42.5 + parent: 2 + - uid: 3948 components: - type: Transform - pos: 332.5,396.5 - parent: 1 - - uid: 10814 + pos: -82.5,-41.5 + parent: 2 + - uid: 3961 components: - type: Transform - pos: 331.5,396.5 - parent: 1 - - uid: 10815 + pos: -82.5,-40.5 + parent: 2 + - uid: 3962 components: - type: Transform - pos: 333.5,396.5 - parent: 1 - - uid: 10816 + pos: -82.5,-39.5 + parent: 2 + - uid: 3964 components: - type: Transform - pos: 331.5,397.5 - parent: 1 - - uid: 10817 + pos: -91.5,-37.5 + parent: 2 + - uid: 3971 components: - type: Transform - pos: 328.5,399.5 - parent: 1 - - uid: 10821 + pos: -91.5,-28.5 + parent: 2 + - uid: 3990 components: - type: Transform - pos: 326.5,405.5 - parent: 1 - - uid: 10822 + pos: -91.5,-29.5 + parent: 2 + - uid: 3992 components: - type: Transform - pos: 327.5,405.5 - parent: 1 - - uid: 10823 + pos: -91.5,-30.5 + parent: 2 + - uid: 4000 components: - type: Transform - pos: 327.5,406.5 - parent: 1 - - uid: 10824 + pos: -101.5,-26.5 + parent: 2 + - uid: 4001 components: - type: Transform - pos: 327.5,407.5 - parent: 1 - - uid: 10825 + pos: -89.5,-27.5 + parent: 2 + - uid: 4015 components: - type: Transform - pos: 327.5,404.5 - parent: 1 - - uid: 10826 + pos: -86.5,-27.5 + parent: 2 + - uid: 4016 components: - type: Transform - pos: 327.5,403.5 - parent: 1 - - uid: 10827 + pos: -96.5,-27.5 + parent: 2 + - uid: 4019 components: - type: Transform - pos: 328.5,403.5 - parent: 1 - - uid: 10828 + pos: -84.5,-27.5 + parent: 2 + - uid: 4020 components: - type: Transform - pos: 329.5,412.5 - parent: 1 - - uid: 10829 + pos: -85.5,-27.5 + parent: 2 + - uid: 4021 components: - type: Transform - pos: 329.5,411.5 - parent: 1 - - uid: 10830 + pos: -83.5,-27.5 + parent: 2 + - uid: 4023 components: - type: Transform - pos: 330.5,411.5 - parent: 1 - - uid: 10831 + pos: -97.5,-27.5 + parent: 2 + - uid: 4024 components: - type: Transform - pos: 331.5,411.5 - parent: 1 - - uid: 10870 + pos: -101.5,-27.5 + parent: 2 + - uid: 4025 components: - type: Transform - pos: 331.5,410.5 - parent: 1 - - uid: 10876 + pos: -94.5,-18.5 + parent: 2 + - uid: 4080 components: - type: Transform - pos: 332.5,408.5 - parent: 1 - - uid: 10877 + pos: -94.5,-48.5 + parent: 2 + - uid: 4094 components: - type: Transform - pos: 331.5,408.5 - parent: 1 - - uid: 10878 + pos: -40.5,-1.5 + parent: 2 + - uid: 4123 components: - type: Transform - pos: 331.5,407.5 - parent: 1 - - uid: 10879 + pos: -91.5,-32.5 + parent: 2 + - uid: 4124 components: - type: Transform - pos: 331.5,406.5 - parent: 1 - - uid: 10880 + pos: -94.5,-50.5 + parent: 2 + - uid: 4127 components: - type: Transform - pos: 337.5,408.5 - parent: 1 - - uid: 10881 + pos: -91.5,-33.5 + parent: 2 + - uid: 4129 components: - type: Transform - pos: 337.5,407.5 - parent: 1 - - uid: 10882 + pos: -94.5,-43.5 + parent: 2 + - uid: 4137 components: - type: Transform - pos: 337.5,406.5 - parent: 1 - - uid: 10883 + pos: -27.5,2.5 + parent: 2 + - uid: 4141 components: - type: Transform - pos: 335.5,407.5 - parent: 1 - - uid: 10884 + pos: -26.5,2.5 + parent: 2 + - uid: 4143 components: - type: Transform - pos: 336.5,407.5 - parent: 1 - - uid: 10885 + pos: -22.5,2.5 + parent: 2 + - uid: 4144 components: - type: Transform - pos: 334.5,407.5 - parent: 1 - - uid: 10886 + pos: -36.5,2.5 + parent: 2 + - uid: 4194 components: - type: Transform - pos: 333.5,407.5 - parent: 1 - - uid: 10887 + pos: -34.5,2.5 + parent: 2 + - uid: 4200 components: - type: Transform - pos: 338.5,407.5 - parent: 1 - - uid: 10888 + pos: -40.5,-3.5 + parent: 2 + - uid: 4217 components: - type: Transform - pos: 339.5,407.5 - parent: 1 - - uid: 10889 + pos: -57.5,-79.5 + parent: 2 + - uid: 4221 components: - type: Transform - pos: 340.5,407.5 - parent: 1 - - uid: 10890 + pos: -39.5,2.5 + parent: 2 + - uid: 4268 components: - type: Transform - pos: 341.5,407.5 - parent: 1 - - uid: 10891 + pos: -91.5,-36.5 + parent: 2 + - uid: 4271 components: - type: Transform - pos: 342.5,407.5 - parent: 1 - - uid: 10892 + pos: -94.5,-51.5 + parent: 2 + - uid: 4277 components: - type: Transform - pos: 336.5,412.5 - parent: 1 - - uid: 10893 + pos: -48.5,-65.5 + parent: 2 + - uid: 4289 components: - type: Transform - pos: 336.5,411.5 - parent: 1 - - uid: 10894 + pos: -69.5,-2.5 + parent: 2 + - uid: 4292 components: - type: Transform - pos: 335.5,411.5 - parent: 1 - - uid: 10895 + pos: -69.5,-3.5 + parent: 2 + - uid: 4325 components: - type: Transform - pos: 334.5,411.5 - parent: 1 - - uid: 10896 + pos: -110.5,-50.5 + parent: 2 + - uid: 4333 components: - type: Transform - pos: 337.5,411.5 - parent: 1 - - uid: 10897 + pos: -40.5,2.5 + parent: 2 + - uid: 4334 components: - type: Transform - pos: 339.5,411.5 - parent: 1 - - uid: 10898 + pos: -19.5,2.5 + parent: 2 + - uid: 4335 components: - type: Transform - pos: 340.5,411.5 - parent: 1 - - uid: 10899 + pos: -24.5,2.5 + parent: 2 + - uid: 4340 components: - type: Transform - pos: 341.5,411.5 - parent: 1 - - uid: 10900 + pos: -58.5,-80.5 + parent: 2 + - uid: 4399 components: - type: Transform - pos: 342.5,411.5 - parent: 1 - - uid: 10901 + pos: -83.5,-9.5 + parent: 2 + - uid: 4400 components: - type: Transform - pos: 338.5,411.5 - parent: 1 - - uid: 10902 + pos: -82.5,-9.5 + parent: 2 + - uid: 4401 components: - type: Transform - pos: 344.5,411.5 - parent: 1 - - uid: 10903 + pos: -76.5,-8.5 + parent: 2 + - uid: 4403 components: - type: Transform - pos: 344.5,410.5 - parent: 1 - - uid: 10904 + pos: -78.5,-8.5 + parent: 2 + - uid: 4404 components: - type: Transform - pos: 345.5,411.5 - parent: 1 - - uid: 10905 + pos: -79.5,-8.5 + parent: 2 + - uid: 4405 components: - type: Transform - pos: 347.5,411.5 - parent: 1 - - uid: 10906 + pos: -80.5,-8.5 + parent: 2 + - uid: 4406 components: - type: Transform - pos: 348.5,411.5 - parent: 1 - - uid: 10907 + pos: -75.5,-8.5 + parent: 2 + - uid: 4407 components: - type: Transform - pos: 346.5,411.5 - parent: 1 - - uid: 10908 + pos: -81.5,-8.5 + parent: 2 + - uid: 4408 components: - type: Transform - pos: 349.5,411.5 - parent: 1 - - uid: 10909 + pos: -82.5,-8.5 + parent: 2 + - uid: 4423 components: - type: Transform - pos: 350.5,411.5 - parent: 1 - - uid: 10910 + pos: -56.5,-80.5 + parent: 2 + - uid: 4430 components: - type: Transform - pos: 350.5,410.5 - parent: 1 - - uid: 10911 + pos: -57.5,-77.5 + parent: 2 + - uid: 4475 components: - type: Transform - pos: 350.5,408.5 - parent: 1 - - uid: 10912 + pos: -130.5,-3.5 + parent: 2 + - uid: 4564 components: - type: Transform - pos: 350.5,409.5 - parent: 1 - - uid: 10913 + pos: -78.5,-25.5 + parent: 2 + - uid: 4567 components: - type: Transform - pos: 350.5,407.5 - parent: 1 - - uid: 10914 + pos: -72.5,-35.5 + parent: 2 + - uid: 4568 components: - type: Transform - pos: 346.5,409.5 - parent: 1 - - uid: 10915 + pos: -74.5,-35.5 + parent: 2 + - uid: 4571 components: - type: Transform - pos: 346.5,410.5 - parent: 1 - - uid: 10916 + pos: -72.5,-25.5 + parent: 2 + - uid: 4604 components: - type: Transform - pos: 346.5,408.5 - parent: 1 - - uid: 10917 + pos: -134.5,-27.5 + parent: 2 + - uid: 4656 components: - type: Transform - pos: 346.5,407.5 - parent: 1 - - uid: 10918 + pos: -105.5,15.5 + parent: 2 + - uid: 4664 components: - type: Transform - pos: 349.5,417.5 - parent: 1 - - uid: 10919 + pos: -105.5,6.5 + parent: 2 + - uid: 4687 components: - type: Transform - pos: 349.5,416.5 - parent: 1 - - uid: 10920 + pos: -104.5,5.5 + parent: 2 + - uid: 4701 components: - type: Transform - pos: 348.5,416.5 - parent: 1 - - uid: 10921 + pos: -137.5,13.5 + parent: 2 + - uid: 4702 components: - type: Transform - pos: 347.5,416.5 - parent: 1 - - uid: 10922 + pos: -138.5,13.5 + parent: 2 + - uid: 4703 components: - type: Transform - pos: 347.5,415.5 - parent: 1 - - uid: 10923 + pos: -140.5,13.5 + parent: 2 + - uid: 4743 components: - type: Transform - pos: 347.5,414.5 - parent: 1 - - uid: 10924 + pos: -139.5,13.5 + parent: 2 + - uid: 4765 components: - type: Transform - pos: 349.5,415.5 - parent: 1 - - uid: 10925 + pos: -79.5,2.5 + parent: 2 + - uid: 4766 components: - type: Transform - pos: 350.5,415.5 - parent: 1 - - uid: 10926 + pos: -79.5,3.5 + parent: 2 + - uid: 4767 components: - type: Transform - pos: 328.5,411.5 - parent: 1 - - uid: 10927 + pos: -79.5,5.5 + parent: 2 + - uid: 4768 components: - type: Transform - pos: 327.5,411.5 - parent: 1 - - uid: 10928 + pos: -79.5,-2.5 + parent: 2 + - uid: 4769 components: - type: Transform - pos: 326.5,411.5 - parent: 1 - - uid: 10929 + pos: -79.5,4.5 + parent: 2 + - uid: 4770 components: - type: Transform - pos: 336.5,419.5 - parent: 1 - - uid: 10930 + pos: -79.5,-7.5 + parent: 2 + - uid: 4771 components: - type: Transform - pos: 336.5,420.5 - parent: 1 - - uid: 10931 + pos: -79.5,-6.5 + parent: 2 + - uid: 4772 components: - type: Transform - pos: 336.5,422.5 - parent: 1 - - uid: 10932 + pos: -79.5,-5.5 + parent: 2 + - uid: 4773 components: - type: Transform - pos: 336.5,423.5 - parent: 1 - - uid: 10933 + pos: -79.5,-4.5 + parent: 2 + - uid: 4774 components: - type: Transform - pos: 336.5,424.5 - parent: 1 - - uid: 10934 + pos: -79.5,-3.5 + parent: 2 + - uid: 4775 components: - type: Transform - pos: 336.5,421.5 - parent: 1 - - uid: 10935 + pos: -79.5,-1.5 + parent: 2 + - uid: 4776 components: - type: Transform - pos: 335.5,424.5 - parent: 1 - - uid: 10936 + pos: -79.5,-0.5 + parent: 2 + - uid: 4777 components: - type: Transform - pos: 334.5,424.5 - parent: 1 - - uid: 10937 + pos: -79.5,0.5 + parent: 2 + - uid: 4778 components: - type: Transform - pos: 333.5,424.5 - parent: 1 - - uid: 10938 + pos: -79.5,1.5 + parent: 2 + - uid: 4779 components: - type: Transform - pos: 332.5,424.5 - parent: 1 - - uid: 10939 + pos: -90.5,5.5 + parent: 2 + - uid: 4780 components: - type: Transform - pos: 331.5,424.5 - parent: 1 - - uid: 10940 + pos: -91.5,5.5 + parent: 2 + - uid: 4781 components: - type: Transform - pos: 330.5,424.5 - parent: 1 - - uid: 10941 + pos: -93.5,5.5 + parent: 2 + - uid: 4782 components: - type: Transform - pos: 329.5,424.5 - parent: 1 - - uid: 10942 + pos: -84.5,5.5 + parent: 2 + - uid: 4783 components: - type: Transform - pos: 337.5,424.5 - parent: 1 - - uid: 10943 + pos: -94.5,5.5 + parent: 2 + - uid: 4784 components: - type: Transform - pos: 339.5,424.5 - parent: 1 - - uid: 10944 + pos: -96.5,5.5 + parent: 2 + - uid: 4785 components: - type: Transform - pos: 340.5,424.5 - parent: 1 - - uid: 10945 + pos: -95.5,5.5 + parent: 2 + - uid: 4786 components: - type: Transform - pos: 341.5,424.5 - parent: 1 - - uid: 10946 + pos: -97.5,5.5 + parent: 2 + - uid: 4787 components: - type: Transform - pos: 342.5,424.5 - parent: 1 - - uid: 10947 + pos: -92.5,5.5 + parent: 2 + - uid: 4788 components: - type: Transform - pos: 343.5,424.5 - parent: 1 - - uid: 10948 + pos: -80.5,5.5 + parent: 2 + - uid: 4789 components: - type: Transform - pos: 344.5,424.5 - parent: 1 - - uid: 10949 + pos: -81.5,5.5 + parent: 2 + - uid: 4790 components: - type: Transform - pos: 338.5,424.5 - parent: 1 - - uid: 10950 + pos: -82.5,5.5 + parent: 2 + - uid: 4791 components: - type: Transform - pos: 345.5,424.5 - parent: 1 - - uid: 10951 + pos: -83.5,5.5 + parent: 2 + - uid: 4792 components: - type: Transform - pos: 346.5,424.5 - parent: 1 - - uid: 10952 + pos: -85.5,5.5 + parent: 2 + - uid: 4793 components: - type: Transform - pos: 347.5,424.5 - parent: 1 - - uid: 10953 + pos: -86.5,5.5 + parent: 2 + - uid: 4794 components: - type: Transform - pos: 348.5,424.5 - parent: 1 - - uid: 10954 + pos: -87.5,5.5 + parent: 2 + - uid: 4795 components: - type: Transform - pos: 350.5,424.5 - parent: 1 - - uid: 10955 + pos: -88.5,5.5 + parent: 2 + - uid: 4796 components: - type: Transform - pos: 349.5,424.5 - parent: 1 - - uid: 10956 + pos: -89.5,5.5 + parent: 2 + - uid: 4797 components: - type: Transform - pos: 350.5,423.5 - parent: 1 - - uid: 10957 + pos: -98.5,5.5 + parent: 2 + - uid: 4803 components: - type: Transform - pos: 350.5,422.5 - parent: 1 - - uid: 10958 + pos: -99.5,5.5 + parent: 2 + - uid: 4807 components: - type: Transform - pos: 350.5,421.5 - parent: 1 - - uid: 10959 + pos: -137.5,12.5 + parent: 2 + - uid: 4829 components: - type: Transform - pos: 329.5,423.5 - parent: 1 - - uid: 10960 + pos: -122.5,-10.5 + parent: 2 + - uid: 4830 components: - type: Transform - pos: 329.5,421.5 - parent: 1 - - uid: 10961 + pos: -120.5,-10.5 + parent: 2 + - uid: 4831 components: - type: Transform - pos: 329.5,422.5 - parent: 1 - - uid: 10962 + pos: -123.5,-10.5 + parent: 2 + - uid: 4834 components: - type: Transform - pos: 329.5,420.5 - parent: 1 - - uid: 10963 + pos: -114.5,-10.5 + parent: 2 + - uid: 4836 components: - type: Transform - pos: 329.5,419.5 - parent: 1 - - uid: 10964 + pos: -112.5,-10.5 + parent: 2 + - uid: 4838 components: - type: Transform - pos: 331.5,419.5 - parent: 1 - - uid: 10965 + pos: -113.5,-10.5 + parent: 2 + - uid: 4839 components: - type: Transform - pos: 330.5,419.5 - parent: 1 - - uid: 10966 + pos: -116.5,-10.5 + parent: 2 + - uid: 4840 components: - type: Transform - pos: 331.5,418.5 - parent: 1 - - uid: 10967 + pos: -115.5,-10.5 + parent: 2 + - uid: 4841 components: - type: Transform - pos: 331.5,416.5 - parent: 1 - - uid: 10968 + pos: -117.5,-10.5 + parent: 2 + - uid: 4842 components: - type: Transform - pos: 331.5,417.5 - parent: 1 - - uid: 10969 + pos: -118.5,-10.5 + parent: 2 + - uid: 4843 components: - type: Transform - pos: 322.5,426.5 - parent: 1 - - uid: 10970 + pos: -119.5,-10.5 + parent: 2 + - uid: 4844 components: - type: Transform - pos: 322.5,427.5 - parent: 1 - - uid: 10971 + pos: -121.5,-10.5 + parent: 2 + - uid: 4864 components: - type: Transform - pos: 322.5,425.5 - parent: 1 - - uid: 10972 + pos: -123.5,-9.5 + parent: 2 + - uid: 4865 components: - type: Transform - pos: 322.5,424.5 - parent: 1 - - uid: 10973 + pos: -123.5,-7.5 + parent: 2 + - uid: 4866 components: - type: Transform - pos: 321.5,424.5 - parent: 1 - - uid: 10974 + pos: -123.5,-6.5 + parent: 2 + - uid: 4867 components: - type: Transform - pos: 320.5,424.5 - parent: 1 - - uid: 10975 + pos: -123.5,-5.5 + parent: 2 + - uid: 4868 components: - type: Transform - pos: 320.5,422.5 - parent: 1 - - uid: 10976 + pos: -123.5,-4.5 + parent: 2 + - uid: 4869 components: - type: Transform - pos: 320.5,423.5 - parent: 1 - - uid: 10977 + pos: -123.5,-8.5 + parent: 2 + - uid: 4870 components: - type: Transform - pos: 319.5,422.5 - parent: 1 - - uid: 10978 + pos: -124.5,-4.5 + parent: 2 + - uid: 4871 components: - type: Transform - pos: 321.5,421.5 - parent: 1 - - uid: 10979 + pos: -126.5,-4.5 + parent: 2 + - uid: 4872 components: - type: Transform - pos: 322.5,421.5 - parent: 1 - - uid: 10980 + pos: -127.5,-4.5 + parent: 2 + - uid: 4874 components: - type: Transform - pos: 323.5,421.5 - parent: 1 - - uid: 10981 + pos: -125.5,-4.5 + parent: 2 + - uid: 4878 components: - type: Transform - pos: 320.5,421.5 - parent: 1 - - uid: 10982 + pos: -127.5,-3.5 + parent: 2 + - uid: 4879 components: - type: Transform - pos: 323.5,424.5 - parent: 1 - - uid: 10983 + pos: -126.5,-3.5 + parent: 2 + - uid: 4880 components: - type: Transform - pos: 325.5,424.5 - parent: 1 - - uid: 10984 + pos: -125.5,-3.5 + parent: 2 + - uid: 4881 components: - type: Transform - pos: 326.5,424.5 - parent: 1 - - uid: 10985 + pos: -125.5,-5.5 + parent: 2 + - uid: 4882 components: - type: Transform - pos: 324.5,424.5 - parent: 1 - - uid: 10986 + pos: -126.5,-5.5 + parent: 2 + - uid: 4883 components: - type: Transform - pos: 326.5,425.5 - parent: 1 - - uid: 10987 + pos: -127.5,-5.5 + parent: 2 + - uid: 4884 components: - type: Transform - pos: 326.5,427.5 - parent: 1 - - uid: 10988 + pos: -29.5,1.5 + parent: 2 + - uid: 4886 components: - type: Transform - pos: 326.5,428.5 - parent: 1 - - uid: 10989 + pos: -125.5,-2.5 + parent: 2 + - uid: 4887 components: - type: Transform - pos: 326.5,429.5 - parent: 1 - - uid: 10990 + pos: -127.5,-2.5 + parent: 2 + - uid: 4888 components: - type: Transform - pos: 326.5,426.5 - parent: 1 - - uid: 10991 + pos: -126.5,-2.5 + parent: 2 + - uid: 4889 components: - type: Transform - pos: 318.5,429.5 - parent: 1 - - uid: 10992 + pos: -128.5,-2.5 + parent: 2 + - uid: 4890 components: - type: Transform - pos: 318.5,428.5 - parent: 1 - - uid: 10993 + pos: -129.5,-2.5 + parent: 2 + - uid: 4898 components: - type: Transform - pos: 319.5,428.5 - parent: 1 - - uid: 10994 + pos: -128.5,-6.5 + parent: 2 + - uid: 4899 components: - type: Transform - pos: 320.5,428.5 - parent: 1 - - uid: 10995 + pos: -127.5,-6.5 + parent: 2 + - uid: 4900 components: - type: Transform - pos: 320.5,429.5 - parent: 1 - - uid: 10996 + pos: -126.5,-6.5 + parent: 2 + - uid: 4901 components: - type: Transform - pos: 323.5,420.5 - parent: 1 - - uid: 10997 + pos: -125.5,-6.5 + parent: 2 + - uid: 4902 components: - type: Transform - pos: 323.5,419.5 - parent: 1 - - uid: 10998 + pos: -129.5,-6.5 + parent: 2 + - uid: 4904 components: - type: Transform - pos: 323.5,417.5 - parent: 1 - - uid: 10999 + pos: -131.5,-10.5 + parent: 2 + - uid: 4911 components: - type: Transform - pos: 323.5,418.5 - parent: 1 - - uid: 11000 + pos: -132.5,-10.5 + parent: 2 + - uid: 4912 components: - type: Transform - pos: 323.5,416.5 - parent: 1 - - uid: 11001 + pos: -133.5,-10.5 + parent: 2 + - uid: 4913 components: - type: Transform - pos: 324.5,417.5 - parent: 1 - - uid: 11002 + pos: -134.5,-10.5 + parent: 2 + - uid: 4914 components: - type: Transform - pos: 326.5,417.5 - parent: 1 - - uid: 11003 + pos: -135.5,-10.5 + parent: 2 + - uid: 4915 components: - type: Transform - pos: 325.5,417.5 - parent: 1 - - uid: 11004 + pos: -136.5,-10.5 + parent: 2 + - uid: 4928 components: - type: Transform - pos: 332.5,416.5 - parent: 1 - - uid: 11005 + pos: -147.5,-7.5 + parent: 2 + - uid: 4932 components: - type: Transform - pos: 333.5,416.5 - parent: 1 - - uid: 11006 + pos: -100.5,-13.5 + parent: 2 + - uid: 4933 components: - type: Transform - pos: 334.5,416.5 - parent: 1 - - uid: 11007 + pos: -78.5,-13.5 + parent: 2 + - uid: 4934 components: - type: Transform - pos: 334.5,414.5 - parent: 1 - - uid: 11008 + pos: -79.5,-13.5 + parent: 2 + - uid: 4935 components: - type: Transform - pos: 334.5,415.5 - parent: 1 - - uid: 11009 + pos: -77.5,-13.5 + parent: 2 + - uid: 4936 components: - type: Transform - pos: 335.5,414.5 - parent: 1 - - uid: 11010 + pos: -76.5,-13.5 + parent: 2 + - uid: 4937 components: - type: Transform - pos: 337.5,414.5 - parent: 1 - - uid: 11011 + pos: -81.5,-13.5 + parent: 2 + - uid: 4938 components: - type: Transform - pos: 338.5,414.5 - parent: 1 - - uid: 11012 + pos: -75.5,-13.5 + parent: 2 + - uid: 4939 components: - type: Transform - pos: 339.5,414.5 - parent: 1 - - uid: 11013 + pos: -89.5,-13.5 + parent: 2 + - uid: 4940 components: - type: Transform - pos: 340.5,414.5 - parent: 1 - - uid: 11014 + pos: -88.5,-13.5 + parent: 2 + - uid: 4941 components: - type: Transform - pos: 341.5,414.5 - parent: 1 - - uid: 11015 + pos: -87.5,-13.5 + parent: 2 + - uid: 4942 components: - type: Transform - pos: 336.5,414.5 - parent: 1 - - uid: 11016 + pos: -86.5,-13.5 + parent: 2 + - uid: 4943 components: - type: Transform - pos: 343.5,414.5 - parent: 1 - - uid: 11017 + pos: -85.5,-13.5 + parent: 2 + - uid: 4944 components: - type: Transform - pos: 344.5,414.5 - parent: 1 - - uid: 11018 + pos: -84.5,-13.5 + parent: 2 + - uid: 4945 components: - type: Transform - pos: 342.5,414.5 - parent: 1 - - uid: 11019 + pos: -83.5,-13.5 + parent: 2 + - uid: 4946 components: - type: Transform - pos: 344.5,415.5 - parent: 1 - - uid: 11020 + pos: -82.5,-13.5 + parent: 2 + - uid: 4947 components: - type: Transform - pos: 344.5,417.5 - parent: 1 - - uid: 11021 + pos: -80.5,-13.5 + parent: 2 + - uid: 4948 components: - type: Transform - pos: 344.5,418.5 - parent: 1 - - uid: 11022 + pos: -90.5,-13.5 + parent: 2 + - uid: 4949 components: - type: Transform - pos: 344.5,416.5 - parent: 1 - - uid: 11023 + pos: -99.5,-13.5 + parent: 2 + - uid: 4950 components: - type: Transform - pos: 346.5,418.5 - parent: 1 - - uid: 11024 + pos: -98.5,-13.5 + parent: 2 + - uid: 4951 components: - type: Transform - pos: 347.5,418.5 - parent: 1 - - uid: 11025 + pos: -97.5,-13.5 + parent: 2 + - uid: 4952 components: - type: Transform - pos: 348.5,418.5 - parent: 1 - - uid: 11026 + pos: -96.5,-13.5 + parent: 2 + - uid: 4953 components: - type: Transform - pos: 352.5,419.5 - parent: 1 - - uid: 11027 + pos: -95.5,-13.5 + parent: 2 + - uid: 4954 components: - type: Transform - pos: 345.5,418.5 - parent: 1 - - uid: 11028 + pos: -94.5,-13.5 + parent: 2 + - uid: 4955 components: - type: Transform - pos: 349.5,419.5 - parent: 1 - - uid: 11029 + pos: -93.5,-13.5 + parent: 2 + - uid: 4956 components: - type: Transform - pos: 349.5,420.5 - parent: 1 - - uid: 11030 + pos: -92.5,-13.5 + parent: 2 + - uid: 4957 components: - type: Transform - pos: 349.5,421.5 - parent: 1 - - uid: 11031 + pos: -91.5,-13.5 + parent: 2 + - uid: 4958 components: - type: Transform - pos: 349.5,418.5 - parent: 1 - - uid: 11032 + pos: -75.5,-12.5 + parent: 2 + - uid: 4959 components: - type: Transform - pos: 350.5,418.5 - parent: 1 - - uid: 11033 + pos: -75.5,-10.5 + parent: 2 + - uid: 4960 components: - type: Transform - pos: 351.5,418.5 - parent: 1 - - uid: 11034 + pos: -75.5,-9.5 + parent: 2 + - uid: 4961 components: - type: Transform - pos: 351.5,419.5 - parent: 1 - - uid: 11035 + pos: -75.5,-11.5 + parent: 2 + - uid: 4962 components: - type: Transform - pos: 353.5,419.5 - parent: 1 - - uid: 11036 + pos: -75.5,-24.5 + parent: 2 + - uid: 4963 components: - type: Transform - pos: 353.5,421.5 - parent: 1 - - uid: 11037 + pos: -75.5,-25.5 + parent: 2 + - uid: 4964 components: - type: Transform - pos: 353.5,422.5 - parent: 1 - - uid: 11038 + pos: -75.5,-19.5 + parent: 2 + - uid: 4965 components: - type: Transform - pos: 353.5,423.5 - parent: 1 - - uid: 11039 + pos: -75.5,-14.5 + parent: 2 + - uid: 4966 components: - type: Transform - pos: 353.5,424.5 - parent: 1 - - uid: 11040 + pos: -75.5,-15.5 + parent: 2 + - uid: 4967 components: - type: Transform - pos: 353.5,425.5 - parent: 1 - - uid: 11041 + pos: -75.5,-16.5 + parent: 2 + - uid: 4968 components: - type: Transform - pos: 353.5,426.5 - parent: 1 - - uid: 11042 + pos: -75.5,-17.5 + parent: 2 + - uid: 4969 components: - type: Transform - pos: 353.5,427.5 - parent: 1 - - uid: 11043 + pos: -75.5,-18.5 + parent: 2 + - uid: 4970 components: - type: Transform - pos: 353.5,420.5 - parent: 1 - - uid: 11044 + pos: -75.5,-20.5 + parent: 2 + - uid: 4971 components: - type: Transform - pos: 352.5,427.5 - parent: 1 - - uid: 11045 + pos: -75.5,-21.5 + parent: 2 + - uid: 4972 components: - type: Transform - pos: 350.5,427.5 - parent: 1 - - uid: 11046 + pos: -75.5,-22.5 + parent: 2 + - uid: 4973 components: - type: Transform - pos: 351.5,427.5 - parent: 1 - - uid: 11047 + pos: -75.5,-23.5 + parent: 2 + - uid: 4981 components: - type: Transform - pos: 349.5,427.5 - parent: 1 - - uid: 11048 + pos: -137.5,11.5 + parent: 2 + - uid: 4996 components: - type: Transform - pos: 348.5,427.5 - parent: 1 - - uid: 11049 + pos: -74.5,-13.5 + parent: 2 + - uid: 4997 components: - type: Transform - pos: 347.5,427.5 - parent: 1 - - uid: 11050 + pos: -72.5,-13.5 + parent: 2 + - uid: 4998 components: - type: Transform - pos: 346.5,427.5 - parent: 1 - - uid: 11051 + pos: -71.5,-13.5 + parent: 2 + - uid: 4999 components: - type: Transform - pos: 345.5,427.5 - parent: 1 - - uid: 11052 + pos: -70.5,-13.5 + parent: 2 + - uid: 5000 components: - type: Transform - pos: 344.5,427.5 - parent: 1 - - uid: 11053 + pos: -69.5,-13.5 + parent: 2 + - uid: 5001 components: - type: Transform - pos: 343.5,427.5 - parent: 1 - - uid: 11054 + pos: -73.5,-13.5 + parent: 2 + - uid: 5002 components: - type: Transform - pos: 342.5,427.5 - parent: 1 - - uid: 11055 + pos: -67.5,-13.5 + parent: 2 + - uid: 5003 components: - type: Transform - pos: 341.5,427.5 - parent: 1 - - uid: 11056 + pos: -68.5,-13.5 + parent: 2 + - uid: 5004 components: - type: Transform - pos: 340.5,427.5 - parent: 1 - - uid: 11057 + pos: -67.5,-14.5 + parent: 2 + - uid: 5005 components: - type: Transform - pos: 339.5,427.5 - parent: 1 - - uid: 11058 + pos: -67.5,-15.5 + parent: 2 + - uid: 5006 components: - type: Transform - pos: 336.5,427.5 - parent: 1 - - uid: 11059 + pos: -66.5,-15.5 + parent: 2 + - uid: 5007 components: - type: Transform - pos: 337.5,427.5 - parent: 1 - - uid: 11060 + pos: -64.5,-15.5 + parent: 2 + - uid: 5008 components: - type: Transform - pos: 335.5,427.5 - parent: 1 - - uid: 11061 + pos: -63.5,-15.5 + parent: 2 + - uid: 5009 components: - type: Transform - pos: 334.5,427.5 - parent: 1 - - uid: 11062 + pos: -62.5,-15.5 + parent: 2 + - uid: 5010 components: - type: Transform - pos: 333.5,427.5 - parent: 1 - - uid: 11063 + pos: -65.5,-15.5 + parent: 2 + - uid: 5011 components: - type: Transform - pos: 332.5,427.5 - parent: 1 - - uid: 11064 + pos: -61.5,-15.5 + parent: 2 + - uid: 5012 components: - type: Transform - pos: 331.5,427.5 - parent: 1 - - uid: 11065 + pos: -58.5,-15.5 + parent: 2 + - uid: 5013 components: - type: Transform - pos: 330.5,427.5 - parent: 1 - - uid: 11066 + pos: -60.5,-15.5 + parent: 2 + - uid: 5014 components: - type: Transform - pos: 329.5,427.5 - parent: 1 - - uid: 11067 + pos: -57.5,-15.5 + parent: 2 + - uid: 5015 components: - type: Transform - pos: 338.5,427.5 - parent: 1 - - uid: 11068 + pos: -56.5,-15.5 + parent: 2 + - uid: 5016 components: - type: Transform - pos: 352.5,428.5 - parent: 1 - - uid: 11069 + pos: -59.5,-15.5 + parent: 2 + - uid: 5017 components: - type: Transform - pos: 352.5,430.5 - parent: 1 - - uid: 11070 + pos: -55.5,-15.5 + parent: 2 + - uid: 5018 components: - type: Transform - pos: 352.5,429.5 - parent: 1 - - uid: 11071 + pos: -55.5,-13.5 + parent: 2 + - uid: 5019 components: - type: Transform - pos: 351.5,430.5 - parent: 1 - - uid: 11072 + pos: -55.5,-14.5 + parent: 2 + - uid: 5020 components: - type: Transform - pos: 350.5,430.5 - parent: 1 - - uid: 11073 + pos: -54.5,-13.5 + parent: 2 + - uid: 5021 components: - type: Transform - pos: 349.5,430.5 - parent: 1 - - uid: 11075 + pos: -53.5,-13.5 + parent: 2 + - uid: 5022 components: - type: Transform - pos: 366.5,409.5 - parent: 1 - - uid: 11076 + pos: -51.5,-13.5 + parent: 2 + - uid: 5023 components: - type: Transform - pos: 364.5,409.5 - parent: 1 - - uid: 11077 + pos: -50.5,-13.5 + parent: 2 + - uid: 5024 components: - type: Transform - pos: 365.5,409.5 - parent: 1 - - uid: 11078 + pos: -49.5,-13.5 + parent: 2 + - uid: 5025 components: - type: Transform - pos: 365.5,408.5 - parent: 1 - - uid: 11079 + pos: -48.5,-13.5 + parent: 2 + - uid: 5026 components: - type: Transform - pos: 365.5,406.5 - parent: 1 - - uid: 11080 + pos: -46.5,-13.5 + parent: 2 + - uid: 5027 components: - type: Transform - pos: 365.5,407.5 - parent: 1 - - uid: 11081 + pos: -52.5,-13.5 + parent: 2 + - uid: 5028 components: - type: Transform - pos: 364.5,411.5 - parent: 1 - - uid: 11082 + pos: -44.5,-13.5 + parent: 2 + - uid: 5029 components: - type: Transform - pos: 364.5,410.5 - parent: 1 - - uid: 11083 + pos: -45.5,-13.5 + parent: 2 + - uid: 5030 components: - type: Transform - pos: 365.5,415.5 - parent: 1 - - uid: 11084 + pos: -43.5,-13.5 + parent: 2 + - uid: 5031 components: - type: Transform - pos: 365.5,414.5 - parent: 1 - - uid: 11085 + pos: -47.5,-13.5 + parent: 2 + - uid: 5032 components: - type: Transform - pos: 365.5,413.5 - parent: 1 - - uid: 11086 + pos: -43.5,-12.5 + parent: 2 + - uid: 5033 components: - type: Transform - pos: 366.5,413.5 - parent: 1 - - uid: 11087 + pos: -43.5,-10.5 + parent: 2 + - uid: 5034 components: - type: Transform - pos: 367.5,413.5 - parent: 1 - - uid: 11088 + pos: -43.5,-9.5 + parent: 2 + - uid: 5035 components: - type: Transform - pos: 364.5,413.5 - parent: 1 - - uid: 11089 + pos: -43.5,-11.5 + parent: 2 + - uid: 5050 components: - type: Transform - pos: 366.5,410.5 - parent: 1 - - uid: 11090 + pos: -43.5,-16.5 + parent: 2 + - uid: 5051 components: - type: Transform - pos: 367.5,410.5 - parent: 1 - - uid: 11091 + pos: -43.5,-25.5 + parent: 2 + - uid: 5052 components: - type: Transform - pos: 368.5,410.5 - parent: 1 - - uid: 11092 + pos: -43.5,-21.5 + parent: 2 + - uid: 5053 components: - type: Transform - pos: 369.5,410.5 - parent: 1 - - uid: 11093 + pos: -43.5,-27.5 + parent: 2 + - uid: 5054 components: - type: Transform - pos: 368.5,409.5 - parent: 1 - - uid: 11094 + pos: -43.5,-29.5 + parent: 2 + - uid: 5055 components: - type: Transform - pos: 368.5,408.5 - parent: 1 - - uid: 11095 + pos: -43.5,-26.5 + parent: 2 + - uid: 5056 components: - type: Transform - pos: 368.5,407.5 - parent: 1 - - uid: 11096 + pos: -43.5,-31.5 + parent: 2 + - uid: 5057 components: - type: Transform - pos: 371.5,415.5 - parent: 1 - - uid: 11097 + pos: -43.5,-28.5 + parent: 2 + - uid: 5058 components: - type: Transform - pos: 371.5,413.5 - parent: 1 - - uid: 11098 + pos: -43.5,-30.5 + parent: 2 + - uid: 5059 components: - type: Transform - pos: 371.5,414.5 - parent: 1 - - uid: 11099 + pos: -43.5,-14.5 + parent: 2 + - uid: 5060 components: - type: Transform - pos: 372.5,413.5 - parent: 1 - - uid: 11100 + pos: -43.5,-15.5 + parent: 2 + - uid: 5061 components: - type: Transform - pos: 372.5,412.5 - parent: 1 - - uid: 11101 + pos: -43.5,-17.5 + parent: 2 + - uid: 5062 components: - type: Transform - pos: 372.5,411.5 - parent: 1 - - uid: 11102 + pos: -43.5,-18.5 + parent: 2 + - uid: 5063 components: - type: Transform - pos: 372.5,409.5 - parent: 1 - - uid: 11103 + pos: -43.5,-19.5 + parent: 2 + - uid: 5064 components: - type: Transform - pos: 372.5,408.5 - parent: 1 - - uid: 11104 + pos: -43.5,-20.5 + parent: 2 + - uid: 5065 components: - type: Transform - pos: 372.5,407.5 - parent: 1 - - uid: 11105 + pos: -43.5,-22.5 + parent: 2 + - uid: 5066 components: - type: Transform - pos: 372.5,406.5 - parent: 1 - - uid: 11106 + pos: -43.5,-23.5 + parent: 2 + - uid: 5067 components: - type: Transform - pos: 372.5,410.5 - parent: 1 - - uid: 11107 + pos: -43.5,-24.5 + parent: 2 + - uid: 5068 components: - type: Transform - pos: 383.5,409.5 - parent: 1 - - uid: 11108 + pos: -44.5,-31.5 + parent: 2 + - uid: 5069 components: - type: Transform - pos: 381.5,409.5 - parent: 1 - - uid: 11109 + pos: -45.5,-31.5 + parent: 2 + - uid: 5070 components: - type: Transform - pos: 380.5,409.5 - parent: 1 - - uid: 11110 + pos: -46.5,-31.5 + parent: 2 + - uid: 5071 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 11111 + pos: -48.5,-31.5 + parent: 2 + - uid: 5072 components: - type: Transform - pos: 378.5,409.5 - parent: 1 - - uid: 11112 + pos: -49.5,-31.5 + parent: 2 + - uid: 5073 components: - type: Transform - pos: 377.5,409.5 - parent: 1 - - uid: 11113 + pos: -47.5,-31.5 + parent: 2 + - uid: 5074 components: - type: Transform - pos: 382.5,409.5 - parent: 1 - - uid: 11114 + pos: -49.5,-32.5 + parent: 2 + - uid: 5075 components: - type: Transform - pos: 379.5,410.5 - parent: 1 - - uid: 11115 + pos: -49.5,-33.5 + parent: 2 + - uid: 5076 components: - type: Transform - pos: 379.5,412.5 - parent: 1 - - uid: 11116 + pos: -49.5,-35.5 + parent: 2 + - uid: 5077 components: - type: Transform - pos: 379.5,413.5 - parent: 1 - - uid: 11117 + pos: -49.5,-36.5 + parent: 2 + - uid: 5078 components: - type: Transform - pos: 379.5,414.5 - parent: 1 - - uid: 11118 + pos: -49.5,-37.5 + parent: 2 + - uid: 5079 components: - type: Transform - pos: 379.5,415.5 - parent: 1 - - uid: 11119 + pos: -49.5,-38.5 + parent: 2 + - uid: 5080 components: - type: Transform - pos: 379.5,411.5 - parent: 1 - - uid: 11120 + pos: -49.5,-34.5 + parent: 2 + - uid: 5081 components: - type: Transform - pos: 379.5,408.5 - parent: 1 - - uid: 11121 + pos: -49.5,-40.5 + parent: 2 + - uid: 5083 components: - type: Transform - pos: 379.5,407.5 - parent: 1 - - uid: 11122 + pos: -49.5,-39.5 + parent: 2 + - uid: 5099 components: - type: Transform - pos: 379.5,406.5 - parent: 1 - - uid: 11123 + pos: -28.5,2.5 + parent: 2 + - uid: 5173 components: - type: Transform - pos: 378.5,406.5 - parent: 1 - - uid: 11124 + pos: -52.5,-0.5 + parent: 2 + - uid: 5174 components: - type: Transform - pos: 377.5,406.5 - parent: 1 - - uid: 11125 + pos: -54.5,-0.5 + parent: 2 + - uid: 5175 components: - type: Transform - pos: 380.5,406.5 - parent: 1 - - uid: 11126 + pos: -52.5,0.5 + parent: 2 + - uid: 5176 components: - type: Transform - pos: 381.5,406.5 - parent: 1 - - uid: 11127 + pos: -52.5,1.5 + parent: 2 + - uid: 5177 components: - type: Transform - pos: 381.5,414.5 - parent: 1 - - uid: 11128 + pos: -51.5,1.5 + parent: 2 + - uid: 5178 components: - type: Transform - pos: 380.5,414.5 - parent: 1 - - uid: 11129 + pos: -50.5,2.5 + parent: 2 + - uid: 5179 components: - type: Transform - pos: 378.5,414.5 - parent: 1 - - uid: 11130 + pos: -51.5,3.5 + parent: 2 + - uid: 5180 components: - type: Transform - pos: 377.5,414.5 - parent: 1 - - uid: 11131 + pos: -50.5,3.5 + parent: 2 + - uid: 5181 components: - type: Transform - pos: 387.5,415.5 - parent: 1 - - uid: 11132 + pos: -49.5,3.5 + parent: 2 + - uid: 5182 components: - type: Transform - pos: 387.5,414.5 - parent: 1 - - uid: 11133 + pos: -50.5,1.5 + parent: 2 + - uid: 5183 components: - type: Transform - pos: 387.5,413.5 - parent: 1 - - uid: 11134 + pos: -49.5,1.5 + parent: 2 + - uid: 5184 components: - type: Transform - pos: 386.5,413.5 - parent: 1 - - uid: 11135 + pos: -47.5,1.5 + parent: 2 + - uid: 5185 components: - type: Transform - pos: 386.5,412.5 - parent: 1 - - uid: 11136 + pos: -46.5,1.5 + parent: 2 + - uid: 5186 components: - type: Transform - pos: 386.5,410.5 - parent: 1 - - uid: 11137 + pos: -45.5,1.5 + parent: 2 + - uid: 5187 components: - type: Transform - pos: 386.5,409.5 - parent: 1 - - uid: 11138 + pos: -44.5,1.5 + parent: 2 + - uid: 5188 components: - type: Transform - pos: 386.5,408.5 - parent: 1 - - uid: 11139 + pos: -48.5,1.5 + parent: 2 + - uid: 5189 components: - type: Transform - pos: 386.5,407.5 - parent: 1 - - uid: 11140 + pos: -44.5,2.5 + parent: 2 + - uid: 5190 components: - type: Transform - pos: 386.5,406.5 - parent: 1 - - uid: 11141 + pos: -44.5,3.5 + parent: 2 + - uid: 5191 components: - type: Transform - pos: 386.5,411.5 - parent: 1 - - uid: 11142 + pos: -45.5,3.5 + parent: 2 + - uid: 5192 components: - type: Transform - pos: 377.5,419.5 - parent: 1 - - uid: 11143 + pos: -43.5,3.5 + parent: 2 + - uid: 5193 components: - type: Transform - pos: 377.5,418.5 - parent: 1 - - uid: 11144 + pos: -56.5,-1.5 + parent: 2 + - uid: 5194 components: - type: Transform - pos: 375.5,418.5 - parent: 1 - - uid: 11145 + pos: -56.5,-3.5 + parent: 2 + - uid: 5195 components: - type: Transform - pos: 374.5,418.5 - parent: 1 - - uid: 11146 + pos: -56.5,-4.5 + parent: 2 + - uid: 5196 components: - type: Transform - pos: 373.5,418.5 - parent: 1 - - uid: 11147 + pos: -56.5,-5.5 + parent: 2 + - uid: 5197 components: - type: Transform - pos: 372.5,418.5 - parent: 1 - - uid: 11148 + pos: -56.5,-2.5 + parent: 2 + - uid: 5198 components: - type: Transform - pos: 376.5,418.5 - parent: 1 - - uid: 11149 + pos: -55.5,-5.5 + parent: 2 + - uid: 5199 components: - type: Transform - pos: 372.5,417.5 - parent: 1 - - uid: 11150 + pos: -54.5,-5.5 + parent: 2 + - uid: 5200 components: - type: Transform - pos: 371.5,417.5 - parent: 1 - - uid: 11151 + pos: -53.5,-5.5 + parent: 2 + - uid: 5201 components: - type: Transform - pos: 370.5,417.5 - parent: 1 - - uid: 11152 + pos: -52.5,-5.5 + parent: 2 + - uid: 5202 components: - type: Transform - pos: 370.5,416.5 - parent: 1 - - uid: 11153 + pos: -52.5,-6.5 + parent: 2 + - uid: 5203 components: - type: Transform - pos: 368.5,416.5 - parent: 1 - - uid: 11154 + pos: -52.5,-7.5 + parent: 2 + - uid: 5204 components: - type: Transform - pos: 367.5,416.5 - parent: 1 - - uid: 11155 + pos: -52.5,-8.5 + parent: 2 + - uid: 5205 components: - type: Transform - pos: 366.5,416.5 - parent: 1 - - uid: 11156 + pos: -51.5,-8.5 + parent: 2 + - uid: 5206 components: - type: Transform - pos: 365.5,416.5 - parent: 1 - - uid: 11157 + pos: -50.5,-8.5 + parent: 2 + - uid: 5207 components: - type: Transform - pos: 364.5,416.5 - parent: 1 - - uid: 11158 + pos: -48.5,-8.5 + parent: 2 + - uid: 5208 components: - type: Transform - pos: 363.5,416.5 - parent: 1 - - uid: 11159 + pos: -49.5,-8.5 + parent: 2 + - uid: 5209 components: - type: Transform - pos: 369.5,416.5 - parent: 1 - - uid: 11160 + pos: -48.5,-9.5 + parent: 2 + - uid: 5210 components: - type: Transform - pos: 378.5,418.5 - parent: 1 - - uid: 11161 + pos: -47.5,-9.5 + parent: 2 + - uid: 5211 components: - type: Transform - pos: 380.5,418.5 - parent: 1 - - uid: 11162 + pos: -52.5,-9.5 + parent: 2 + - uid: 5212 components: - type: Transform - pos: 381.5,418.5 - parent: 1 - - uid: 11163 + pos: -52.5,-10.5 + parent: 2 + - uid: 5213 components: - type: Transform - pos: 382.5,418.5 - parent: 1 - - uid: 11164 + pos: -51.5,-10.5 + parent: 2 + - uid: 5214 components: - type: Transform - pos: 383.5,418.5 - parent: 1 - - uid: 11165 + pos: -50.5,-10.5 + parent: 2 + - uid: 5217 components: - type: Transform - pos: 384.5,418.5 - parent: 1 - - uid: 11166 + pos: -62.5,-3.5 + parent: 2 + - uid: 5218 components: - type: Transform - pos: 385.5,418.5 - parent: 1 - - uid: 11167 + pos: -61.5,-3.5 + parent: 2 + - uid: 5219 components: - type: Transform - pos: 386.5,418.5 - parent: 1 - - uid: 11168 + pos: -58.5,-3.5 + parent: 2 + - uid: 5220 components: - type: Transform - pos: 379.5,418.5 - parent: 1 - - uid: 11169 + pos: -57.5,-3.5 + parent: 2 + - uid: 5221 components: - type: Transform - pos: 386.5,417.5 - parent: 1 - - uid: 11170 + pos: -67.5,-2.5 + parent: 2 + - uid: 5222 components: - type: Transform - pos: 386.5,416.5 - parent: 1 - - uid: 11171 + pos: -59.5,-3.5 + parent: 2 + - uid: 5223 components: - type: Transform - pos: 383.5,419.5 - parent: 1 - - uid: 11172 + pos: -68.5,-2.5 + parent: 2 + - uid: 5228 components: - type: Transform - pos: 383.5,421.5 - parent: 1 - - uid: 11173 + pos: -66.5,-1.5 + parent: 2 + - uid: 5229 components: - type: Transform - pos: 383.5,420.5 - parent: 1 - - uid: 11174 + pos: -66.5,-0.5 + parent: 2 + - uid: 5230 components: - type: Transform - pos: 384.5,421.5 - parent: 1 - - uid: 11175 + pos: -66.5,1.5 + parent: 2 + - uid: 5231 components: - type: Transform - pos: 386.5,421.5 - parent: 1 - - uid: 11176 + pos: -66.5,2.5 + parent: 2 + - uid: 5232 components: - type: Transform - pos: 385.5,421.5 - parent: 1 - - uid: 11177 + pos: -66.5,0.5 + parent: 2 + - uid: 5233 components: - type: Transform - pos: 382.5,421.5 - parent: 1 - - uid: 11178 + pos: -65.5,2.5 + parent: 2 + - uid: 5234 components: - type: Transform - pos: 381.5,421.5 - parent: 1 - - uid: 11179 + pos: -64.5,2.5 + parent: 2 + - uid: 5235 components: - type: Transform - pos: 380.5,421.5 - parent: 1 - - uid: 11180 + pos: -64.5,3.5 + parent: 2 + - uid: 5236 components: - type: Transform - pos: 379.5,421.5 - parent: 1 - - uid: 11181 + pos: -63.5,3.5 + parent: 2 + - uid: 5237 components: - type: Transform - pos: 378.5,421.5 - parent: 1 - - uid: 11182 + pos: -61.5,3.5 + parent: 2 + - uid: 5238 components: - type: Transform - pos: 377.5,421.5 - parent: 1 - - uid: 11183 + pos: -60.5,3.5 + parent: 2 + - uid: 5239 components: - type: Transform - pos: 375.5,421.5 - parent: 1 - - uid: 11184 + pos: -59.5,3.5 + parent: 2 + - uid: 5240 components: - type: Transform - pos: 376.5,421.5 - parent: 1 - - uid: 11185 + pos: -62.5,3.5 + parent: 2 + - uid: 5241 components: - type: Transform - pos: 374.5,421.5 - parent: 1 - - uid: 11186 + pos: -58.5,3.5 + parent: 2 + - uid: 5242 components: - type: Transform - pos: 373.5,421.5 - parent: 1 - - uid: 11187 + pos: -58.5,2.5 + parent: 2 + - uid: 5243 components: - type: Transform - pos: 372.5,421.5 - parent: 1 - - uid: 11188 + pos: -57.5,2.5 + parent: 2 + - uid: 5244 components: - type: Transform - pos: 379.5,422.5 - parent: 1 - - uid: 11189 + pos: -67.5,2.5 + parent: 2 + - uid: 5245 components: - type: Transform - pos: 379.5,424.5 - parent: 1 - - uid: 11190 + pos: -67.5,3.5 + parent: 2 + - uid: 5246 components: - type: Transform - pos: 379.5,423.5 - parent: 1 - - uid: 11191 + pos: -68.5,3.5 + parent: 2 + - uid: 5247 components: - type: Transform - pos: 370.5,420.5 - parent: 1 - - uid: 11192 + pos: -68.5,4.5 + parent: 2 + - uid: 5248 components: - type: Transform - pos: 369.5,420.5 - parent: 1 - - uid: 11193 + pos: -63.5,-3.5 + parent: 2 + - uid: 5249 components: - type: Transform - pos: 368.5,420.5 - parent: 1 - - uid: 11194 + pos: -64.5,-3.5 + parent: 2 + - uid: 5250 components: - type: Transform - pos: 366.5,420.5 - parent: 1 - - uid: 11195 + pos: -65.5,-3.5 + parent: 2 + - uid: 5251 components: - type: Transform - pos: 365.5,420.5 - parent: 1 - - uid: 11196 + pos: -60.5,-3.5 + parent: 2 + - uid: 5265 components: - type: Transform - pos: 367.5,420.5 - parent: 1 - - uid: 11197 + pos: -153.5,-33.5 + parent: 2 + - uid: 5355 components: - type: Transform - pos: 367.5,422.5 - parent: 1 - - uid: 11198 + pos: -136.5,11.5 + parent: 2 + - uid: 5388 components: - type: Transform - pos: 367.5,421.5 - parent: 1 - - uid: 11199 + pos: -149.5,-30.5 + parent: 2 + - uid: 5409 components: - type: Transform - pos: 365.5,421.5 - parent: 1 - - uid: 11200 + pos: -109.5,-48.5 + parent: 2 + - uid: 5414 components: - type: Transform - pos: 363.5,421.5 - parent: 1 - - uid: 11201 + pos: -147.5,-30.5 + parent: 2 + - uid: 5417 components: - type: Transform - pos: 362.5,421.5 - parent: 1 - - uid: 11202 + pos: -109.5,-50.5 + parent: 2 + - uid: 5425 components: - type: Transform - pos: 364.5,421.5 - parent: 1 - - uid: 11203 + pos: -153.5,-32.5 + parent: 2 + - uid: 5429 components: - type: Transform - pos: 370.5,405.5 - parent: 1 - - uid: 11204 + pos: -151.5,-31.5 + parent: 2 + - uid: 5542 components: - type: Transform - pos: 370.5,404.5 - parent: 1 - - uid: 11205 + pos: -149.5,-32.5 + parent: 2 + - uid: 5611 components: - type: Transform - pos: 370.5,403.5 - parent: 1 - - uid: 11206 + pos: -105.5,10.5 + parent: 2 + - uid: 5620 components: - type: Transform - pos: 369.5,403.5 - parent: 1 - - uid: 11207 + pos: -136.5,13.5 + parent: 2 + - uid: 5697 components: - type: Transform - pos: 367.5,403.5 - parent: 1 - - uid: 11208 + pos: -48.5,-64.5 + parent: 2 + - uid: 5706 components: - type: Transform - pos: 366.5,403.5 - parent: 1 - - uid: 11209 + pos: -137.5,-12.5 + parent: 2 + - uid: 5707 components: - type: Transform - pos: 365.5,403.5 - parent: 1 - - uid: 11210 + pos: -149.5,-29.5 + parent: 2 + - uid: 5718 components: - type: Transform - pos: 368.5,403.5 - parent: 1 - - uid: 11211 + pos: -147.5,-31.5 + parent: 2 + - uid: 5735 components: - type: Transform - pos: 372.5,403.5 - parent: 1 - - uid: 11212 + pos: -143.5,-32.5 + parent: 2 + - uid: 5749 components: - type: Transform - pos: 371.5,403.5 - parent: 1 - - uid: 11213 + pos: -105.5,16.5 + parent: 2 + - uid: 5790 components: - type: Transform - pos: 373.5,403.5 - parent: 1 - - uid: 11214 + pos: -153.5,-31.5 + parent: 2 + - uid: 5811 components: - type: Transform - pos: 374.5,403.5 - parent: 1 - - uid: 11215 + pos: -145.5,-21.5 + parent: 2 + - uid: 5847 components: - type: Transform - pos: 375.5,403.5 - parent: 1 - - uid: 11216 + pos: -137.5,-9.5 + parent: 2 + - uid: 5849 components: - type: Transform - pos: 376.5,403.5 - parent: 1 - - uid: 11217 + pos: -103.5,-3.5 + parent: 2 + - uid: 5877 components: - type: Transform - pos: 377.5,403.5 - parent: 1 - - uid: 11218 + pos: -137.5,-11.5 + parent: 2 + - uid: 5885 components: - type: Transform - pos: 379.5,403.5 - parent: 1 - - uid: 11219 + pos: -103.5,-4.5 + parent: 2 + - uid: 5891 components: - type: Transform - pos: 380.5,403.5 - parent: 1 - - uid: 11220 + pos: -149.5,-31.5 + parent: 2 + - uid: 5897 components: - type: Transform - pos: 381.5,403.5 - parent: 1 - - uid: 11221 + pos: -151.5,-33.5 + parent: 2 + - uid: 5912 components: - type: Transform - pos: 378.5,403.5 - parent: 1 - - uid: 11222 + pos: -133.5,13.5 + parent: 2 + - uid: 5919 components: - type: Transform - pos: 365.5,402.5 - parent: 1 - - uid: 11223 + pos: -105.5,18.5 + parent: 2 + - uid: 5952 components: - type: Transform - pos: 365.5,401.5 - parent: 1 - - uid: 11224 + pos: -44.5,-74.5 + parent: 2 + - uid: 5966 components: - type: Transform - pos: 365.5,400.5 - parent: 1 - - uid: 11225 + pos: -134.5,13.5 + parent: 2 + - uid: 5968 components: - type: Transform - pos: 366.5,400.5 - parent: 1 - - uid: 11226 + pos: -135.5,13.5 + parent: 2 + - uid: 6007 components: - type: Transform - pos: 368.5,400.5 - parent: 1 - - uid: 11227 + pos: -103.5,-2.5 + parent: 2 + - uid: 6127 components: - type: Transform - pos: 367.5,400.5 - parent: 1 - - uid: 11228 + pos: -105.5,9.5 + parent: 2 + - uid: 6128 components: - type: Transform - pos: 369.5,400.5 - parent: 1 - - uid: 11229 + pos: -105.5,8.5 + parent: 2 + - uid: 6129 components: - type: Transform - pos: 370.5,400.5 - parent: 1 - - uid: 11230 + pos: -44.5,-72.5 + parent: 2 + - uid: 6174 components: - type: Transform - pos: 371.5,400.5 - parent: 1 - - uid: 11231 + pos: -137.5,-6.5 + parent: 2 + - uid: 6175 components: - type: Transform - pos: 372.5,400.5 - parent: 1 - - uid: 11232 + pos: -137.5,-5.5 + parent: 2 + - uid: 6176 components: - type: Transform - pos: 373.5,400.5 - parent: 1 - - uid: 11233 + pos: -138.5,-5.5 + parent: 2 + - uid: 6195 components: - type: Transform - pos: 392.5,404.5 - parent: 1 - - uid: 11234 + pos: -129.5,-22.5 + parent: 2 + - uid: 6206 components: - type: Transform - pos: 392.5,406.5 - parent: 1 - - uid: 11235 + pos: -123.5,-20.5 + parent: 2 + - uid: 6207 components: - type: Transform - pos: 392.5,405.5 - parent: 1 - - uid: 11236 + pos: -122.5,-20.5 + parent: 2 + - uid: 6208 components: - type: Transform - pos: 392.5,407.5 - parent: 1 - - uid: 11237 + pos: -124.5,-20.5 + parent: 2 + - uid: 6209 components: - type: Transform - pos: 392.5,408.5 - parent: 1 - - uid: 11238 + pos: -122.5,-21.5 + parent: 2 + - uid: 6212 components: - type: Transform - pos: 392.5,409.5 - parent: 1 - - uid: 11239 + pos: -122.5,-22.5 + parent: 2 + - uid: 6213 components: - type: Transform - pos: 392.5,410.5 - parent: 1 - - uid: 11240 + pos: -121.5,-22.5 + parent: 2 + - uid: 6214 components: - type: Transform - pos: 391.5,412.5 - parent: 1 - - uid: 11241 + pos: -120.5,-22.5 + parent: 2 + - uid: 6215 components: - type: Transform - pos: 389.5,412.5 - parent: 1 - - uid: 11242 + pos: -119.5,-22.5 + parent: 2 + - uid: 6216 components: - type: Transform - pos: 390.5,412.5 - parent: 1 - - uid: 11243 + pos: -119.5,-12.5 + parent: 2 + - uid: 6217 components: - type: Transform - pos: 389.5,411.5 - parent: 1 - - uid: 11244 + pos: -119.5,-11.5 + parent: 2 + - uid: 6218 components: - type: Transform - pos: 388.5,407.5 - parent: 1 - - uid: 11245 + pos: -119.5,-21.5 + parent: 2 + - uid: 6219 components: - type: Transform - pos: 390.5,407.5 - parent: 1 - - uid: 11246 + pos: -119.5,-20.5 + parent: 2 + - uid: 6220 components: - type: Transform - pos: 389.5,407.5 - parent: 1 - - uid: 11247 + pos: -119.5,-19.5 + parent: 2 + - uid: 6221 components: - type: Transform - pos: 398.5,409.5 - parent: 1 - - uid: 11248 + pos: -119.5,-17.5 + parent: 2 + - uid: 6222 components: - type: Transform - pos: 396.5,409.5 - parent: 1 - - uid: 11249 + pos: -119.5,-16.5 + parent: 2 + - uid: 6223 components: - type: Transform - pos: 397.5,409.5 - parent: 1 - - uid: 11250 + pos: -119.5,-15.5 + parent: 2 + - uid: 6224 components: - type: Transform - pos: 393.5,407.5 - parent: 1 - - uid: 11251 + pos: -119.5,-14.5 + parent: 2 + - uid: 6225 components: - type: Transform - pos: 395.5,407.5 - parent: 1 - - uid: 11252 + pos: -119.5,-13.5 + parent: 2 + - uid: 6226 components: - type: Transform - pos: 396.5,407.5 - parent: 1 - - uid: 11253 + pos: -119.5,-18.5 + parent: 2 + - uid: 6251 components: - type: Transform - pos: 394.5,407.5 - parent: 1 - - uid: 11254 + pos: -123.5,-22.5 + parent: 2 + - uid: 6252 components: - type: Transform - pos: 395.5,416.5 - parent: 1 - - uid: 11255 + pos: -124.5,-22.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: -125.5,-22.5 + parent: 2 + - uid: 6254 components: - type: Transform - pos: 395.5,415.5 - parent: 1 - - uid: 11256 + pos: -127.5,-22.5 + parent: 2 + - uid: 6255 components: - type: Transform - pos: 395.5,414.5 - parent: 1 - - uid: 11257 + pos: -126.5,-22.5 + parent: 2 + - uid: 6439 components: - type: Transform - pos: 395.5,413.5 - parent: 1 - - uid: 11258 + pos: -88.5,-18.5 + parent: 2 + - uid: 6447 components: - type: Transform - pos: 396.5,413.5 - parent: 1 - - uid: 11259 + pos: -140.5,-10.5 + parent: 2 + - uid: 6449 components: - type: Transform - pos: 394.5,415.5 - parent: 1 - - uid: 11260 + pos: -142.5,-10.5 + parent: 2 + - uid: 6450 components: - type: Transform - pos: 393.5,415.5 - parent: 1 - - uid: 11261 + pos: -143.5,-10.5 + parent: 2 + - uid: 6451 components: - type: Transform - pos: 392.5,415.5 - parent: 1 - - uid: 11262 + pos: -145.5,-10.5 + parent: 2 + - uid: 6452 components: - type: Transform - pos: 398.5,416.5 - parent: 1 - - uid: 11263 + pos: -146.5,-10.5 + parent: 2 + - uid: 6453 components: - type: Transform - pos: 400.5,416.5 - parent: 1 - - uid: 11264 + pos: -147.5,-10.5 + parent: 2 + - uid: 6454 components: - type: Transform - pos: 399.5,416.5 - parent: 1 - - uid: 11265 + pos: -147.5,-9.5 + parent: 2 + - uid: 6455 components: - type: Transform - pos: 400.5,417.5 - parent: 1 - - uid: 11266 + pos: -147.5,-8.5 + parent: 2 + - uid: 6456 components: - type: Transform - pos: 400.5,415.5 - parent: 1 - - uid: 11267 + pos: -139.5,-10.5 + parent: 2 + - uid: 6457 components: - type: Transform - pos: 410.5,415.5 - parent: 1 - - uid: 11268 + pos: -138.5,-10.5 + parent: 2 + - uid: 6458 components: - type: Transform - pos: 409.5,415.5 - parent: 1 - - uid: 11269 + pos: -144.5,-10.5 + parent: 2 + - uid: 6486 components: - type: Transform - pos: 408.5,415.5 - parent: 1 - - uid: 11270 + pos: -89.5,-18.5 + parent: 2 + - uid: 6488 components: - type: Transform - pos: 408.5,416.5 - parent: 1 - - uid: 11271 + pos: -90.5,-18.5 + parent: 2 + - uid: 6491 components: - type: Transform - pos: 406.5,416.5 - parent: 1 - - uid: 11272 + pos: -93.5,-18.5 + parent: 2 + - uid: 6492 components: - type: Transform - pos: 407.5,416.5 - parent: 1 - - uid: 11273 + pos: -91.5,-18.5 + parent: 2 + - uid: 6493 components: - type: Transform - pos: 405.5,416.5 - parent: 1 - - uid: 11274 + pos: -92.5,-18.5 + parent: 2 + - uid: 6494 components: - type: Transform - pos: 404.5,416.5 - parent: 1 - - uid: 11275 + pos: -101.5,-25.5 + parent: 2 + - uid: 6495 components: - type: Transform - pos: 404.5,417.5 - parent: 1 - - uid: 11276 + pos: -101.5,-23.5 + parent: 2 + - uid: 6496 components: - type: Transform - pos: 404.5,415.5 - parent: 1 - - uid: 11277 + pos: -97.5,-26.5 + parent: 2 + - uid: 6501 components: - type: Transform - pos: 404.5,413.5 - parent: 1 - - uid: 11278 + pos: -101.5,-22.5 + parent: 2 + - uid: 6618 components: - type: Transform - pos: 404.5,414.5 - parent: 1 - - uid: 11279 + pos: -72.5,-7.5 + parent: 2 + - uid: 6619 components: - type: Transform - pos: 408.5,414.5 - parent: 1 - - uid: 11280 + pos: -61.5,-6.5 + parent: 2 + - uid: 6620 components: - type: Transform - pos: 408.5,413.5 - parent: 1 - - uid: 11281 + pos: -61.5,-12.5 + parent: 2 + - uid: 6621 components: - type: Transform - pos: 408.5,417.5 - parent: 1 - - uid: 11282 + pos: -61.5,-13.5 + parent: 2 + - uid: 6622 components: - type: Transform - pos: 406.5,408.5 - parent: 1 - - uid: 11283 + pos: -62.5,-13.5 + parent: 2 + - uid: 6623 components: - type: Transform - pos: 408.5,408.5 - parent: 1 - - uid: 11284 + pos: -63.5,-13.5 + parent: 2 + - uid: 6624 components: - type: Transform - pos: 407.5,408.5 - parent: 1 - - uid: 11285 + pos: -64.5,-13.5 + parent: 2 + - uid: 6626 components: - type: Transform - pos: 408.5,409.5 - parent: 1 - - uid: 11286 + pos: -65.5,-12.5 + parent: 2 + - uid: 6627 components: - type: Transform - pos: 408.5,411.5 - parent: 1 - - uid: 11287 + pos: -65.5,-11.5 + parent: 2 + - uid: 6628 components: - type: Transform - pos: 408.5,410.5 - parent: 1 - - uid: 11288 + pos: -60.5,-13.5 + parent: 2 + - uid: 6629 components: - type: Transform - pos: 408.5,407.5 - parent: 1 - - uid: 11289 + pos: -59.5,-13.5 + parent: 2 + - uid: 6630 components: - type: Transform - pos: 408.5,406.5 - parent: 1 - - uid: 11290 + pos: -58.5,-13.5 + parent: 2 + - uid: 6632 components: - type: Transform - pos: 414.5,407.5 - parent: 1 - - uid: 11291 + pos: -57.5,-12.5 + parent: 2 + - uid: 6633 components: - type: Transform - pos: 412.5,407.5 - parent: 1 - - uid: 11292 + pos: -57.5,-11.5 + parent: 2 + - uid: 6653 components: - type: Transform - pos: 413.5,407.5 - parent: 1 - - uid: 11293 + pos: -76.5,-49.5 + parent: 2 + - uid: 6654 components: - type: Transform - pos: 412.5,408.5 - parent: 1 - - uid: 11294 + pos: -76.5,-54.5 + parent: 2 + - uid: 6655 components: - type: Transform - pos: 412.5,410.5 - parent: 1 - - uid: 11295 + pos: -76.5,-52.5 + parent: 2 + - uid: 6656 components: - type: Transform - pos: 412.5,411.5 - parent: 1 - - uid: 11296 + pos: -76.5,-44.5 + parent: 2 + - uid: 6657 components: - type: Transform - pos: 412.5,409.5 - parent: 1 - - uid: 11297 + pos: -76.5,-42.5 + parent: 2 + - uid: 6660 components: - type: Transform - pos: 413.5,411.5 - parent: 1 - - uid: 11298 + pos: -76.5,-41.5 + parent: 2 + - uid: 6675 components: - type: Transform - pos: 415.5,411.5 - parent: 1 - - uid: 11299 + pos: -78.5,-42.5 + parent: 2 + - uid: 6676 components: - type: Transform - pos: 414.5,411.5 - parent: 1 - - uid: 11300 + pos: -78.5,-43.5 + parent: 2 + - uid: 6677 components: - type: Transform - pos: 415.5,410.5 - parent: 1 - - uid: 11301 + pos: -78.5,-45.5 + parent: 2 + - uid: 6678 components: - type: Transform - pos: 415.5,408.5 - parent: 1 - - uid: 11302 + pos: -76.5,-39.5 + parent: 2 + - uid: 6680 components: - type: Transform - pos: 415.5,409.5 - parent: 1 - - uid: 11303 + pos: -76.5,-47.5 + parent: 2 + - uid: 6681 components: - type: Transform - pos: 416.5,406.5 - parent: 1 - - uid: 11304 + pos: -76.5,-43.5 + parent: 2 + - uid: 6687 components: - type: Transform - pos: 416.5,405.5 - parent: 1 - - uid: 11305 + pos: -76.5,-53.5 + parent: 2 + - uid: 6688 components: - type: Transform - pos: 416.5,404.5 - parent: 1 - - uid: 11310 + pos: -76.5,-38.5 + parent: 2 + - uid: 6690 components: - type: Transform - pos: 402.5,409.5 - parent: 1 - - uid: 11311 + pos: -76.5,-50.5 + parent: 2 + - uid: 6691 components: - type: Transform - pos: 402.5,410.5 - parent: 1 - - uid: 11312 + pos: -76.5,-51.5 + parent: 2 + - uid: 6759 components: - type: Transform - pos: 403.5,409.5 - parent: 1 - - uid: 11313 + pos: -109.5,-46.5 + parent: 2 + - uid: 6770 components: - type: Transform - pos: 404.5,409.5 - parent: 1 - - uid: 11314 + pos: -97.5,-30.5 + parent: 2 + - uid: 6780 components: - type: Transform - pos: 404.5,410.5 - parent: 1 - - uid: 11315 + pos: -97.5,-28.5 + parent: 2 + - uid: 6782 components: - type: Transform - pos: 404.5,408.5 - parent: 1 - - uid: 11316 + pos: -97.5,-32.5 + parent: 2 + - uid: 6784 components: - type: Transform - pos: 404.5,406.5 - parent: 1 - - uid: 11317 + pos: -101.5,-32.5 + parent: 2 + - uid: 6785 components: - type: Transform - pos: 404.5,407.5 - parent: 1 - - uid: 11318 + pos: -101.5,-29.5 + parent: 2 + - uid: 6787 components: - type: Transform - pos: 401.5,409.5 - parent: 1 - - uid: 11319 + pos: -97.5,-24.5 + parent: 2 + - uid: 6788 components: - type: Transform - pos: 400.5,409.5 - parent: 1 - - uid: 11320 + pos: -101.5,-31.5 + parent: 2 + - uid: 6789 components: - type: Transform - pos: 400.5,408.5 - parent: 1 - - uid: 11321 + pos: -97.5,-31.5 + parent: 2 + - uid: 6792 components: - type: Transform - pos: 400.5,406.5 - parent: 1 - - uid: 11322 + pos: -101.5,-28.5 + parent: 2 + - uid: 6800 components: - type: Transform - pos: 400.5,407.5 - parent: 1 - - uid: 11323 + pos: -145.5,17.5 + parent: 2 + - uid: 6803 components: - type: Transform - pos: 403.5,413.5 - parent: 1 - - uid: 11324 + pos: -97.5,-29.5 + parent: 2 + - uid: 6816 components: - type: Transform - pos: 401.5,413.5 - parent: 1 - - uid: 11325 + pos: -101.5,-30.5 + parent: 2 + - uid: 6838 components: - type: Transform - pos: 400.5,413.5 - parent: 1 - - uid: 11326 + pos: -145.5,19.5 + parent: 2 + - uid: 6927 components: - type: Transform - pos: 402.5,413.5 - parent: 1 - - uid: 11327 + pos: -103.5,-14.5 + parent: 2 + - uid: 6928 components: - type: Transform - pos: 410.5,422.5 - parent: 1 - - uid: 11328 + pos: -103.5,-21.5 + parent: 2 + - uid: 6931 components: - type: Transform - pos: 409.5,422.5 - parent: 1 - - uid: 11329 + pos: -103.5,-22.5 + parent: 2 + - uid: 6932 components: - type: Transform - pos: 409.5,421.5 - parent: 1 - - uid: 11330 + pos: -103.5,-20.5 + parent: 2 + - uid: 6933 components: - type: Transform - pos: 408.5,421.5 - parent: 1 - - uid: 11331 + pos: -103.5,-19.5 + parent: 2 + - uid: 6934 components: - type: Transform - pos: 407.5,421.5 - parent: 1 - - uid: 11332 + pos: -103.5,-18.5 + parent: 2 + - uid: 6935 components: - type: Transform - pos: 406.5,421.5 - parent: 1 - - uid: 11333 + pos: -103.5,-17.5 + parent: 2 + - uid: 6936 components: - type: Transform - pos: 405.5,421.5 - parent: 1 - - uid: 11334 + pos: -103.5,-16.5 + parent: 2 + - uid: 6937 components: - type: Transform - pos: 404.5,421.5 - parent: 1 - - uid: 11335 + pos: -103.5,-15.5 + parent: 2 + - uid: 6943 components: - type: Transform - pos: 403.5,421.5 - parent: 1 - - uid: 11336 + pos: -104.5,-28.5 + parent: 2 + - uid: 6962 components: - type: Transform - pos: 402.5,421.5 - parent: 1 - - uid: 11337 + pos: -104.5,-39.5 + parent: 2 + - uid: 6977 components: - type: Transform - pos: 401.5,421.5 - parent: 1 - - uid: 11338 + pos: -84.5,-52.5 + parent: 2 + - uid: 6978 components: - type: Transform - pos: 394.5,421.5 - parent: 1 - - uid: 11339 + pos: -81.5,-52.5 + parent: 2 + - uid: 7019 components: - type: Transform - pos: 396.5,421.5 - parent: 1 - - uid: 11340 + pos: -82.5,-52.5 + parent: 2 + - uid: 7035 components: - type: Transform - pos: 395.5,421.5 - parent: 1 - - uid: 11341 + pos: -83.5,-52.5 + parent: 2 + - uid: 7057 components: - type: Transform - pos: 396.5,420.5 - parent: 1 - - uid: 11342 + pos: -104.5,-40.5 + parent: 2 + - uid: 7058 components: - type: Transform - pos: 396.5,418.5 - parent: 1 - - uid: 11343 + pos: -104.5,-32.5 + parent: 2 + - uid: 7059 components: - type: Transform - pos: 396.5,417.5 - parent: 1 - - uid: 11344 + pos: -104.5,-41.5 + parent: 2 + - uid: 7060 components: - type: Transform - pos: 396.5,419.5 - parent: 1 - - uid: 11345 + pos: -104.5,-43.5 + parent: 2 + - uid: 7061 components: - type: Transform - pos: 397.5,421.5 - parent: 1 - - uid: 11346 + pos: -104.5,-42.5 + parent: 2 + - uid: 7062 components: - type: Transform - pos: 398.5,421.5 - parent: 1 - - uid: 11347 + pos: -104.5,-45.5 + parent: 2 + - uid: 7063 components: - type: Transform - pos: 399.5,421.5 - parent: 1 - - uid: 11348 + pos: -104.5,-44.5 + parent: 2 + - uid: 7064 components: - type: Transform - pos: 421.5,391.5 - parent: 1 - - uid: 11349 + pos: -104.5,-29.5 + parent: 2 + - uid: 7065 components: - type: Transform - pos: 421.5,392.5 - parent: 1 - - uid: 11350 + pos: -104.5,-30.5 + parent: 2 + - uid: 7066 components: - type: Transform - pos: 420.5,392.5 - parent: 1 - - uid: 11351 + pos: -104.5,-31.5 + parent: 2 + - uid: 7067 components: - type: Transform - pos: 419.5,392.5 - parent: 1 - - uid: 11352 + pos: -104.5,-33.5 + parent: 2 + - uid: 7068 components: - type: Transform - pos: 422.5,392.5 - parent: 1 - - uid: 11353 + pos: -104.5,-34.5 + parent: 2 + - uid: 7069 components: - type: Transform - pos: 423.5,392.5 - parent: 1 - - uid: 11354 + pos: -104.5,-35.5 + parent: 2 + - uid: 7070 components: - type: Transform - pos: 423.5,393.5 - parent: 1 - - uid: 11355 + pos: -104.5,-36.5 + parent: 2 + - uid: 7071 components: - type: Transform - pos: 423.5,395.5 - parent: 1 - - uid: 11356 + pos: -104.5,-37.5 + parent: 2 + - uid: 7072 components: - type: Transform - pos: 423.5,396.5 - parent: 1 - - uid: 11357 + pos: -104.5,-38.5 + parent: 2 + - uid: 7228 components: - type: Transform - pos: 423.5,394.5 - parent: 1 - - uid: 11358 + pos: -106.5,-45.5 + parent: 2 + - uid: 7229 components: - type: Transform - pos: 425.5,404.5 - parent: 1 - - uid: 11359 + pos: -109.5,-45.5 + parent: 2 + - uid: 7349 components: - type: Transform - pos: 424.5,404.5 - parent: 1 - - uid: 11360 + pos: -143.5,16.5 + parent: 2 + - uid: 7352 components: - type: Transform - pos: 423.5,404.5 - parent: 1 - - uid: 11361 + pos: -105.5,12.5 + parent: 2 + - uid: 7363 components: - type: Transform - pos: 421.5,404.5 - parent: 1 - - uid: 11362 + pos: -41.5,-8.5 + parent: 2 + - uid: 7400 components: - type: Transform - pos: 420.5,404.5 - parent: 1 - - uid: 11363 + pos: -133.5,-20.5 + parent: 2 + - uid: 7408 components: - type: Transform - pos: 419.5,404.5 - parent: 1 - - uid: 11364 + pos: -143.5,7.5 + parent: 2 + - uid: 7413 components: - type: Transform - pos: 422.5,404.5 - parent: 1 - - uid: 11365 + pos: -141.5,9.5 + parent: 2 + - uid: 7423 components: - type: Transform - pos: 419.5,402.5 - parent: 1 - - uid: 11366 + pos: -143.5,19.5 + parent: 2 + - uid: 7424 components: - type: Transform - pos: 419.5,400.5 - parent: 1 - - uid: 11367 + pos: -143.5,9.5 + parent: 2 + - uid: 7431 components: - type: Transform - pos: 419.5,401.5 - parent: 1 - - uid: 11368 + pos: -149.5,7.5 + parent: 2 + - uid: 7433 components: - type: Transform - pos: 419.5,403.5 - parent: 1 - - uid: 11369 + pos: -149.5,8.5 + parent: 2 + - uid: 7434 components: - type: Transform - pos: 423.5,403.5 - parent: 1 - - uid: 11370 + pos: -141.5,7.5 + parent: 2 + - uid: 7435 components: - type: Transform - pos: 423.5,401.5 - parent: 1 - - uid: 11371 + pos: -147.5,16.5 + parent: 2 + - uid: 7441 components: - type: Transform - pos: 423.5,400.5 - parent: 1 - - uid: 11372 + pos: -149.5,9.5 + parent: 2 + - uid: 7442 components: - type: Transform - pos: 423.5,402.5 - parent: 1 - - uid: 11373 + pos: -151.5,10.5 + parent: 2 + - uid: 7443 components: - type: Transform - pos: 421.5,408.5 - parent: 1 - - uid: 11374 + pos: -151.5,8.5 + parent: 2 + - uid: 7444 components: - type: Transform - pos: 420.5,408.5 - parent: 1 - - uid: 11375 + pos: -147.5,9.5 + parent: 2 + - uid: 7445 components: - type: Transform - pos: 419.5,408.5 - parent: 1 - - uid: 11376 + pos: -147.5,10.5 + parent: 2 + - uid: 7446 components: - type: Transform - pos: 419.5,409.5 - parent: 1 - - uid: 11377 + pos: -151.5,7.5 + parent: 2 + - uid: 7447 components: - type: Transform - pos: 419.5,410.5 - parent: 1 - - uid: 11378 + pos: -151.5,15.5 + parent: 2 + - uid: 7449 components: - type: Transform - pos: 420.5,410.5 - parent: 1 - - uid: 11379 + pos: -151.5,9.5 + parent: 2 + - uid: 7450 components: - type: Transform - pos: 422.5,410.5 - parent: 1 - - uid: 11380 + pos: -155.5,13.5 + parent: 2 + - uid: 7453 components: - type: Transform - pos: 423.5,410.5 - parent: 1 - - uid: 11381 + pos: -26.5,-56.5 + parent: 2 + - uid: 7457 components: - type: Transform - pos: 421.5,410.5 - parent: 1 - - uid: 11382 + pos: -139.5,-14.5 + parent: 2 + - uid: 7465 components: - type: Transform - pos: 423.5,408.5 - parent: 1 - - uid: 11383 + pos: -153.5,7.5 + parent: 2 + - uid: 7471 components: - type: Transform - pos: 423.5,409.5 - parent: 1 - - uid: 11384 + pos: -153.5,8.5 + parent: 2 + - uid: 7474 components: - type: Transform - pos: 425.5,412.5 - parent: 1 - - uid: 11385 + pos: -153.5,10.5 + parent: 2 + - uid: 7475 components: - type: Transform - pos: 425.5,413.5 - parent: 1 - - uid: 11386 + pos: -153.5,9.5 + parent: 2 + - uid: 7478 components: - type: Transform - pos: 423.5,413.5 - parent: 1 - - uid: 11387 + pos: -52.5,-68.5 + parent: 2 + - uid: 7479 components: - type: Transform - pos: 424.5,413.5 - parent: 1 - - uid: 11388 + pos: -155.5,7.5 + parent: 2 + - uid: 7480 components: - type: Transform - pos: 427.5,413.5 - parent: 1 - - uid: 11389 + pos: -155.5,8.5 + parent: 2 + - uid: 7482 components: - type: Transform - pos: 426.5,413.5 - parent: 1 - - uid: 11390 + pos: -155.5,9.5 + parent: 2 + - uid: 7484 components: - type: Transform - pos: 427.5,411.5 - parent: 1 - - uid: 11391 + pos: -149.5,10.5 + parent: 2 + - uid: 7485 components: - type: Transform - pos: 427.5,412.5 - parent: 1 - - uid: 11392 + pos: -147.5,7.5 + parent: 2 + - uid: 7486 components: - type: Transform - pos: 428.5,390.5 - parent: 1 - - uid: 11393 + pos: -147.5,8.5 + parent: 2 + - uid: 7492 components: - type: Transform - pos: 428.5,391.5 - parent: 1 - - uid: 11394 + pos: -155.5,10.5 + parent: 2 + - uid: 7493 components: - type: Transform - pos: 426.5,390.5 - parent: 1 - - uid: 11395 + pos: -133.5,-13.5 + parent: 2 + - uid: 7494 components: - type: Transform - pos: 427.5,392.5 - parent: 1 - - uid: 11396 + pos: -133.5,-15.5 + parent: 2 + - uid: 7496 components: - type: Transform - pos: 427.5,393.5 - parent: 1 - - uid: 11397 + pos: -133.5,-17.5 + parent: 2 + - uid: 7503 components: - type: Transform - pos: 427.5,394.5 - parent: 1 - - uid: 11398 + pos: -133.5,-26.5 + parent: 2 + - uid: 7618 components: - type: Transform - pos: 427.5,395.5 - parent: 1 - - uid: 11399 + pos: -128.5,-4.5 + parent: 2 + - uid: 7665 components: - type: Transform - pos: 427.5,396.5 - parent: 1 - - uid: 11400 + pos: -40.5,-2.5 + parent: 2 + - uid: 7666 components: - type: Transform - pos: 427.5,397.5 - parent: 1 - - uid: 11401 + pos: -32.5,2.5 + parent: 2 + - uid: 7667 components: - type: Transform - pos: 427.5,398.5 - parent: 1 - - uid: 11402 + pos: -31.5,2.5 + parent: 2 + - uid: 7668 components: - type: Transform - pos: 427.5,399.5 - parent: 1 - - uid: 11403 + pos: -29.5,2.5 + parent: 2 + - uid: 7747 components: - type: Transform - pos: 427.5,401.5 - parent: 1 - - uid: 11404 + pos: -128.5,-5.5 + parent: 2 + - uid: 7749 components: - type: Transform - pos: 427.5,402.5 - parent: 1 - - uid: 11405 + pos: -128.5,-3.5 + parent: 2 + - uid: 7757 components: - type: Transform - pos: 427.5,404.5 - parent: 1 - - uid: 11406 + pos: -106.5,5.5 + parent: 2 + - uid: 7758 components: - type: Transform - pos: 427.5,403.5 - parent: 1 - - uid: 11407 + pos: -106.5,4.5 + parent: 2 + - uid: 7759 components: - type: Transform - pos: 427.5,400.5 - parent: 1 - - uid: 11408 + pos: -106.5,6.5 + parent: 2 + - uid: 7760 components: - type: Transform - pos: 428.5,404.5 - parent: 1 - - uid: 11409 + pos: -106.5,8.5 + parent: 2 + - uid: 7761 components: - type: Transform - pos: 430.5,404.5 - parent: 1 - - uid: 11410 + pos: -106.5,9.5 + parent: 2 + - uid: 7762 components: - type: Transform - pos: 429.5,404.5 - parent: 1 - - uid: 11411 + pos: -106.5,7.5 + parent: 2 + - uid: 7925 components: - type: Transform - pos: 428.5,400.5 - parent: 1 - - uid: 11412 + pos: -133.5,-5.5 + parent: 2 + - uid: 7926 components: - type: Transform - pos: 430.5,400.5 - parent: 1 - - uid: 11413 + pos: -133.5,-16.5 + parent: 2 + - uid: 7927 components: - type: Transform - pos: 429.5,400.5 - parent: 1 - - uid: 11414 + pos: -133.5,2.5 + parent: 2 + - uid: 7928 components: - type: Transform - pos: 428.5,396.5 - parent: 1 - - uid: 11415 + pos: -133.5,1.5 + parent: 2 + - uid: 7929 components: - type: Transform - pos: 430.5,396.5 - parent: 1 - - uid: 11416 + pos: -133.5,-2.5 + parent: 2 + - uid: 7932 components: - type: Transform - pos: 429.5,396.5 - parent: 1 - - uid: 11417 + pos: -133.5,-7.5 + parent: 2 + - uid: 7933 components: - type: Transform - pos: 428.5,392.5 - parent: 1 - - uid: 11418 + pos: -133.5,-8.5 + parent: 2 + - uid: 7934 components: - type: Transform - pos: 430.5,392.5 - parent: 1 - - uid: 11419 + pos: -147.5,-33.5 + parent: 2 + - uid: 7936 components: - type: Transform - pos: 429.5,392.5 - parent: 1 - - uid: 11420 + pos: -133.5,-1.5 + parent: 2 + - uid: 7938 components: - type: Transform - pos: 426.5,388.5 - parent: 1 - - uid: 11421 + pos: -133.5,3.5 + parent: 2 + - uid: 7939 components: - type: Transform - pos: 426.5,389.5 - parent: 1 - - uid: 11422 + pos: -133.5,0.5 + parent: 2 + - uid: 7973 components: - type: Transform - pos: 425.5,388.5 - parent: 1 - - uid: 11423 + pos: -44.5,-73.5 + parent: 2 + - uid: 7981 components: - type: Transform - pos: 423.5,388.5 - parent: 1 - - uid: 11424 + pos: -133.5,10.5 + parent: 2 + - uid: 8022 components: - type: Transform - pos: 424.5,388.5 - parent: 1 - - uid: 11425 + pos: -130.5,-6.5 + parent: 2 + - uid: 8082 components: - type: Transform - pos: 430.5,388.5 - parent: 1 - - uid: 11426 + pos: -133.5,12.5 + parent: 2 + - uid: 8083 components: - type: Transform - pos: 429.5,388.5 - parent: 1 - - uid: 11427 + pos: -133.5,11.5 + parent: 2 + - uid: 8084 components: - type: Transform - pos: 430.5,406.5 - parent: 1 - - uid: 11428 + pos: -147.5,-32.5 + parent: 2 + - uid: 8085 components: - type: Transform - pos: 427.5,407.5 - parent: 1 - - uid: 11429 + pos: -133.5,-4.5 + parent: 2 + - uid: 8086 components: - type: Transform - pos: 428.5,407.5 - parent: 1 - - uid: 11430 + pos: -133.5,-6.5 + parent: 2 + - uid: 8087 components: - type: Transform - pos: 429.5,407.5 - parent: 1 - - uid: 11431 + pos: -151.5,-30.5 + parent: 2 + - uid: 8251 components: - type: Transform - pos: 430.5,407.5 - parent: 1 - - uid: 11432 + pos: -16.5,-59.5 + parent: 2 + - uid: 8317 components: - type: Transform - pos: 431.5,407.5 - parent: 1 - - uid: 11433 + pos: -119.5,-23.5 + parent: 2 + - uid: 8318 components: - type: Transform - pos: 432.5,407.5 - parent: 1 - - uid: 11434 + pos: -119.5,-24.5 + parent: 2 + - uid: 8319 components: - type: Transform - pos: 433.5,407.5 - parent: 1 - - uid: 11435 + pos: -119.5,-25.5 + parent: 2 + - uid: 8545 components: - type: Transform - pos: 434.5,407.5 - parent: 1 - - uid: 11436 + pos: -42.5,-45.5 + parent: 2 + - uid: 8550 components: - type: Transform - pos: 435.5,407.5 - parent: 1 - - uid: 11437 + pos: -105.5,17.5 + parent: 2 + - uid: 8551 components: - type: Transform - pos: 436.5,407.5 - parent: 1 - - uid: 11438 + pos: -105.5,7.5 + parent: 2 + - uid: 8552 components: - type: Transform - pos: 440.5,406.5 - parent: 1 - - uid: 11439 + pos: -105.5,24.5 + parent: 2 + - uid: 8585 components: - type: Transform - pos: 440.5,407.5 - parent: 1 - - uid: 11440 + pos: -42.5,-59.5 + parent: 2 + - uid: 8593 components: - type: Transform - pos: 439.5,408.5 - parent: 1 - - uid: 11441 + pos: -42.5,-52.5 + parent: 2 + - uid: 8615 components: - type: Transform - pos: 440.5,408.5 - parent: 1 - - uid: 11442 + pos: -42.5,-53.5 + parent: 2 + - uid: 8616 components: - type: Transform - pos: 441.5,408.5 - parent: 1 - - uid: 11443 + pos: -26.5,-59.5 + parent: 2 + - uid: 8673 components: - type: Transform - pos: 443.5,408.5 - parent: 1 - - uid: 11444 + pos: -103.5,5.5 + parent: 2 + - uid: 8838 components: - type: Transform - pos: 444.5,408.5 - parent: 1 - - uid: 11445 + pos: -85.5,-52.5 + parent: 2 + - uid: 8889 components: - type: Transform - pos: 445.5,408.5 - parent: 1 - - uid: 11446 + pos: -94.5,-52.5 + parent: 2 + - uid: 8890 components: - type: Transform - pos: 442.5,408.5 - parent: 1 - - uid: 11447 + pos: -93.5,-52.5 + parent: 2 + - uid: 8896 components: - type: Transform - pos: 442.5,407.5 - parent: 1 - - uid: 11448 + pos: -87.5,-52.5 + parent: 2 + - uid: 8922 components: - type: Transform - pos: 442.5,405.5 - parent: 1 - - uid: 11449 + pos: -39.5,-40.5 + parent: 2 + - uid: 8939 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 11450 + pos: -80.5,-52.5 + parent: 2 + - uid: 8945 components: - type: Transform - pos: 442.5,404.5 - parent: 1 - - uid: 11451 + pos: -42.5,-46.5 + parent: 2 + - uid: 8949 components: - type: Transform - pos: 443.5,400.5 - parent: 1 - - uid: 11452 + pos: -86.5,-52.5 + parent: 2 + - uid: 8960 components: - type: Transform - pos: 442.5,400.5 - parent: 1 - - uid: 11453 + pos: -88.5,-52.5 + parent: 2 + - uid: 8966 components: - type: Transform - pos: 442.5,401.5 - parent: 1 - - uid: 11454 + pos: -130.5,-8.5 + parent: 2 + - uid: 8974 components: - type: Transform - pos: 442.5,399.5 - parent: 1 - - uid: 11455 + pos: -21.5,-59.5 + parent: 2 + - uid: 8980 components: - type: Transform - pos: 442.5,397.5 - parent: 1 - - uid: 11456 + pos: -133.5,-24.5 + parent: 2 + - uid: 8988 components: - type: Transform - pos: 442.5,398.5 - parent: 1 - - uid: 11457 + pos: -133.5,-21.5 + parent: 2 + - uid: 9118 components: - type: Transform - pos: 442.5,396.5 - parent: 1 - - uid: 11458 + pos: -133.5,-19.5 + parent: 2 + - uid: 9122 components: - type: Transform - pos: 442.5,394.5 - parent: 1 - - uid: 11459 + pos: -133.5,-18.5 + parent: 2 + - uid: 9123 components: - type: Transform - pos: 442.5,395.5 - parent: 1 - - uid: 11460 + pos: -37.5,-59.5 + parent: 2 + - uid: 9124 components: - type: Transform - pos: 442.5,393.5 - parent: 1 - - uid: 11461 + pos: -133.5,-14.5 + parent: 2 + - uid: 9216 components: - type: Transform - pos: 438.5,412.5 - parent: 1 - - uid: 11462 + pos: -88.5,3.5 + parent: 2 + - uid: 9220 components: - type: Transform - pos: 440.5,412.5 - parent: 1 - - uid: 11463 + pos: -88.5,2.5 + parent: 2 + - uid: 9275 components: - type: Transform - pos: 439.5,412.5 - parent: 1 - - uid: 11464 + pos: -58.5,-12.5 + parent: 2 + - uid: 9318 components: - type: Transform - pos: 440.5,411.5 - parent: 1 - - uid: 11465 + pos: -64.5,-12.5 + parent: 2 + - uid: 9374 components: - type: Transform - pos: 440.5,410.5 - parent: 1 - - uid: 11466 + pos: -25.5,-59.5 + parent: 2 + - uid: 9375 components: - type: Transform - pos: 441.5,411.5 - parent: 1 - - uid: 11467 + pos: -20.5,-59.5 + parent: 2 + - uid: 9376 components: - type: Transform - pos: 443.5,411.5 - parent: 1 - - uid: 11468 + pos: -42.5,-43.5 + parent: 2 + - uid: 9377 components: - type: Transform - pos: 442.5,411.5 - parent: 1 - - uid: 11469 + pos: -42.5,-42.5 + parent: 2 + - uid: 9378 components: - type: Transform - pos: 445.5,411.5 - parent: 1 - - uid: 11470 + pos: -42.5,-44.5 + parent: 2 + - uid: 9424 components: - type: Transform - pos: 444.5,411.5 - parent: 1 - - uid: 11471 + pos: -39.5,-59.5 + parent: 2 + - uid: 9479 components: - type: Transform - pos: 438.5,411.5 - parent: 1 - - uid: 11472 + pos: -81.5,-26.5 + parent: 2 + - uid: 9532 components: - type: Transform - pos: 437.5,411.5 - parent: 1 - - uid: 11473 + pos: -36.5,-59.5 + parent: 2 + - uid: 9553 components: - type: Transform - pos: 436.5,411.5 - parent: 1 - - uid: 11474 + pos: -149.5,15.5 + parent: 2 + - uid: 9570 components: - type: Transform - pos: 451.5,408.5 - parent: 1 - - uid: 11475 + pos: -40.5,-59.5 + parent: 2 + - uid: 9614 components: - type: Transform - pos: 449.5,408.5 - parent: 1 - - uid: 11476 + pos: -19.5,-9.5 + parent: 2 + - uid: 9628 components: - type: Transform - pos: 450.5,408.5 - parent: 1 - - uid: 11477 + pos: -145.5,7.5 + parent: 2 + - uid: 9629 components: - type: Transform - pos: 449.5,407.5 - parent: 1 - - uid: 11478 + pos: -145.5,8.5 + parent: 2 + - uid: 9648 components: - type: Transform - pos: 449.5,406.5 - parent: 1 - - uid: 11479 + pos: -31.5,-59.5 + parent: 2 + - uid: 9651 components: - type: Transform - pos: 449.5,409.5 - parent: 1 - - uid: 11480 + pos: -23.5,-59.5 + parent: 2 + - uid: 9691 components: - type: Transform - pos: 449.5,411.5 - parent: 1 - - uid: 11481 + pos: -32.5,-59.5 + parent: 2 + - uid: 9762 components: - type: Transform - pos: 449.5,410.5 - parent: 1 - - uid: 11482 + pos: -33.5,-59.5 + parent: 2 + - uid: 9763 components: - type: Transform - pos: 450.5,411.5 - parent: 1 - - uid: 11483 + pos: -35.5,-59.5 + parent: 2 + - uid: 9764 components: - type: Transform - pos: 451.5,411.5 - parent: 1 - - uid: 11484 + pos: -29.5,-59.5 + parent: 2 + - uid: 9790 components: - type: Transform - pos: 452.5,411.5 - parent: 1 - - uid: 11485 + pos: -143.5,15.5 + parent: 2 + - uid: 10091 components: - type: Transform - pos: 453.5,411.5 - parent: 1 - - uid: 11486 + pos: -72.5,-27.5 + parent: 2 + - uid: 10100 components: - type: Transform - pos: 454.5,411.5 - parent: 1 - - uid: 11487 + pos: -145.5,9.5 + parent: 2 + - uid: 10101 components: - type: Transform - pos: 455.5,411.5 - parent: 1 - - uid: 11488 + pos: -145.5,10.5 + parent: 2 + - uid: 10169 components: - type: Transform - pos: 456.5,411.5 - parent: 1 - - uid: 11489 + pos: -130.5,-2.5 + parent: 2 + - uid: 10426 components: - type: Transform - pos: 457.5,411.5 - parent: 1 - - uid: 11490 + pos: -143.5,17.5 + parent: 2 + - uid: 10537 components: - type: Transform - pos: 458.5,411.5 - parent: 1 - - uid: 11491 + pos: -105.5,20.5 + parent: 2 + - uid: 10538 components: - type: Transform - pos: 459.5,411.5 - parent: 1 - - uid: 11492 + pos: -105.5,21.5 + parent: 2 + - uid: 10757 components: - type: Transform - pos: 453.5,410.5 - parent: 1 - - uid: 11493 + pos: -105.5,11.5 + parent: 2 + - uid: 10762 components: - type: Transform - pos: 453.5,409.5 - parent: 1 - - uid: 11494 + pos: -103.5,4.5 + parent: 2 + - uid: 10799 components: - type: Transform - pos: 453.5,408.5 - parent: 1 - - uid: 11495 + pos: -105.5,19.5 + parent: 2 + - uid: 10806 components: - type: Transform - pos: 453.5,406.5 - parent: 1 - - uid: 11496 + pos: -105.5,13.5 + parent: 2 + - uid: 11033 components: - type: Transform - pos: 453.5,405.5 - parent: 1 - - uid: 11497 + pos: -145.5,15.5 + parent: 2 + - uid: 11099 components: - type: Transform - pos: 453.5,404.5 - parent: 1 - - uid: 11498 + pos: -105.5,25.5 + parent: 2 + - uid: 11111 components: - type: Transform - pos: 453.5,403.5 - parent: 1 - - uid: 11499 + pos: -143.5,18.5 + parent: 2 + - uid: 11114 components: - type: Transform - pos: 453.5,402.5 - parent: 1 - - uid: 11500 + pos: -143.5,-33.5 + parent: 2 + - uid: 11117 components: - type: Transform - pos: 453.5,407.5 - parent: 1 - - uid: 11501 + pos: -141.5,18.5 + parent: 2 + - uid: 11282 components: - type: Transform - pos: 458.5,410.5 - parent: 1 - - uid: 11502 + pos: -15.5,-8.5 + parent: 2 + - uid: 11283 components: - type: Transform - pos: 458.5,408.5 - parent: 1 - - uid: 11503 + pos: -16.5,-8.5 + parent: 2 + - uid: 11365 components: - type: Transform - pos: 458.5,407.5 - parent: 1 - - uid: 11504 + pos: -17.5,-8.5 + parent: 2 + - uid: 11369 components: - type: Transform - pos: 458.5,406.5 - parent: 1 - - uid: 11505 + pos: -15.5,-7.5 + parent: 2 + - uid: 11370 components: - type: Transform - pos: 458.5,405.5 - parent: 1 - - uid: 11506 + pos: -15.5,-6.5 + parent: 2 + - uid: 11371 components: - type: Transform - pos: 458.5,404.5 - parent: 1 - - uid: 11507 + pos: -15.5,-5.5 + parent: 2 + - uid: 11372 components: - type: Transform - pos: 458.5,403.5 - parent: 1 - - uid: 11508 + pos: -15.5,-3.5 + parent: 2 + - uid: 11373 components: - type: Transform - pos: 458.5,402.5 - parent: 1 - - uid: 11509 + pos: -15.5,-4.5 + parent: 2 + - uid: 11374 components: - type: Transform - pos: 458.5,409.5 - parent: 1 - - uid: 11510 + pos: -15.5,-2.5 + parent: 2 + - uid: 11375 components: - type: Transform - pos: 459.5,408.5 - parent: 1 - - uid: 11511 + pos: -15.5,-1.5 + parent: 2 + - uid: 11376 components: - type: Transform - pos: 461.5,408.5 - parent: 1 - - uid: 11512 + pos: -15.5,-0.5 + parent: 2 + - uid: 11377 components: - type: Transform - pos: 462.5,408.5 - parent: 1 - - uid: 11513 + pos: -15.5,0.5 + parent: 2 + - uid: 11378 components: - type: Transform - pos: 460.5,408.5 - parent: 1 - - uid: 11514 + pos: -15.5,1.5 + parent: 2 + - uid: 11403 components: - type: Transform - pos: 462.5,407.5 - parent: 1 - - uid: 11606 + pos: -42.5,-13.5 + parent: 2 + - uid: 11404 components: - type: Transform - pos: 450.5,400.5 - parent: 1 - - uid: 11607 + pos: -40.5,-13.5 + parent: 2 + - uid: 11405 components: - type: Transform - pos: 450.5,402.5 - parent: 1 - - uid: 11608 + pos: -39.5,-13.5 + parent: 2 + - uid: 11406 components: - type: Transform - pos: 450.5,401.5 - parent: 1 - - uid: 11609 + pos: -38.5,-13.5 + parent: 2 + - uid: 11407 components: - type: Transform - pos: 449.5,402.5 - parent: 1 - - uid: 11610 + pos: -37.5,-13.5 + parent: 2 + - uid: 11408 components: - type: Transform - pos: 451.5,415.5 - parent: 1 - - uid: 11611 + pos: -36.5,-13.5 + parent: 2 + - uid: 11409 components: - type: Transform - pos: 449.5,415.5 - parent: 1 - - uid: 11612 + pos: -35.5,-13.5 + parent: 2 + - uid: 11410 components: - type: Transform - pos: 448.5,415.5 - parent: 1 - - uid: 11613 + pos: -41.5,-13.5 + parent: 2 + - uid: 11411 components: - type: Transform - pos: 447.5,415.5 - parent: 1 - - uid: 11614 + pos: -33.5,-13.5 + parent: 2 + - uid: 11412 components: - type: Transform - pos: 446.5,415.5 - parent: 1 - - uid: 11615 + pos: -34.5,-13.5 + parent: 2 + - uid: 11413 components: - type: Transform - pos: 445.5,415.5 - parent: 1 - - uid: 11616 + pos: -32.5,-13.5 + parent: 2 + - uid: 11414 components: - type: Transform - pos: 450.5,415.5 - parent: 1 - - uid: 11617 + pos: -31.5,-13.5 + parent: 2 + - uid: 11415 components: - type: Transform - pos: 449.5,416.5 - parent: 1 - - uid: 11618 + pos: -30.5,-13.5 + parent: 2 + - uid: 11416 components: - type: Transform - pos: 449.5,418.5 - parent: 1 - - uid: 11619 + pos: -29.5,-13.5 + parent: 2 + - uid: 11417 components: - type: Transform - pos: 449.5,417.5 - parent: 1 - - uid: 11620 + pos: -29.5,-14.5 + parent: 2 + - uid: 11418 components: - type: Transform - pos: 448.5,418.5 - parent: 1 - - uid: 11621 + pos: -29.5,-15.5 + parent: 2 + - uid: 11419 components: - type: Transform - pos: 446.5,418.5 - parent: 1 - - uid: 11622 + pos: -29.5,-17.5 + parent: 2 + - uid: 11420 components: - type: Transform - pos: 445.5,418.5 - parent: 1 - - uid: 11623 + pos: -29.5,-18.5 + parent: 2 + - uid: 11421 components: - type: Transform - pos: 447.5,418.5 - parent: 1 - - uid: 11624 + pos: -29.5,-19.5 + parent: 2 + - uid: 11422 components: - type: Transform - pos: 450.5,418.5 - parent: 1 - - uid: 11625 + pos: -29.5,-20.5 + parent: 2 + - uid: 11423 components: - type: Transform - pos: 451.5,418.5 - parent: 1 - - uid: 11626 + pos: -29.5,-16.5 + parent: 2 + - uid: 11424 components: - type: Transform - pos: 451.5,419.5 - parent: 1 - - uid: 11627 + pos: -28.5,-13.5 + parent: 2 + - uid: 11425 components: - type: Transform - pos: 451.5,421.5 - parent: 1 - - uid: 11628 + pos: -26.5,-13.5 + parent: 2 + - uid: 11426 components: - type: Transform - pos: 451.5,422.5 - parent: 1 - - uid: 11629 + pos: -25.5,-13.5 + parent: 2 + - uid: 11427 components: - type: Transform - pos: 451.5,420.5 - parent: 1 - - uid: 11630 + pos: -24.5,-13.5 + parent: 2 + - uid: 11428 components: - type: Transform - pos: 450.5,422.5 - parent: 1 - - uid: 11631 + pos: -27.5,-13.5 + parent: 2 + - uid: 11429 components: - type: Transform - pos: 449.5,422.5 - parent: 1 - - uid: 11632 + pos: -22.5,-13.5 + parent: 2 + - uid: 11430 components: - type: Transform - pos: 448.5,422.5 - parent: 1 - - uid: 11633 + pos: -23.5,-13.5 + parent: 2 + - uid: 11431 components: - type: Transform - pos: 431.5,396.5 - parent: 1 - - uid: 11634 + pos: -21.5,-13.5 + parent: 2 + - uid: 11432 components: - type: Transform - pos: 431.5,400.5 - parent: 1 - - uid: 11635 + pos: -19.5,-13.5 + parent: 2 + - uid: 11433 components: - type: Transform - pos: 431.5,404.5 - parent: 1 - - uid: 11636 + pos: -20.5,-13.5 + parent: 2 + - uid: 11434 components: - type: Transform - pos: 431.5,392.5 - parent: 1 - - uid: 11637 + pos: -18.5,-13.5 + parent: 2 + - uid: 11435 components: - type: Transform - pos: 428.5,376.5 - parent: 1 - - uid: 11638 + pos: -17.5,-13.5 + parent: 2 + - uid: 11436 components: - type: Transform - pos: 428.5,374.5 - parent: 1 - - uid: 11639 + pos: -15.5,-13.5 + parent: 2 + - uid: 11437 components: - type: Transform - pos: 428.5,373.5 - parent: 1 - - uid: 11640 + pos: -16.5,-13.5 + parent: 2 + - uid: 11438 components: - type: Transform - pos: 428.5,375.5 - parent: 1 - - uid: 11641 + pos: -15.5,-14.5 + parent: 2 + - uid: 11439 components: - type: Transform - pos: 427.5,374.5 - parent: 1 - - uid: 11642 + pos: -15.5,-15.5 + parent: 2 + - uid: 11440 components: - type: Transform - pos: 425.5,374.5 - parent: 1 - - uid: 11643 + pos: -15.5,-17.5 + parent: 2 + - uid: 11441 components: - type: Transform - pos: 426.5,374.5 - parent: 1 - - uid: 11644 + pos: -15.5,-18.5 + parent: 2 + - uid: 11442 components: - type: Transform - pos: 411.5,360.5 - parent: 1 - - uid: 11645 + pos: -15.5,-19.5 + parent: 2 + - uid: 11443 components: - type: Transform - pos: 411.5,362.5 - parent: 1 - - uid: 11646 + pos: -15.5,-20.5 + parent: 2 + - uid: 11444 components: - type: Transform - pos: 411.5,361.5 - parent: 1 - - uid: 11647 + pos: -15.5,-16.5 + parent: 2 + - uid: 11445 components: - type: Transform - pos: 423.5,364.5 - parent: 1 - - uid: 11648 + pos: -15.5,-12.5 + parent: 2 + - uid: 11446 components: - type: Transform - pos: 423.5,362.5 - parent: 1 - - uid: 11649 + pos: -15.5,-11.5 + parent: 2 + - uid: 11447 components: - type: Transform - pos: 423.5,363.5 - parent: 1 - - uid: 11650 + pos: -15.5,-9.5 + parent: 2 + - uid: 11448 components: - type: Transform - pos: 424.5,362.5 - parent: 1 - - uid: 11651 + pos: -15.5,-10.5 + parent: 2 + - uid: 11449 components: - type: Transform - pos: 425.5,362.5 - parent: 1 - - uid: 11652 + pos: -29.5,-12.5 + parent: 2 + - uid: 11450 components: - type: Transform - pos: 425.5,361.5 - parent: 1 - - uid: 11653 + pos: -29.5,-11.5 + parent: 2 + - uid: 11451 components: - type: Transform - pos: 425.5,360.5 - parent: 1 - - uid: 11654 + pos: -29.5,-9.5 + parent: 2 + - uid: 11452 components: - type: Transform - pos: 425.5,359.5 - parent: 1 - - uid: 11655 + pos: -29.5,-8.5 + parent: 2 + - uid: 11453 components: - type: Transform - pos: 423.5,361.5 - parent: 1 - - uid: 11656 + pos: -29.5,-7.5 + parent: 2 + - uid: 11454 components: - type: Transform - pos: 423.5,359.5 - parent: 1 - - uid: 11657 + pos: -29.5,-6.5 + parent: 2 + - uid: 11455 components: - type: Transform - pos: 423.5,360.5 - parent: 1 - - uid: 11658 + pos: -29.5,-5.5 + parent: 2 + - uid: 11456 components: - type: Transform - pos: 422.5,362.5 - parent: 1 - - uid: 11659 + pos: -29.5,-4.5 + parent: 2 + - uid: 11457 components: - type: Transform - pos: 421.5,362.5 - parent: 1 - - uid: 11660 + pos: -29.5,-2.5 + parent: 2 + - uid: 11458 components: - type: Transform - pos: 421.5,360.5 - parent: 1 - - uid: 11661 + pos: -29.5,-10.5 + parent: 2 + - uid: 11459 components: - type: Transform - pos: 421.5,361.5 - parent: 1 - - uid: 11662 + pos: -29.5,-0.5 + parent: 2 + - uid: 11460 components: - type: Transform - pos: 421.5,359.5 - parent: 1 - - uid: 11663 + pos: -29.5,-1.5 + parent: 2 + - uid: 11461 components: - type: Transform - pos: 415.5,367.5 - parent: 1 - - uid: 11664 + pos: -29.5,0.5 + parent: 2 + - uid: 11462 components: - type: Transform - pos: 415.5,365.5 - parent: 1 - - uid: 11665 + pos: -29.5,-3.5 + parent: 2 + - uid: 11463 components: - type: Transform - pos: 415.5,364.5 - parent: 1 - - uid: 11666 + pos: -29.5,10.5 + parent: 2 + - uid: 11464 components: - type: Transform - pos: 415.5,363.5 - parent: 1 - - uid: 11667 + pos: -29.5,12.5 + parent: 2 + - uid: 11465 components: - type: Transform - pos: 415.5,366.5 - parent: 1 - - uid: 11668 + pos: -29.5,2.5 + parent: 2 + - uid: 11466 components: - type: Transform - pos: 416.5,363.5 - parent: 1 - - uid: 11669 + pos: -29.5,3.5 + parent: 2 + - uid: 11467 components: - type: Transform - pos: 424.5,355.5 - parent: 1 - - uid: 11670 + pos: -29.5,5.5 + parent: 2 + - uid: 11468 components: - type: Transform - pos: 424.5,353.5 - parent: 1 - - uid: 11671 + pos: -29.5,6.5 + parent: 2 + - uid: 11469 components: - type: Transform - pos: 424.5,352.5 - parent: 1 - - uid: 11672 + pos: -29.5,7.5 + parent: 2 + - uid: 11470 components: - type: Transform - pos: 424.5,354.5 - parent: 1 - - uid: 11673 + pos: -29.5,8.5 + parent: 2 + - uid: 11471 components: - type: Transform - pos: 424.5,356.5 - parent: 1 - - uid: 11674 + pos: -29.5,4.5 + parent: 2 + - uid: 11472 components: - type: Transform - pos: 424.5,351.5 - parent: 1 - - uid: 11675 + pos: -29.5,9.5 + parent: 2 + - uid: 11473 components: - type: Transform - pos: 422.5,351.5 - parent: 1 - - uid: 11676 + pos: -29.5,11.5 + parent: 2 + - uid: 11474 components: - type: Transform - pos: 423.5,351.5 - parent: 1 - - uid: 11677 + pos: -28.5,12.5 + parent: 2 + - uid: 11475 components: - type: Transform - pos: 421.5,351.5 - parent: 1 - - uid: 11678 + pos: -26.5,12.5 + parent: 2 + - uid: 11476 components: - type: Transform - pos: 420.5,351.5 - parent: 1 - - uid: 11679 + pos: -25.5,12.5 + parent: 2 + - uid: 11477 components: - type: Transform - pos: 418.5,351.5 - parent: 1 - - uid: 11680 + pos: -24.5,12.5 + parent: 2 + - uid: 11478 components: - type: Transform - pos: 419.5,351.5 - parent: 1 - - uid: 11681 + pos: -23.5,12.5 + parent: 2 + - uid: 11479 components: - type: Transform - pos: 417.5,351.5 - parent: 1 - - uid: 11682 + pos: -22.5,12.5 + parent: 2 + - uid: 11480 components: - type: Transform - pos: 416.5,351.5 - parent: 1 - - uid: 11683 + pos: -20.5,12.5 + parent: 2 + - uid: 11481 components: - type: Transform - pos: 416.5,352.5 - parent: 1 - - uid: 11684 + pos: -27.5,12.5 + parent: 2 + - uid: 11482 components: - type: Transform - pos: 416.5,353.5 - parent: 1 - - uid: 11685 + pos: -19.5,12.5 + parent: 2 + - uid: 11483 components: - type: Transform - pos: 416.5,355.5 - parent: 1 - - uid: 11686 + pos: -18.5,12.5 + parent: 2 + - uid: 11484 components: - type: Transform - pos: 416.5,356.5 - parent: 1 - - uid: 11687 + pos: -21.5,12.5 + parent: 2 + - uid: 11485 components: - type: Transform - pos: 416.5,357.5 - parent: 1 - - uid: 11688 + pos: -18.5,11.5 + parent: 2 + - uid: 11486 components: - type: Transform - pos: 416.5,358.5 - parent: 1 - - uid: 11689 + pos: -18.5,2.5 + parent: 2 + - uid: 11487 components: - type: Transform - pos: 416.5,359.5 - parent: 1 - - uid: 11690 + pos: -18.5,4.5 + parent: 2 + - uid: 11488 components: - type: Transform - pos: 416.5,360.5 - parent: 1 - - uid: 11691 + pos: -18.5,5.5 + parent: 2 + - uid: 11489 components: - type: Transform - pos: 416.5,354.5 - parent: 1 - - uid: 11692 + pos: -18.5,6.5 + parent: 2 + - uid: 11490 components: - type: Transform - pos: 420.5,352.5 - parent: 1 - - uid: 11693 + pos: -18.5,7.5 + parent: 2 + - uid: 11491 components: - type: Transform - pos: 420.5,353.5 - parent: 1 - - uid: 11694 + pos: -18.5,8.5 + parent: 2 + - uid: 11492 components: - type: Transform - pos: 420.5,354.5 - parent: 1 - - uid: 11695 + pos: -18.5,3.5 + parent: 2 + - uid: 11493 components: - type: Transform - pos: 420.5,355.5 - parent: 1 - - uid: 11696 + pos: -18.5,9.5 + parent: 2 + - uid: 11494 components: - type: Transform - pos: 420.5,356.5 - parent: 1 - - uid: 11697 + pos: -18.5,10.5 + parent: 2 + - uid: 11587 components: - type: Transform - pos: 337.5,379.5 - parent: 1 - - uid: 11698 + pos: -30.5,2.5 + parent: 2 + - uid: 11588 components: - type: Transform - pos: 335.5,379.5 - parent: 1 - - uid: 11699 + pos: -37.5,2.5 + parent: 2 + - uid: 11597 components: - type: Transform - pos: 336.5,379.5 - parent: 1 - - uid: 11700 + pos: -23.5,2.5 + parent: 2 + - uid: 11598 components: - type: Transform - pos: 327.5,388.5 - parent: 1 - - uid: 11701 + pos: -25.5,2.5 + parent: 2 + - uid: 11599 components: - type: Transform - pos: 331.5,387.5 - parent: 1 - - uid: 11702 + pos: -35.5,2.5 + parent: 2 + - uid: 11600 components: - type: Transform - pos: 329.5,387.5 - parent: 1 - - uid: 11703 + pos: -20.5,2.5 + parent: 2 + - uid: 11607 components: - type: Transform - pos: 328.5,387.5 - parent: 1 - - uid: 11704 + pos: -17.5,2.5 + parent: 2 + - uid: 12148 components: - type: Transform - pos: 330.5,387.5 - parent: 1 - - uid: 11705 + pos: -29.5,-56.5 + parent: 2 + - uid: 12212 components: - type: Transform - pos: 327.5,387.5 - parent: 1 - - uid: 11706 + pos: -92.5,-52.5 + parent: 2 + - uid: 12218 components: - type: Transform - pos: 326.5,387.5 - parent: 1 - - uid: 11707 + pos: -90.5,-52.5 + parent: 2 + - uid: 12228 components: - type: Transform - pos: 325.5,387.5 - parent: 1 - - uid: 11708 + pos: -89.5,-52.5 + parent: 2 + - uid: 12767 components: - type: Transform - pos: 324.5,387.5 - parent: 1 - - uid: 11709 + pos: -29.5,-58.5 + parent: 2 + - uid: 12850 components: - type: Transform - pos: 323.5,387.5 - parent: 1 - - uid: 11710 + pos: -91.5,-52.5 + parent: 2 + - uid: 12905 components: - type: Transform - pos: 322.5,387.5 - parent: 1 - - uid: 11711 + pos: -17.5,-64.5 + parent: 2 + - uid: 13038 components: - type: Transform - pos: 320.5,387.5 - parent: 1 - - uid: 11712 + pos: -103.5,-24.5 + parent: 2 + - uid: 13039 components: - type: Transform - pos: 321.5,387.5 - parent: 1 - - uid: 11713 + pos: -104.5,-26.5 + parent: 2 + - uid: 13170 components: - type: Transform - pos: 313.5,389.5 - parent: 1 - - uid: 11714 + pos: -130.5,-9.5 + parent: 2 + - uid: 13556 components: - type: Transform - pos: 313.5,388.5 - parent: 1 - - uid: 11715 + pos: -79.5,-52.5 + parent: 2 + - uid: 13557 components: - type: Transform - pos: 317.5,387.5 - parent: 1 - - uid: 11716 + pos: -78.5,-52.5 + parent: 2 + - uid: 13591 components: - type: Transform - pos: 315.5,387.5 - parent: 1 - - uid: 11717 + pos: -91.5,-40.5 + parent: 2 + - uid: 13592 components: - type: Transform - pos: 314.5,387.5 - parent: 1 - - uid: 11718 + pos: -86.5,-38.5 + parent: 2 + - uid: 13593 components: - type: Transform - pos: 313.5,387.5 - parent: 1 - - uid: 11719 + pos: -130.5,-7.5 + parent: 2 + - uid: 13640 components: - type: Transform - pos: 312.5,387.5 - parent: 1 - - uid: 11720 + pos: -133.5,-25.5 + parent: 2 + - uid: 13641 components: - type: Transform - pos: 311.5,387.5 - parent: 1 - - uid: 11721 + pos: -133.5,-22.5 + parent: 2 + - uid: 13655 components: - type: Transform - pos: 310.5,387.5 - parent: 1 - - uid: 11722 + pos: -130.5,-4.5 + parent: 2 + - uid: 13789 components: - type: Transform - pos: 316.5,387.5 - parent: 1 - - uid: 11723 + pos: -145.5,-33.5 + parent: 2 + - uid: 13790 components: - type: Transform - pos: 308.5,387.5 - parent: 1 - - uid: 11724 + pos: -141.5,-29.5 + parent: 2 + - uid: 13791 components: - type: Transform - pos: 307.5,387.5 - parent: 1 - - uid: 11725 + pos: -145.5,-31.5 + parent: 2 + - uid: 13792 components: - type: Transform - pos: 306.5,387.5 - parent: 1 - - uid: 11726 + pos: -133.5,5.5 + parent: 2 + - uid: 13793 components: - type: Transform - pos: 309.5,387.5 - parent: 1 - - uid: 11727 + pos: -149.5,-33.5 + parent: 2 + - uid: 13794 components: - type: Transform - pos: 306.5,386.5 - parent: 1 - - uid: 11728 + pos: -143.5,-30.5 + parent: 2 + - uid: 13795 components: - type: Transform - pos: 306.5,384.5 - parent: 1 - - uid: 11729 + pos: -143.5,-29.5 + parent: 2 + - uid: 13796 components: - type: Transform - pos: 306.5,383.5 - parent: 1 - - uid: 11730 + pos: -151.5,-32.5 + parent: 2 + - uid: 13797 components: - type: Transform - pos: 306.5,382.5 - parent: 1 - - uid: 11731 + pos: -133.5,-12.5 + parent: 2 + - uid: 13798 components: - type: Transform - pos: 306.5,381.5 - parent: 1 - - uid: 11732 + pos: -153.5,-30.5 + parent: 2 + - uid: 13799 components: - type: Transform - pos: 306.5,380.5 - parent: 1 - - uid: 11733 + pos: -151.5,-29.5 + parent: 2 + - uid: 13802 components: - type: Transform - pos: 306.5,385.5 - parent: 1 - - uid: 11734 + pos: -133.5,4.5 + parent: 2 + - uid: 13804 components: - type: Transform - pos: 314.5,385.5 - parent: 1 - - uid: 11735 + pos: -143.5,-31.5 + parent: 2 + - uid: 13805 components: - type: Transform - pos: 314.5,384.5 - parent: 1 - - uid: 11736 + pos: -153.5,-25.5 + parent: 2 + - uid: 13806 components: - type: Transform - pos: 314.5,383.5 - parent: 1 - - uid: 11737 + pos: -145.5,-32.5 + parent: 2 + - uid: 13809 components: - type: Transform - pos: 313.5,383.5 - parent: 1 - - uid: 11738 + pos: -141.5,-32.5 + parent: 2 + - uid: 13810 components: - type: Transform - pos: 312.5,383.5 - parent: 1 - - uid: 11739 + pos: -133.5,-0.5 + parent: 2 + - uid: 13816 components: - type: Transform - pos: 311.5,383.5 - parent: 1 - - uid: 11740 + pos: -133.5,-9.5 + parent: 2 + - uid: 13817 components: - type: Transform - pos: 310.5,383.5 - parent: 1 - - uid: 11741 + pos: -153.5,-29.5 + parent: 2 + - uid: 13885 components: - type: Transform - pos: 309.5,383.5 - parent: 1 - - uid: 11742 + pos: -91.5,-43.5 + parent: 2 + - uid: 13901 components: - type: Transform - pos: 318.5,383.5 - parent: 1 - - uid: 11743 + pos: -141.5,-30.5 + parent: 2 + - uid: 13905 components: - type: Transform - pos: 316.5,383.5 - parent: 1 - - uid: 11744 + pos: -133.5,7.5 + parent: 2 + - uid: 13910 components: - type: Transform - pos: 317.5,383.5 - parent: 1 - - uid: 11745 + pos: -149.5,-25.5 + parent: 2 + - uid: 13912 components: - type: Transform - pos: 300.5,383.5 - parent: 1 - - uid: 11746 + pos: -151.5,-24.5 + parent: 2 + - uid: 13913 components: - type: Transform - pos: 300.5,384.5 - parent: 1 - - uid: 11747 + pos: -147.5,-23.5 + parent: 2 + - uid: 13914 components: - type: Transform - pos: 299.5,384.5 - parent: 1 - - uid: 11748 + pos: -149.5,-21.5 + parent: 2 + - uid: 13916 components: - type: Transform - pos: 298.5,384.5 - parent: 1 - - uid: 11749 + pos: -151.5,-21.5 + parent: 2 + - uid: 13917 components: - type: Transform - pos: 298.5,385.5 - parent: 1 - - uid: 11750 + pos: -149.5,-23.5 + parent: 2 + - uid: 13918 components: - type: Transform - pos: 298.5,386.5 - parent: 1 - - uid: 11751 + pos: -155.5,-25.5 + parent: 2 + - uid: 13919 components: - type: Transform - pos: 298.5,387.5 - parent: 1 - - uid: 11752 + pos: -149.5,-22.5 + parent: 2 + - uid: 13920 components: - type: Transform - pos: 300.5,387.5 - parent: 1 - - uid: 11753 + pos: -154.5,-27.5 + parent: 2 + - uid: 13921 components: - type: Transform - pos: 299.5,387.5 - parent: 1 - - uid: 11754 + pos: -155.5,-24.5 + parent: 2 + - uid: 13922 components: - type: Transform - pos: 301.5,387.5 - parent: 1 - - uid: 11755 + pos: -155.5,-23.5 + parent: 2 + - uid: 13923 components: - type: Transform - pos: 302.5,387.5 - parent: 1 - - uid: 11756 + pos: -153.5,-22.5 + parent: 2 + - uid: 13924 components: - type: Transform - pos: 303.5,387.5 - parent: 1 - - uid: 11757 + pos: -153.5,-23.5 + parent: 2 + - uid: 13926 components: - type: Transform - pos: 298.5,388.5 - parent: 1 - - uid: 11758 + pos: -155.5,-27.5 + parent: 2 + - uid: 13946 components: - type: Transform - pos: 298.5,389.5 - parent: 1 - - uid: 11759 + pos: -141.5,11.5 + parent: 2 + - uid: 13948 components: - type: Transform - pos: 305.5,387.5 - parent: 1 - - uid: 11760 + pos: -147.5,19.5 + parent: 2 + - uid: 13950 components: - type: Transform - pos: 297.5,380.5 - parent: 1 - - uid: 11761 + pos: -142.5,13.5 + parent: 2 + - uid: 13991 components: - type: Transform - pos: 297.5,381.5 - parent: 1 - - uid: 11762 + pos: -147.5,-29.5 + parent: 2 + - uid: 14018 components: - type: Transform - pos: 298.5,381.5 - parent: 1 - - uid: 11763 + pos: -133.5,-11.5 + parent: 2 + - uid: 14063 components: - type: Transform - pos: 296.5,381.5 - parent: 1 - - uid: 11764 + pos: -141.5,13.5 + parent: 2 + - uid: 14094 components: - type: Transform - pos: 294.5,381.5 - parent: 1 - - uid: 11765 + pos: -140.5,-14.5 + parent: 2 + - uid: 14265 components: - type: Transform - pos: 293.5,381.5 - parent: 1 - - uid: 11766 + pos: -95.5,-14.5 + parent: 2 + - uid: 14266 components: - type: Transform - pos: 295.5,381.5 - parent: 1 - - uid: 11835 + pos: -95.5,-15.5 + parent: 2 + - uid: 14267 components: - type: Transform - pos: 336.5,380.5 - parent: 1 - - uid: 11836 + pos: -95.5,-17.5 + parent: 2 + - uid: 14268 components: - type: Transform - pos: 336.5,382.5 - parent: 1 - - uid: 11837 + pos: -95.5,-18.5 + parent: 2 + - uid: 14269 components: - type: Transform - pos: 337.5,382.5 - parent: 1 - - uid: 11838 + pos: -95.5,-16.5 + parent: 2 + - uid: 14298 components: - type: Transform - pos: 339.5,382.5 - parent: 1 - - uid: 11839 + pos: -91.5,-41.5 + parent: 2 + - uid: 14299 components: - type: Transform - pos: 338.5,382.5 - parent: 1 - - uid: 11840 + pos: -91.5,-42.5 + parent: 2 + - uid: 14363 components: - type: Transform - pos: 340.5,382.5 - parent: 1 - - uid: 11841 + pos: -91.5,-31.5 + parent: 2 + - uid: 14364 components: - type: Transform - pos: 340.5,383.5 - parent: 1 - - uid: 11842 + pos: -92.5,-36.5 + parent: 2 + - uid: 14540 components: - type: Transform - pos: 341.5,383.5 - parent: 1 - - uid: 11843 + pos: -90.5,-36.5 + parent: 2 + - uid: 14543 components: - type: Transform - pos: 343.5,383.5 - parent: 1 - - uid: 11844 + pos: -91.5,-39.5 + parent: 2 + - uid: 14588 components: - type: Transform - pos: 344.5,383.5 - parent: 1 - - uid: 11845 + pos: -17.5,-66.5 + parent: 2 + - uid: 14589 components: - type: Transform - pos: 342.5,383.5 - parent: 1 - - uid: 11846 + pos: -15.5,-67.5 + parent: 2 + - uid: 14615 components: - type: Transform - pos: 345.5,383.5 - parent: 1 - - uid: 11847 + pos: -15.5,-70.5 + parent: 2 + - uid: 14619 components: - type: Transform - pos: 345.5,384.5 - parent: 1 - - uid: 11848 + pos: -119.5,-27.5 + parent: 2 + - uid: 14741 components: - type: Transform - pos: 345.5,385.5 - parent: 1 - - uid: 11849 + pos: -72.5,-28.5 + parent: 2 + - uid: 14813 components: - type: Transform - pos: 346.5,385.5 - parent: 1 - - uid: 11850 + pos: -90.5,-38.5 + parent: 2 + - uid: 14832 components: - type: Transform - pos: 348.5,385.5 - parent: 1 - - uid: 11851 + pos: -88.5,-38.5 + parent: 2 + - uid: 14835 components: - type: Transform - pos: 347.5,385.5 - parent: 1 - - uid: 11852 + pos: -89.5,-38.5 + parent: 2 + - uid: 14837 components: - type: Transform - pos: 348.5,384.5 - parent: 1 - - uid: 11853 + pos: -91.5,-38.5 + parent: 2 + - uid: 14839 components: - type: Transform - pos: 348.5,383.5 - parent: 1 - - uid: 11854 + pos: -87.5,-38.5 + parent: 2 + - uid: 14997 components: - type: Transform - pos: 335.5,382.5 - parent: 1 - - uid: 11855 + pos: -72.5,-31.5 + parent: 2 + - uid: 15018 components: - type: Transform - pos: 334.5,382.5 - parent: 1 - - uid: 11856 + pos: -73.5,-25.5 + parent: 2 + - uid: 15056 components: - type: Transform - pos: 334.5,383.5 - parent: 1 - - uid: 11857 + pos: -100.5,5.5 + parent: 2 + - uid: 15061 components: - type: Transform - pos: 334.5,385.5 - parent: 1 - - uid: 11858 + pos: -83.5,-38.5 + parent: 2 + - uid: 15069 components: - type: Transform - pos: 334.5,384.5 - parent: 1 - - uid: 11859 + pos: -105.5,22.5 + parent: 2 + - uid: 15075 components: - type: Transform - pos: 335.5,385.5 - parent: 1 - - uid: 11860 + pos: -141.5,-10.5 + parent: 2 + - uid: 15095 components: - type: Transform - pos: 335.5,387.5 - parent: 1 - - uid: 11861 + pos: -69.5,-8.5 + parent: 2 + - uid: 15220 components: - type: Transform - pos: 335.5,386.5 - parent: 1 - - uid: 11862 + pos: -119.5,-26.5 + parent: 2 + - uid: 15311 components: - type: Transform - pos: 335.5,388.5 - parent: 1 - - uid: 11863 + pos: -105.5,14.5 + parent: 2 + - uid: 15313 components: - type: Transform - pos: 335.5,389.5 - parent: 1 - - uid: 11864 + pos: -105.5,5.5 + parent: 2 + - uid: 15319 components: - type: Transform - pos: 335.5,390.5 - parent: 1 - - uid: 11865 + pos: -102.5,5.5 + parent: 2 + - uid: 15341 components: - type: Transform - pos: 336.5,387.5 - parent: 1 - - uid: 11866 + pos: -101.5,5.5 + parent: 2 + - uid: 15454 components: - type: Transform - pos: 365.5,380.5 - parent: 1 - - uid: 11867 + pos: -42.5,-50.5 + parent: 2 + - uid: 15455 components: - type: Transform - pos: 363.5,380.5 - parent: 1 - - uid: 11868 + pos: -42.5,-48.5 + parent: 2 + - uid: 15456 components: - type: Transform - pos: 364.5,380.5 - parent: 1 - - uid: 11869 + pos: -42.5,-55.5 + parent: 2 + - uid: 15457 components: - type: Transform - pos: 326.5,440.5 - parent: 1 - - uid: 11870 + pos: -42.5,-56.5 + parent: 2 + - uid: 15458 components: - type: Transform - pos: 327.5,440.5 - parent: 1 - - uid: 11871 + pos: -42.5,-58.5 + parent: 2 + - uid: 15459 components: - type: Transform - pos: 328.5,440.5 - parent: 1 - - uid: 11872 + pos: -42.5,-54.5 + parent: 2 + - uid: 15460 components: - type: Transform - pos: 423.5,424.5 - parent: 1 - - uid: 11873 + pos: -42.5,-57.5 + parent: 2 + - uid: 15461 components: - type: Transform - pos: 422.5,424.5 - parent: 1 - - uid: 11874 + pos: -42.5,-51.5 + parent: 2 + - uid: 15463 components: - type: Transform - pos: 422.5,425.5 - parent: 1 - - uid: 11875 + pos: -42.5,-41.5 + parent: 2 + - uid: 15464 components: - type: Transform - pos: 422.5,426.5 - parent: 1 - - uid: 11876 + pos: -42.5,-47.5 + parent: 2 + - uid: 15465 components: - type: Transform - pos: 422.5,427.5 - parent: 1 - - uid: 11877 + pos: -27.5,-59.5 + parent: 2 + - uid: 15466 components: - type: Transform - pos: 422.5,423.5 - parent: 1 - - uid: 11878 + pos: -24.5,-59.5 + parent: 2 + - uid: 15467 components: - type: Transform - pos: 422.5,428.5 - parent: 1 - - uid: 11879 + pos: -28.5,-59.5 + parent: 2 + - uid: 15468 components: - type: Transform - pos: 422.5,421.5 - parent: 1 - - uid: 11880 + pos: -42.5,-49.5 + parent: 2 + - uid: 15469 components: - type: Transform - pos: 422.5,422.5 - parent: 1 - - uid: 13126 + pos: -34.5,-59.5 + parent: 2 + - uid: 15470 components: - type: Transform - pos: 373.5,398.5 - parent: 1 - - uid: 14643 + pos: -38.5,-59.5 + parent: 2 + - uid: 15471 components: - type: Transform - pos: 307.5,412.5 - parent: 1 - - uid: 14870 + pos: -41.5,-59.5 + parent: 2 + - uid: 15472 components: - type: Transform - pos: 303.5,412.5 - parent: 1 - - uid: 14871 + pos: -15.5,-68.5 + parent: 2 + - uid: 15482 components: - type: Transform - pos: 303.5,414.5 - parent: 1 - - uid: 14872 + pos: -30.5,-59.5 + parent: 2 + - uid: 15864 components: - type: Transform - pos: 303.5,413.5 - parent: 1 - - uid: 14873 + pos: -41.5,-41.5 + parent: 2 + - uid: 16041 components: - type: Transform - pos: 304.5,414.5 - parent: 1 - - uid: 14874 + pos: -79.5,-43.5 + parent: 2 + - uid: 16043 components: - type: Transform - pos: 307.5,414.5 - parent: 1 - - uid: 14875 + pos: -82.5,-43.5 + parent: 2 + - uid: 16046 components: - type: Transform - pos: 307.5,413.5 - parent: 1 - - uid: 14876 + pos: -80.5,-43.5 + parent: 2 + - uid: 16053 components: - type: Transform - pos: 307.5,415.5 - parent: 1 - - uid: 14877 + pos: -83.5,-43.5 + parent: 2 + - uid: 16139 components: - type: Transform - pos: 307.5,416.5 - parent: 1 - - uid: 14878 + pos: -22.5,-59.5 + parent: 2 + - uid: 16348 components: - type: Transform - pos: 307.5,417.5 - parent: 1 - - uid: 14879 + pos: -80.5,-26.5 + parent: 2 + - uid: 16392 components: - type: Transform - pos: 307.5,418.5 - parent: 1 - - uid: 14881 + pos: -76.5,-45.5 + parent: 2 + - uid: 16393 components: - type: Transform - pos: 311.5,413.5 - parent: 1 - - uid: 14882 + pos: -76.5,-46.5 + parent: 2 + - uid: 16394 components: - type: Transform - pos: 310.5,413.5 - parent: 1 - - uid: 14883 + pos: -76.5,-40.5 + parent: 2 + - uid: 16395 components: - type: Transform - pos: 310.5,414.5 - parent: 1 - - uid: 14884 + pos: -76.5,-48.5 + parent: 2 + - uid: 16407 components: - type: Transform - pos: 303.5,409.5 - parent: 1 - - uid: 14885 + pos: -79.5,-26.5 + parent: 2 + - uid: 16454 components: - type: Transform - pos: 302.5,410.5 - parent: 1 - - uid: 14886 + pos: -128.5,-22.5 + parent: 2 + - uid: 16510 components: - type: Transform - pos: 303.5,410.5 - parent: 1 - - uid: 14887 + pos: -105.5,23.5 + parent: 2 + - uid: 16686 components: - type: Transform - pos: 304.5,410.5 - parent: 1 - - uid: 14888 + pos: -82.5,-26.5 + parent: 2 + - uid: 16890 components: - type: Transform - pos: 303.5,406.5 - parent: 1 - - uid: 14889 + pos: -72.5,-32.5 + parent: 2 + - uid: 16951 components: - type: Transform - pos: 303.5,407.5 - parent: 1 - - uid: 14890 + pos: -109.5,-49.5 + parent: 2 + - uid: 16996 components: - type: Transform - pos: 309.5,406.5 - parent: 1 - - uid: 14891 + pos: -72.5,-29.5 + parent: 2 + - uid: 16997 components: - type: Transform - pos: 307.5,406.5 - parent: 1 - - uid: 14892 + pos: -40.5,-41.5 + parent: 2 + - uid: 17003 components: - type: Transform - pos: 308.5,406.5 - parent: 1 - - uid: 14893 + pos: -39.5,-41.5 + parent: 2 + - uid: 17034 components: - type: Transform - pos: 307.5,407.5 - parent: 1 - - uid: 14894 + pos: -123.5,-2.5 + parent: 2 + - uid: 17185 components: - type: Transform - pos: 307.5,405.5 - parent: 1 - - uid: 14895 + pos: -103.5,-26.5 + parent: 2 + - uid: 17341 components: - type: Transform - pos: 311.5,408.5 - parent: 1 - - uid: 14896 + pos: -145.5,-29.5 + parent: 2 + - uid: 17342 components: - type: Transform - pos: 310.5,408.5 - parent: 1 - - uid: 14897 + pos: -133.5,9.5 + parent: 2 + - uid: 17374 components: - type: Transform - pos: 310.5,407.5 - parent: 1 - - uid: 14898 + pos: -116.5,-27.5 + parent: 2 + - uid: 17383 components: - type: Transform - pos: 311.5,410.5 - parent: 1 - - uid: 14899 + pos: -107.5,-27.5 + parent: 2 + - uid: 17384 components: - type: Transform - pos: 310.5,410.5 - parent: 1 - - uid: 14900 + pos: -105.5,-27.5 + parent: 2 + - uid: 17385 components: - type: Transform - pos: 314.5,410.5 - parent: 1 - - uid: 14901 + pos: -104.5,-27.5 + parent: 2 + - uid: 17386 components: - type: Transform - pos: 313.5,410.5 - parent: 1 - - uid: 14902 + pos: -108.5,-27.5 + parent: 2 + - uid: 17387 components: - type: Transform - pos: 313.5,411.5 - parent: 1 - - uid: 14903 + pos: -106.5,-27.5 + parent: 2 + - uid: 17388 components: - type: Transform - pos: 308.5,422.5 - parent: 1 - - uid: 14904 + pos: -118.5,-27.5 + parent: 2 + - uid: 17389 components: - type: Transform - pos: 307.5,422.5 - parent: 1 - - uid: 14905 + pos: -117.5,-27.5 + parent: 2 + - uid: 17390 components: - type: Transform - pos: 307.5,421.5 - parent: 1 - - uid: 14906 + pos: -115.5,-27.5 + parent: 2 + - uid: 17391 components: - type: Transform - pos: 307.5,420.5 - parent: 1 - - uid: 14907 + pos: -114.5,-27.5 + parent: 2 + - uid: 17392 components: - type: Transform - pos: 307.5,423.5 - parent: 1 - - uid: 14908 + pos: -113.5,-27.5 + parent: 2 + - uid: 17393 components: - type: Transform - pos: 307.5,424.5 - parent: 1 - - uid: 14909 + pos: -112.5,-27.5 + parent: 2 + - uid: 17394 components: - type: Transform - pos: 307.5,425.5 - parent: 1 - - uid: 14910 + pos: -111.5,-27.5 + parent: 2 + - uid: 17395 components: - type: Transform - pos: 307.5,426.5 - parent: 1 - - uid: 14911 + pos: -110.5,-27.5 + parent: 2 + - uid: 17396 components: - type: Transform - pos: 310.5,420.5 - parent: 1 - - uid: 14912 + pos: -109.5,-27.5 + parent: 2 + - uid: 17448 components: - type: Transform - pos: 310.5,422.5 - parent: 1 - - uid: 14913 + pos: -133.5,-3.5 + parent: 2 + - uid: 17459 components: - type: Transform - pos: 310.5,423.5 - parent: 1 - - uid: 14914 + pos: -155.5,-29.5 + parent: 2 + - uid: 17461 components: - type: Transform - pos: 310.5,421.5 - parent: 1 - - uid: 14915 + pos: -155.5,-32.5 + parent: 2 + - uid: 17462 components: - type: Transform - pos: 310.5,424.5 - parent: 1 - - uid: 14916 + pos: -155.5,-31.5 + parent: 2 + - uid: 17463 components: - type: Transform - pos: 310.5,425.5 - parent: 1 - - uid: 14917 + pos: -154.5,-29.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: -155.5,-33.5 + parent: 2 + - uid: 17465 components: - type: Transform - pos: 310.5,426.5 - parent: 1 - - uid: 14918 + pos: -155.5,-30.5 + parent: 2 + - uid: 17467 components: - type: Transform - pos: 304.5,420.5 - parent: 1 - - uid: 14919 + pos: -145.5,-22.5 + parent: 2 + - uid: 17468 components: - type: Transform - pos: 304.5,422.5 - parent: 1 - - uid: 14920 + pos: -145.5,-24.5 + parent: 2 + - uid: 17469 components: - type: Transform - pos: 304.5,423.5 - parent: 1 - - uid: 14921 + pos: -133.5,8.5 + parent: 2 + - uid: 17476 components: - type: Transform - pos: 304.5,424.5 - parent: 1 - - uid: 14922 + pos: -91.5,-35.5 + parent: 2 + - uid: 17484 components: - type: Transform - pos: 304.5,425.5 - parent: 1 - - uid: 14923 + pos: -72.5,-34.5 + parent: 2 + - uid: 17487 components: - type: Transform - pos: 304.5,426.5 - parent: 1 - - uid: 14924 + pos: -133.5,6.5 + parent: 2 + - uid: 17489 components: - type: Transform - pos: 304.5,421.5 - parent: 1 - - uid: 14925 + pos: -147.5,-22.5 + parent: 2 + - uid: 17491 components: - type: Transform - pos: 318.5,422.5 - parent: 1 - - uid: 14926 + pos: -149.5,-24.5 + parent: 2 + - uid: 17494 components: - type: Transform - pos: 317.5,422.5 - parent: 1 - - uid: 15540 + pos: -141.5,-27.5 + parent: 2 + - uid: 17499 components: - type: Transform - pos: 503.5,389.5 - parent: 1 - - uid: 15861 + pos: -73.5,-35.5 + parent: 2 + - uid: 17501 components: - type: Transform - pos: 504.5,385.5 - parent: 1 - - uid: 15867 + pos: -78.5,-26.5 + parent: 2 + - uid: 17506 components: - type: Transform - pos: 505.5,387.5 - parent: 1 - - uid: 15869 + pos: -145.5,-25.5 + parent: 2 + - uid: 17507 components: - type: Transform - pos: 505.5,389.5 - parent: 1 - - uid: 16055 + pos: -25.5,-57.5 + parent: 2 + - uid: 17508 components: - type: Transform - pos: 353.5,404.5 - parent: 1 - - uid: 16056 + pos: -145.5,-30.5 + parent: 2 + - uid: 17510 components: - type: Transform - pos: 353.5,406.5 - parent: 1 - - uid: 16057 + pos: -28.5,-56.5 + parent: 2 + - uid: 17512 components: - type: Transform - pos: 353.5,407.5 - parent: 1 - - uid: 16119 + pos: -147.5,-25.5 + parent: 2 + - uid: 17515 components: - type: Transform - pos: -1.5,4.5 - parent: 16114 - - uid: 16120 + pos: -145.5,-23.5 + parent: 2 + - uid: 17522 components: - type: Transform - pos: -1.5,5.5 - parent: 16114 - - uid: 16121 + pos: -147.5,-21.5 + parent: 2 + - uid: 17523 components: - type: Transform - pos: -1.5,2.5 - parent: 16114 - - uid: 16122 + pos: -151.5,-23.5 + parent: 2 + - uid: 17524 components: - type: Transform - pos: -1.5,1.5 - parent: 16114 - - uid: 16123 + pos: -151.5,-25.5 + parent: 2 + - uid: 17525 components: - type: Transform - pos: -1.5,3.5 - parent: 16114 - - uid: 16124 + pos: -155.5,-21.5 + parent: 2 + - uid: 17526 components: - type: Transform - pos: -0.5,3.5 - parent: 16114 - - uid: 16125 + pos: -154.5,-25.5 + parent: 2 + - uid: 17528 components: - type: Transform - pos: 0.5,3.5 - parent: 16114 - - uid: 16126 + pos: -155.5,-22.5 + parent: 2 + - uid: 17529 components: - type: Transform - pos: 1.5,3.5 - parent: 16114 - - uid: 16127 + pos: -153.5,-21.5 + parent: 2 + - uid: 17530 components: - type: Transform - pos: 1.5,2.5 - parent: 16114 - - uid: 16128 + pos: -153.5,-24.5 + parent: 2 + - uid: 17531 components: - type: Transform - pos: 1.5,1.5 - parent: 16114 - - uid: 16129 + pos: -151.5,-22.5 + parent: 2 + - uid: 17536 components: - type: Transform - pos: 0.5,4.5 - parent: 16114 - - uid: 16130 + pos: -138.5,-27.5 + parent: 2 + - uid: 17543 components: - type: Transform - pos: -2.5,4.5 - parent: 16114 - - uid: 16156 + pos: -103.5,-25.5 + parent: 2 + - uid: 17547 components: - type: Transform - pos: 505.5,386.5 - parent: 1 - - uid: 16157 + pos: -103.5,-23.5 + parent: 2 + - uid: 17561 components: - type: Transform - pos: 505.5,385.5 - parent: 1 - - uid: 16158 + pos: -11.5,-78.5 + parent: 2 + - uid: 17562 components: - type: Transform - pos: 505.5,383.5 - parent: 1 - - uid: 16184 + pos: -11.5,-76.5 + parent: 2 + - uid: 17563 components: - type: Transform - pos: 505.5,384.5 - parent: 1 - - uid: 16197 + pos: -9.5,-78.5 + parent: 2 + - uid: 17564 components: - type: Transform - pos: 504.5,389.5 - parent: 1 - - uid: 16201 + pos: -12.5,-78.5 + parent: 2 + - uid: 17565 components: - type: Transform - pos: 503.5,385.5 - parent: 1 - - uid: 16202 + pos: -10.5,-78.5 + parent: 2 + - uid: 17566 components: - type: Transform - pos: 505.5,382.5 - parent: 1 - - uid: 16203 + pos: -19.5,-72.5 + parent: 2 + - uid: 17567 components: - type: Transform - pos: 505.5,381.5 - parent: 1 - - uid: 16218 + pos: -17.5,-72.5 + parent: 2 + - uid: 17568 components: - type: Transform - pos: 504.5,381.5 - parent: 1 - - uid: 16219 + pos: -20.5,-76.5 + parent: 2 + - uid: 17570 components: - type: Transform - pos: 511.5,384.5 - parent: 1 - - uid: 17443 + pos: -21.5,-78.5 + parent: 2 + - uid: 17571 components: - type: Transform - pos: 510.5,384.5 - parent: 1 - - uid: 17454 + pos: -18.5,-76.5 + parent: 2 + - uid: 17572 components: - type: Transform - pos: 353.5,408.5 - parent: 1 - - uid: 17974 + pos: -19.5,-78.5 + parent: 2 + - uid: 17573 components: - type: Transform - pos: 510.5,385.5 - parent: 1 - - uid: 18047 + pos: -17.5,-78.5 + parent: 2 + - uid: 17574 components: - type: Transform - pos: 353.5,405.5 - parent: 1 - - uid: 18048 + pos: -20.5,-78.5 + parent: 2 + - uid: 17575 components: - type: Transform - pos: 353.5,409.5 - parent: 1 - - uid: 18049 + pos: -17.5,-82.5 + parent: 2 + - uid: 17576 components: - type: Transform - pos: 354.5,409.5 - parent: 1 - - uid: 18050 + pos: -9.5,-80.5 + parent: 2 + - uid: 17577 components: - type: Transform - pos: 354.5,411.5 - parent: 1 - - uid: 18051 + pos: -13.5,-78.5 + parent: 2 + - uid: 17586 components: - type: Transform - pos: 354.5,410.5 - parent: 1 - - uid: 18052 + pos: -18.5,-64.5 + parent: 2 + - uid: 17587 components: - type: Transform - pos: 355.5,411.5 - parent: 1 - - uid: 18053 + pos: -19.5,-65.5 + parent: 2 + - uid: 17588 components: - type: Transform - pos: 355.5,412.5 - parent: 1 - - uid: 18054 + pos: -12.5,-74.5 + parent: 2 + - uid: 17589 components: - type: Transform - pos: 355.5,413.5 - parent: 1 - - uid: 18258 + pos: -12.5,-72.5 + parent: 2 + - uid: 17590 components: - type: Transform - pos: 510.5,386.5 - parent: 1 - - uid: 18296 + pos: -10.5,-74.5 + parent: 2 + - uid: 17591 components: - type: Transform - pos: 353.5,411.5 - parent: 1 - - uid: 18529 + pos: -13.5,-74.5 + parent: 2 + - uid: 17592 components: - type: Transform - pos: 509.5,386.5 - parent: 1 - - uid: 18533 + pos: -13.5,-72.5 + parent: 2 + - uid: 17593 components: - type: Transform - pos: 509.5,387.5 - parent: 1 - - uid: 18534 + pos: -11.5,-72.5 + parent: 2 + - uid: 17594 components: - type: Transform - pos: 509.5,388.5 - parent: 1 - - uid: 18535 + pos: -17.5,-74.5 + parent: 2 + - uid: 17598 components: - type: Transform - pos: 509.5,389.5 - parent: 1 - - uid: 18938 + pos: -11.5,-74.5 + parent: 2 + - uid: 17600 components: - type: Transform - pos: 353.5,413.5 - parent: 1 - - uid: 18939 + pos: -9.5,-74.5 + parent: 2 + - uid: 17601 components: - type: Transform - pos: 353.5,414.5 - parent: 1 - - uid: 19130 + pos: -18.5,-74.5 + parent: 2 + - uid: 17602 components: - type: Transform - pos: 353.5,412.5 - parent: 1 - - uid: 19131 + pos: -19.5,-74.5 + parent: 2 + - uid: 17603 components: - type: Transform - pos: 353.5,415.5 - parent: 1 - - uid: 19132 + pos: -10.5,-72.5 + parent: 2 + - uid: 17604 components: - type: Transform - pos: 353.5,416.5 - parent: 1 - - uid: 19133 + pos: -20.5,-74.5 + parent: 2 + - uid: 17605 components: - type: Transform - pos: 354.5,416.5 - parent: 1 - - uid: 19134 + pos: -21.5,-74.5 + parent: 2 + - uid: 17606 components: - type: Transform - pos: 355.5,416.5 - parent: 1 - - uid: 19135 + pos: -21.5,-72.5 + parent: 2 + - uid: 17607 components: - type: Transform - pos: 355.5,417.5 - parent: 1 - - uid: 19136 + pos: -20.5,-72.5 + parent: 2 + - uid: 17622 components: - type: Transform - pos: 355.5,419.5 - parent: 1 - - uid: 19137 + pos: -16.5,-64.5 + parent: 2 + - uid: 17623 components: - type: Transform - pos: 355.5,418.5 - parent: 1 - - uid: 19138 + pos: -15.5,-63.5 + parent: 2 + - uid: 17649 components: - type: Transform - pos: 355.5,420.5 - parent: 1 - - uid: 19139 + pos: -15.5,-64.5 + parent: 2 + - uid: 17652 components: - type: Transform - pos: 355.5,422.5 - parent: 1 - - uid: 19140 + pos: -19.5,-66.5 + parent: 2 + - uid: 17653 components: - type: Transform - pos: 355.5,423.5 - parent: 1 - - uid: 19141 + pos: -18.5,-66.5 + parent: 2 + - uid: 17657 components: - type: Transform - pos: 355.5,421.5 - parent: 1 - - uid: 19142 + pos: -16.5,-66.5 + parent: 2 + - uid: 17660 components: - type: Transform - pos: 355.5,424.5 - parent: 1 - - uid: 19143 + pos: -21.5,-86.5 + parent: 2 + - uid: 17661 components: - type: Transform - pos: 355.5,425.5 - parent: 1 - - uid: 19144 + pos: -17.5,-86.5 + parent: 2 + - uid: 17662 components: - type: Transform - pos: 355.5,428.5 - parent: 1 - - uid: 19145 + pos: -20.5,-86.5 + parent: 2 + - uid: 17663 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - uid: 19146 + pos: -13.5,-86.5 + parent: 2 + - uid: 17664 components: - type: Transform - pos: 355.5,426.5 - parent: 1 - - uid: 19147 + pos: -12.5,-86.5 + parent: 2 + - uid: 17665 components: - type: Transform - pos: 355.5,427.5 - parent: 1 - - uid: 19148 + pos: -19.5,-86.5 + parent: 2 + - uid: 17666 components: - type: Transform - pos: 354.5,429.5 - parent: 1 - - uid: 19149 + pos: -12.5,-82.5 + parent: 2 + - uid: 17667 components: - type: Transform - pos: 354.5,431.5 - parent: 1 - - uid: 19150 + pos: -12.5,-88.5 + parent: 2 + - uid: 17668 components: - type: Transform - pos: 354.5,432.5 - parent: 1 - - uid: 19151 + pos: -10.5,-88.5 + parent: 2 + - uid: 17669 components: - type: Transform - pos: 354.5,433.5 - parent: 1 - - uid: 19152 + pos: -9.5,-90.5 + parent: 2 + - uid: 17670 components: - type: Transform - pos: 354.5,434.5 - parent: 1 - - uid: 19153 + pos: -11.5,-88.5 + parent: 2 + - uid: 17671 components: - type: Transform - pos: 354.5,435.5 - parent: 1 - - uid: 19154 + pos: -9.5,-88.5 + parent: 2 + - uid: 17672 components: - type: Transform - pos: 354.5,430.5 - parent: 1 - - uid: 19155 + pos: -11.5,-86.5 + parent: 2 + - uid: 17673 components: - type: Transform - pos: 353.5,435.5 - parent: 1 - - uid: 19156 + pos: -10.5,-84.5 + parent: 2 + - uid: 17674 components: - type: Transform - pos: 352.5,435.5 - parent: 1 - - uid: 19157 + pos: -9.5,-86.5 + parent: 2 + - uid: 17675 components: - type: Transform - pos: 351.5,435.5 - parent: 1 - - uid: 19158 + pos: -12.5,-84.5 + parent: 2 + - uid: 17676 components: - type: Transform - pos: 350.5,435.5 - parent: 1 - - uid: 19159 + pos: -10.5,-86.5 + parent: 2 + - uid: 17677 components: - type: Transform - pos: 349.5,435.5 - parent: 1 - - uid: 19160 + pos: -13.5,-84.5 + parent: 2 + - uid: 17678 components: - type: Transform - pos: 349.5,436.5 - parent: 1 - - uid: 19161 + pos: -9.5,-84.5 + parent: 2 + - uid: 17679 components: - type: Transform - pos: 349.5,437.5 - parent: 1 - - uid: 19162 + pos: -11.5,-84.5 + parent: 2 + - uid: 17680 components: - type: Transform - pos: 347.5,437.5 - parent: 1 - - uid: 19163 + pos: -13.5,-88.5 + parent: 2 + - uid: 17681 components: - type: Transform - pos: 346.5,437.5 - parent: 1 - - uid: 19164 + pos: -18.5,-88.5 + parent: 2 + - uid: 17682 components: - type: Transform - pos: 348.5,437.5 - parent: 1 - - uid: 19165 + pos: -19.5,-88.5 + parent: 2 + - uid: 17683 components: - type: Transform - pos: 345.5,437.5 - parent: 1 - - uid: 19166 + pos: -21.5,-90.5 + parent: 2 + - uid: 17684 components: - type: Transform - pos: 344.5,437.5 - parent: 1 - - uid: 19167 + pos: -21.5,-88.5 + parent: 2 + - uid: 17685 components: - type: Transform - pos: 344.5,436.5 - parent: 1 - - uid: 19168 + pos: -15.5,-90.5 + parent: 2 + - uid: 17686 components: - type: Transform - pos: 344.5,435.5 - parent: 1 - - uid: 19169 + pos: -15.5,-89.5 + parent: 2 + - uid: 17687 components: - type: Transform - pos: 343.5,435.5 - parent: 1 - - uid: 19170 + pos: -20.5,-88.5 + parent: 2 + - uid: 17688 components: - type: Transform - pos: 341.5,435.5 - parent: 1 - - uid: 19171 + pos: -10.5,-90.5 + parent: 2 + - uid: 17689 components: - type: Transform - pos: 340.5,435.5 - parent: 1 - - uid: 19172 + pos: -11.5,-90.5 + parent: 2 + - uid: 17690 components: - type: Transform - pos: 339.5,435.5 - parent: 1 - - uid: 19173 + pos: -13.5,-90.5 + parent: 2 + - uid: 17691 components: - type: Transform - pos: 338.5,435.5 - parent: 1 - - uid: 19174 + pos: -18.5,-90.5 + parent: 2 + - uid: 17692 components: - type: Transform - pos: 337.5,435.5 - parent: 1 - - uid: 19175 + pos: -19.5,-90.5 + parent: 2 + - uid: 17693 components: - type: Transform - pos: 336.5,435.5 - parent: 1 - - uid: 19176 + pos: -20.5,-90.5 + parent: 2 + - uid: 17694 components: - type: Transform - pos: 335.5,435.5 - parent: 1 - - uid: 19177 + pos: -17.5,-90.5 + parent: 2 + - uid: 17695 components: - type: Transform - pos: 334.5,435.5 - parent: 1 - - uid: 19178 + pos: -12.5,-90.5 + parent: 2 + - uid: 17696 components: - type: Transform - pos: 342.5,435.5 - parent: 1 - - uid: 19179 + pos: -17.5,-88.5 + parent: 2 + - uid: 17697 components: - type: Transform - pos: 334.5,434.5 - parent: 1 - - uid: 19180 + pos: -13.5,-82.5 + parent: 2 + - uid: 17698 components: - type: Transform - pos: 332.5,434.5 - parent: 1 - - uid: 19181 + pos: -19.5,-82.5 + parent: 2 + - uid: 17699 components: - type: Transform - pos: 331.5,434.5 - parent: 1 - - uid: 19182 + pos: -20.5,-82.5 + parent: 2 + - uid: 17700 components: - type: Transform - pos: 330.5,434.5 - parent: 1 - - uid: 19183 + pos: -21.5,-82.5 + parent: 2 + - uid: 17701 components: - type: Transform - pos: 329.5,434.5 - parent: 1 - - uid: 19184 + pos: -21.5,-80.5 + parent: 2 + - uid: 17702 components: - type: Transform - pos: 328.5,434.5 - parent: 1 - - uid: 19185 + pos: -20.5,-80.5 + parent: 2 + - uid: 17703 components: - type: Transform - pos: 327.5,434.5 - parent: 1 - - uid: 19186 + pos: -19.5,-80.5 + parent: 2 + - uid: 17704 components: - type: Transform - pos: 333.5,434.5 - parent: 1 - - uid: 19187 + pos: -18.5,-82.5 + parent: 2 + - uid: 17705 components: - type: Transform - pos: 325.5,434.5 - parent: 1 - - uid: 19188 + pos: -18.5,-80.5 + parent: 2 + - uid: 17706 components: - type: Transform - pos: 325.5,432.5 - parent: 1 - - uid: 19189 + pos: -17.5,-80.5 + parent: 2 + - uid: 17708 components: - type: Transform - pos: 325.5,433.5 - parent: 1 - - uid: 19190 + pos: -21.5,-84.5 + parent: 2 + - uid: 17709 components: - type: Transform - pos: 324.5,433.5 - parent: 1 - - uid: 19191 + pos: -20.5,-84.5 + parent: 2 + - uid: 17710 components: - type: Transform - pos: 323.5,433.5 - parent: 1 - - uid: 19192 + pos: -18.5,-84.5 + parent: 2 + - uid: 17712 components: - type: Transform - pos: 323.5,432.5 - parent: 1 - - uid: 19193 + pos: -17.5,-84.5 + parent: 2 + - uid: 17713 components: - type: Transform - pos: 323.5,431.5 - parent: 1 - - uid: 19194 + pos: -19.5,-84.5 + parent: 2 + - uid: 17721 components: - type: Transform - pos: 323.5,430.5 - parent: 1 - - uid: 19195 + pos: -18.5,-86.5 + parent: 2 + - uid: 17751 components: - type: Transform - pos: 323.5,429.5 - parent: 1 - - uid: 19205 + pos: -19.5,-64.5 + parent: 2 + - uid: 17753 components: - type: Transform - pos: 356.5,423.5 - parent: 1 - - uid: 19206 + pos: -13.5,-76.5 + parent: 2 + - uid: 17754 components: - type: Transform - pos: 357.5,423.5 - parent: 1 - - uid: 19207 + pos: -13.5,-80.5 + parent: 2 + - uid: 17755 components: - type: Transform - pos: 358.5,423.5 - parent: 1 - - uid: 19208 + pos: -10.5,-76.5 + parent: 2 + - uid: 17756 components: - type: Transform - pos: 358.5,424.5 - parent: 1 - - uid: 19209 + pos: -12.5,-76.5 + parent: 2 + - uid: 17757 components: - type: Transform - pos: 359.5,424.5 - parent: 1 - - uid: 19210 + pos: -9.5,-76.5 + parent: 2 + - uid: 17788 components: - type: Transform - pos: 361.5,424.5 - parent: 1 - - uid: 19211 + pos: -151.5,18.5 + parent: 2 + - uid: 17837 components: - type: Transform - pos: 360.5,424.5 - parent: 1 - - uid: 19212 + pos: -84.5,-43.5 + parent: 2 + - uid: 17838 components: - type: Transform - pos: 358.5,425.5 - parent: 1 - - uid: 19213 + pos: -81.5,-43.5 + parent: 2 + - uid: 17843 components: - type: Transform - pos: 358.5,427.5 - parent: 1 - - uid: 19214 + pos: -85.5,-38.5 + parent: 2 + - uid: 17844 components: - type: Transform - pos: 358.5,428.5 - parent: 1 - - uid: 19215 + pos: -85.5,-37.5 + parent: 2 + - uid: 17845 components: - type: Transform - pos: 358.5,426.5 - parent: 1 - - uid: 19216 + pos: -85.5,-39.5 + parent: 2 + - uid: 18042 components: - type: Transform - pos: 355.5,432.5 - parent: 1 - - uid: 19217 + pos: -143.5,13.5 + parent: 2 + - uid: 18103 components: - type: Transform - pos: 357.5,432.5 - parent: 1 - - uid: 19218 + pos: -79.5,-38.5 + parent: 2 + - uid: 18752 components: - type: Transform - pos: 356.5,432.5 - parent: 1 - - uid: 19219 + pos: -138.5,-14.5 + parent: 2 + - uid: 19094 components: - type: Transform - pos: 357.5,431.5 - parent: 1 - - uid: 19220 + pos: -151.5,16.5 + parent: 2 + - uid: 19252 components: - type: Transform - pos: 358.5,431.5 - parent: 1 - - uid: 19221 + pos: -28.5,-56.5 + parent: 2 + - uid: 19414 components: - type: Transform - pos: 358.5,430.5 - parent: 1 - - uid: 19222 + pos: -118.5,-16.5 + parent: 2 + - uid: 19415 components: - type: Transform - pos: 358.5,422.5 - parent: 1 - - uid: 19223 + pos: -117.5,-16.5 + parent: 2 + - uid: 19416 components: - type: Transform - pos: 356.5,420.5 - parent: 1 - - uid: 19224 + pos: -116.5,-16.5 + parent: 2 + - uid: 19417 components: - type: Transform - pos: 356.5,417.5 - parent: 1 - - uid: 19225 + pos: -114.5,-16.5 + parent: 2 + - uid: 19418 components: - type: Transform - pos: 357.5,417.5 - parent: 1 - - uid: 19226 + pos: -113.5,-16.5 + parent: 2 + - uid: 19419 components: - type: Transform - pos: 358.5,417.5 - parent: 1 - - uid: 19227 + pos: -112.5,-16.5 + parent: 2 + - uid: 19420 components: - type: Transform - pos: 359.5,417.5 - parent: 1 - - uid: 19228 + pos: -111.5,-16.5 + parent: 2 + - uid: 19421 components: - type: Transform - pos: 359.5,416.5 - parent: 1 - - uid: 19229 + pos: -110.5,-16.5 + parent: 2 + - uid: 19422 components: - type: Transform - pos: 359.5,415.5 - parent: 1 - - uid: 19230 + pos: -109.5,-16.5 + parent: 2 + - uid: 19423 components: - type: Transform - pos: 359.5,413.5 - parent: 1 - - uid: 19231 + pos: -115.5,-16.5 + parent: 2 + - uid: 19424 components: - type: Transform - pos: 359.5,412.5 - parent: 1 - - uid: 19232 + pos: -106.5,-16.5 + parent: 2 + - uid: 19425 components: - type: Transform - pos: 359.5,411.5 - parent: 1 - - uid: 19233 + pos: -108.5,-16.5 + parent: 2 + - uid: 19426 components: - type: Transform - pos: 359.5,410.5 - parent: 1 - - uid: 19234 + pos: -107.5,-16.5 + parent: 2 + - uid: 19427 components: - type: Transform - pos: 359.5,409.5 - parent: 1 - - uid: 19235 + pos: -106.5,-15.5 + parent: 2 + - uid: 19428 components: - type: Transform - pos: 359.5,414.5 - parent: 1 - - uid: 19236 + pos: -106.5,-17.5 + parent: 2 + - uid: 19429 components: - type: Transform - pos: 358.5,409.5 - parent: 1 - - uid: 19237 + pos: -119.5,-9.5 + parent: 2 + - uid: 19430 components: - type: Transform - pos: 358.5,407.5 - parent: 1 - - uid: 19238 + pos: -119.5,-7.5 + parent: 2 + - uid: 19431 components: - type: Transform - pos: 358.5,406.5 - parent: 1 - - uid: 19239 + pos: -119.5,-6.5 + parent: 2 + - uid: 19432 components: - type: Transform - pos: 358.5,405.5 - parent: 1 - - uid: 19240 + pos: -119.5,-5.5 + parent: 2 + - uid: 19433 components: - type: Transform - pos: 358.5,404.5 - parent: 1 - - uid: 19241 + pos: -119.5,-4.5 + parent: 2 + - uid: 19434 components: - type: Transform - pos: 358.5,408.5 - parent: 1 - - uid: 19242 + pos: -119.5,-8.5 + parent: 2 + - uid: 19435 components: - type: Transform - pos: 419.5,375.5 - parent: 1 - - uid: 19243 + pos: -118.5,-4.5 + parent: 2 + - uid: 19436 components: - type: Transform - pos: 421.5,375.5 - parent: 1 - - uid: 19244 + pos: -117.5,-4.5 + parent: 2 + - uid: 19437 components: - type: Transform - pos: 422.5,375.5 - parent: 1 - - uid: 19245 + pos: -116.5,-4.5 + parent: 2 + - uid: 19438 components: - type: Transform - pos: 420.5,375.5 - parent: 1 - - uid: 19246 + pos: -114.5,-4.5 + parent: 2 + - uid: 19439 components: - type: Transform - pos: 422.5,374.5 - parent: 1 - - uid: 19247 + pos: -113.5,-4.5 + parent: 2 + - uid: 19440 components: - type: Transform - pos: 422.5,372.5 - parent: 1 - - uid: 19248 + pos: -112.5,-4.5 + parent: 2 + - uid: 19441 components: - type: Transform - pos: 422.5,371.5 - parent: 1 - - uid: 19249 + pos: -111.5,-4.5 + parent: 2 + - uid: 19442 components: - type: Transform - pos: 422.5,370.5 - parent: 1 - - uid: 19250 + pos: -110.5,-4.5 + parent: 2 + - uid: 19443 components: - type: Transform - pos: 422.5,373.5 - parent: 1 - - uid: 19251 + pos: -109.5,-4.5 + parent: 2 + - uid: 19444 components: - type: Transform - pos: 423.5,370.5 - parent: 1 - - uid: 19252 + pos: -108.5,-4.5 + parent: 2 + - uid: 19445 components: - type: Transform - pos: 423.5,368.5 - parent: 1 - - uid: 19253 + pos: -115.5,-4.5 + parent: 2 + - uid: 19446 components: - type: Transform - pos: 423.5,367.5 - parent: 1 - - uid: 19254 + pos: -107.5,-4.5 + parent: 2 + - uid: 19448 components: - type: Transform - pos: 423.5,366.5 - parent: 1 - - uid: 19255 + pos: -106.5,-4.5 + parent: 2 + - uid: 19449 components: - type: Transform - pos: 423.5,365.5 - parent: 1 - - uid: 19256 + pos: -106.5,-3.5 + parent: 2 + - uid: 19450 components: - type: Transform - pos: 423.5,369.5 - parent: 1 - - uid: 19257 + pos: -106.5,-5.5 + parent: 2 + - uid: 19461 components: - type: Transform - pos: 422.5,365.5 - parent: 1 - - uid: 19258 + pos: -106.5,2.5 + parent: 2 + - uid: 19462 components: - type: Transform - pos: 420.5,365.5 - parent: 1 - - uid: 19259 + pos: -106.5,1.5 + parent: 2 + - uid: 19463 components: - type: Transform - pos: 419.5,365.5 - parent: 1 - - uid: 19260 + pos: -106.5,3.5 + parent: 2 + - uid: 19467 components: - type: Transform - pos: 421.5,365.5 - parent: 1 - - uid: 19261 + pos: -136.5,-27.5 + parent: 2 + - uid: 19527 components: - type: Transform - pos: 414.5,365.5 - parent: 1 - - uid: 19262 + pos: -74.5,-25.5 + parent: 2 + - uid: 19580 components: - type: Transform - pos: 412.5,365.5 - parent: 1 - - uid: 19263 + pos: -140.5,-27.5 + parent: 2 + - uid: 19581 components: - type: Transform - pos: 411.5,365.5 - parent: 1 - - uid: 19264 + pos: -135.5,-27.5 + parent: 2 + - uid: 19614 components: - type: Transform - pos: 410.5,365.5 - parent: 1 - - uid: 19265 + pos: -137.5,-27.5 + parent: 2 + - uid: 19772 components: - type: Transform - pos: 413.5,365.5 - parent: 1 - - uid: 19266 + pos: -91.5,-34.5 + parent: 2 + - uid: 19795 components: - type: Transform - pos: 409.5,365.5 - parent: 1 - - uid: 19267 + pos: -18.5,-8.5 + parent: 2 + - uid: 19811 components: - type: Transform - pos: 407.5,365.5 - parent: 1 - - uid: 19268 + pos: -153.5,16.5 + parent: 2 + - uid: 19885 components: - type: Transform - pos: 408.5,365.5 - parent: 1 - - uid: 19269 + pos: -91.5,-44.5 + parent: 2 + - uid: 20095 components: - type: Transform - pos: 407.5,364.5 - parent: 1 - - uid: 19270 + pos: -141.5,-33.5 + parent: 2 + - uid: 20099 components: - type: Transform - pos: 405.5,364.5 - parent: 1 - - uid: 19271 + pos: -147.5,-24.5 + parent: 2 + - uid: 20330 components: - type: Transform - pos: 404.5,364.5 - parent: 1 - - uid: 19272 + pos: -82.5,-38.5 + parent: 2 + - uid: 20352 components: - type: Transform - pos: 406.5,364.5 - parent: 1 - - uid: 19273 + pos: -108.5,-49.5 + parent: 2 + - uid: 20423 components: - type: Transform - pos: 422.5,376.5 - parent: 1 - - uid: 19274 + pos: -125.5,-88.5 + parent: 2 + - uid: 20669 components: - type: Transform - pos: 422.5,377.5 - parent: 1 - - uid: 19275 + pos: -15.5,-32.5 + parent: 2 + - uid: 20670 components: - type: Transform - pos: 422.5,378.5 - parent: 1 - - uid: 19276 + pos: -15.5,-33.5 + parent: 2 + - uid: 20671 components: - type: Transform - pos: 421.5,378.5 - parent: 1 - - uid: 19277 + pos: -15.5,-34.5 + parent: 2 + - uid: 20672 components: - type: Transform - pos: 420.5,378.5 - parent: 1 - - uid: 19278 + pos: -15.5,-35.5 + parent: 2 + - uid: 20673 components: - type: Transform - pos: 419.5,378.5 - parent: 1 - - uid: 19279 + pos: -15.5,-36.5 + parent: 2 + - uid: 20674 components: - type: Transform - pos: 418.5,378.5 - parent: 1 - - uid: 19280 + pos: -15.5,-37.5 + parent: 2 + - uid: 20675 components: - type: Transform - pos: 418.5,379.5 - parent: 1 - - uid: 19281 + pos: -15.5,-31.5 + parent: 2 + - uid: 20676 components: - type: Transform - pos: 418.5,380.5 - parent: 1 - - uid: 19282 + pos: -15.5,-38.5 + parent: 2 + - uid: 20677 components: - type: Transform - pos: 418.5,381.5 - parent: 1 - - uid: 19283 + pos: -15.5,-41.5 + parent: 2 + - uid: 20678 components: - type: Transform - pos: 418.5,382.5 - parent: 1 - - uid: 19284 + pos: -15.5,-40.5 + parent: 2 + - uid: 20679 components: - type: Transform - pos: 418.5,383.5 - parent: 1 - - uid: 19285 + pos: -15.5,-21.5 + parent: 2 + - uid: 20680 components: - type: Transform - pos: 418.5,384.5 - parent: 1 - - uid: 19286 + pos: -15.5,-22.5 + parent: 2 + - uid: 20681 components: - type: Transform - pos: 418.5,385.5 - parent: 1 - - uid: 19288 + pos: -15.5,-23.5 + parent: 2 + - uid: 20682 components: - type: Transform - pos: 423.5,384.5 - parent: 1 - - uid: 19289 + pos: -15.5,-25.5 + parent: 2 + - uid: 20683 components: - type: Transform - pos: 423.5,385.5 - parent: 1 - - uid: 19290 + pos: -15.5,-26.5 + parent: 2 + - uid: 20684 components: - type: Transform - pos: 423.5,383.5 - parent: 1 - - uid: 19291 + pos: -15.5,-27.5 + parent: 2 + - uid: 20685 components: - type: Transform - pos: 424.5,381.5 - parent: 1 - - uid: 19292 + pos: -15.5,-28.5 + parent: 2 + - uid: 20686 components: - type: Transform - pos: 426.5,381.5 - parent: 1 - - uid: 19293 + pos: -15.5,-24.5 + parent: 2 + - uid: 20687 components: - type: Transform - pos: 427.5,381.5 - parent: 1 - - uid: 19294 + pos: -15.5,-30.5 + parent: 2 + - uid: 20688 components: - type: Transform - pos: 425.5,381.5 - parent: 1 - - uid: 19295 + pos: -15.5,-52.5 + parent: 2 + - uid: 20689 components: - type: Transform - pos: 427.5,382.5 - parent: 1 - - uid: 19296 + pos: -15.5,-53.5 + parent: 2 + - uid: 20690 components: - type: Transform - pos: 427.5,384.5 - parent: 1 - - uid: 19297 + pos: -15.5,-54.5 + parent: 2 + - uid: 20691 components: - type: Transform - pos: 427.5,383.5 - parent: 1 - - uid: 19298 + pos: -15.5,-55.5 + parent: 2 + - uid: 20693 components: - type: Transform - pos: 428.5,384.5 - parent: 1 - - uid: 19299 + pos: -15.5,-46.5 + parent: 2 + - uid: 20694 components: - type: Transform - pos: 429.5,384.5 - parent: 1 - - uid: 19300 + pos: -15.5,-29.5 + parent: 2 + - uid: 20695 components: - type: Transform - pos: 430.5,384.5 - parent: 1 - - uid: 19301 + pos: -15.5,-39.5 + parent: 2 + - uid: 20696 components: - type: Transform - pos: 431.5,384.5 - parent: 1 - - uid: 19302 + pos: -15.5,-43.5 + parent: 2 + - uid: 20697 components: - type: Transform - pos: 432.5,384.5 - parent: 1 - - uid: 19303 + pos: -15.5,-44.5 + parent: 2 + - uid: 20698 components: - type: Transform - pos: 433.5,384.5 - parent: 1 - - uid: 19304 + pos: -15.5,-45.5 + parent: 2 + - uid: 20699 components: - type: Transform - pos: 433.5,385.5 - parent: 1 - - uid: 19305 + pos: -15.5,-47.5 + parent: 2 + - uid: 20700 components: - type: Transform - pos: 433.5,387.5 - parent: 1 - - uid: 19306 + pos: -15.5,-48.5 + parent: 2 + - uid: 20701 components: - type: Transform - pos: 433.5,388.5 - parent: 1 - - uid: 19307 + pos: -15.5,-42.5 + parent: 2 + - uid: 20702 components: - type: Transform - pos: 433.5,389.5 - parent: 1 - - uid: 19308 + pos: -15.5,-49.5 + parent: 2 + - uid: 20703 components: - type: Transform - pos: 433.5,386.5 - parent: 1 - - uid: 19309 + pos: -15.5,-50.5 + parent: 2 + - uid: 20704 components: - type: Transform - pos: 434.5,385.5 - parent: 1 - - uid: 19310 + pos: -15.5,-51.5 + parent: 2 + - uid: 20705 components: - type: Transform - pos: 436.5,385.5 - parent: 1 - - uid: 19311 + pos: -48.5,-40.5 + parent: 2 + - uid: 20706 components: - type: Transform - pos: 435.5,385.5 - parent: 1 - - uid: 19312 + pos: -47.5,-40.5 + parent: 2 + - uid: 20707 components: - type: Transform - pos: 433.5,390.5 - parent: 1 - - uid: 19313 + pos: -45.5,-40.5 + parent: 2 + - uid: 20708 components: - type: Transform - pos: 433.5,392.5 - parent: 1 - - uid: 19314 + pos: -44.5,-40.5 + parent: 2 + - uid: 20709 components: - type: Transform - pos: 433.5,393.5 - parent: 1 - - uid: 19315 + pos: -43.5,-40.5 + parent: 2 + - uid: 20710 components: - type: Transform - pos: 433.5,394.5 - parent: 1 - - uid: 19316 + pos: -42.5,-40.5 + parent: 2 + - uid: 20711 components: - type: Transform - pos: 433.5,395.5 - parent: 1 - - uid: 19317 + pos: -46.5,-40.5 + parent: 2 + - uid: 20723 components: - type: Transform - pos: 433.5,396.5 - parent: 1 - - uid: 19318 + pos: -151.5,17.5 + parent: 2 + - uid: 20732 components: - type: Transform - pos: 433.5,397.5 - parent: 1 - - uid: 19319 + pos: -42.5,-60.5 + parent: 2 + - uid: 20735 components: - type: Transform - pos: 433.5,391.5 - parent: 1 - - uid: 19320 + pos: -42.5,-63.5 + parent: 2 + - uid: 20737 components: - type: Transform - pos: 434.5,397.5 - parent: 1 - - uid: 19321 + pos: -42.5,-61.5 + parent: 2 + - uid: 20738 components: - type: Transform - pos: 434.5,398.5 - parent: 1 - - uid: 19322 + pos: -42.5,-62.5 + parent: 2 + - uid: 20739 components: - type: Transform - pos: 434.5,399.5 - parent: 1 - - uid: 19323 + pos: -45.5,-63.5 + parent: 2 + - uid: 20740 components: - type: Transform - pos: 434.5,401.5 - parent: 1 - - uid: 19324 + pos: -55.5,-63.5 + parent: 2 + - uid: 20741 components: - type: Transform - pos: 434.5,402.5 - parent: 1 - - uid: 19325 + pos: -53.5,-63.5 + parent: 2 + - uid: 20742 components: - type: Transform - pos: 434.5,403.5 - parent: 1 - - uid: 19326 + pos: -54.5,-63.5 + parent: 2 + - uid: 20743 components: - type: Transform - pos: 434.5,404.5 - parent: 1 - - uid: 19327 + pos: -43.5,-63.5 + parent: 2 + - uid: 20744 components: - type: Transform - pos: 434.5,405.5 - parent: 1 - - uid: 19328 + pos: -44.5,-63.5 + parent: 2 + - uid: 20745 components: - type: Transform - pos: 434.5,400.5 - parent: 1 - - uid: 19329 + pos: -46.5,-63.5 + parent: 2 + - uid: 20746 components: - type: Transform - pos: 432.5,409.5 - parent: 1 - - uid: 19330 + pos: -47.5,-63.5 + parent: 2 + - uid: 20747 components: - type: Transform - pos: 432.5,410.5 - parent: 1 - - uid: 19331 + pos: -48.5,-63.5 + parent: 2 + - uid: 20748 components: - type: Transform - pos: 432.5,411.5 - parent: 1 - - uid: 19332 + pos: -49.5,-63.5 + parent: 2 + - uid: 20749 components: - type: Transform - pos: 432.5,408.5 - parent: 1 - - uid: 19333 + pos: -50.5,-63.5 + parent: 2 + - uid: 20750 components: - type: Transform - pos: 432.5,412.5 - parent: 1 - - uid: 19334 + pos: -51.5,-63.5 + parent: 2 + - uid: 20751 components: - type: Transform - pos: 432.5,414.5 - parent: 1 - - uid: 19335 + pos: -52.5,-63.5 + parent: 2 + - uid: 20752 components: - type: Transform - pos: 432.5,413.5 - parent: 1 - - uid: 19336 + pos: -55.5,-64.5 + parent: 2 + - uid: 20753 components: - type: Transform - pos: 432.5,415.5 - parent: 1 - - uid: 19337 + pos: -55.5,-65.5 + parent: 2 + - uid: 20754 components: - type: Transform - pos: 433.5,415.5 - parent: 1 - - uid: 19338 + pos: -56.5,-65.5 + parent: 2 + - uid: 20755 components: - type: Transform - pos: 434.5,415.5 - parent: 1 - - uid: 19339 + pos: -57.5,-65.5 + parent: 2 + - uid: 20756 components: - type: Transform - pos: 432.5,416.5 - parent: 1 - - uid: 19340 + pos: -58.5,-65.5 + parent: 2 + - uid: 20757 components: - type: Transform - pos: 432.5,418.5 - parent: 1 - - uid: 19341 + pos: -60.5,-65.5 + parent: 2 + - uid: 20758 components: - type: Transform - pos: 432.5,417.5 - parent: 1 - - uid: 19342 + pos: -61.5,-65.5 + parent: 2 + - uid: 20759 components: - type: Transform - pos: 431.5,418.5 - parent: 1 - - uid: 19343 + pos: -62.5,-65.5 + parent: 2 + - uid: 20760 components: - type: Transform - pos: 429.5,418.5 - parent: 1 - - uid: 19344 + pos: -63.5,-65.5 + parent: 2 + - uid: 20761 components: - type: Transform - pos: 430.5,418.5 - parent: 1 - - uid: 19345 + pos: -64.5,-65.5 + parent: 2 + - uid: 20762 components: - type: Transform - pos: 429.5,419.5 - parent: 1 - - uid: 19346 + pos: -59.5,-65.5 + parent: 2 + - uid: 20763 components: - type: Transform - pos: 427.5,419.5 - parent: 1 - - uid: 19347 + pos: -75.5,-65.5 + parent: 2 + - uid: 20764 components: - type: Transform - pos: 428.5,419.5 - parent: 1 - - uid: 19348 + pos: -66.5,-65.5 + parent: 2 + - uid: 20765 components: - type: Transform - pos: 426.5,419.5 - parent: 1 - - uid: 19349 + pos: -65.5,-65.5 + parent: 2 + - uid: 20766 components: - type: Transform - pos: 425.5,419.5 - parent: 1 - - uid: 19350 + pos: -67.5,-65.5 + parent: 2 + - uid: 20767 components: - type: Transform - pos: 424.5,419.5 - parent: 1 - - uid: 19351 + pos: -68.5,-65.5 + parent: 2 + - uid: 20768 components: - type: Transform - pos: 424.5,418.5 - parent: 1 - - uid: 19352 + pos: -69.5,-65.5 + parent: 2 + - uid: 20769 components: - type: Transform - pos: 423.5,418.5 - parent: 1 - - uid: 19353 + pos: -70.5,-65.5 + parent: 2 + - uid: 20770 components: - type: Transform - pos: 422.5,418.5 - parent: 1 - - uid: 19354 + pos: -71.5,-65.5 + parent: 2 + - uid: 20771 components: - type: Transform - pos: 421.5,418.5 - parent: 1 - - uid: 19355 + pos: -72.5,-65.5 + parent: 2 + - uid: 20772 components: - type: Transform - pos: 420.5,418.5 - parent: 1 - - uid: 19356 + pos: -73.5,-65.5 + parent: 2 + - uid: 20773 components: - type: Transform - pos: 419.5,418.5 - parent: 1 - - uid: 19357 + pos: -74.5,-65.5 + parent: 2 + - uid: 20774 components: - type: Transform - pos: 419.5,419.5 - parent: 1 - - uid: 19358 + pos: -76.5,-65.5 + parent: 2 + - uid: 20775 components: - type: Transform - pos: 419.5,421.5 - parent: 1 - - uid: 19359 + pos: -76.5,-60.5 + parent: 2 + - uid: 20776 components: - type: Transform - pos: 419.5,420.5 - parent: 1 - - uid: 19360 + pos: -76.5,-64.5 + parent: 2 + - uid: 20777 components: - type: Transform - pos: 419.5,422.5 - parent: 1 - - uid: 19361 + pos: -76.5,-63.5 + parent: 2 + - uid: 20778 components: - type: Transform - pos: 419.5,423.5 - parent: 1 - - uid: 19362 + pos: -76.5,-62.5 + parent: 2 + - uid: 20779 components: - type: Transform - pos: 419.5,424.5 - parent: 1 - - uid: 19363 + pos: -76.5,-61.5 + parent: 2 + - uid: 20780 components: - type: Transform - pos: 418.5,424.5 - parent: 1 - - uid: 19364 + pos: -76.5,-59.5 + parent: 2 + - uid: 20781 components: - type: Transform - pos: 416.5,424.5 - parent: 1 - - uid: 19365 + pos: -76.5,-58.5 + parent: 2 + - uid: 20782 components: - type: Transform - pos: 417.5,424.5 - parent: 1 - - uid: 19366 + pos: -76.5,-57.5 + parent: 2 + - uid: 20783 components: - type: Transform - pos: 415.5,424.5 - parent: 1 - - uid: 19367 + pos: -76.5,-56.5 + parent: 2 + - uid: 20784 components: - type: Transform - pos: 413.5,424.5 - parent: 1 - - uid: 19368 + pos: -76.5,-55.5 + parent: 2 + - uid: 20850 components: - type: Transform - pos: 414.5,424.5 - parent: 1 - - uid: 19369 + pos: -18.5,-72.5 + parent: 2 + - uid: 20859 components: - type: Transform - pos: 412.5,424.5 - parent: 1 - - uid: 19370 + pos: -17.5,-76.5 + parent: 2 + - uid: 20870 components: - type: Transform - pos: 411.5,424.5 - parent: 1 - - uid: 19371 + pos: -21.5,-76.5 + parent: 2 + - uid: 20871 components: - type: Transform - pos: 410.5,424.5 - parent: 1 - - uid: 19372 + pos: -18.5,-78.5 + parent: 2 + - uid: 20895 components: - type: Transform - pos: 409.5,424.5 - parent: 1 - - uid: 19373 + pos: -19.5,-76.5 + parent: 2 + - uid: 20896 components: - type: Transform - pos: 407.5,424.5 - parent: 1 - - uid: 19374 + pos: -11.5,-82.5 + parent: 2 + - uid: 21007 components: - type: Transform - pos: 406.5,424.5 - parent: 1 - - uid: 19375 + pos: -10.5,-82.5 + parent: 2 + - uid: 21087 components: - type: Transform - pos: 405.5,424.5 - parent: 1 - - uid: 19376 + pos: -81.5,-38.5 + parent: 2 + - uid: 21095 components: - type: Transform - pos: 408.5,424.5 - parent: 1 - - uid: 19377 + pos: -11.5,7.5 + parent: 2 + - uid: 21096 components: - type: Transform - pos: 405.5,425.5 - parent: 1 - - uid: 19378 + pos: -10.5,7.5 + parent: 2 + - uid: 21097 components: - type: Transform - pos: 404.5,425.5 - parent: 1 - - uid: 19379 + pos: -10.5,6.5 + parent: 2 + - uid: 21098 components: - type: Transform - pos: 403.5,425.5 - parent: 1 - - uid: 19380 + pos: -9.5,6.5 + parent: 2 + - uid: 21099 components: - type: Transform - pos: 403.5,424.5 - parent: 1 - - uid: 19381 + pos: -7.5,6.5 + parent: 2 + - uid: 21100 components: - type: Transform - pos: 401.5,424.5 - parent: 1 - - uid: 19382 + pos: -6.5,6.5 + parent: 2 + - uid: 21101 components: - type: Transform - pos: 402.5,424.5 - parent: 1 - - uid: 19383 + pos: -8.5,6.5 + parent: 2 + - uid: 21174 components: - type: Transform - pos: 400.5,424.5 - parent: 1 - - uid: 19384 + pos: -5.5,-0.5 + parent: 2 + - uid: 21175 components: - type: Transform - pos: 399.5,424.5 - parent: 1 - - uid: 19385 + pos: -5.5,0.5 + parent: 2 + - uid: 21176 components: - type: Transform - pos: 398.5,424.5 - parent: 1 - - uid: 19386 + pos: -5.5,2.5 + parent: 2 + - uid: 21177 components: - type: Transform - pos: 397.5,424.5 - parent: 1 - - uid: 19387 + pos: -5.5,3.5 + parent: 2 + - uid: 21178 components: - type: Transform - pos: 396.5,424.5 - parent: 1 - - uid: 19388 + pos: -5.5,4.5 + parent: 2 + - uid: 21179 components: - type: Transform - pos: 395.5,424.5 - parent: 1 - - uid: 19389 + pos: -5.5,1.5 + parent: 2 + - uid: 21180 components: - type: Transform - pos: 394.5,424.5 - parent: 1 - - uid: 19390 + pos: -3.5,-0.5 + parent: 2 + - uid: 21181 components: - type: Transform - pos: 393.5,424.5 - parent: 1 - - uid: 19391 + pos: -3.5,1.5 + parent: 2 + - uid: 21182 components: - type: Transform - pos: 393.5,423.5 - parent: 1 - - uid: 19392 + pos: -3.5,2.5 + parent: 2 + - uid: 21183 components: - type: Transform - pos: 393.5,422.5 - parent: 1 - - uid: 19393 + pos: -3.5,0.5 + parent: 2 + - uid: 21184 components: - type: Transform - pos: 393.5,421.5 - parent: 1 - - uid: 19394 + pos: -3.5,3.5 + parent: 2 + - uid: 21185 components: - type: Transform - pos: 391.5,421.5 - parent: 1 - - uid: 19395 + pos: -3.5,4.5 + parent: 2 + - uid: 21186 components: - type: Transform - pos: 390.5,421.5 - parent: 1 - - uid: 19396 + pos: -1.5,-0.5 + parent: 2 + - uid: 21187 components: - type: Transform - pos: 389.5,421.5 - parent: 1 - - uid: 19397 + pos: -1.5,0.5 + parent: 2 + - uid: 21188 components: - type: Transform - pos: 392.5,421.5 - parent: 1 - - uid: 19398 + pos: -1.5,1.5 + parent: 2 + - uid: 21189 components: - type: Transform - pos: 390.5,420.5 - parent: 1 - - uid: 19399 + pos: -1.5,3.5 + parent: 2 + - uid: 21190 components: - type: Transform - pos: 390.5,418.5 - parent: 1 - - uid: 19400 + pos: -1.5,4.5 + parent: 2 + - uid: 21191 components: - type: Transform - pos: 390.5,419.5 - parent: 1 - - uid: 19401 + pos: -1.5,2.5 + parent: 2 + - uid: 21192 components: - type: Transform - pos: 390.5,417.5 - parent: 1 - - uid: 19402 + pos: 0.5,-0.5 + parent: 2 + - uid: 21193 components: - type: Transform - pos: 390.5,416.5 - parent: 1 - - uid: 19403 + pos: 0.5,1.5 + parent: 2 + - uid: 21194 components: - type: Transform - pos: 390.5,415.5 - parent: 1 - - uid: 19404 + pos: 0.5,2.5 + parent: 2 + - uid: 21195 components: - type: Transform - pos: 390.5,414.5 - parent: 1 - - uid: 19405 + pos: 0.5,3.5 + parent: 2 + - uid: 21196 components: - type: Transform - pos: 391.5,418.5 - parent: 1 - - uid: 19406 + pos: 0.5,4.5 + parent: 2 + - uid: 21197 components: - type: Transform - pos: 392.5,418.5 - parent: 1 - - uid: 20148 + pos: 0.5,0.5 + parent: 2 + - uid: 21198 components: - type: Transform - pos: 343.5,440.5 - parent: 1 - - uid: 20149 + pos: 0.5,8.5 + parent: 2 + - uid: 21199 components: - type: Transform - pos: 341.5,440.5 - parent: 1 - - uid: 20150 + pos: 0.5,9.5 + parent: 2 + - uid: 21200 components: - type: Transform - pos: 340.5,440.5 - parent: 1 - - uid: 20151 + pos: 0.5,11.5 + parent: 2 + - uid: 21201 components: - type: Transform - pos: 339.5,440.5 - parent: 1 - - uid: 20152 + pos: 0.5,12.5 + parent: 2 + - uid: 21202 components: - type: Transform - pos: 342.5,440.5 - parent: 1 - - uid: 20153 + pos: 0.5,13.5 + parent: 2 + - uid: 21203 components: - type: Transform - pos: 338.5,440.5 - parent: 1 - - uid: 20154 + pos: 0.5,10.5 + parent: 2 + - uid: 21204 components: - type: Transform - pos: 341.5,439.5 - parent: 1 - - uid: 20155 + pos: -1.5,13.5 + parent: 2 + - uid: 21205 components: - type: Transform - pos: 330.5,438.5 - parent: 1 - - uid: 20156 + pos: -1.5,12.5 + parent: 2 + - uid: 21206 components: - type: Transform - pos: 332.5,438.5 - parent: 1 - - uid: 20157 + pos: -1.5,11.5 + parent: 2 + - uid: 21207 components: - type: Transform - pos: 331.5,438.5 - parent: 1 - - uid: 20158 + pos: -1.5,9.5 + parent: 2 + - uid: 21208 components: - type: Transform - pos: 332.5,437.5 - parent: 1 - - uid: 20159 + pos: -1.5,8.5 + parent: 2 + - uid: 21209 components: - type: Transform - pos: 332.5,439.5 - parent: 1 - - uid: 20160 + pos: -1.5,10.5 + parent: 2 + - uid: 21210 components: - type: Transform - pos: 332.5,441.5 - parent: 1 - - uid: 20161 + pos: -3.5,8.5 + parent: 2 + - uid: 21211 components: - type: Transform - pos: 332.5,440.5 - parent: 1 - - uid: 20162 + pos: -3.5,10.5 + parent: 2 + - uid: 21212 components: - type: Transform - pos: 333.5,440.5 - parent: 1 - - uid: 20163 + pos: -3.5,11.5 + parent: 2 + - uid: 21213 components: - type: Transform - pos: 334.5,440.5 - parent: 1 - - uid: 20164 + pos: -3.5,9.5 + parent: 2 + - uid: 21214 components: - type: Transform - pos: 335.5,440.5 - parent: 1 - - uid: 20206 + pos: -3.5,13.5 + parent: 2 + - uid: 21215 components: - type: Transform - pos: -1.5,0.5 - parent: 20181 - - uid: 20207 + pos: -3.5,12.5 + parent: 2 + - uid: 21216 components: - type: Transform - pos: 0.5,0.5 - parent: 20181 - - uid: 20208 + pos: -5.5,13.5 + parent: 2 + - uid: 21217 components: - type: Transform - pos: 1.5,0.5 - parent: 20181 - - uid: 20209 + pos: -5.5,12.5 + parent: 2 + - uid: 21218 components: - type: Transform - pos: -0.5,0.5 - parent: 20181 - - uid: 20210 + pos: -5.5,10.5 + parent: 2 + - uid: 21219 components: - type: Transform - pos: 2.5,0.5 - parent: 20181 - - uid: 20211 + pos: -5.5,9.5 + parent: 2 + - uid: 21220 components: - type: Transform - pos: 3.5,0.5 - parent: 20181 - - uid: 20212 + pos: -5.5,8.5 + parent: 2 + - uid: 21221 components: - type: Transform - pos: 1.5,1.5 - parent: 20181 - - uid: 20213 + pos: -5.5,11.5 + parent: 2 + - uid: 21222 components: - type: Transform - pos: 1.5,2.5 - parent: 20181 - - uid: 20214 + pos: -5.5,17.5 + parent: 2 + - uid: 21223 components: - type: Transform - pos: 4.5,4.5 - parent: 20181 - - uid: 20215 + pos: -5.5,19.5 + parent: 2 + - uid: 21224 components: - type: Transform - pos: 2.5,4.5 - parent: 20181 - - uid: 20216 + pos: -5.5,20.5 + parent: 2 + - uid: 21225 components: - type: Transform - pos: 3.5,4.5 - parent: 20181 - - uid: 20217 + pos: -5.5,21.5 + parent: 2 + - uid: 21226 components: - type: Transform - pos: 5.5,-0.5 - parent: 20181 - - uid: 20218 + pos: -5.5,22.5 + parent: 2 + - uid: 21227 components: - type: Transform - pos: 5.5,-2.5 - parent: 20181 - - uid: 20219 + pos: -5.5,18.5 + parent: 2 + - uid: 21228 components: - type: Transform - pos: 5.5,-1.5 - parent: 20181 - - uid: 20220 + pos: -3.5,22.5 + parent: 2 + - uid: 21229 components: - type: Transform - pos: 4.5,-2.5 - parent: 20181 - - uid: 20221 + pos: -3.5,20.5 + parent: 2 + - uid: 21230 components: - type: Transform - pos: 4.5,-3.5 - parent: 20181 - - uid: 20222 + pos: -3.5,19.5 + parent: 2 + - uid: 21231 components: - type: Transform - pos: 3.5,-3.5 - parent: 20181 - - uid: 20223 + pos: -3.5,18.5 + parent: 2 + - uid: 21232 components: - type: Transform - pos: 2.5,-3.5 - parent: 20181 - - uid: 20224 + pos: -3.5,17.5 + parent: 2 + - uid: 21233 components: - type: Transform - pos: 1.5,-3.5 - parent: 20181 - - uid: 20225 + pos: -3.5,21.5 + parent: 2 + - uid: 21234 components: - type: Transform - pos: -0.5,-3.5 - parent: 20181 - - uid: 20226 + pos: -1.5,17.5 + parent: 2 + - uid: 21235 components: - type: Transform - pos: 0.5,-3.5 - parent: 20181 - - uid: 20227 + pos: -1.5,18.5 + parent: 2 + - uid: 21236 components: - type: Transform - pos: -1.5,-0.5 - parent: 20181 - - uid: 20228 + pos: -1.5,19.5 + parent: 2 + - uid: 21237 components: - type: Transform - pos: -1.5,-1.5 - parent: 20181 - - uid: 20229 + pos: -1.5,20.5 + parent: 2 + - uid: 21238 components: - type: Transform - pos: 6.5,-2.5 - parent: 20181 - - uid: 20230 + pos: -1.5,22.5 + parent: 2 + - uid: 21239 components: - type: Transform - pos: 6.5,-3.5 - parent: 20181 - - uid: 20231 + pos: -1.5,21.5 + parent: 2 + - uid: 21240 components: - type: Transform - pos: 7.5,-3.5 - parent: 20181 - - uid: 20232 + pos: 0.5,17.5 + parent: 2 + - uid: 21241 components: - type: Transform - pos: 6.5,-0.5 - parent: 20181 - - uid: 20233 + pos: 0.5,18.5 + parent: 2 + - uid: 21242 components: - type: Transform - pos: 6.5,0.5 - parent: 20181 - - uid: 20234 + pos: 0.5,20.5 + parent: 2 + - uid: 21243 components: - type: Transform - pos: 6.5,1.5 - parent: 20181 - - uid: 20235 + pos: 0.5,21.5 + parent: 2 + - uid: 21244 components: - type: Transform - pos: 7.5,1.5 - parent: 20181 - - uid: 20236 + pos: 0.5,22.5 + parent: 2 + - uid: 21245 components: - type: Transform - pos: 8.5,1.5 - parent: 20181 - - uid: 20237 + pos: 0.5,19.5 + parent: 2 + - uid: 21246 components: - type: Transform - pos: 9.5,1.5 - parent: 20181 - - uid: 20238 + pos: -0.5,6.5 + parent: 2 + - uid: 21303 components: - type: Transform - pos: -1.5,1.5 - parent: 20181 - - uid: 20239 + pos: -9.5,-82.5 + parent: 2 + - uid: 21306 components: - type: Transform - pos: -2.5,1.5 - parent: 20181 - - uid: 20240 + pos: -12.5,7.5 + parent: 2 + - uid: 21308 components: - type: Transform - pos: -2.5,2.5 - parent: 20181 - - uid: 20241 + pos: -13.5,6.5 + parent: 2 + - uid: 21309 components: - type: Transform - pos: -2.5,3.5 - parent: 20181 - - uid: 20242 + pos: -12.5,6.5 + parent: 2 + - uid: 21311 components: - type: Transform - pos: -3.5,3.5 - parent: 20181 - - uid: 20243 + pos: -14.5,6.5 + parent: 2 + - uid: 21312 components: - type: Transform - pos: -3.5,2.5 - parent: 20181 - - uid: 20244 + pos: -15.5,6.5 + parent: 2 + - uid: 21315 components: - type: Transform - pos: -3.5,1.5 - parent: 20181 - - uid: 20245 + pos: -11.5,-80.5 + parent: 2 + - uid: 21318 components: - type: Transform - pos: -3.5,0.5 - parent: 20181 - - uid: 20246 + pos: -10.5,-80.5 + parent: 2 + - uid: 21323 components: - type: Transform - pos: -2.5,0.5 - parent: 20181 - - uid: 20558 + pos: -12.5,-80.5 + parent: 2 + - uid: 21359 components: - type: Transform - pos: 2.5,3.5 - parent: 20527 - - uid: 20559 + pos: -15.5,5.5 + parent: 2 + - uid: 21360 components: - type: Transform - pos: 0.5,3.5 - parent: 20527 - - uid: 20560 + pos: -15.5,3.5 + parent: 2 + - uid: 21361 components: - type: Transform - pos: -0.5,3.5 - parent: 20527 - - uid: 20561 + pos: -15.5,2.5 + parent: 2 + - uid: 21362 components: - type: Transform - pos: -1.5,3.5 - parent: 20527 - - uid: 20562 + pos: -15.5,4.5 + parent: 2 + - uid: 21553 components: - type: Transform - pos: 1.5,3.5 - parent: 20527 - - uid: 20563 + pos: -27.5,-56.5 + parent: 2 + - uid: 21596 components: - type: Transform - pos: -1.5,2.5 - parent: 20527 - - uid: 20564 + pos: -15.5,-59.5 + parent: 2 + - uid: 21676 components: - type: Transform - pos: -1.5,4.5 - parent: 20527 - - uid: 20565 + pos: -104.5,-54.5 + parent: 2 + - uid: 21677 components: - type: Transform - pos: -0.5,4.5 - parent: 20527 - - uid: 20566 + pos: -104.5,-46.5 + parent: 2 + - uid: 21678 components: - type: Transform - pos: -0.5,5.5 - parent: 20527 - - uid: 20567 + pos: -104.5,-48.5 + parent: 2 + - uid: 21679 components: - type: Transform - pos: -0.5,6.5 - parent: 20527 - - uid: 20568 + pos: -104.5,-49.5 + parent: 2 + - uid: 21680 components: - type: Transform - pos: -0.5,7.5 - parent: 20527 - - uid: 20569 + pos: -104.5,-50.5 + parent: 2 + - uid: 21681 components: - type: Transform - pos: 6.5,6.5 - parent: 20527 - - uid: 20570 + pos: -104.5,-51.5 + parent: 2 + - uid: 21682 components: - type: Transform - pos: 6.5,4.5 - parent: 20527 - - uid: 20571 + pos: -104.5,-52.5 + parent: 2 + - uid: 21683 components: - type: Transform - pos: 6.5,3.5 - parent: 20527 - - uid: 20572 + pos: -104.5,-47.5 + parent: 2 + - uid: 21684 components: - type: Transform - pos: 6.5,5.5 - parent: 20527 - - uid: 20573 + pos: -104.5,-53.5 + parent: 2 + - uid: 21685 components: - type: Transform - pos: 7.5,3.5 - parent: 20527 - - uid: 20574 + pos: -104.5,-56.5 + parent: 2 + - uid: 21686 components: - type: Transform - pos: 8.5,3.5 - parent: 20527 - - uid: 20575 + pos: -104.5,-55.5 + parent: 2 + - uid: 21687 components: - type: Transform - pos: 5.5,6.5 - parent: 20527 - - uid: 20576 + pos: -103.5,-56.5 + parent: 2 + - uid: 21688 components: - type: Transform - pos: 4.5,6.5 - parent: 20527 - - uid: 20577 + pos: -102.5,-56.5 + parent: 2 + - uid: 21689 components: - type: Transform - pos: 8.5,2.5 - parent: 20527 - - uid: 20578 + pos: -100.5,-56.5 + parent: 2 + - uid: 21690 components: - type: Transform - pos: 8.5,1.5 - parent: 20527 - - uid: 20579 + pos: -99.5,-56.5 + parent: 2 + - uid: 21691 components: - type: Transform - pos: 2.5,0.5 - parent: 20527 - - uid: 20580 + pos: -98.5,-56.5 + parent: 2 + - uid: 21692 components: - type: Transform - pos: 3.5,0.5 - parent: 20527 - - uid: 20581 + pos: -97.5,-56.5 + parent: 2 + - uid: 21693 components: - type: Transform - pos: 4.5,0.5 - parent: 20527 - - uid: 20582 + pos: -96.5,-56.5 + parent: 2 + - uid: 21694 components: - type: Transform - pos: 4.5,1.5 - parent: 20527 - - uid: 20583 + pos: -95.5,-56.5 + parent: 2 + - uid: 21695 components: - type: Transform - pos: 4.5,2.5 - parent: 20527 - - uid: 20584 + pos: -101.5,-56.5 + parent: 2 + - uid: 21696 components: - type: Transform - pos: 0.5,2.5 - parent: 20527 - - uid: 20585 + pos: -94.5,-56.5 + parent: 2 + - uid: 21697 components: - type: Transform - pos: 0.5,1.5 - parent: 20527 - - uid: 20586 + pos: -92.5,-56.5 + parent: 2 + - uid: 21698 components: - type: Transform - pos: 0.5,0.5 - parent: 20527 - - uid: 20897 + pos: -93.5,-56.5 + parent: 2 + - uid: 21699 components: - type: Transform - pos: 357.5,433.5 - parent: 1 - - uid: 21152 + pos: -90.5,-56.5 + parent: 2 + - uid: 21700 components: - type: Transform - pos: 340.5,450.5 - parent: 1 - - uid: 21153 + pos: -89.5,-56.5 + parent: 2 + - uid: 21701 components: - type: Transform - pos: 340.5,449.5 - parent: 1 - - uid: 21154 + pos: -88.5,-56.5 + parent: 2 + - uid: 21702 components: - type: Transform - pos: 340.5,448.5 - parent: 1 - - uid: 21155 + pos: -87.5,-56.5 + parent: 2 + - uid: 21703 components: - type: Transform - pos: 340.5,446.5 - parent: 1 - - uid: 21185 + pos: -86.5,-56.5 + parent: 2 + - uid: 21704 components: - type: Transform - pos: 340.5,445.5 - parent: 1 - - uid: 21209 + pos: -85.5,-56.5 + parent: 2 + - uid: 21705 components: - type: Transform - pos: 340.5,447.5 - parent: 1 - - uid: 21212 + pos: -84.5,-56.5 + parent: 2 + - uid: 21706 components: - type: Transform - pos: 339.5,447.5 - parent: 1 - - uid: 21300 + pos: -83.5,-56.5 + parent: 2 + - uid: 21707 components: - type: Transform - pos: 0.5,24.5 - parent: 5072 - - uid: 21302 + pos: -82.5,-56.5 + parent: 2 + - uid: 21708 components: - type: Transform - pos: 3.5,22.5 - parent: 5072 - - uid: 21310 + pos: -81.5,-56.5 + parent: 2 + - uid: 21709 components: - type: Transform - pos: 0.5,25.5 - parent: 5072 - - uid: 21328 + pos: -80.5,-56.5 + parent: 2 + - uid: 21710 components: - type: Transform - pos: 3.5,24.5 - parent: 5072 - - uid: 21332 + pos: -79.5,-56.5 + parent: 2 + - uid: 21711 components: - type: Transform - pos: 2.5,25.5 - parent: 5072 - - uid: 21345 + pos: -91.5,-56.5 + parent: 2 + - uid: 21712 components: - type: Transform - pos: 3.5,25.5 - parent: 5072 - - uid: 21351 + pos: -77.5,-56.5 + parent: 2 + - uid: 21713 components: - type: Transform - pos: 0.5,28.5 - parent: 5072 - - uid: 21360 + pos: -78.5,-56.5 + parent: 2 + - uid: 22219 components: - type: Transform - pos: 4.5,25.5 - parent: 5072 - - uid: 21363 + pos: -54.5,-80.5 + parent: 2 + - uid: 22220 components: - type: Transform - pos: 3.5,26.5 - parent: 5072 - - uid: 21370 + pos: -55.5,-80.5 + parent: 2 + - uid: 22405 components: - type: Transform - pos: 1.5,28.5 - parent: 5072 - - uid: 21387 + pos: -120.5,-59.5 + parent: 2 + - uid: 22481 components: - type: Transform - pos: 6.5,24.5 - parent: 5072 - - uid: 21390 + pos: -143.5,8.5 + parent: 2 + - uid: 22632 components: - type: Transform - pos: 5.5,25.5 - parent: 5072 - - uid: 21396 + pos: -143.5,10.5 + parent: 2 + - uid: 22668 components: - type: Transform - pos: 3.5,27.5 - parent: 5072 - - uid: 21399 + pos: -149.5,19.5 + parent: 2 + - uid: 22813 components: - type: Transform - pos: 2.5,28.5 - parent: 5072 - - uid: 21402 + pos: -29.5,-57.5 + parent: 2 + - uid: 22901 components: - type: Transform - pos: 0.5,30.5 - parent: 5072 - - uid: 21405 + pos: -149.5,17.5 + parent: 2 + - uid: 23129 components: - type: Transform - pos: 6.5,19.5 - parent: 5072 - - uid: 21408 + pos: -48.5,-66.5 + parent: 2 + - uid: 23131 components: - type: Transform - pos: 7.5,20.5 - parent: 5072 - - uid: 21413 + pos: -48.5,-67.5 + parent: 2 + - uid: 23132 components: - type: Transform - pos: 9.5,22.5 - parent: 5072 - - uid: 21420 + pos: -48.5,-68.5 + parent: 2 + - uid: 23133 components: - type: Transform - pos: 7.5,24.5 - parent: 5072 - - uid: 21428 + pos: -48.5,-70.5 + parent: 2 + - uid: 23134 components: - type: Transform - pos: 3.5,28.5 - parent: 5072 - - uid: 21432 + pos: -48.5,-71.5 + parent: 2 + - uid: 23135 components: - type: Transform - pos: 1.5,30.5 - parent: 5072 - - uid: 21433 + pos: -48.5,-69.5 + parent: 2 + - uid: 23136 components: - type: Transform - pos: 0.5,31.5 - parent: 5072 - - uid: 21435 + pos: -49.5,-71.5 + parent: 2 + - uid: 23137 components: - type: Transform - pos: 6.5,18.5 - parent: 5072 - - uid: 21443 + pos: -50.5,-71.5 + parent: 2 + - uid: 23138 components: - type: Transform - pos: 8.5,20.5 - parent: 5072 - - uid: 21445 + pos: -51.5,-71.5 + parent: 2 + - uid: 23139 components: - type: Transform - pos: 9.5,21.5 - parent: 5072 - - uid: 21451 + pos: -52.5,-71.5 + parent: 2 + - uid: 23140 components: - type: Transform - pos: 8.5,24.5 - parent: 5072 - - uid: 21458 + pos: -52.5,-70.5 + parent: 2 + - uid: 23141 components: - type: Transform - pos: 4.5,28.5 - parent: 5072 - - uid: 21460 + pos: -52.5,-69.5 + parent: 2 + - uid: 23147 components: - type: Transform - pos: 3.5,29.5 - parent: 5072 - - uid: 21462 + pos: -141.5,19.5 + parent: 2 + - uid: 23148 components: - type: Transform - pos: 2.5,30.5 - parent: 5072 - - uid: 21465 + pos: -141.5,16.5 + parent: 2 + - uid: 23153 components: - type: Transform - pos: 6.5,17.5 - parent: 5072 - - uid: 21479 + pos: -141.5,8.5 + parent: 2 + - uid: 23154 components: - type: Transform - pos: 9.5,20.5 - parent: 5072 - - uid: 21491 + pos: -141.5,15.5 + parent: 2 + - uid: 23156 components: - type: Transform - pos: 8.5,25.5 - parent: 5072 - - uid: 21497 + pos: -141.5,10.5 + parent: 2 + - uid: 23157 components: - type: Transform - pos: 5.5,28.5 - parent: 5072 - - uid: 21502 + pos: -141.5,17.5 + parent: 2 + - uid: 23161 components: - type: Transform - pos: 3.5,30.5 - parent: 5072 - - uid: 21508 + pos: -137.5,-14.5 + parent: 2 + - uid: 23186 components: - type: Transform - pos: 7.5,17.5 - parent: 5072 - - uid: 21514 + pos: -151.5,19.5 + parent: 2 + - uid: 23363 components: - type: Transform - pos: 9.5,19.5 - parent: 5072 - - uid: 21517 + pos: -76.5,-37.5 + parent: 2 + - uid: 23412 components: - type: Transform - pos: 10.5,20.5 - parent: 5072 - - uid: 21522 + pos: -108.5,-45.5 + parent: 2 + - uid: 23842 components: - type: Transform - pos: 12.5,22.5 - parent: 5072 - - uid: 21529 + pos: -115.5,-88.5 + parent: 2 + - uid: 23932 components: - type: Transform - pos: 10.5,24.5 - parent: 5072 - - uid: 21532 + pos: -72.5,-26.5 + parent: 2 + - uid: 23935 components: - type: Transform - pos: 9.5,25.5 - parent: 5072 - - uid: 21538 + pos: -72.5,-30.5 + parent: 2 + - uid: 24006 components: - type: Transform - pos: 8.5,26.5 - parent: 5072 - - uid: 21540 + pos: -78.5,-24.5 + parent: 2 + - uid: 24019 components: - type: Transform - pos: 6.5,28.5 - parent: 5072 - - uid: 21545 + pos: -76.5,-35.5 + parent: 2 + - uid: 24194 components: - type: Transform - pos: 3.5,31.5 - parent: 5072 - - uid: 21551 + pos: -15.5,-60.5 + parent: 2 + - uid: 24202 components: - type: Transform - pos: 8.5,17.5 - parent: 5072 - - uid: 21552 + pos: -17.5,-59.5 + parent: 2 + - uid: 24205 components: - type: Transform - pos: 9.5,18.5 - parent: 5072 - - uid: 21559 + pos: -15.5,-62.5 + parent: 2 + - uid: 24209 components: - type: Transform - pos: 12.5,21.5 - parent: 5072 - - uid: 21568 + pos: -18.5,-59.5 + parent: 2 + - uid: 24331 components: - type: Transform - pos: 11.5,24.5 - parent: 5072 - - uid: 21571 + pos: -72.5,-33.5 + parent: 2 + - uid: 24437 components: - type: Transform - pos: 10.5,25.5 - parent: 5072 - - uid: 21575 + pos: -147.5,18.5 + parent: 2 + - uid: 24457 components: - type: Transform - pos: 8.5,27.5 - parent: 5072 - - uid: 21578 + pos: -75.5,-35.5 + parent: 2 + - uid: 24531 components: - type: Transform - pos: 6.5,29.5 - parent: 5072 - - uid: 21585 + pos: -19.5,-59.5 + parent: 2 + - uid: 24581 components: - type: Transform - pos: 9.5,17.5 - parent: 5072 - - uid: 21591 + pos: -155.5,18.5 + parent: 2 + - uid: 24617 components: - type: Transform - pos: 12.5,20.5 - parent: 5072 - - uid: 21598 + pos: -153.5,11.5 + parent: 2 + - uid: 24638 components: - type: Transform - pos: 12.5,24.5 - parent: 5072 - - uid: 21605 + pos: -19.5,-8.5 + parent: 2 + - uid: 24844 components: - type: Transform - pos: 6.5,30.5 - parent: 5072 - - uid: 21608 + pos: -122.5,-89.5 + parent: 2 + - uid: 24846 components: - type: Transform - pos: 9.5,16.5 - parent: 5072 - - uid: 21618 + pos: -119.5,-65.5 + parent: 2 + - uid: 24852 components: - type: Transform - pos: 12.5,25.5 - parent: 5072 - - uid: 21623 + pos: -123.5,-89.5 + parent: 2 + - uid: 24882 components: - type: Transform - pos: 9.5,28.5 - parent: 5072 - - uid: 21624 + pos: -118.5,-65.5 + parent: 2 + - uid: 24885 components: - type: Transform - pos: 7.5,30.5 - parent: 5072 - - uid: 21625 + pos: -117.5,-65.5 + parent: 2 + - uid: 24900 components: - type: Transform - pos: 6.5,31.5 - parent: 5072 - - uid: 21635 + pos: -120.5,-64.5 + parent: 2 + - uid: 24960 components: - type: Transform - pos: 12.5,26.5 - parent: 5072 - - uid: 21639 + pos: -120.5,-63.5 + parent: 2 + - uid: 24964 components: - type: Transform - pos: 9.5,29.5 - parent: 5072 - - uid: 21641 + pos: -120.5,-60.5 + parent: 2 + - uid: 24965 components: - type: Transform - pos: 8.5,30.5 - parent: 5072 - - uid: 21657 + pos: -120.5,-72.5 + parent: 2 + - uid: 24966 components: - type: Transform - pos: 9.5,30.5 - parent: 5072 - - uid: 21731 + pos: -120.5,-62.5 + parent: 2 + - uid: 24967 components: - type: Transform - pos: -4.5,26.5 - parent: 5072 - - uid: 21733 + pos: -120.5,-70.5 + parent: 2 + - uid: 24968 components: - type: Transform - pos: -6.5,28.5 - parent: 5072 - - uid: 21738 + pos: -120.5,-71.5 + parent: 2 + - uid: 24969 components: - type: Transform - pos: -4.5,27.5 - parent: 5072 - - uid: 21739 + pos: -124.5,-72.5 + parent: 2 + - uid: 24971 components: - type: Transform - pos: -5.5,28.5 - parent: 5072 - - uid: 21747 + pos: -125.5,-71.5 + parent: 2 + - uid: 24972 components: - type: Transform - pos: -2.5,26.5 - parent: 5072 - - uid: 21750 + pos: -125.5,-70.5 + parent: 2 + - uid: 24973 components: - type: Transform - pos: -4.5,28.5 - parent: 5072 - - uid: 21756 + pos: -125.5,-73.5 + parent: 2 + - uid: 24974 components: - type: Transform - pos: -2.5,25.5 - parent: 5072 - - uid: 21760 + pos: -125.5,-74.5 + parent: 2 + - uid: 24975 components: - type: Transform - pos: -2.5,27.5 - parent: 5072 - - uid: 21766 + pos: -125.5,-75.5 + parent: 2 + - uid: 24976 components: - type: Transform - pos: -2.5,24.5 - parent: 5072 - - uid: 21770 + pos: -125.5,-76.5 + parent: 2 + - uid: 24977 components: - type: Transform - pos: -1.5,25.5 - parent: 5072 - - uid: 21776 + pos: -125.5,-77.5 + parent: 2 + - uid: 24978 components: - type: Transform - pos: -2.5,28.5 - parent: 5072 - - uid: 21782 + pos: -125.5,-78.5 + parent: 2 + - uid: 24979 components: - type: Transform - pos: -2.5,23.5 - parent: 5072 - - uid: 21787 + pos: -125.5,-79.5 + parent: 2 + - uid: 24980 components: - type: Transform - pos: -0.5,25.5 - parent: 5072 - - uid: 21792 + pos: -125.5,-80.5 + parent: 2 + - uid: 24981 components: - type: Transform - pos: -2.5,29.5 - parent: 5072 - - uid: 21795 + pos: -125.5,-81.5 + parent: 2 + - uid: 24982 components: - type: Transform - pos: -1.5,23.5 - parent: 5072 - - uid: 21801 + pos: -125.5,-82.5 + parent: 2 + - uid: 24983 components: - type: Transform - pos: -2.5,30.5 - parent: 5072 - - uid: 21804 + pos: -125.5,-83.5 + parent: 2 + - uid: 24984 components: - type: Transform - pos: -1.5,30.5 - parent: 5072 - - uid: 21806 + pos: -125.5,-84.5 + parent: 2 + - uid: 24985 components: - type: Transform - pos: -0.5,30.5 - parent: 5072 - - uid: 21874 + pos: -125.5,-85.5 + parent: 2 + - uid: 24986 components: - type: Transform - pos: 16.5,19.5 - parent: 5072 - - uid: 21878 + pos: -125.5,-86.5 + parent: 2 + - uid: 24987 components: - type: Transform - pos: 16.5,20.5 - parent: 5072 - - uid: 21882 + pos: -125.5,-87.5 + parent: 2 + - uid: 24989 components: - type: Transform - pos: 16.5,21.5 - parent: 5072 - - uid: 21885 + pos: -124.5,-88.5 + parent: 2 + - uid: 24990 components: - type: Transform - pos: 16.5,22.5 - parent: 5072 - - uid: 21962 + pos: -123.5,-88.5 + parent: 2 + - uid: 24991 components: - type: Transform - pos: 338.5,447.5 - parent: 1 - - uid: 22019 + pos: -121.5,-89.5 + parent: 2 + - uid: 24992 components: - type: Transform - pos: 337.5,447.5 - parent: 1 - - uid: 22038 + pos: -117.5,-89.5 + parent: 2 + - uid: 24993 components: - type: Transform - pos: 336.5,447.5 - parent: 1 - - uid: 22048 + pos: -119.5,-89.5 + parent: 2 + - uid: 24994 components: - type: Transform - pos: 334.5,447.5 - parent: 1 - - uid: 22049 + pos: -118.5,-89.5 + parent: 2 + - uid: 24995 components: - type: Transform - pos: 335.5,447.5 - parent: 1 - - uid: 22091 + pos: -117.5,-88.5 + parent: 2 + - uid: 24996 components: - type: Transform - pos: 336.5,448.5 - parent: 1 - - uid: 22092 + pos: -120.5,-89.5 + parent: 2 + - uid: 24997 components: - type: Transform - pos: 336.5,449.5 - parent: 1 - - uid: 22093 + pos: -116.5,-88.5 + parent: 2 + - uid: 24999 components: - type: Transform - pos: 336.5,450.5 - parent: 1 - - uid: 22094 + pos: -115.5,-87.5 + parent: 2 + - uid: 25000 components: - type: Transform - pos: 336.5,451.5 - parent: 1 - - uid: 22095 + pos: -115.5,-86.5 + parent: 2 + - uid: 25001 components: - type: Transform - pos: 336.5,452.5 - parent: 1 - - uid: 22096 + pos: -115.5,-85.5 + parent: 2 + - uid: 25002 components: - type: Transform - pos: 337.5,452.5 - parent: 1 - - uid: 22097 + pos: -115.5,-83.5 + parent: 2 + - uid: 25003 components: - type: Transform - pos: 335.5,452.5 - parent: 1 - - uid: 22136 + pos: -115.5,-82.5 + parent: 2 + - uid: 25004 components: - type: Transform - pos: 398.5,365.5 - parent: 1 - - uid: 22137 + pos: -115.5,-81.5 + parent: 2 + - uid: 25005 components: - type: Transform - pos: 399.5,365.5 - parent: 1 - - uid: 22138 + pos: -115.5,-84.5 + parent: 2 + - uid: 25006 components: - type: Transform - pos: 400.5,365.5 - parent: 1 - - uid: 22139 + pos: -115.5,-80.5 + parent: 2 + - uid: 25007 components: - type: Transform - pos: 400.5,364.5 - parent: 1 - - uid: 22163 + pos: -115.5,-78.5 + parent: 2 + - uid: 25008 components: - type: Transform - pos: 338.5,452.5 - parent: 1 - - uid: 22164 + pos: -115.5,-79.5 + parent: 2 + - uid: 25009 components: - type: Transform - pos: 336.5,446.5 - parent: 1 - - uid: 22187 + pos: -115.5,-77.5 + parent: 2 + - uid: 25010 components: - type: Transform - pos: 336.5,445.5 - parent: 1 -- proto: CableApcStack - entities: - - uid: 9092 + pos: -115.5,-76.5 + parent: 2 + - uid: 25011 components: - type: Transform - pos: 367.5,391.5 - parent: 1 - - uid: 16111 + pos: -115.5,-75.5 + parent: 2 + - uid: 25012 components: - type: Transform - pos: 403.5,367.5 - parent: 1 - - uid: 16112 + pos: -115.5,-74.5 + parent: 2 + - uid: 25013 components: - type: Transform - pos: 403.5,367.5 - parent: 1 - - uid: 18328 + pos: -115.5,-71.5 + parent: 2 + - uid: 25014 components: - type: Transform - pos: 422.5,418.5 - parent: 1 - - uid: 20247 + pos: -115.5,-73.5 + parent: 2 + - uid: 25015 components: - type: Transform - pos: 6.5,-2.5 - parent: 20181 - - uid: 21966 + pos: -115.5,-70.5 + parent: 2 + - uid: 25017 components: - type: Transform - pos: 308.5,416.5 - parent: 1 - - uid: 21968 + pos: -116.5,-72.5 + parent: 2 + - uid: 25018 components: - type: Transform - pos: 310.5,421.5 - parent: 1 -- proto: Cablecuffs - entities: - - uid: 6111 + pos: -120.5,-73.5 + parent: 2 + - uid: 25019 components: - type: Transform - pos: 419.5,392.5 - parent: 1 -- proto: CableHV - entities: - - uid: 212 + pos: -120.5,-69.5 + parent: 2 + - uid: 25020 components: - type: Transform - pos: 312.5,438.5 - parent: 1 - - uid: 213 + pos: -120.5,-61.5 + parent: 2 + - uid: 25021 components: - type: Transform - pos: 311.5,438.5 - parent: 1 - - uid: 2320 + pos: -114.5,-73.5 + parent: 2 + - uid: 25022 components: - type: Transform - pos: 332.5,373.5 - parent: 1 - - uid: 3200 + pos: -114.5,-72.5 + parent: 2 + - uid: 25023 components: - type: Transform - pos: 323.5,423.5 - parent: 1 - - uid: 3750 + pos: -114.5,-71.5 + parent: 2 + - uid: 25024 components: - type: Transform - pos: 304.5,420.5 - parent: 1 - - uid: 4120 + pos: -126.5,-73.5 + parent: 2 + - uid: 25025 components: - type: Transform - pos: 305.5,420.5 - parent: 1 - - uid: 5471 + pos: -126.5,-72.5 + parent: 2 + - uid: 25026 components: - type: Transform - pos: 322.5,423.5 - parent: 1 - - uid: 5472 + pos: -126.5,-71.5 + parent: 2 + - uid: 25027 components: - type: Transform - pos: 299.5,391.5 - parent: 1 - - uid: 6368 + pos: -124.5,-73.5 + parent: 2 + - uid: 25028 components: - type: Transform - pos: 298.5,390.5 - parent: 1 - - uid: 6369 + pos: -124.5,-71.5 + parent: 2 + - uid: 25029 components: - type: Transform - pos: 300.5,390.5 - parent: 1 - - uid: 6370 + pos: -116.5,-73.5 + parent: 2 + - uid: 25030 components: - type: Transform - pos: 325.5,428.5 - parent: 1 - - uid: 6428 + pos: -116.5,-71.5 + parent: 2 + - uid: 25036 components: - type: Transform - pos: 317.5,439.5 - parent: 1 - - uid: 6429 + pos: -120.5,-65.5 + parent: 2 + - uid: 25037 components: - type: Transform - pos: 314.5,445.5 - parent: 1 - - uid: 6430 + pos: -120.5,-58.5 + parent: 2 + - uid: 25038 components: - type: Transform - pos: 314.5,444.5 - parent: 1 - - uid: 6431 + pos: -120.5,-57.5 + parent: 2 + - uid: 25039 components: - type: Transform - pos: 315.5,443.5 - parent: 1 - - uid: 6432 + pos: -109.5,-57.5 + parent: 2 + - uid: 25040 components: - type: Transform - pos: 317.5,443.5 - parent: 1 - - uid: 6433 + pos: -110.5,-57.5 + parent: 2 + - uid: 25041 components: - type: Transform - pos: 318.5,443.5 - parent: 1 - - uid: 6434 + pos: -108.5,-57.5 + parent: 2 + - uid: 25042 components: - type: Transform - pos: 316.5,443.5 - parent: 1 - - uid: 6435 + pos: -107.5,-57.5 + parent: 2 + - uid: 25043 components: - type: Transform - pos: 315.5,441.5 - parent: 1 - - uid: 6436 + pos: -105.5,-57.5 + parent: 2 + - uid: 25044 components: - type: Transform - pos: 316.5,441.5 - parent: 1 - - uid: 6437 + pos: -104.5,-57.5 + parent: 2 + - uid: 25045 components: - type: Transform - pos: 317.5,441.5 - parent: 1 - - uid: 6438 + pos: -106.5,-57.5 + parent: 2 + - uid: 25046 components: - type: Transform - pos: 318.5,441.5 - parent: 1 - - uid: 6439 + pos: -119.5,-57.5 + parent: 2 + - uid: 25047 components: - type: Transform - pos: 315.5,442.5 - parent: 1 - - uid: 6440 + pos: -118.5,-57.5 + parent: 2 + - uid: 25048 components: - type: Transform - pos: 317.5,428.5 - parent: 1 - - uid: 6441 + pos: -116.5,-57.5 + parent: 2 + - uid: 25049 components: - type: Transform - pos: 310.5,443.5 - parent: 1 - - uid: 6442 + pos: -115.5,-57.5 + parent: 2 + - uid: 25050 components: - type: Transform - pos: 312.5,443.5 - parent: 1 - - uid: 6443 + pos: -114.5,-57.5 + parent: 2 + - uid: 25051 components: - type: Transform - pos: 313.5,443.5 - parent: 1 - - uid: 6444 + pos: -113.5,-57.5 + parent: 2 + - uid: 25052 components: - type: Transform - pos: 311.5,443.5 - parent: 1 - - uid: 6445 + pos: -112.5,-57.5 + parent: 2 + - uid: 25053 components: - type: Transform - pos: 310.5,441.5 - parent: 1 - - uid: 6446 + pos: -111.5,-57.5 + parent: 2 + - uid: 25054 components: - type: Transform - pos: 311.5,441.5 - parent: 1 - - uid: 6447 + pos: -117.5,-57.5 + parent: 2 + - uid: 25092 components: - type: Transform - pos: 312.5,441.5 - parent: 1 - - uid: 6448 + pos: -120.5,-74.5 + parent: 2 + - uid: 25093 components: - type: Transform - pos: 313.5,441.5 - parent: 1 - - uid: 6449 + pos: -120.5,-83.5 + parent: 2 + - uid: 25094 components: - type: Transform - pos: 313.5,442.5 - parent: 1 - - uid: 6450 + pos: -120.5,-85.5 + parent: 2 + - uid: 25095 components: - type: Transform - pos: 318.5,439.5 - parent: 1 - - uid: 6451 + pos: -120.5,-75.5 + parent: 2 + - uid: 25096 components: - type: Transform - pos: 319.5,439.5 - parent: 1 - - uid: 6452 + pos: -120.5,-76.5 + parent: 2 + - uid: 25097 components: - type: Transform - pos: 317.5,437.5 - parent: 1 - - uid: 6453 + pos: -120.5,-79.5 + parent: 2 + - uid: 25098 components: - type: Transform - pos: 319.5,437.5 - parent: 1 - - uid: 6454 + pos: -120.5,-78.5 + parent: 2 + - uid: 25099 components: - type: Transform - pos: 318.5,437.5 - parent: 1 - - uid: 6455 + pos: -120.5,-80.5 + parent: 2 + - uid: 25100 components: - type: Transform - pos: 317.5,438.5 - parent: 1 - - uid: 6456 + pos: -120.5,-81.5 + parent: 2 + - uid: 25101 components: - type: Transform - pos: 316.5,438.5 - parent: 1 - - uid: 6457 + pos: -120.5,-82.5 + parent: 2 + - uid: 25102 components: - type: Transform - pos: 315.5,438.5 - parent: 1 - - uid: 6461 + pos: -120.5,-77.5 + parent: 2 + - uid: 25103 components: - type: Transform - pos: 311.5,439.5 - parent: 1 - - uid: 6462 + pos: -120.5,-84.5 + parent: 2 + - uid: 25104 components: - type: Transform - pos: 310.5,439.5 - parent: 1 - - uid: 6465 + pos: -121.5,-85.5 + parent: 2 + - uid: 25105 components: - type: Transform - pos: 311.5,437.5 - parent: 1 - - uid: 6466 + pos: -121.5,-86.5 + parent: 2 + - uid: 25107 components: - type: Transform - pos: 310.5,437.5 - parent: 1 - - uid: 6467 + pos: -121.5,-87.5 + parent: 2 + - uid: 25108 components: - type: Transform - pos: 319.5,428.5 - parent: 1 - - uid: 6468 + pos: -120.5,-87.5 + parent: 2 + - uid: 25109 components: - type: Transform - pos: 315.5,435.5 - parent: 1 - - uid: 6469 + pos: -119.5,-87.5 + parent: 2 + - uid: 25176 components: - type: Transform - pos: 317.5,435.5 - parent: 1 - - uid: 6470 + pos: -120.5,-67.5 + parent: 2 + - uid: 25178 components: - type: Transform - pos: 318.5,435.5 - parent: 1 - - uid: 6471 + pos: -117.5,-66.5 + parent: 2 + - uid: 25179 components: - type: Transform - pos: 316.5,435.5 - parent: 1 - - uid: 6472 + pos: -118.5,-67.5 + parent: 2 + - uid: 25180 components: - type: Transform - pos: 315.5,433.5 - parent: 1 - - uid: 6473 + pos: -117.5,-67.5 + parent: 2 + - uid: 25184 components: - type: Transform - pos: 316.5,433.5 - parent: 1 - - uid: 6474 + pos: -119.5,-67.5 + parent: 2 + - uid: 25185 components: - type: Transform - pos: 317.5,433.5 - parent: 1 - - uid: 6475 + pos: -120.5,-68.5 + parent: 2 + - uid: 25281 components: - type: Transform - pos: 318.5,433.5 - parent: 1 - - uid: 6476 + pos: -125.5,-72.5 + parent: 2 + - uid: 25282 components: - type: Transform - pos: 313.5,433.5 - parent: 1 - - uid: 6477 + pos: -115.5,-72.5 + parent: 2 + - uid: 25379 components: - type: Transform - pos: 312.5,433.5 - parent: 1 - - uid: 6478 + pos: -121.5,-72.5 + parent: 2 + - uid: 25380 components: - type: Transform - pos: 311.5,433.5 - parent: 1 - - uid: 6479 + pos: -122.5,-72.5 + parent: 2 + - uid: 25381 components: - type: Transform - pos: 310.5,433.5 - parent: 1 - - uid: 6480 + pos: -123.5,-72.5 + parent: 2 + - uid: 25382 components: - type: Transform - pos: 310.5,435.5 - parent: 1 - - uid: 6481 + pos: -119.5,-72.5 + parent: 2 + - uid: 25383 components: - type: Transform - pos: 312.5,435.5 - parent: 1 - - uid: 6482 + pos: -118.5,-72.5 + parent: 2 + - uid: 25384 components: - type: Transform - pos: 313.5,435.5 - parent: 1 - - uid: 6483 + pos: -117.5,-72.5 + parent: 2 + - uid: 25433 components: - type: Transform - pos: 311.5,435.5 - parent: 1 - - uid: 6484 + pos: -78.5,-28.5 + parent: 2 + - uid: 25443 components: - type: Transform - pos: 318.5,428.5 - parent: 1 - - uid: 6485 + pos: -78.5,-27.5 + parent: 2 + - uid: 25719 components: - type: Transform - pos: 316.5,428.5 - parent: 1 - - uid: 6486 + pos: -9.5,-72.5 + parent: 2 + - uid: 25801 components: - type: Transform - pos: 315.5,428.5 - parent: 1 - - uid: 6487 + pos: -15.5,-71.5 + parent: 2 + - uid: 25957 components: - type: Transform - pos: 314.5,428.5 - parent: 1 - - uid: 6488 + pos: -153.5,17.5 + parent: 2 + - uid: 25958 components: - type: Transform - pos: 314.5,429.5 - parent: 1 - - uid: 6489 + pos: -155.5,17.5 + parent: 2 + - uid: 25959 components: - type: Transform - pos: 314.5,430.5 - parent: 1 - - uid: 6526 + pos: -153.5,15.5 + parent: 2 + - uid: 25960 components: - type: Transform - pos: 309.5,439.5 - parent: 1 - - uid: 6529 + pos: -155.5,19.5 + parent: 2 + - uid: 25961 components: - type: Transform - pos: 309.5,437.5 - parent: 1 - - uid: 6534 + pos: -145.5,11.5 + parent: 2 + - uid: 25962 components: - type: Transform - pos: 313.5,438.5 - parent: 1 - - uid: 7043 + pos: -155.5,11.5 + parent: 2 + - uid: 25963 components: - type: Transform - pos: 400.5,367.5 - parent: 1 - - uid: 7479 + pos: -155.5,16.5 + parent: 2 + - uid: 25964 components: - type: Transform - pos: 325.5,427.5 - parent: 1 - - uid: 7515 + pos: -149.5,11.5 + parent: 2 + - uid: 25965 + components: + - type: Transform + pos: -155.5,15.5 + parent: 2 + - uid: 25966 components: - type: Transform - pos: 324.5,427.5 - parent: 1 - - uid: 7644 + pos: -147.5,11.5 + parent: 2 + - uid: 25967 components: - type: Transform - pos: 333.5,373.5 - parent: 1 - - uid: 7645 + pos: -153.5,19.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 4380 components: - type: Transform - pos: 334.5,373.5 - parent: 1 - - uid: 7646 + pos: -26.321957,-6.1822987 + parent: 2 + - uid: 5613 components: - type: Transform - pos: 335.5,373.5 - parent: 1 - - uid: 7647 + pos: -108.5,-48.5 + parent: 2 +- proto: CableMV + entities: + - uid: 261 components: - type: Transform - pos: 336.5,373.5 - parent: 1 - - uid: 7648 + pos: -68.5,-9.5 + parent: 2 + - uid: 347 components: - type: Transform - pos: 337.5,373.5 - parent: 1 - - uid: 7649 + pos: -120.5,-40.5 + parent: 2 + - uid: 755 components: - type: Transform - pos: 332.5,371.5 - parent: 1 - - uid: 7650 + pos: -67.5,-25.5 + parent: 2 + - uid: 820 components: - type: Transform - pos: 334.5,371.5 - parent: 1 - - uid: 7651 + pos: -71.5,-21.5 + parent: 2 + - uid: 917 components: - type: Transform - pos: 335.5,371.5 - parent: 1 - - uid: 7652 + pos: -31.5,-45.5 + parent: 2 + - uid: 1105 components: - type: Transform - pos: 336.5,371.5 - parent: 1 - - uid: 7653 + pos: -26.5,12.5 + parent: 2 + - uid: 1129 components: - type: Transform - pos: 337.5,371.5 - parent: 1 - - uid: 7654 + pos: -29.5,12.5 + parent: 2 + - uid: 1130 components: - type: Transform - pos: 333.5,371.5 - parent: 1 - - uid: 7655 + pos: -29.5,10.5 + parent: 2 + - uid: 1136 components: - type: Transform - pos: 339.5,373.5 - parent: 1 - - uid: 7656 + pos: -29.5,9.5 + parent: 2 + - uid: 1137 components: - type: Transform - pos: 341.5,373.5 - parent: 1 - - uid: 7657 + pos: -29.5,11.5 + parent: 2 + - uid: 1147 components: - type: Transform - pos: 342.5,373.5 - parent: 1 - - uid: 7658 + pos: -29.5,8.5 + parent: 2 + - uid: 1211 components: - type: Transform - pos: 343.5,373.5 - parent: 1 - - uid: 7659 + pos: -32.5,-70.5 + parent: 2 + - uid: 1215 components: - type: Transform - pos: 344.5,373.5 - parent: 1 - - uid: 7660 + pos: -33.5,-70.5 + parent: 2 + - uid: 1222 components: - type: Transform - pos: 340.5,373.5 - parent: 1 - - uid: 7661 + pos: -31.5,-70.5 + parent: 2 + - uid: 1223 components: - type: Transform - pos: 339.5,371.5 - parent: 1 - - uid: 7662 + pos: -34.5,-70.5 + parent: 2 + - uid: 1235 components: - type: Transform - pos: 341.5,371.5 - parent: 1 - - uid: 7663 + pos: -14.5,-34.5 + parent: 2 + - uid: 1271 components: - type: Transform - pos: 342.5,371.5 - parent: 1 - - uid: 7664 + pos: -29.5,5.5 + parent: 2 + - uid: 1349 components: - type: Transform - pos: 340.5,371.5 - parent: 1 - - uid: 7665 + pos: -29.5,6.5 + parent: 2 + - uid: 1580 components: - type: Transform - pos: 343.5,371.5 - parent: 1 - - uid: 7666 + pos: -68.5,-25.5 + parent: 2 + - uid: 1840 components: - type: Transform - pos: 344.5,371.5 - parent: 1 - - uid: 7667 + pos: -28.5,2.5 + parent: 2 + - uid: 1867 components: - type: Transform - pos: 337.5,365.5 - parent: 1 - - uid: 7668 + pos: -100.5,-2.5 + parent: 2 + - uid: 1877 components: - type: Transform - pos: 341.5,369.5 - parent: 1 - - uid: 7669 + pos: -99.5,-2.5 + parent: 2 + - uid: 2071 components: - type: Transform - pos: 343.5,369.5 - parent: 1 - - uid: 7670 + pos: -133.5,-3.5 + parent: 2 + - uid: 2234 components: - type: Transform - pos: 344.5,369.5 - parent: 1 - - uid: 7671 + pos: -70.5,-8.5 + parent: 2 + - uid: 2378 components: - type: Transform - pos: 345.5,369.5 - parent: 1 - - uid: 7672 + pos: -87.5,5.5 + parent: 2 + - uid: 2379 components: - type: Transform - pos: 342.5,369.5 - parent: 1 - - uid: 7673 + pos: -88.5,3.5 + parent: 2 + - uid: 2408 components: - type: Transform - pos: 346.5,369.5 - parent: 1 - - uid: 7674 + pos: -119.5,11.5 + parent: 2 + - uid: 2414 components: - type: Transform - pos: 341.5,367.5 - parent: 1 - - uid: 7675 + pos: -72.5,-27.5 + parent: 2 + - uid: 2416 components: - type: Transform - pos: 343.5,367.5 - parent: 1 - - uid: 7676 + pos: -72.5,-31.5 + parent: 2 + - uid: 2518 components: - type: Transform - pos: 344.5,367.5 - parent: 1 - - uid: 7677 + pos: -26.5,2.5 + parent: 2 + - uid: 2521 components: - type: Transform - pos: 345.5,367.5 - parent: 1 - - uid: 7678 + pos: -56.5,0.5 + parent: 2 + - uid: 2524 components: - type: Transform - pos: 346.5,367.5 - parent: 1 - - uid: 7679 + pos: -119.5,13.5 + parent: 2 + - uid: 2553 components: - type: Transform - pos: 342.5,367.5 - parent: 1 - - uid: 7680 + pos: -121.5,-38.5 + parent: 2 + - uid: 2555 components: - type: Transform - pos: 341.5,368.5 - parent: 1 - - uid: 7681 + pos: -122.5,-38.5 + parent: 2 + - uid: 2556 components: - type: Transform - pos: 340.5,368.5 - parent: 1 - - uid: 7682 + pos: -120.5,-46.5 + parent: 2 + - uid: 2557 components: - type: Transform - pos: 339.5,368.5 - parent: 1 - - uid: 7683 + pos: -120.5,-47.5 + parent: 2 + - uid: 2559 components: - type: Transform - pos: 337.5,368.5 - parent: 1 - - uid: 7684 + pos: -20.5,2.5 + parent: 2 + - uid: 2588 components: - type: Transform - pos: 335.5,368.5 - parent: 1 - - uid: 7685 + pos: -120.5,-48.5 + parent: 2 + - uid: 2589 components: - type: Transform - pos: 336.5,368.5 - parent: 1 - - uid: 7686 + pos: -120.5,-49.5 + parent: 2 + - uid: 2634 components: - type: Transform - pos: 335.5,369.5 - parent: 1 - - uid: 7687 + pos: -120.5,-50.5 + parent: 2 + - uid: 2637 components: - type: Transform - pos: 333.5,369.5 - parent: 1 - - uid: 7688 + pos: -60.5,-56.5 + parent: 2 + - uid: 2645 components: - type: Transform - pos: 332.5,369.5 - parent: 1 - - uid: 7689 + pos: -76.5,-58.5 + parent: 2 + - uid: 2661 components: - type: Transform - pos: 331.5,369.5 - parent: 1 - - uid: 7690 + pos: -29.5,7.5 + parent: 2 + - uid: 2675 components: - type: Transform - pos: 330.5,369.5 - parent: 1 - - uid: 7691 + pos: -120.5,-51.5 + parent: 2 + - uid: 2678 components: - type: Transform - pos: 334.5,369.5 - parent: 1 - - uid: 7692 + pos: -29.5,2.5 + parent: 2 + - uid: 2679 components: - type: Transform - pos: 330.5,367.5 - parent: 1 - - uid: 7693 + pos: -29.5,4.5 + parent: 2 + - uid: 2842 components: - type: Transform - pos: 332.5,367.5 - parent: 1 - - uid: 7694 + pos: -28.5,12.5 + parent: 2 + - uid: 3033 components: - type: Transform - pos: 333.5,367.5 - parent: 1 - - uid: 7695 + pos: -64.5,1.5 + parent: 2 + - uid: 3037 components: - type: Transform - pos: 334.5,367.5 - parent: 1 - - uid: 7696 + pos: -64.5,2.5 + parent: 2 + - uid: 3044 components: - type: Transform - pos: 331.5,367.5 - parent: 1 - - uid: 7697 + pos: -64.5,3.5 + parent: 2 + - uid: 3081 components: - type: Transform - pos: 335.5,367.5 - parent: 1 - - uid: 7698 + pos: -52.5,-0.5 + parent: 2 + - uid: 3082 components: - type: Transform - pos: 335.5,365.5 - parent: 1 - - uid: 7699 + pos: -52.5,-1.5 + parent: 2 + - uid: 3088 components: - type: Transform - pos: 334.5,365.5 - parent: 1 - - uid: 7700 + pos: -52.5,-2.5 + parent: 2 + - uid: 3101 components: - type: Transform - pos: 333.5,365.5 - parent: 1 - - uid: 7701 + pos: -52.5,0.5 + parent: 2 + - uid: 3102 components: - type: Transform - pos: 332.5,365.5 - parent: 1 - - uid: 7702 + pos: -52.5,1.5 + parent: 2 + - uid: 3103 components: - type: Transform - pos: 336.5,365.5 - parent: 1 - - uid: 7703 + pos: -53.5,-0.5 + parent: 2 + - uid: 3104 components: - type: Transform - pos: 332.5,363.5 - parent: 1 - - uid: 7704 + pos: -55.5,-0.5 + parent: 2 + - uid: 3108 components: - type: Transform - pos: 334.5,363.5 - parent: 1 - - uid: 7705 + pos: -56.5,-0.5 + parent: 2 + - uid: 3110 components: - type: Transform - pos: 335.5,363.5 - parent: 1 - - uid: 7706 + pos: -48.5,1.5 + parent: 2 + - uid: 3111 components: - type: Transform - pos: 336.5,363.5 - parent: 1 - - uid: 7707 + pos: -47.5,1.5 + parent: 2 + - uid: 3112 components: - type: Transform - pos: 333.5,363.5 - parent: 1 - - uid: 7708 + pos: -46.5,1.5 + parent: 2 + - uid: 3113 components: - type: Transform - pos: 337.5,363.5 - parent: 1 - - uid: 7709 + pos: -45.5,1.5 + parent: 2 + - uid: 3118 components: - type: Transform - pos: 339.5,363.5 - parent: 1 - - uid: 7710 + pos: -51.5,1.5 + parent: 2 + - uid: 3119 components: - type: Transform - pos: 341.5,363.5 - parent: 1 - - uid: 7711 + pos: -50.5,1.5 + parent: 2 + - uid: 3120 components: - type: Transform - pos: 340.5,363.5 - parent: 1 - - uid: 7712 + pos: -49.5,1.5 + parent: 2 + - uid: 3121 components: - type: Transform - pos: 342.5,363.5 - parent: 1 - - uid: 7713 + pos: -54.5,-0.5 + parent: 2 + - uid: 3123 components: - type: Transform - pos: 343.5,363.5 - parent: 1 - - uid: 7714 + pos: -56.5,1.5 + parent: 2 + - uid: 3124 components: - type: Transform - pos: 344.5,363.5 - parent: 1 - - uid: 7715 + pos: -56.5,2.5 + parent: 2 + - uid: 3127 components: - type: Transform - pos: 339.5,365.5 - parent: 1 - - uid: 7716 + pos: -59.5,3.5 + parent: 2 + - uid: 3128 components: - type: Transform - pos: 341.5,365.5 - parent: 1 - - uid: 7717 + pos: -60.5,3.5 + parent: 2 + - uid: 3129 components: - type: Transform - pos: 340.5,365.5 - parent: 1 - - uid: 7718 + pos: -61.5,3.5 + parent: 2 + - uid: 3130 components: - type: Transform - pos: 342.5,365.5 - parent: 1 - - uid: 7719 + pos: -58.5,3.5 + parent: 2 + - uid: 3131 components: - type: Transform - pos: 343.5,365.5 - parent: 1 - - uid: 7720 + pos: -62.5,3.5 + parent: 2 + - uid: 3132 components: - type: Transform - pos: 344.5,365.5 - parent: 1 - - uid: 7721 + pos: -63.5,3.5 + parent: 2 + - uid: 3133 components: - type: Transform - pos: 338.5,362.5 - parent: 1 - - uid: 7722 + pos: -57.5,2.5 + parent: 2 + - uid: 3134 components: - type: Transform - pos: 338.5,361.5 - parent: 1 - - uid: 7724 + pos: -58.5,2.5 + parent: 2 + - uid: 3137 components: - type: Transform - pos: 338.5,374.5 - parent: 1 - - uid: 7725 + pos: -56.5,-1.5 + parent: 2 + - uid: 3138 components: - type: Transform - pos: 338.5,375.5 - parent: 1 - - uid: 7726 + pos: -56.5,-2.5 + parent: 2 + - uid: 3139 components: - type: Transform - pos: 338.5,376.5 - parent: 1 - - uid: 7727 + pos: -56.5,-4.5 + parent: 2 + - uid: 3140 components: - type: Transform - pos: 338.5,377.5 - parent: 1 - - uid: 7728 + pos: -56.5,-3.5 + parent: 2 + - uid: 3141 components: - type: Transform - pos: 338.5,378.5 - parent: 1 - - uid: 7729 + pos: -55.5,-4.5 + parent: 2 + - uid: 3142 components: - type: Transform - pos: 338.5,380.5 - parent: 1 - - uid: 7730 + pos: -54.5,-4.5 + parent: 2 + - uid: 3143 components: - type: Transform - pos: 338.5,379.5 - parent: 1 - - uid: 7731 + pos: -65.5,-6.5 + parent: 2 + - uid: 3144 components: - type: Transform - pos: 337.5,380.5 - parent: 1 - - uid: 7732 + pos: -66.5,-6.5 + parent: 2 + - uid: 3146 components: - type: Transform - pos: 336.5,380.5 - parent: 1 - - uid: 7733 + pos: -66.5,-5.5 + parent: 2 + - uid: 3147 components: - type: Transform - pos: 335.5,379.5 - parent: 1 - - uid: 7734 + pos: -66.5,-3.5 + parent: 2 + - uid: 3148 components: - type: Transform - pos: 336.5,379.5 - parent: 1 - - uid: 7736 + pos: -66.5,-2.5 + parent: 2 + - uid: 3149 components: - type: Transform - pos: 334.5,379.5 - parent: 1 - - uid: 7738 + pos: -66.5,-1.5 + parent: 2 + - uid: 3150 components: - type: Transform - pos: 422.5,426.5 - parent: 1 - - uid: 7742 + pos: -66.5,-0.5 + parent: 2 + - uid: 3151 components: - type: Transform - pos: 422.5,428.5 - parent: 1 - - uid: 7743 + pos: -66.5,0.5 + parent: 2 + - uid: 3152 components: - type: Transform - pos: 422.5,429.5 - parent: 1 - - uid: 7744 + pos: -66.5,-4.5 + parent: 2 + - uid: 3153 components: - type: Transform - pos: 422.5,430.5 - parent: 1 - - uid: 7745 + pos: -66.5,2.5 + parent: 2 + - uid: 3154 components: - type: Transform - pos: 422.5,427.5 - parent: 1 - - uid: 7746 + pos: -66.5,1.5 + parent: 2 + - uid: 3155 components: - type: Transform - pos: 416.5,434.5 - parent: 1 - - uid: 7747 + pos: -65.5,2.5 + parent: 2 + - uid: 3156 components: - type: Transform - pos: 417.5,434.5 - parent: 1 - - uid: 7748 + pos: -65.5,-3.5 + parent: 2 + - uid: 3157 components: - type: Transform - pos: 418.5,434.5 - parent: 1 - - uid: 7749 + pos: -63.5,-3.5 + parent: 2 + - uid: 3158 components: - type: Transform - pos: 419.5,434.5 - parent: 1 - - uid: 7750 + pos: -62.5,-3.5 + parent: 2 + - uid: 3159 components: - type: Transform - pos: 420.5,434.5 - parent: 1 - - uid: 7751 + pos: -61.5,-3.5 + parent: 2 + - uid: 3160 components: - type: Transform - pos: 421.5,434.5 - parent: 1 - - uid: 7752 + pos: -60.5,-3.5 + parent: 2 + - uid: 3161 components: - type: Transform - pos: 416.5,432.5 - parent: 1 - - uid: 7753 + pos: -64.5,-3.5 + parent: 2 + - uid: 3162 components: - type: Transform - pos: 418.5,432.5 - parent: 1 - - uid: 7754 + pos: -59.5,-3.5 + parent: 2 + - uid: 3163 components: - type: Transform - pos: 419.5,432.5 - parent: 1 - - uid: 7755 + pos: -58.5,-3.5 + parent: 2 + - uid: 3164 components: - type: Transform - pos: 420.5,432.5 - parent: 1 - - uid: 7756 + pos: -57.5,-3.5 + parent: 2 + - uid: 3207 components: - type: Transform - pos: 421.5,432.5 - parent: 1 - - uid: 7757 + pos: -66.5,-7.5 + parent: 2 + - uid: 3208 components: - type: Transform - pos: 417.5,432.5 - parent: 1 - - uid: 7758 + pos: -66.5,-8.5 + parent: 2 + - uid: 3247 components: - type: Transform - pos: 423.5,434.5 - parent: 1 - - uid: 7759 + pos: -67.5,-2.5 + parent: 2 + - uid: 3248 components: - type: Transform - pos: 424.5,434.5 - parent: 1 - - uid: 7760 + pos: -68.5,-2.5 + parent: 2 + - uid: 3249 components: - type: Transform - pos: 425.5,434.5 - parent: 1 - - uid: 7761 + pos: -69.5,-2.5 + parent: 2 + - uid: 3251 components: - type: Transform - pos: 426.5,434.5 - parent: 1 - - uid: 7762 + pos: -70.5,-2.5 + parent: 2 + - uid: 3252 components: - type: Transform - pos: 428.5,434.5 - parent: 1 - - uid: 7763 + pos: -70.5,-3.5 + parent: 2 + - uid: 3326 components: - type: Transform - pos: 427.5,434.5 - parent: 1 - - uid: 7764 + pos: -136.5,-39.5 + parent: 2 + - uid: 3362 components: - type: Transform - pos: 423.5,432.5 - parent: 1 - - uid: 7765 + pos: -116.5,-6.5 + parent: 2 + - uid: 3381 components: - type: Transform - pos: 425.5,432.5 - parent: 1 - - uid: 7766 + pos: -135.5,-39.5 + parent: 2 + - uid: 3384 components: - type: Transform - pos: 426.5,432.5 - parent: 1 - - uid: 7767 + pos: -120.5,-42.5 + parent: 2 + - uid: 3386 components: - type: Transform - pos: 427.5,432.5 - parent: 1 - - uid: 7768 + pos: -67.5,-13.5 + parent: 2 + - uid: 3391 components: - type: Transform - pos: 428.5,432.5 - parent: 1 - - uid: 7769 + pos: -15.5,3.5 + parent: 2 + - uid: 3431 components: - type: Transform - pos: 424.5,432.5 - parent: 1 - - uid: 7770 + pos: -134.5,-39.5 + parent: 2 + - uid: 3499 components: - type: Transform - pos: 421.5,437.5 - parent: 1 - - uid: 7771 + pos: -18.5,-10.5 + parent: 2 + - uid: 3500 components: - type: Transform - pos: 420.5,437.5 - parent: 1 - - uid: 7772 + pos: -23.5,-0.5 + parent: 2 + - uid: 3546 components: - type: Transform - pos: 419.5,437.5 - parent: 1 - - uid: 7773 + pos: -130.5,-39.5 + parent: 2 + - uid: 3607 components: - type: Transform - pos: 419.5,438.5 - parent: 1 - - uid: 7774 + pos: -132.5,-39.5 + parent: 2 + - uid: 3690 components: - type: Transform - pos: 417.5,438.5 - parent: 1 - - uid: 7775 + pos: -133.5,-39.5 + parent: 2 + - uid: 3692 components: - type: Transform - pos: 416.5,438.5 - parent: 1 - - uid: 7776 + pos: -65.5,-27.5 + parent: 2 + - uid: 3704 components: - type: Transform - pos: 418.5,438.5 - parent: 1 - - uid: 7777 + pos: -131.5,-39.5 + parent: 2 + - uid: 3718 components: - type: Transform - pos: 415.5,438.5 - parent: 1 - - uid: 7778 + pos: -65.5,-32.5 + parent: 2 + - uid: 3741 components: - type: Transform - pos: 414.5,438.5 - parent: 1 - - uid: 7779 + pos: -76.5,-45.5 + parent: 2 + - uid: 3799 components: - type: Transform - pos: 414.5,436.5 - parent: 1 - - uid: 7780 + pos: -19.5,-30.5 + parent: 2 + - uid: 3813 components: - type: Transform - pos: 415.5,436.5 - parent: 1 - - uid: 7781 + pos: -23.5,-30.5 + parent: 2 + - uid: 3883 components: - type: Transform - pos: 416.5,436.5 - parent: 1 - - uid: 7782 + pos: -22.5,-30.5 + parent: 2 + - uid: 4088 components: - type: Transform - pos: 417.5,436.5 - parent: 1 - - uid: 7783 + pos: -133.5,-0.5 + parent: 2 + - uid: 4093 components: - type: Transform - pos: 418.5,436.5 - parent: 1 - - uid: 7784 + pos: -22.5,2.5 + parent: 2 + - uid: 4105 components: - type: Transform - pos: 419.5,436.5 - parent: 1 - - uid: 7785 + pos: -29.5,3.5 + parent: 2 + - uid: 4132 components: - type: Transform - pos: 421.5,440.5 - parent: 1 - - uid: 7786 + pos: -16.5,2.5 + parent: 2 + - uid: 4133 components: - type: Transform - pos: 423.5,437.5 - parent: 1 - - uid: 7787 + pos: -25.5,12.5 + parent: 2 + - uid: 4134 components: - type: Transform - pos: 425.5,437.5 - parent: 1 - - uid: 7788 + pos: -15.5,2.5 + parent: 2 + - uid: 4135 components: - type: Transform - pos: 424.5,437.5 - parent: 1 - - uid: 7789 + pos: -24.5,2.5 + parent: 2 + - uid: 4177 components: - type: Transform - pos: 425.5,438.5 - parent: 1 - - uid: 7790 + pos: -133.5,-5.5 + parent: 2 + - uid: 4210 components: - type: Transform - pos: 427.5,438.5 - parent: 1 - - uid: 7791 + pos: -29.5,-46.5 + parent: 2 + - uid: 4233 components: - type: Transform - pos: 428.5,438.5 - parent: 1 - - uid: 7792 + pos: -56.5,-76.5 + parent: 2 + - uid: 4267 components: - type: Transform - pos: 429.5,438.5 - parent: 1 - - uid: 7793 + pos: -27.5,-30.5 + parent: 2 + - uid: 4328 components: - type: Transform - pos: 430.5,438.5 - parent: 1 - - uid: 7794 + pos: -40.5,-3.5 + parent: 2 + - uid: 4330 components: - type: Transform - pos: 426.5,438.5 - parent: 1 - - uid: 7795 + pos: -40.5,-4.5 + parent: 2 + - uid: 4331 components: - type: Transform - pos: 425.5,436.5 - parent: 1 - - uid: 7796 + pos: -31.5,-45.5 + parent: 2 + - uid: 4371 components: - type: Transform - pos: 427.5,436.5 - parent: 1 - - uid: 7797 + pos: -110.5,-50.5 + parent: 2 + - uid: 4372 components: - type: Transform - pos: 428.5,436.5 - parent: 1 - - uid: 7798 + pos: -109.5,-49.5 + parent: 2 + - uid: 4385 components: - type: Transform - pos: 429.5,436.5 - parent: 1 - - uid: 7799 + pos: -57.5,-76.5 + parent: 2 + - uid: 4411 components: - type: Transform - pos: 430.5,436.5 - parent: 1 - - uid: 7800 + pos: -83.5,-9.5 + parent: 2 + - uid: 4412 components: - type: Transform - pos: 426.5,436.5 - parent: 1 - - uid: 7801 + pos: -84.5,-9.5 + parent: 2 + - uid: 4413 components: - type: Transform - pos: 423.5,442.5 - parent: 1 - - uid: 7802 + pos: -84.5,-10.5 + parent: 2 + - uid: 4581 components: - type: Transform - pos: 425.5,442.5 - parent: 1 - - uid: 7803 + pos: -74.5,-35.5 + parent: 2 + - uid: 4589 components: - type: Transform - pos: 424.5,442.5 - parent: 1 - - uid: 7804 + pos: -96.5,22.5 + parent: 2 + - uid: 4596 components: - type: Transform - pos: 426.5,442.5 - parent: 1 - - uid: 7805 + pos: -99.5,22.5 + parent: 2 + - uid: 4597 components: - type: Transform - pos: 427.5,442.5 - parent: 1 - - uid: 7806 + pos: -72.5,-33.5 + parent: 2 + - uid: 4598 components: - type: Transform - pos: 428.5,442.5 - parent: 1 - - uid: 7807 + pos: -99.5,23.5 + parent: 2 + - uid: 4634 components: - type: Transform - pos: 423.5,440.5 - parent: 1 - - uid: 7808 + pos: -135.5,0.5 + parent: 2 + - uid: 4665 components: - type: Transform - pos: 425.5,440.5 - parent: 1 - - uid: 7809 + pos: -133.5,-9.5 + parent: 2 + - uid: 4667 components: - type: Transform - pos: 424.5,440.5 - parent: 1 - - uid: 7810 + pos: -134.5,0.5 + parent: 2 + - uid: 4683 components: - type: Transform - pos: 426.5,440.5 - parent: 1 - - uid: 7811 + pos: -133.5,-2.5 + parent: 2 + - uid: 4688 components: - type: Transform - pos: 427.5,440.5 - parent: 1 - - uid: 7812 + pos: -133.5,-4.5 + parent: 2 + - uid: 4862 components: - type: Transform - pos: 428.5,440.5 - parent: 1 - - uid: 7813 + pos: -21.5,2.5 + parent: 2 + - uid: 4873 components: - type: Transform - pos: 419.5,440.5 - parent: 1 - - uid: 7814 + pos: -19.5,2.5 + parent: 2 + - uid: 5109 components: - type: Transform - pos: 418.5,440.5 - parent: 1 - - uid: 7815 + pos: -135.5,13.5 + parent: 2 + - uid: 5121 components: - type: Transform - pos: 420.5,440.5 - parent: 1 - - uid: 7816 + pos: -135.5,14.5 + parent: 2 + - uid: 5127 components: - type: Transform - pos: 417.5,440.5 - parent: 1 - - uid: 7817 + pos: -40.5,-2.5 + parent: 2 + - uid: 5129 components: - type: Transform - pos: 416.5,440.5 - parent: 1 - - uid: 7818 + pos: -44.5,0.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 5131 components: - type: Transform - pos: 416.5,442.5 - parent: 1 - - uid: 7819 + pos: -44.5,-1.5 + parent: 2 + - uid: 5132 components: - type: Transform - pos: 418.5,442.5 - parent: 1 - - uid: 7820 + pos: -44.5,-2.5 + parent: 2 + - uid: 5133 components: - type: Transform - pos: 419.5,442.5 - parent: 1 - - uid: 7821 + pos: -43.5,-2.5 + parent: 2 + - uid: 5134 components: - type: Transform - pos: 420.5,442.5 - parent: 1 - - uid: 7822 + pos: -42.5,-2.5 + parent: 2 + - uid: 5135 components: - type: Transform - pos: 421.5,442.5 - parent: 1 - - uid: 7823 + pos: -41.5,-2.5 + parent: 2 + - uid: 5160 components: - type: Transform - pos: 417.5,442.5 - parent: 1 - - uid: 7824 + pos: -38.5,-4.5 + parent: 2 + - uid: 5252 components: - type: Transform - pos: 422.5,443.5 - parent: 1 - - uid: 7825 + pos: -44.5,1.5 + parent: 2 + - uid: 5391 components: - type: Transform - pos: 422.5,444.5 - parent: 1 - - uid: 7827 + pos: -99.5,-1.5 + parent: 2 + - uid: 5396 components: - type: Transform - pos: 421.5,426.5 - parent: 1 - - uid: 7828 + pos: -114.5,-10.5 + parent: 2 + - uid: 5421 components: - type: Transform - pos: 421.5,425.5 - parent: 1 - - uid: 7829 + pos: -110.5,-47.5 + parent: 2 + - uid: 5558 components: - type: Transform - pos: 421.5,424.5 - parent: 1 - - uid: 7830 + pos: -112.5,-10.5 + parent: 2 + - uid: 5600 components: - type: Transform - pos: 422.5,424.5 - parent: 1 - - uid: 7831 + pos: -119.5,6.5 + parent: 2 + - uid: 5609 components: - type: Transform - pos: 422.5,423.5 - parent: 1 - - uid: 7832 + pos: -113.5,-10.5 + parent: 2 + - uid: 5615 components: - type: Transform - pos: 422.5,422.5 - parent: 1 - - uid: 7833 + pos: -119.5,8.5 + parent: 2 + - uid: 5963 components: - type: Transform - pos: 422.5,421.5 - parent: 1 - - uid: 7834 + pos: -134.5,13.5 + parent: 2 + - uid: 6229 components: - type: Transform - pos: 422.5,420.5 - parent: 1 - - uid: 7868 + pos: -124.5,-20.5 + parent: 2 + - uid: 6230 components: - type: Transform - pos: 401.5,352.5 - parent: 1 - - uid: 7889 + pos: -125.5,-20.5 + parent: 2 + - uid: 6231 components: - type: Transform - pos: 401.5,366.5 - parent: 1 - - uid: 7890 + pos: -125.5,-19.5 + parent: 2 + - uid: 6958 components: - type: Transform - pos: 400.5,366.5 - parent: 1 - - uid: 7891 + pos: -17.5,2.5 + parent: 2 + - uid: 6979 components: - type: Transform - pos: 400.5,365.5 - parent: 1 - - uid: 7892 + pos: -119.5,14.5 + parent: 2 + - uid: 7082 components: - type: Transform - pos: 400.5,364.5 - parent: 1 - - uid: 7893 + pos: -119.5,16.5 + parent: 2 + - uid: 7311 components: - type: Transform - pos: 400.5,363.5 - parent: 1 - - uid: 7894 + pos: -134.5,-36.5 + parent: 2 + - uid: 7312 components: - type: Transform - pos: 400.5,362.5 - parent: 1 - - uid: 7895 + pos: -134.5,-37.5 + parent: 2 + - uid: 7452 components: - type: Transform - pos: 400.5,361.5 - parent: 1 - - uid: 7896 + pos: -72.5,-26.5 + parent: 2 + - uid: 7464 components: - type: Transform - pos: 401.5,360.5 - parent: 1 - - uid: 7897 + pos: -88.5,0.5 + parent: 2 + - uid: 7467 components: - type: Transform - pos: 402.5,360.5 - parent: 1 - - uid: 7898 + pos: -88.5,1.5 + parent: 2 + - uid: 7481 components: - type: Transform - pos: 403.5,360.5 - parent: 1 - - uid: 7899 + pos: -61.5,-73.5 + parent: 2 + - uid: 7483 components: - type: Transform - pos: 404.5,360.5 - parent: 1 - - uid: 7900 + pos: -61.5,-71.5 + parent: 2 + - uid: 7487 components: - type: Transform - pos: 405.5,360.5 - parent: 1 - - uid: 7901 + pos: -61.5,-70.5 + parent: 2 + - uid: 7488 components: - type: Transform - pos: 406.5,360.5 - parent: 1 - - uid: 7902 + pos: -61.5,-69.5 + parent: 2 + - uid: 7489 components: - type: Transform - pos: 401.5,358.5 - parent: 1 - - uid: 7903 + pos: -61.5,-68.5 + parent: 2 + - uid: 7490 components: - type: Transform - pos: 402.5,358.5 - parent: 1 - - uid: 7904 + pos: -60.5,-68.5 + parent: 2 + - uid: 7491 components: - type: Transform - pos: 403.5,358.5 - parent: 1 - - uid: 7905 + pos: -59.5,-68.5 + parent: 2 + - uid: 7505 components: - type: Transform - pos: 404.5,358.5 - parent: 1 - - uid: 7906 + pos: -45.5,-45.5 + parent: 2 + - uid: 7507 components: - type: Transform - pos: 405.5,358.5 - parent: 1 - - uid: 7907 + pos: -61.5,-72.5 + parent: 2 + - uid: 7513 components: - type: Transform - pos: 406.5,358.5 - parent: 1 - - uid: 7908 + pos: -138.5,-38.5 + parent: 2 + - uid: 7626 components: - type: Transform - pos: 399.5,358.5 - parent: 1 - - uid: 7909 + pos: -43.5,-72.5 + parent: 2 + - uid: 7630 components: - type: Transform - pos: 397.5,358.5 - parent: 1 - - uid: 7910 + pos: -45.5,-40.5 + parent: 2 + - uid: 7635 components: - type: Transform - pos: 396.5,358.5 - parent: 1 - - uid: 7911 + pos: -44.5,-73.5 + parent: 2 + - uid: 7663 components: - type: Transform - pos: 395.5,358.5 - parent: 1 - - uid: 7912 + pos: -42.5,-46.5 + parent: 2 + - uid: 7710 components: - type: Transform - pos: 398.5,358.5 - parent: 1 - - uid: 7913 + pos: -17.5,-28.5 + parent: 2 + - uid: 7750 components: - type: Transform - pos: 394.5,358.5 - parent: 1 - - uid: 7914 + pos: -57.5,-68.5 + parent: 2 + - uid: 7753 components: - type: Transform - pos: 394.5,360.5 - parent: 1 - - uid: 7915 + pos: -56.5,-68.5 + parent: 2 + - uid: 7817 components: - type: Transform - pos: 396.5,360.5 - parent: 1 - - uid: 7916 + pos: -128.5,-39.5 + parent: 2 + - uid: 7820 components: - type: Transform - pos: 397.5,360.5 - parent: 1 - - uid: 7917 + pos: -127.5,-40.5 + parent: 2 + - uid: 7824 components: - type: Transform - pos: 398.5,360.5 - parent: 1 - - uid: 7918 + pos: -137.5,-39.5 + parent: 2 + - uid: 7827 components: - type: Transform - pos: 399.5,360.5 - parent: 1 - - uid: 7919 + pos: -129.5,-40.5 + parent: 2 + - uid: 7829 components: - type: Transform - pos: 395.5,360.5 - parent: 1 - - uid: 7920 + pos: -127.5,-41.5 + parent: 2 + - uid: 7830 components: - type: Transform - pos: 399.5,355.5 - parent: 1 - - uid: 7921 + pos: -56.5,-69.5 + parent: 2 + - uid: 7831 components: - type: Transform - pos: 397.5,355.5 - parent: 1 - - uid: 7922 + pos: -127.5,-39.5 + parent: 2 + - uid: 7833 components: - type: Transform - pos: 398.5,355.5 - parent: 1 - - uid: 7923 + pos: -127.5,-42.5 + parent: 2 + - uid: 7834 components: - type: Transform - pos: 397.5,356.5 - parent: 1 - - uid: 7924 + pos: -42.5,-40.5 + parent: 2 + - uid: 7835 components: - type: Transform - pos: 395.5,356.5 - parent: 1 - - uid: 7925 + pos: -123.5,-38.5 + parent: 2 + - uid: 7845 components: - type: Transform - pos: 396.5,356.5 - parent: 1 - - uid: 7926 + pos: -58.5,-68.5 + parent: 2 + - uid: 7849 components: - type: Transform - pos: 394.5,356.5 - parent: 1 - - uid: 7927 + pos: -129.5,-39.5 + parent: 2 + - uid: 7854 components: - type: Transform - pos: 393.5,356.5 - parent: 1 - - uid: 7928 + pos: -43.5,-40.5 + parent: 2 + - uid: 7855 components: - type: Transform - pos: 392.5,356.5 - parent: 1 - - uid: 7929 + pos: -127.5,-47.5 + parent: 2 + - uid: 7871 components: - type: Transform - pos: 392.5,354.5 - parent: 1 - - uid: 7930 + pos: -120.5,-52.5 + parent: 2 + - uid: 7874 components: - type: Transform - pos: 394.5,354.5 - parent: 1 - - uid: 7931 + pos: -66.5,-9.5 + parent: 2 + - uid: 7879 components: - type: Transform - pos: 395.5,354.5 - parent: 1 - - uid: 7932 + pos: -121.5,-52.5 + parent: 2 + - uid: 7880 components: - type: Transform - pos: 396.5,354.5 - parent: 1 - - uid: 7933 + pos: -122.5,-52.5 + parent: 2 + - uid: 7881 components: - type: Transform - pos: 397.5,354.5 - parent: 1 - - uid: 7934 + pos: -120.5,-43.5 + parent: 2 + - uid: 7885 components: - type: Transform - pos: 393.5,354.5 - parent: 1 - - uid: 7935 + pos: -120.5,-41.5 + parent: 2 + - uid: 7886 components: - type: Transform - pos: 401.5,355.5 - parent: 1 - - uid: 7936 + pos: -120.5,-44.5 + parent: 2 + - uid: 7889 components: - type: Transform - pos: 403.5,355.5 - parent: 1 - - uid: 7937 + pos: -56.5,-70.5 + parent: 2 + - uid: 7890 components: - type: Transform - pos: 402.5,355.5 - parent: 1 - - uid: 7938 + pos: -55.5,-71.5 + parent: 2 + - uid: 7891 components: - type: Transform - pos: 403.5,356.5 - parent: 1 - - uid: 7939 + pos: -69.5,-9.5 + parent: 2 + - uid: 7893 components: - type: Transform - pos: 405.5,356.5 - parent: 1 - - uid: 7940 + pos: -54.5,-71.5 + parent: 2 + - uid: 7899 components: - type: Transform - pos: 404.5,356.5 - parent: 1 - - uid: 7941 + pos: -53.5,-71.5 + parent: 2 + - uid: 7900 components: - type: Transform - pos: 407.5,356.5 - parent: 1 - - uid: 7942 + pos: -56.5,-71.5 + parent: 2 + - uid: 7909 components: - type: Transform - pos: 406.5,356.5 - parent: 1 - - uid: 7943 + pos: -52.5,-70.5 + parent: 2 + - uid: 7912 components: - type: Transform - pos: 408.5,356.5 - parent: 1 - - uid: 7944 + pos: -52.5,-69.5 + parent: 2 + - uid: 7920 components: - type: Transform - pos: 403.5,354.5 - parent: 1 - - uid: 7945 + pos: -52.5,-68.5 + parent: 2 + - uid: 7922 components: - type: Transform - pos: 405.5,354.5 - parent: 1 - - uid: 7946 + pos: -52.5,-71.5 + parent: 2 + - uid: 7935 components: - type: Transform - pos: 406.5,354.5 - parent: 1 - - uid: 7947 + pos: -131.5,-46.5 + parent: 2 + - uid: 7937 components: - type: Transform - pos: 404.5,354.5 - parent: 1 - - uid: 7948 + pos: -127.5,-46.5 + parent: 2 + - uid: 7945 components: - type: Transform - pos: 407.5,354.5 - parent: 1 + pos: -131.5,-47.5 + parent: 2 - uid: 7949 components: - type: Transform - pos: 408.5,354.5 - parent: 1 + pos: -131.5,-45.5 + parent: 2 - uid: 7950 components: - type: Transform - pos: 402.5,352.5 - parent: 1 + pos: -131.5,-43.5 + parent: 2 - uid: 7951 components: - type: Transform - pos: 403.5,352.5 - parent: 1 - - uid: 7952 - components: - - type: Transform - pos: 404.5,352.5 - parent: 1 + pos: -131.5,-44.5 + parent: 2 - uid: 7953 components: - type: Transform - pos: 405.5,352.5 - parent: 1 + pos: -134.5,-48.5 + parent: 2 - uid: 7954 components: - type: Transform - pos: 406.5,352.5 - parent: 1 + pos: -127.5,-49.5 + parent: 2 - uid: 7955 components: - type: Transform - pos: 401.5,350.5 - parent: 1 - - uid: 7956 - components: - - type: Transform - pos: 403.5,350.5 - parent: 1 + pos: -132.5,-48.5 + parent: 2 - uid: 7957 components: - type: Transform - pos: 404.5,350.5 - parent: 1 + pos: -133.5,-48.5 + parent: 2 - uid: 7958 components: - type: Transform - pos: 405.5,350.5 - parent: 1 + pos: -131.5,-48.5 + parent: 2 - uid: 7959 components: - type: Transform - pos: 406.5,350.5 - parent: 1 + pos: -127.5,-45.5 + parent: 2 - uid: 7960 components: - type: Transform - pos: 402.5,350.5 - parent: 1 + pos: -134.5,-49.5 + parent: 2 - uid: 7961 components: - type: Transform - pos: 399.5,350.5 - parent: 1 + pos: -128.5,-45.5 + parent: 2 - uid: 7962 components: - type: Transform - pos: 397.5,350.5 - parent: 1 + pos: -44.5,-74.5 + parent: 2 - uid: 7963 components: - type: Transform - pos: 398.5,350.5 - parent: 1 + pos: -120.5,-45.5 + parent: 2 - uid: 7964 components: - type: Transform - pos: 396.5,350.5 - parent: 1 + pos: -129.5,-45.5 + parent: 2 - uid: 7965 components: - type: Transform - pos: 395.5,350.5 - parent: 1 + pos: -130.5,-45.5 + parent: 2 - uid: 7966 components: - type: Transform - pos: 394.5,350.5 - parent: 1 + pos: -126.5,-45.5 + parent: 2 - uid: 7967 components: - type: Transform - pos: 394.5,352.5 - parent: 1 + pos: -123.5,-45.5 + parent: 2 - uid: 7968 components: - type: Transform - pos: 396.5,352.5 - parent: 1 + pos: -127.5,-48.5 + parent: 2 - uid: 7969 components: - type: Transform - pos: 397.5,352.5 - parent: 1 - - uid: 7970 - components: - - type: Transform - pos: 395.5,352.5 - parent: 1 + pos: -119.5,-45.5 + parent: 2 - uid: 7971 components: - type: Transform - pos: 398.5,352.5 - parent: 1 + pos: -118.5,-45.5 + parent: 2 - uid: 7972 components: - type: Transform - pos: 399.5,352.5 - parent: 1 - - uid: 7973 - components: - - type: Transform - pos: 400.5,349.5 - parent: 1 + pos: -127.5,-43.5 + parent: 2 - uid: 7974 components: - type: Transform - pos: 400.5,348.5 - parent: 1 - - uid: 8027 + pos: -43.5,-73.5 + parent: 2 + - uid: 7978 components: - type: Transform - pos: 401.5,367.5 - parent: 1 - - uid: 8028 + pos: -129.5,-41.5 + parent: 2 + - uid: 7980 components: - type: Transform - pos: 402.5,367.5 - parent: 1 - - uid: 8029 + pos: -127.5,-44.5 + parent: 2 + - uid: 8017 components: - type: Transform - pos: 400.5,368.5 - parent: 1 - - uid: 8030 + pos: -122.5,-45.5 + parent: 2 + - uid: 8018 components: - type: Transform - pos: 401.5,368.5 - parent: 1 - - uid: 8488 + pos: -124.5,-45.5 + parent: 2 + - uid: 8019 components: - type: Transform - pos: 324.5,423.5 - parent: 1 - - uid: 8489 + pos: -121.5,-45.5 + parent: 2 + - uid: 8024 components: - type: Transform - pos: 325.5,423.5 - parent: 1 - - uid: 8490 + pos: -109.5,-47.5 + parent: 2 + - uid: 8029 components: - type: Transform - pos: 326.5,423.5 - parent: 1 - - uid: 8491 + pos: -114.5,-45.5 + parent: 2 + - uid: 8030 components: - type: Transform - pos: 326.5,425.5 - parent: 1 - - uid: 8492 + pos: -116.5,-45.5 + parent: 2 + - uid: 8031 components: - type: Transform - pos: 326.5,424.5 - parent: 1 - - uid: 8493 + pos: -117.5,-47.5 + parent: 2 + - uid: 8033 components: - type: Transform - pos: 326.5,426.5 - parent: 1 - - uid: 8494 + pos: -111.5,-45.5 + parent: 2 + - uid: 8034 components: - type: Transform - pos: 326.5,427.5 - parent: 1 - - uid: 8495 + pos: -109.5,-48.5 + parent: 2 + - uid: 8035 components: - type: Transform - pos: 326.5,428.5 - parent: 1 - - uid: 8496 + pos: -109.5,-45.5 + parent: 2 + - uid: 8038 components: - type: Transform - pos: 326.5,429.5 - parent: 1 - - uid: 8500 + pos: -109.5,-46.5 + parent: 2 + - uid: 8039 components: - type: Transform - pos: 325.5,429.5 - parent: 1 - - uid: 8501 + pos: -110.5,-45.5 + parent: 2 + - uid: 8040 components: - type: Transform - pos: 324.5,428.5 - parent: 1 - - uid: 8502 + pos: -112.5,-45.5 + parent: 2 + - uid: 8042 components: - type: Transform - pos: 320.5,428.5 - parent: 1 - - uid: 8503 + pos: -113.5,-45.5 + parent: 2 + - uid: 8043 components: - type: Transform - pos: 321.5,430.5 - parent: 1 - - uid: 8504 + pos: -115.5,-45.5 + parent: 2 + - uid: 8044 components: - type: Transform - pos: 321.5,428.5 - parent: 1 - - uid: 8505 + pos: -117.5,-45.5 + parent: 2 + - uid: 8045 components: - type: Transform - pos: 321.5,429.5 - parent: 1 - - uid: 8507 + pos: -117.5,-46.5 + parent: 2 + - uid: 8046 components: - type: Transform - pos: 320.5,430.5 - parent: 1 - - uid: 8508 + pos: -117.5,-48.5 + parent: 2 + - uid: 8053 components: - type: Transform - pos: 319.5,430.5 - parent: 1 - - uid: 8509 + pos: -125.5,-45.5 + parent: 2 + - uid: 8066 components: - type: Transform - pos: 318.5,430.5 - parent: 1 - - uid: 8510 + pos: -138.5,-39.5 + parent: 2 + - uid: 8336 components: - type: Transform - pos: 327.5,424.5 - parent: 1 - - uid: 8511 + pos: -41.5,-41.5 + parent: 2 + - uid: 8418 components: - type: Transform - pos: 328.5,424.5 - parent: 1 - - uid: 8512 + pos: -65.5,-26.5 + parent: 2 + - uid: 8460 components: - type: Transform - pos: 331.5,424.5 - parent: 1 - - uid: 8513 + pos: -6.5,-8.5 + parent: 2 + - uid: 8465 components: - type: Transform - pos: 331.5,423.5 - parent: 1 - - uid: 8514 + pos: -44.5,-40.5 + parent: 2 + - uid: 8490 components: - type: Transform - pos: 331.5,421.5 - parent: 1 - - uid: 8515 + pos: -48.5,-40.5 + parent: 2 + - uid: 8491 components: - type: Transform - pos: 331.5,420.5 - parent: 1 - - uid: 8516 + pos: -42.5,-49.5 + parent: 2 + - uid: 8492 components: - type: Transform - pos: 331.5,419.5 - parent: 1 - - uid: 8517 + pos: -46.5,-40.5 + parent: 2 + - uid: 8499 components: - type: Transform - pos: 331.5,418.5 - parent: 1 - - uid: 8518 + pos: -49.5,-63.5 + parent: 2 + - uid: 8501 components: - type: Transform - pos: 331.5,422.5 - parent: 1 - - uid: 8519 + pos: -48.5,-63.5 + parent: 2 + - uid: 8503 components: - type: Transform - pos: 331.5,417.5 - parent: 1 - - uid: 8520 + pos: -53.5,-63.5 + parent: 2 + - uid: 8506 components: - type: Transform - pos: 331.5,415.5 - parent: 1 - - uid: 8521 + pos: -47.5,-63.5 + parent: 2 + - uid: 8684 components: - type: Transform - pos: 331.5,416.5 - parent: 1 - - uid: 8522 + pos: -39.5,-41.5 + parent: 2 + - uid: 8967 components: - type: Transform - pos: 331.5,413.5 - parent: 1 - - uid: 8523 + pos: -29.5,-44.5 + parent: 2 + - uid: 8998 components: - type: Transform - pos: 331.5,412.5 - parent: 1 - - uid: 8524 + pos: -119.5,9.5 + parent: 2 + - uid: 9002 components: - type: Transform - pos: 331.5,411.5 - parent: 1 - - uid: 8525 + pos: -119.5,15.5 + parent: 2 + - uid: 9024 components: - type: Transform - pos: 331.5,414.5 - parent: 1 - - uid: 8526 + pos: -31.5,-69.5 + parent: 2 + - uid: 9026 components: - type: Transform - pos: 331.5,409.5 - parent: 1 - - uid: 8527 + pos: -34.5,-69.5 + parent: 2 + - uid: 9031 components: - type: Transform - pos: 331.5,408.5 - parent: 1 - - uid: 8528 + pos: -30.5,-45.5 + parent: 2 + - uid: 9045 components: - type: Transform - pos: 331.5,410.5 - parent: 1 - - uid: 8529 + pos: -10.5,-17.5 + parent: 2 + - uid: 9086 components: - type: Transform - pos: 331.5,407.5 - parent: 1 - - uid: 8530 + pos: -10.5,-19.5 + parent: 2 + - uid: 9145 components: - type: Transform - pos: 330.5,424.5 - parent: 1 - - uid: 8531 + pos: -29.5,-45.5 + parent: 2 + - uid: 9149 components: - type: Transform - pos: 329.5,424.5 - parent: 1 - - uid: 8532 + pos: -10.5,-18.5 + parent: 2 + - uid: 9163 components: - type: Transform - pos: 297.5,389.5 - parent: 1 - - uid: 8533 + pos: -10.5,-16.5 + parent: 2 + - uid: 9168 components: - type: Transform - pos: 298.5,389.5 - parent: 1 - - uid: 8534 + pos: -4.5,-8.5 + parent: 2 + - uid: 9171 components: - type: Transform - pos: 299.5,389.5 - parent: 1 - - uid: 8535 + pos: -23.5,15.5 + parent: 2 + - uid: 9172 components: - type: Transform - pos: 301.5,388.5 - parent: 1 - - uid: 8536 + pos: -5.5,-7.5 + parent: 2 + - uid: 9173 components: - type: Transform - pos: 297.5,390.5 - parent: 1 - - uid: 8537 + pos: -3.5,-9.5 + parent: 2 + - uid: 9174 components: - type: Transform - pos: 301.5,390.5 - parent: 1 - - uid: 8538 + pos: -3.5,-8.5 + parent: 2 + - uid: 9179 components: - type: Transform - pos: 301.5,389.5 - parent: 1 - - uid: 8539 + pos: -0.5,-8.5 + parent: 2 + - uid: 9180 components: - type: Transform - pos: 297.5,391.5 - parent: 1 - - uid: 8542 + pos: -1.5,-8.5 + parent: 2 + - uid: 9181 components: - type: Transform - pos: 300.5,391.5 - parent: 1 - - uid: 8543 + pos: -2.5,-8.5 + parent: 2 + - uid: 9182 components: - type: Transform - pos: 298.5,391.5 - parent: 1 - - uid: 8544 + pos: -24.5,-30.5 + parent: 2 + - uid: 9187 components: - type: Transform - pos: 299.5,390.5 - parent: 1 - - uid: 8546 + pos: -22.5,15.5 + parent: 2 + - uid: 9188 components: - type: Transform - pos: 301.5,387.5 - parent: 1 - - uid: 8547 + pos: -5.5,-8.5 + parent: 2 + - uid: 9189 components: - type: Transform - pos: 300.5,387.5 - parent: 1 - - uid: 8548 + pos: -5.5,-9.5 + parent: 2 + - uid: 9190 components: - type: Transform - pos: 299.5,387.5 - parent: 1 - - uid: 8549 + pos: -7.5,-7.5 + parent: 2 + - uid: 9191 components: - type: Transform - pos: 298.5,387.5 - parent: 1 - - uid: 8550 + pos: -5.5,-6.5 + parent: 2 + - uid: 9223 components: - type: Transform - pos: 298.5,386.5 - parent: 1 - - uid: 8551 + pos: -28.5,-30.5 + parent: 2 + - uid: 9256 components: - type: Transform - pos: 298.5,384.5 - parent: 1 - - uid: 8552 + pos: -76.5,-57.5 + parent: 2 + - uid: 9259 components: - type: Transform - pos: 298.5,383.5 - parent: 1 - - uid: 8553 + pos: -74.5,-56.5 + parent: 2 + - uid: 9499 components: - type: Transform - pos: 298.5,385.5 - parent: 1 - - uid: 8554 + pos: -26.5,-30.5 + parent: 2 + - uid: 9547 components: - type: Transform - pos: 298.5,382.5 - parent: 1 - - uid: 8555 + pos: -25.5,-30.5 + parent: 2 + - uid: 9593 components: - type: Transform - pos: 297.5,382.5 - parent: 1 - - uid: 8556 + pos: -133.5,-8.5 + parent: 2 + - uid: 9597 components: - type: Transform - pos: 324.5,429.5 - parent: 1 - - uid: 8557 + pos: -60.5,-73.5 + parent: 2 + - uid: 9598 components: - type: Transform - pos: 325.5,430.5 - parent: 1 - - uid: 8558 + pos: -133.5,-7.5 + parent: 2 + - uid: 9681 components: - type: Transform - pos: 325.5,431.5 - parent: 1 - - uid: 8559 + pos: -44.5,-23.5 + parent: 2 + - uid: 9782 components: - type: Transform - pos: 325.5,432.5 - parent: 1 - - uid: 8560 + pos: -52.5,-63.5 + parent: 2 + - uid: 9792 components: - type: Transform - pos: 325.5,433.5 - parent: 1 - - uid: 8561 + pos: -46.5,-63.5 + parent: 2 + - uid: 9806 components: - type: Transform - pos: 325.5,434.5 - parent: 1 - - uid: 8562 + pos: -42.5,-47.5 + parent: 2 + - uid: 9807 components: - type: Transform - pos: 326.5,434.5 - parent: 1 - - uid: 8563 + pos: -42.5,-48.5 + parent: 2 + - uid: 9808 components: - type: Transform - pos: 328.5,434.5 - parent: 1 - - uid: 8564 + pos: -42.5,-53.5 + parent: 2 + - uid: 9828 components: - type: Transform - pos: 329.5,434.5 - parent: 1 - - uid: 8565 + pos: -20.5,-1.5 + parent: 2 + - uid: 9868 components: - type: Transform - pos: 330.5,434.5 - parent: 1 - - uid: 8566 + pos: -96.5,26.5 + parent: 2 + - uid: 9888 components: - type: Transform - pos: 331.5,434.5 - parent: 1 - - uid: 8567 + pos: -95.5,26.5 + parent: 2 + - uid: 9904 components: - type: Transform - pos: 332.5,434.5 - parent: 1 - - uid: 8568 + pos: -119.5,7.5 + parent: 2 + - uid: 9908 components: - type: Transform - pos: 333.5,434.5 - parent: 1 - - uid: 8569 + pos: -119.5,17.5 + parent: 2 + - uid: 9910 components: - type: Transform - pos: 334.5,434.5 - parent: 1 - - uid: 8570 + pos: -119.5,12.5 + parent: 2 + - uid: 9956 components: - type: Transform - pos: 327.5,434.5 - parent: 1 - - uid: 8571 + pos: -51.5,-63.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 9970 components: - type: Transform - pos: 334.5,435.5 - parent: 1 - - uid: 8572 + pos: -94.5,26.5 + parent: 2 + - uid: 10010 components: - type: Transform - pos: 335.5,435.5 - parent: 1 - - uid: 8573 + pos: -23.5,0.5 + parent: 2 + - uid: 10274 components: - type: Transform - pos: 336.5,435.5 - parent: 1 - - uid: 8574 + pos: -66.5,-56.5 + parent: 2 + - uid: 10435 components: - type: Transform - pos: 338.5,435.5 - parent: 1 - - uid: 8575 + pos: -70.5,-9.5 + parent: 2 + - uid: 11022 components: - type: Transform - pos: 339.5,435.5 - parent: 1 - - uid: 8576 + pos: -50.5,-48.5 + parent: 2 + - uid: 11023 components: - type: Transform - pos: 340.5,435.5 - parent: 1 - - uid: 8577 + pos: -45.5,-47.5 + parent: 2 + - uid: 11032 components: - type: Transform - pos: 341.5,435.5 - parent: 1 - - uid: 8578 + pos: -48.5,-48.5 + parent: 2 + - uid: 11125 components: - type: Transform - pos: 342.5,435.5 - parent: 1 - - uid: 8579 + pos: -123.5,-52.5 + parent: 2 + - uid: 11228 components: - type: Transform - pos: 343.5,435.5 - parent: 1 - - uid: 8580 + pos: -39.5,-4.5 + parent: 2 + - uid: 11284 components: - type: Transform - pos: 344.5,435.5 - parent: 1 - - uid: 8581 + pos: -17.5,-8.5 + parent: 2 + - uid: 11285 components: - type: Transform - pos: 337.5,435.5 - parent: 1 - - uid: 8582 + pos: -15.5,-8.5 + parent: 2 + - uid: 11286 components: - type: Transform - pos: 344.5,436.5 - parent: 1 - - uid: 8583 + pos: -16.5,-8.5 + parent: 2 + - uid: 11288 components: - type: Transform - pos: 344.5,437.5 - parent: 1 - - uid: 8584 + pos: -15.5,-7.5 + parent: 2 + - uid: 11289 components: - type: Transform - pos: 346.5,437.5 - parent: 1 - - uid: 8585 + pos: -15.5,-6.5 + parent: 2 + - uid: 11290 components: - type: Transform - pos: 347.5,437.5 - parent: 1 - - uid: 8586 + pos: -15.5,-5.5 + parent: 2 + - uid: 11291 components: - type: Transform - pos: 348.5,437.5 - parent: 1 - - uid: 8587 + pos: -15.5,-4.5 + parent: 2 + - uid: 11297 components: - type: Transform - pos: 349.5,437.5 - parent: 1 - - uid: 8588 + pos: -18.5,5.5 + parent: 2 + - uid: 11301 components: - type: Transform - pos: 345.5,437.5 - parent: 1 - - uid: 8589 + pos: -15.5,-20.5 + parent: 2 + - uid: 11302 components: - type: Transform - pos: 349.5,436.5 - parent: 1 - - uid: 8590 + pos: -15.5,-19.5 + parent: 2 + - uid: 11303 components: - type: Transform - pos: 350.5,435.5 - parent: 1 - - uid: 8591 + pos: -15.5,-18.5 + parent: 2 + - uid: 11304 components: - type: Transform - pos: 349.5,435.5 - parent: 1 - - uid: 8592 + pos: -15.5,-9.5 + parent: 2 + - uid: 11305 components: - type: Transform - pos: 351.5,435.5 - parent: 1 - - uid: 8593 + pos: -15.5,-10.5 + parent: 2 + - uid: 11306 components: - type: Transform - pos: 352.5,435.5 - parent: 1 - - uid: 8594 + pos: -15.5,-12.5 + parent: 2 + - uid: 11307 components: - type: Transform - pos: 353.5,435.5 - parent: 1 - - uid: 8595 + pos: -15.5,-13.5 + parent: 2 + - uid: 11308 components: - type: Transform - pos: 354.5,435.5 - parent: 1 - - uid: 8596 + pos: -15.5,-14.5 + parent: 2 + - uid: 11309 components: - type: Transform - pos: 354.5,434.5 - parent: 1 - - uid: 8597 + pos: -15.5,-15.5 + parent: 2 + - uid: 11310 components: - type: Transform - pos: 354.5,432.5 - parent: 1 - - uid: 8598 + pos: -15.5,-16.5 + parent: 2 + - uid: 11311 components: - type: Transform - pos: 354.5,433.5 - parent: 1 - - uid: 8599 + pos: -15.5,-11.5 + parent: 2 + - uid: 11312 components: - type: Transform - pos: 354.5,431.5 - parent: 1 - - uid: 8600 + pos: -15.5,-17.5 + parent: 2 + - uid: 11316 components: - type: Transform - pos: 354.5,430.5 - parent: 1 - - uid: 8601 + pos: -10.5,-20.5 + parent: 2 + - uid: 11318 components: - type: Transform - pos: 354.5,429.5 - parent: 1 - - uid: 8602 + pos: -10.5,-21.5 + parent: 2 + - uid: 11319 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - uid: 8603 + pos: -15.5,-3.5 + parent: 2 + - uid: 11320 components: - type: Transform - pos: 355.5,428.5 - parent: 1 - - uid: 8604 + pos: -15.5,-1.5 + parent: 2 + - uid: 11321 components: - type: Transform - pos: 355.5,426.5 - parent: 1 - - uid: 8605 + pos: -15.5,-0.5 + parent: 2 + - uid: 11322 components: - type: Transform - pos: 355.5,425.5 - parent: 1 - - uid: 8606 + pos: -15.5,0.5 + parent: 2 + - uid: 11323 components: - type: Transform - pos: 355.5,424.5 - parent: 1 - - uid: 8607 + pos: -15.5,1.5 + parent: 2 + - uid: 11324 components: - type: Transform - pos: 355.5,423.5 - parent: 1 - - uid: 8608 + pos: -18.5,6.5 + parent: 2 + - uid: 11325 components: - type: Transform - pos: 355.5,422.5 - parent: 1 - - uid: 8609 + pos: -15.5,-2.5 + parent: 2 + - uid: 11327 components: - type: Transform - pos: 355.5,421.5 - parent: 1 - - uid: 8610 + pos: -18.5,3.5 + parent: 2 + - uid: 11328 components: - type: Transform - pos: 355.5,420.5 - parent: 1 - - uid: 8611 + pos: -18.5,2.5 + parent: 2 + - uid: 11332 components: - type: Transform - pos: 355.5,419.5 - parent: 1 - - uid: 8612 + pos: -18.5,7.5 + parent: 2 + - uid: 11333 components: - type: Transform - pos: 355.5,427.5 - parent: 1 - - uid: 8613 + pos: -18.5,8.5 + parent: 2 + - uid: 11334 components: - type: Transform - pos: 355.5,418.5 - parent: 1 - - uid: 8614 + pos: -18.5,9.5 + parent: 2 + - uid: 11335 components: - type: Transform - pos: 355.5,417.5 - parent: 1 - - uid: 8615 + pos: -18.5,10.5 + parent: 2 + - uid: 11336 components: - type: Transform - pos: 355.5,416.5 - parent: 1 - - uid: 8616 + pos: -18.5,11.5 + parent: 2 + - uid: 11337 components: - type: Transform - pos: 354.5,416.5 - parent: 1 - - uid: 8617 + pos: -18.5,4.5 + parent: 2 + - uid: 11338 components: - type: Transform - pos: 353.5,416.5 - parent: 1 - - uid: 8618 + pos: -18.5,12.5 + parent: 2 + - uid: 11339 components: - type: Transform - pos: 353.5,415.5 - parent: 1 - - uid: 8619 + pos: -19.5,12.5 + parent: 2 + - uid: 11340 components: - type: Transform - pos: 353.5,413.5 - parent: 1 - - uid: 8620 + pos: -20.5,12.5 + parent: 2 + - uid: 11341 components: - type: Transform - pos: 353.5,412.5 - parent: 1 - - uid: 8621 + pos: -22.5,12.5 + parent: 2 + - uid: 11342 components: - type: Transform - pos: 353.5,411.5 - parent: 1 - - uid: 8622 + pos: -23.5,12.5 + parent: 2 + - uid: 11343 components: - type: Transform - pos: 353.5,414.5 - parent: 1 - - uid: 8623 + pos: -21.5,12.5 + parent: 2 + - uid: 11344 components: - type: Transform - pos: 354.5,411.5 - parent: 1 - - uid: 8624 + pos: -23.5,13.5 + parent: 2 + - uid: 11345 components: - type: Transform - pos: 355.5,411.5 - parent: 1 - - uid: 8625 + pos: -23.5,14.5 + parent: 2 + - uid: 11352 components: - type: Transform - pos: 355.5,412.5 - parent: 1 - - uid: 8626 + pos: -23.5,11.5 + parent: 2 + - uid: 11353 components: - type: Transform - pos: 355.5,413.5 - parent: 1 - - uid: 8627 + pos: -23.5,9.5 + parent: 2 + - uid: 11354 components: - type: Transform - pos: 355.5,414.5 - parent: 1 - - uid: 8628 + pos: -23.5,10.5 + parent: 2 + - uid: 11384 components: - type: Transform - pos: 356.5,417.5 - parent: 1 - - uid: 8629 + pos: -27.5,12.5 + parent: 2 + - uid: 11385 components: - type: Transform - pos: 358.5,417.5 - parent: 1 - - uid: 8630 + pos: -24.5,12.5 + parent: 2 + - uid: 11386 components: - type: Transform - pos: 359.5,417.5 - parent: 1 - - uid: 8631 + pos: -27.5,2.5 + parent: 2 + - uid: 11387 components: - type: Transform - pos: 357.5,417.5 - parent: 1 - - uid: 8632 + pos: -25.5,2.5 + parent: 2 + - uid: 11388 components: - type: Transform - pos: 359.5,416.5 - parent: 1 - - uid: 8633 + pos: -23.5,2.5 + parent: 2 + - uid: 11542 components: - type: Transform - pos: 359.5,414.5 - parent: 1 - - uid: 8634 + pos: -14.5,-13.5 + parent: 2 + - uid: 11543 components: - type: Transform - pos: 359.5,413.5 - parent: 1 - - uid: 8635 + pos: -13.5,-13.5 + parent: 2 + - uid: 11544 components: - type: Transform - pos: 359.5,412.5 - parent: 1 - - uid: 8636 + pos: -12.5,-13.5 + parent: 2 + - uid: 11545 components: - type: Transform - pos: 359.5,411.5 - parent: 1 - - uid: 8637 + pos: -10.5,-13.5 + parent: 2 + - uid: 11546 components: - type: Transform - pos: 359.5,410.5 - parent: 1 - - uid: 8638 + pos: -11.5,-13.5 + parent: 2 + - uid: 11547 components: - type: Transform - pos: 359.5,409.5 - parent: 1 - - uid: 8639 + pos: -10.5,-12.5 + parent: 2 + - uid: 11548 components: - type: Transform - pos: 359.5,415.5 - parent: 1 - - uid: 8640 + pos: -10.5,-11.5 + parent: 2 + - uid: 11549 components: - type: Transform - pos: 358.5,408.5 - parent: 1 - - uid: 8641 + pos: -10.5,-9.5 + parent: 2 + - uid: 11550 components: - type: Transform - pos: 358.5,407.5 - parent: 1 - - uid: 8642 + pos: -10.5,-10.5 + parent: 2 + - uid: 11551 components: - type: Transform - pos: 358.5,409.5 - parent: 1 - - uid: 8643 + pos: -11.5,-9.5 + parent: 2 + - uid: 11552 components: - type: Transform - pos: 359.5,407.5 - parent: 1 - - uid: 8644 + pos: -9.5,-9.5 + parent: 2 + - uid: 11553 components: - type: Transform - pos: 361.5,407.5 - parent: 1 - - uid: 8645 + pos: -9.5,-8.5 + parent: 2 + - uid: 11554 components: - type: Transform - pos: 360.5,407.5 - parent: 1 - - uid: 8646 + pos: -8.5,-8.5 + parent: 2 + - uid: 11555 components: - type: Transform - pos: 361.5,406.5 - parent: 1 - - uid: 8647 + pos: -7.5,-8.5 + parent: 2 + - uid: 11559 components: - type: Transform - pos: 302.5,387.5 - parent: 1 - - uid: 8648 + pos: -7.5,-6.5 + parent: 2 + - uid: 11796 components: - type: Transform - pos: 304.5,387.5 - parent: 1 - - uid: 8649 + pos: -4.5,-6.5 + parent: 2 + - uid: 11798 components: - type: Transform - pos: 305.5,387.5 - parent: 1 - - uid: 8650 + pos: -2.5,-5.5 + parent: 2 + - uid: 11799 components: - type: Transform - pos: 306.5,387.5 - parent: 1 - - uid: 8651 + pos: -1.5,-5.5 + parent: 2 + - uid: 11800 components: - type: Transform - pos: 307.5,387.5 - parent: 1 - - uid: 8652 + pos: -3.5,-5.5 + parent: 2 + - uid: 11801 components: - type: Transform - pos: 308.5,387.5 - parent: 1 - - uid: 8653 + pos: -1.5,-6.5 + parent: 2 + - uid: 11806 components: - type: Transform - pos: 309.5,387.5 - parent: 1 - - uid: 8654 + pos: -0.5,-7.5 + parent: 2 + - uid: 11807 components: - type: Transform - pos: 310.5,387.5 - parent: 1 - - uid: 8655 + pos: 1.5,-7.5 + parent: 2 + - uid: 11808 components: - type: Transform - pos: 311.5,387.5 - parent: 1 - - uid: 8656 + pos: 0.5,-7.5 + parent: 2 + - uid: 11811 components: - type: Transform - pos: 312.5,387.5 - parent: 1 - - uid: 8657 + pos: -0.5,-9.5 + parent: 2 + - uid: 11812 components: - type: Transform - pos: 313.5,387.5 - parent: 1 - - uid: 8658 + pos: 0.5,-9.5 + parent: 2 + - uid: 11813 components: - type: Transform - pos: 314.5,387.5 - parent: 1 - - uid: 8659 + pos: 1.5,-9.5 + parent: 2 + - uid: 12141 components: - type: Transform - pos: 315.5,387.5 - parent: 1 - - uid: 8660 + pos: -55.5,-31.5 + parent: 2 + - uid: 12145 components: - type: Transform - pos: 303.5,387.5 - parent: 1 - - uid: 8661 + pos: -65.5,-31.5 + parent: 2 + - uid: 12498 components: - type: Transform - pos: 316.5,387.5 - parent: 1 - - uid: 8662 + pos: -45.5,-42.5 + parent: 2 + - uid: 12507 components: - type: Transform - pos: 318.5,387.5 - parent: 1 - - uid: 8663 + pos: -65.5,-30.5 + parent: 2 + - uid: 12545 components: - type: Transform - pos: 319.5,387.5 - parent: 1 - - uid: 8664 + pos: -30.5,-39.5 + parent: 2 + - uid: 12547 components: - type: Transform - pos: 317.5,387.5 - parent: 1 - - uid: 8665 + pos: -50.5,-51.5 + parent: 2 + - uid: 12548 components: - type: Transform - pos: 321.5,387.5 - parent: 1 - - uid: 8666 + pos: -50.5,-53.5 + parent: 2 + - uid: 12549 components: - type: Transform - pos: 320.5,387.5 - parent: 1 - - uid: 8667 + pos: -55.5,-54.5 + parent: 2 + - uid: 12550 components: - type: Transform - pos: 322.5,387.5 - parent: 1 - - uid: 8668 + pos: -49.5,-48.5 + parent: 2 + - uid: 12552 components: - type: Transform - pos: 324.5,387.5 - parent: 1 - - uid: 8669 + pos: -52.5,-53.5 + parent: 2 + - uid: 12553 components: - type: Transform - pos: 325.5,387.5 - parent: 1 - - uid: 8670 + pos: -83.5,5.5 + parent: 2 + - uid: 12554 components: - type: Transform - pos: 323.5,387.5 - parent: 1 - - uid: 8671 + pos: -85.5,5.5 + parent: 2 + - uid: 12555 components: - type: Transform - pos: 326.5,387.5 - parent: 1 - - uid: 8672 + pos: -85.5,6.5 + parent: 2 + - uid: 12556 components: - type: Transform - pos: 328.5,387.5 - parent: 1 - - uid: 8673 + pos: -81.5,5.5 + parent: 2 + - uid: 12557 components: - type: Transform - pos: 329.5,387.5 - parent: 1 - - uid: 8674 + pos: -84.5,5.5 + parent: 2 + - uid: 12558 components: - type: Transform - pos: 330.5,387.5 - parent: 1 - - uid: 8675 + pos: -80.5,5.5 + parent: 2 + - uid: 12559 components: - type: Transform - pos: 331.5,387.5 - parent: 1 - - uid: 8676 + pos: -55.5,-53.5 + parent: 2 + - uid: 12584 components: - type: Transform - pos: 327.5,387.5 - parent: 1 - - uid: 8677 + pos: -54.5,-53.5 + parent: 2 + - uid: 12595 components: - type: Transform - pos: 334.5,380.5 - parent: 1 - - uid: 8678 + pos: -51.5,-53.5 + parent: 2 + - uid: 12842 components: - type: Transform - pos: 334.5,381.5 - parent: 1 - - uid: 8679 + pos: -16.5,-59.5 + parent: 2 + - uid: 12843 components: - type: Transform - pos: 334.5,382.5 - parent: 1 - - uid: 8680 + pos: -50.5,-52.5 + parent: 2 + - uid: 12849 components: - type: Transform - pos: 331.5,388.5 - parent: 1 - - uid: 8681 + pos: -50.5,-49.5 + parent: 2 + - uid: 12853 components: - type: Transform - pos: 331.5,390.5 - parent: 1 - - uid: 8682 + pos: -50.5,-50.5 + parent: 2 + - uid: 12854 components: - type: Transform - pos: 331.5,391.5 - parent: 1 - - uid: 8683 + pos: -48.5,-47.5 + parent: 2 + - uid: 12858 components: - type: Transform - pos: 331.5,389.5 - parent: 1 - - uid: 8684 + pos: -47.5,-47.5 + parent: 2 + - uid: 12881 components: - type: Transform - pos: 331.5,392.5 - parent: 1 - - uid: 8685 + pos: -46.5,-47.5 + parent: 2 + - uid: 12882 components: - type: Transform - pos: 332.5,392.5 - parent: 1 - - uid: 8686 + pos: -53.5,-53.5 + parent: 2 + - uid: 12906 components: - type: Transform - pos: 333.5,392.5 - parent: 1 - - uid: 8687 + pos: -15.5,-61.5 + parent: 2 + - uid: 12907 components: - type: Transform - pos: 333.5,391.5 - parent: 1 - - uid: 8688 + pos: -17.5,-64.5 + parent: 2 + - uid: 12954 components: - type: Transform - pos: 333.5,390.5 - parent: 1 - - uid: 8689 + pos: -28.5,-44.5 + parent: 2 + - uid: 12955 components: - type: Transform - pos: 334.5,390.5 - parent: 1 - - uid: 8690 + pos: -27.5,-44.5 + parent: 2 + - uid: 12956 components: - type: Transform - pos: 335.5,390.5 - parent: 1 - - uid: 8691 + pos: -25.5,-44.5 + parent: 2 + - uid: 12957 components: - type: Transform - pos: 335.5,389.5 - parent: 1 - - uid: 8692 + pos: -24.5,-44.5 + parent: 2 + - uid: 12958 components: - type: Transform - pos: 335.5,388.5 - parent: 1 - - uid: 8693 + pos: -23.5,-44.5 + parent: 2 + - uid: 12959 components: - type: Transform - pos: 335.5,387.5 - parent: 1 - - uid: 8694 + pos: -22.5,-44.5 + parent: 2 + - uid: 12960 components: - type: Transform - pos: 335.5,385.5 - parent: 1 - - uid: 8695 + pos: -21.5,-44.5 + parent: 2 + - uid: 12961 components: - type: Transform - pos: 335.5,386.5 - parent: 1 - - uid: 8696 + pos: -26.5,-44.5 + parent: 2 + - uid: 12962 components: - type: Transform - pos: 334.5,385.5 - parent: 1 - - uid: 8697 + pos: -21.5,-45.5 + parent: 2 + - uid: 12963 components: - type: Transform - pos: 334.5,384.5 - parent: 1 - - uid: 8698 + pos: -20.5,-45.5 + parent: 2 + - uid: 12964 components: - type: Transform - pos: 334.5,383.5 - parent: 1 - - uid: 8699 + pos: -29.5,-43.5 + parent: 2 + - uid: 12965 components: - type: Transform - pos: 336.5,382.5 - parent: 1 - - uid: 8700 + pos: -29.5,-42.5 + parent: 2 + - uid: 12966 components: - type: Transform - pos: 335.5,382.5 - parent: 1 - - uid: 8701 + pos: -29.5,-41.5 + parent: 2 + - uid: 12967 components: - type: Transform - pos: 337.5,382.5 - parent: 1 - - uid: 8702 + pos: -29.5,-39.5 + parent: 2 + - uid: 12968 components: - type: Transform - pos: 338.5,382.5 - parent: 1 - - uid: 8703 + pos: -29.5,-38.5 + parent: 2 + - uid: 12969 components: - type: Transform - pos: 339.5,382.5 - parent: 1 - - uid: 8704 + pos: -29.5,-37.5 + parent: 2 + - uid: 12970 components: - type: Transform - pos: 340.5,382.5 - parent: 1 - - uid: 8705 + pos: -29.5,-40.5 + parent: 2 + - uid: 12971 components: - type: Transform - pos: 340.5,383.5 - parent: 1 - - uid: 8706 + pos: -29.5,-36.5 + parent: 2 + - uid: 12972 components: - type: Transform - pos: 341.5,383.5 - parent: 1 - - uid: 8707 + pos: -29.5,-35.5 + parent: 2 + - uid: 12973 components: - type: Transform - pos: 342.5,383.5 - parent: 1 - - uid: 8708 + pos: -29.5,-34.5 + parent: 2 + - uid: 12974 components: - type: Transform - pos: 343.5,383.5 - parent: 1 - - uid: 8709 + pos: -29.5,-33.5 + parent: 2 + - uid: 12975 components: - type: Transform - pos: 344.5,383.5 - parent: 1 - - uid: 8710 + pos: -29.5,-32.5 + parent: 2 + - uid: 12976 components: - type: Transform - pos: 345.5,383.5 - parent: 1 - - uid: 8711 + pos: -29.5,-31.5 + parent: 2 + - uid: 12977 components: - type: Transform - pos: 345.5,384.5 - parent: 1 - - uid: 8712 + pos: -38.5,-34.5 + parent: 2 + - uid: 12978 components: - type: Transform - pos: 345.5,385.5 - parent: 1 - - uid: 8713 + pos: -38.5,-33.5 + parent: 2 + - uid: 12979 components: - type: Transform - pos: 347.5,385.5 - parent: 1 - - uid: 8714 + pos: -38.5,-31.5 + parent: 2 + - uid: 12980 components: - type: Transform - pos: 348.5,385.5 - parent: 1 - - uid: 8715 + pos: -29.5,-30.5 + parent: 2 + - uid: 12981 components: - type: Transform - pos: 346.5,385.5 - parent: 1 - - uid: 8716 + pos: -38.5,-32.5 + parent: 2 + - uid: 12982 components: - type: Transform - pos: 348.5,384.5 - parent: 1 - - uid: 8717 + pos: -37.5,-31.5 + parent: 2 + - uid: 12983 components: - type: Transform - pos: 348.5,383.5 - parent: 1 - - uid: 8718 + pos: -36.5,-31.5 + parent: 2 + - uid: 12984 components: - type: Transform - pos: 347.5,383.5 - parent: 1 - - uid: 8719 + pos: -35.5,-31.5 + parent: 2 + - uid: 12985 components: - type: Transform - pos: 296.5,389.5 - parent: 1 - - uid: 8720 + pos: -33.5,-31.5 + parent: 2 + - uid: 12986 components: - type: Transform - pos: 295.5,389.5 - parent: 1 - - uid: 8721 + pos: -32.5,-31.5 + parent: 2 + - uid: 12987 components: - type: Transform - pos: 294.5,389.5 - parent: 1 - - uid: 8722 + pos: -31.5,-31.5 + parent: 2 + - uid: 12988 components: - type: Transform - pos: 293.5,389.5 - parent: 1 - - uid: 8724 + pos: -30.5,-31.5 + parent: 2 + - uid: 12989 components: - type: Transform - pos: 330.5,408.5 - parent: 1 - - uid: 8725 + pos: -34.5,-31.5 + parent: 2 + - uid: 12990 components: - type: Transform - pos: 330.5,407.5 - parent: 1 - - uid: 8726 + pos: -39.5,-33.5 + parent: 2 + - uid: 12991 components: - type: Transform - pos: 333.5,393.5 - parent: 1 - - uid: 8727 + pos: -39.5,-35.5 + parent: 2 + - uid: 12992 components: - type: Transform - pos: 335.5,393.5 - parent: 1 - - uid: 8728 + pos: -39.5,-34.5 + parent: 2 + - uid: 12993 components: - type: Transform - pos: 334.5,393.5 - parent: 1 - - uid: 8729 + pos: -40.5,-35.5 + parent: 2 + - uid: 12994 components: - type: Transform - pos: 335.5,394.5 - parent: 1 - - uid: 8730 + pos: -41.5,-35.5 + parent: 2 + - uid: 12995 components: - type: Transform - pos: 335.5,395.5 - parent: 1 - - uid: 8731 + pos: -41.5,-34.5 + parent: 2 + - uid: 12996 components: - type: Transform - pos: 335.5,396.5 - parent: 1 - - uid: 8732 + pos: -29.5,-29.5 + parent: 2 + - uid: 12997 components: - type: Transform - pos: 335.5,397.5 - parent: 1 - - uid: 8733 + pos: -29.5,-28.5 + parent: 2 + - uid: 12998 components: - type: Transform - pos: 335.5,398.5 - parent: 1 - - uid: 8734 + pos: -29.5,-26.5 + parent: 2 + - uid: 12999 components: - type: Transform - pos: 335.5,399.5 - parent: 1 - - uid: 8735 + pos: -29.5,-25.5 + parent: 2 + - uid: 13000 components: - type: Transform - pos: 335.5,400.5 - parent: 1 - - uid: 8736 + pos: -29.5,-27.5 + parent: 2 + - uid: 13001 components: - type: Transform - pos: 334.5,400.5 - parent: 1 - - uid: 8737 + pos: -29.5,-24.5 + parent: 2 + - uid: 13002 components: - type: Transform - pos: 332.5,400.5 - parent: 1 - - uid: 8738 + pos: -30.5,-24.5 + parent: 2 + - uid: 13003 components: - type: Transform - pos: 331.5,400.5 - parent: 1 - - uid: 8739 + pos: -33.5,-24.5 + parent: 2 + - uid: 13004 components: - type: Transform - pos: 333.5,400.5 - parent: 1 - - uid: 8740 + pos: -31.5,-24.5 + parent: 2 + - uid: 13005 components: - type: Transform - pos: 331.5,401.5 - parent: 1 - - uid: 8741 + pos: -34.5,-24.5 + parent: 2 + - uid: 13006 components: - type: Transform - pos: 331.5,403.5 - parent: 1 - - uid: 8742 + pos: -35.5,-24.5 + parent: 2 + - uid: 13007 components: - type: Transform - pos: 331.5,404.5 - parent: 1 - - uid: 8743 + pos: -36.5,-24.5 + parent: 2 + - uid: 13008 components: - type: Transform - pos: 331.5,405.5 - parent: 1 - - uid: 8744 + pos: -32.5,-24.5 + parent: 2 + - uid: 13010 components: - type: Transform - pos: 331.5,402.5 - parent: 1 - - uid: 8745 + pos: -37.5,-24.5 + parent: 2 + - uid: 13011 components: - type: Transform - pos: 331.5,406.5 - parent: 1 - - uid: 8746 + pos: -38.5,-24.5 + parent: 2 + - uid: 13012 components: - type: Transform - pos: 331.5,407.5 - parent: 1 - - uid: 8747 + pos: -38.5,-23.5 + parent: 2 + - uid: 13013 components: - type: Transform - pos: 403.5,367.5 - parent: 1 - - uid: 8748 + pos: -40.5,-23.5 + parent: 2 + - uid: 13014 components: - type: Transform - pos: 404.5,367.5 - parent: 1 - - uid: 8749 + pos: -39.5,-23.5 + parent: 2 + - uid: 13015 components: - type: Transform - pos: 404.5,366.5 - parent: 1 - - uid: 8750 + pos: -40.5,-24.5 + parent: 2 + - uid: 13017 components: - type: Transform - pos: 404.5,365.5 - parent: 1 - - uid: 8751 + pos: -28.5,-24.5 + parent: 2 + - uid: 13018 components: - type: Transform - pos: 404.5,364.5 - parent: 1 - - uid: 8752 + pos: -28.5,-22.5 + parent: 2 + - uid: 13019 components: - type: Transform - pos: 406.5,364.5 - parent: 1 - - uid: 8753 + pos: -28.5,-23.5 + parent: 2 + - uid: 13020 components: - type: Transform - pos: 405.5,364.5 - parent: 1 - - uid: 8754 + pos: -27.5,-22.5 + parent: 2 + - uid: 13030 components: - type: Transform - pos: 407.5,364.5 - parent: 1 - - uid: 8755 + pos: -20.5,-30.5 + parent: 2 + - uid: 13031 components: - type: Transform - pos: 408.5,364.5 - parent: 1 - - uid: 8756 + pos: -20.5,-29.5 + parent: 2 + - uid: 13032 components: - type: Transform - pos: 408.5,365.5 - parent: 1 - - uid: 8757 + pos: -20.5,-28.5 + parent: 2 + - uid: 13034 components: - type: Transform - pos: 410.5,365.5 - parent: 1 - - uid: 8758 + pos: -18.5,-31.5 + parent: 2 + - uid: 13035 components: - type: Transform - pos: 411.5,365.5 - parent: 1 - - uid: 8759 + pos: -18.5,-30.5 + parent: 2 + - uid: 13036 components: - type: Transform - pos: 412.5,365.5 - parent: 1 - - uid: 8760 + pos: -18.5,-29.5 + parent: 2 + - uid: 13040 components: - type: Transform - pos: 413.5,365.5 - parent: 1 - - uid: 8761 + pos: -18.5,-28.5 + parent: 2 + - uid: 13044 components: - type: Transform - pos: 409.5,365.5 - parent: 1 - - uid: 8762 + pos: -18.5,-36.5 + parent: 2 + - uid: 13046 components: - type: Transform - pos: 414.5,365.5 - parent: 1 - - uid: 8763 + pos: -18.5,-35.5 + parent: 2 + - uid: 13047 components: - type: Transform - pos: 415.5,365.5 - parent: 1 - - uid: 8764 + pos: -18.5,-33.5 + parent: 2 + - uid: 13048 components: - type: Transform - pos: 416.5,365.5 - parent: 1 - - uid: 8765 + pos: -18.5,-32.5 + parent: 2 + - uid: 13049 components: - type: Transform - pos: 418.5,365.5 - parent: 1 - - uid: 8766 + pos: -18.5,-34.5 + parent: 2 + - uid: 13050 components: - type: Transform - pos: 417.5,365.5 - parent: 1 - - uid: 8767 + pos: -19.5,-45.5 + parent: 2 + - uid: 13051 components: - type: Transform - pos: 420.5,365.5 - parent: 1 - - uid: 8768 + pos: -18.5,-45.5 + parent: 2 + - uid: 13052 components: - type: Transform - pos: 422.5,365.5 - parent: 1 - - uid: 8769 + pos: -18.5,-44.5 + parent: 2 + - uid: 13053 components: - type: Transform - pos: 421.5,365.5 - parent: 1 - - uid: 8770 + pos: -18.5,-43.5 + parent: 2 + - uid: 13054 components: - type: Transform - pos: 423.5,365.5 - parent: 1 - - uid: 8771 + pos: -18.5,-42.5 + parent: 2 + - uid: 13055 components: - type: Transform - pos: 419.5,365.5 - parent: 1 - - uid: 8772 + pos: -18.5,-40.5 + parent: 2 + - uid: 13056 components: - type: Transform - pos: 423.5,366.5 - parent: 1 - - uid: 8773 + pos: -18.5,-39.5 + parent: 2 + - uid: 13057 components: - type: Transform - pos: 423.5,368.5 - parent: 1 - - uid: 8774 + pos: -18.5,-38.5 + parent: 2 + - uid: 13058 components: - type: Transform - pos: 423.5,369.5 - parent: 1 - - uid: 8775 + pos: -18.5,-37.5 + parent: 2 + - uid: 13059 components: - type: Transform - pos: 423.5,370.5 - parent: 1 - - uid: 8776 + pos: -18.5,-41.5 + parent: 2 + - uid: 13060 components: - type: Transform - pos: 423.5,367.5 - parent: 1 - - uid: 8777 + pos: -24.5,-49.5 + parent: 2 + - uid: 13061 components: - type: Transform - pos: 422.5,370.5 - parent: 1 - - uid: 8778 + pos: -25.5,-49.5 + parent: 2 + - uid: 13062 components: - type: Transform - pos: 422.5,371.5 - parent: 1 - - uid: 8779 + pos: -27.5,-49.5 + parent: 2 + - uid: 13063 components: - type: Transform - pos: 422.5,372.5 - parent: 1 - - uid: 8780 + pos: -28.5,-49.5 + parent: 2 + - uid: 13064 components: - type: Transform - pos: 422.5,373.5 - parent: 1 - - uid: 8781 + pos: -29.5,-49.5 + parent: 2 + - uid: 13065 components: - type: Transform - pos: 422.5,374.5 - parent: 1 - - uid: 8782 + pos: -26.5,-49.5 + parent: 2 + - uid: 13066 components: - type: Transform - pos: 422.5,375.5 - parent: 1 - - uid: 8783 + pos: -29.5,-48.5 + parent: 2 + - uid: 13067 components: - type: Transform - pos: 422.5,377.5 - parent: 1 - - uid: 8784 + pos: -29.5,-47.5 + parent: 2 + - uid: 13068 components: - type: Transform - pos: 422.5,376.5 - parent: 1 - - uid: 8785 + pos: -24.5,-48.5 + parent: 2 + - uid: 13129 components: - type: Transform - pos: 422.5,378.5 - parent: 1 - - uid: 8786 + pos: -45.5,-43.5 + parent: 2 + - uid: 13622 components: - type: Transform - pos: 422.5,379.5 - parent: 1 - - uid: 8787 + pos: -140.5,-37.5 + parent: 2 + - uid: 13677 components: - type: Transform - pos: 422.5,380.5 - parent: 1 - - uid: 8788 + pos: -140.5,-39.5 + parent: 2 + - uid: 13679 components: - type: Transform - pos: 423.5,380.5 - parent: 1 - - uid: 8789 + pos: -136.5,-36.5 + parent: 2 + - uid: 13692 components: - type: Transform - pos: 423.5,382.5 - parent: 1 - - uid: 8790 + pos: -56.5,-72.5 + parent: 2 + - uid: 13697 components: - type: Transform - pos: 423.5,383.5 - parent: 1 - - uid: 8791 + pos: -140.5,-38.5 + parent: 2 + - uid: 13701 components: - type: Transform - pos: 423.5,384.5 - parent: 1 - - uid: 8792 + pos: -135.5,-36.5 + parent: 2 + - uid: 13707 components: - type: Transform - pos: 423.5,381.5 - parent: 1 - - uid: 8793 + pos: -58.5,-73.5 + parent: 2 + - uid: 13727 components: - type: Transform - pos: 423.5,385.5 - parent: 1 - - uid: 8794 + pos: -137.5,-36.5 + parent: 2 + - uid: 13740 components: - type: Transform - pos: 422.5,385.5 - parent: 1 - - uid: 8795 + pos: -15.5,-32.5 + parent: 2 + - uid: 13741 components: - type: Transform - pos: 421.5,385.5 - parent: 1 - - uid: 8796 + pos: -125.5,25.5 + parent: 2 + - uid: 13744 components: - type: Transform - pos: 421.5,384.5 - parent: 1 - - uid: 8797 + pos: -15.5,-31.5 + parent: 2 + - uid: 13821 components: - type: Transform - pos: 421.5,383.5 - parent: 1 - - uid: 8798 + pos: -120.5,-38.5 + parent: 2 + - uid: 14022 components: - type: Transform - pos: 420.5,383.5 - parent: 1 - - uid: 8799 + pos: -138.5,-36.5 + parent: 2 + - uid: 14045 components: - type: Transform - pos: 424.5,385.5 - parent: 1 - - uid: 8800 + pos: -55.5,-28.5 + parent: 2 + - uid: 14111 components: - type: Transform - pos: 426.5,385.5 - parent: 1 - - uid: 8801 + pos: -59.5,-73.5 + parent: 2 + - uid: 14172 components: - type: Transform - pos: 427.5,385.5 - parent: 1 - - uid: 8802 + pos: -40.5,-41.5 + parent: 2 + - uid: 14216 components: - type: Transform - pos: 425.5,385.5 - parent: 1 - - uid: 8803 + pos: -13.5,-34.5 + parent: 2 + - uid: 14249 components: - type: Transform - pos: 428.5,384.5 - parent: 1 - - uid: 8804 + pos: -39.5,-40.5 + parent: 2 + - uid: 14273 components: - type: Transform - pos: 429.5,384.5 - parent: 1 - - uid: 8805 + pos: -70.5,-21.5 + parent: 2 + - uid: 14352 components: - type: Transform - pos: 430.5,384.5 - parent: 1 - - uid: 8806 + pos: -67.5,-9.5 + parent: 2 + - uid: 14652 components: - type: Transform - pos: 431.5,384.5 - parent: 1 - - uid: 8807 + pos: -10.5,-14.5 + parent: 2 + - uid: 14653 components: - type: Transform - pos: 432.5,384.5 - parent: 1 - - uid: 8808 + pos: -57.5,-73.5 + parent: 2 + - uid: 14667 components: - type: Transform - pos: 433.5,384.5 - parent: 1 - - uid: 8809 + pos: -65.5,-28.5 + parent: 2 + - uid: 15008 components: - type: Transform - pos: 427.5,384.5 - parent: 1 - - uid: 8810 + pos: -76.5,-35.5 + parent: 2 + - uid: 15009 components: - type: Transform - pos: 433.5,386.5 - parent: 1 - - uid: 8811 + pos: -18.5,-8.5 + parent: 2 + - uid: 15033 components: - type: Transform - pos: 433.5,387.5 - parent: 1 - - uid: 8812 + pos: -133.5,0.5 + parent: 2 + - uid: 15045 components: - type: Transform - pos: 433.5,388.5 - parent: 1 - - uid: 8813 + pos: -133.5,-6.5 + parent: 2 + - uid: 15052 components: - type: Transform - pos: 433.5,389.5 - parent: 1 - - uid: 8814 + pos: -76.5,-37.5 + parent: 2 + - uid: 15054 components: - type: Transform - pos: 433.5,390.5 - parent: 1 - - uid: 8815 + pos: -76.5,-41.5 + parent: 2 + - uid: 15055 components: - type: Transform - pos: 433.5,385.5 - parent: 1 - - uid: 8816 + pos: -76.5,-38.5 + parent: 2 + - uid: 15058 components: - type: Transform - pos: 433.5,392.5 - parent: 1 - - uid: 8817 + pos: -76.5,-42.5 + parent: 2 + - uid: 15059 components: - type: Transform - pos: 433.5,393.5 - parent: 1 - - uid: 8818 + pos: -76.5,-39.5 + parent: 2 + - uid: 15063 components: - type: Transform - pos: 433.5,391.5 - parent: 1 - - uid: 8819 + pos: -76.5,-40.5 + parent: 2 + - uid: 15064 components: - type: Transform - pos: 433.5,395.5 - parent: 1 - - uid: 8820 + pos: -76.5,-55.5 + parent: 2 + - uid: 15065 components: - type: Transform - pos: 433.5,396.5 - parent: 1 - - uid: 8821 + pos: -76.5,-43.5 + parent: 2 + - uid: 15194 components: - type: Transform - pos: 433.5,397.5 - parent: 1 - - uid: 8822 + pos: -119.5,-21.5 + parent: 2 + - uid: 15426 components: - type: Transform - pos: 433.5,394.5 - parent: 1 - - uid: 8823 + pos: -31.5,-39.5 + parent: 2 + - uid: 15432 components: - type: Transform - pos: 434.5,397.5 - parent: 1 - - uid: 8824 + pos: -42.5,-50.5 + parent: 2 + - uid: 15434 components: - type: Transform - pos: 434.5,399.5 - parent: 1 - - uid: 8825 + pos: -47.5,-40.5 + parent: 2 + - uid: 15435 components: - type: Transform - pos: 434.5,400.5 - parent: 1 - - uid: 8826 + pos: -42.5,-63.5 + parent: 2 + - uid: 15436 components: - type: Transform - pos: 434.5,401.5 - parent: 1 - - uid: 8827 + pos: -42.5,-52.5 + parent: 2 + - uid: 15438 components: - type: Transform - pos: 434.5,402.5 - parent: 1 - - uid: 8828 + pos: -42.5,-51.5 + parent: 2 + - uid: 15439 components: - type: Transform - pos: 434.5,403.5 - parent: 1 - - uid: 8829 + pos: -44.5,-42.5 + parent: 2 + - uid: 15440 components: - type: Transform - pos: 434.5,404.5 - parent: 1 - - uid: 8830 + pos: -54.5,-63.5 + parent: 2 + - uid: 15441 components: - type: Transform - pos: 434.5,405.5 - parent: 1 - - uid: 8831 + pos: -44.5,-63.5 + parent: 2 + - uid: 15442 components: - type: Transform - pos: 434.5,406.5 - parent: 1 - - uid: 8832 + pos: -43.5,-63.5 + parent: 2 + - uid: 15481 components: - type: Transform - pos: 434.5,407.5 - parent: 1 - - uid: 8833 + pos: -55.5,-57.5 + parent: 2 + - uid: 15483 components: - type: Transform - pos: 434.5,408.5 - parent: 1 - - uid: 8834 + pos: -55.5,-56.5 + parent: 2 + - uid: 15484 components: - type: Transform - pos: 434.5,398.5 - parent: 1 - - uid: 8835 + pos: -55.5,-55.5 + parent: 2 + - uid: 15485 components: - type: Transform - pos: 432.5,408.5 - parent: 1 - - uid: 8836 + pos: -55.5,-58.5 + parent: 2 + - uid: 15486 components: - type: Transform - pos: 433.5,408.5 - parent: 1 - - uid: 8837 + pos: -55.5,-59.5 + parent: 2 + - uid: 15487 components: - type: Transform - pos: 432.5,410.5 - parent: 1 - - uid: 8838 + pos: -55.5,-61.5 + parent: 2 + - uid: 15488 components: - type: Transform - pos: 432.5,411.5 - parent: 1 - - uid: 8839 + pos: -55.5,-62.5 + parent: 2 + - uid: 15489 components: - type: Transform - pos: 432.5,412.5 - parent: 1 - - uid: 8840 + pos: -55.5,-63.5 + parent: 2 + - uid: 15490 components: - type: Transform - pos: 432.5,413.5 - parent: 1 - - uid: 8841 + pos: -55.5,-60.5 + parent: 2 + - uid: 15546 components: - type: Transform - pos: 432.5,414.5 - parent: 1 - - uid: 8842 + pos: -55.5,-30.5 + parent: 2 + - uid: 15548 components: - type: Transform - pos: 432.5,415.5 - parent: 1 - - uid: 8843 + pos: -55.5,-27.5 + parent: 2 + - uid: 15549 components: - type: Transform - pos: 432.5,409.5 - parent: 1 - - uid: 8844 + pos: -55.5,-26.5 + parent: 2 + - uid: 15550 components: - type: Transform - pos: 433.5,415.5 - parent: 1 - - uid: 8845 + pos: -55.5,-29.5 + parent: 2 + - uid: 15551 components: - type: Transform - pos: 434.5,415.5 - parent: 1 - - uid: 8846 + pos: -56.5,-26.5 + parent: 2 + - uid: 15555 components: - type: Transform - pos: 434.5,414.5 - parent: 1 - - uid: 8847 + pos: -43.5,-23.5 + parent: 2 + - uid: 15556 components: - type: Transform - pos: 434.5,413.5 - parent: 1 - - uid: 8848 + pos: -43.5,-24.5 + parent: 2 + - uid: 15557 components: - type: Transform - pos: 432.5,416.5 - parent: 1 - - uid: 8849 + pos: -43.5,-25.5 + parent: 2 + - uid: 15558 components: - type: Transform - pos: 432.5,417.5 - parent: 1 - - uid: 8850 + pos: -43.5,-27.5 + parent: 2 + - uid: 15559 components: - type: Transform - pos: 432.5,418.5 - parent: 1 - - uid: 8851 + pos: -43.5,-28.5 + parent: 2 + - uid: 15560 components: - type: Transform - pos: 431.5,418.5 - parent: 1 - - uid: 8852 + pos: -43.5,-29.5 + parent: 2 + - uid: 15561 components: - type: Transform - pos: 429.5,418.5 - parent: 1 - - uid: 8853 + pos: -43.5,-30.5 + parent: 2 + - uid: 15562 components: - type: Transform - pos: 430.5,418.5 - parent: 1 - - uid: 8854 + pos: -43.5,-31.5 + parent: 2 + - uid: 15563 components: - type: Transform - pos: 429.5,419.5 - parent: 1 - - uid: 8855 + pos: -43.5,-26.5 + parent: 2 + - uid: 15564 components: - type: Transform - pos: 428.5,419.5 - parent: 1 - - uid: 8856 + pos: -44.5,-31.5 + parent: 2 + - uid: 15565 components: - type: Transform - pos: 427.5,419.5 - parent: 1 - - uid: 8857 + pos: -46.5,-31.5 + parent: 2 + - uid: 15566 components: - type: Transform - pos: 426.5,419.5 - parent: 1 - - uid: 8858 + pos: -47.5,-31.5 + parent: 2 + - uid: 15567 components: - type: Transform - pos: 425.5,419.5 - parent: 1 - - uid: 8859 + pos: -48.5,-31.5 + parent: 2 + - uid: 15568 components: - type: Transform - pos: 424.5,419.5 - parent: 1 - - uid: 8860 + pos: -49.5,-31.5 + parent: 2 + - uid: 15570 components: - type: Transform - pos: 423.5,418.5 - parent: 1 - - uid: 8861 + pos: -45.5,-31.5 + parent: 2 + - uid: 15571 components: - type: Transform - pos: 422.5,418.5 - parent: 1 - - uid: 8862 + pos: -49.5,-32.5 + parent: 2 + - uid: 15572 components: - type: Transform - pos: 421.5,418.5 - parent: 1 - - uid: 8863 + pos: -49.5,-34.5 + parent: 2 + - uid: 15573 components: - type: Transform - pos: 420.5,418.5 - parent: 1 - - uid: 8864 + pos: -49.5,-35.5 + parent: 2 + - uid: 15574 components: - type: Transform - pos: 419.5,418.5 - parent: 1 - - uid: 8865 + pos: -49.5,-36.5 + parent: 2 + - uid: 15575 components: - type: Transform - pos: 424.5,418.5 - parent: 1 - - uid: 8866 + pos: -49.5,-37.5 + parent: 2 + - uid: 15576 components: - type: Transform - pos: 419.5,419.5 - parent: 1 - - uid: 8867 + pos: -49.5,-38.5 + parent: 2 + - uid: 15577 components: - type: Transform - pos: 419.5,421.5 - parent: 1 - - uid: 8868 + pos: -49.5,-39.5 + parent: 2 + - uid: 15578 components: - type: Transform - pos: 419.5,422.5 - parent: 1 - - uid: 8869 + pos: -49.5,-40.5 + parent: 2 + - uid: 15579 components: - type: Transform - pos: 419.5,420.5 - parent: 1 - - uid: 8870 + pos: -49.5,-33.5 + parent: 2 + - uid: 15584 components: - type: Transform - pos: 420.5,422.5 - parent: 1 - - uid: 8871 + pos: -61.5,-32.5 + parent: 2 + - uid: 15585 components: - type: Transform - pos: 421.5,422.5 - parent: 1 - - uid: 8872 + pos: -52.5,-32.5 + parent: 2 + - uid: 15586 components: - type: Transform - pos: 419.5,423.5 - parent: 1 - - uid: 8873 + pos: -63.5,-32.5 + parent: 2 + - uid: 15587 components: - type: Transform - pos: 419.5,424.5 - parent: 1 - - uid: 8874 + pos: -62.5,-32.5 + parent: 2 + - uid: 15588 components: - type: Transform - pos: 417.5,424.5 - parent: 1 - - uid: 8875 + pos: -59.5,-32.5 + parent: 2 + - uid: 15589 components: - type: Transform - pos: 416.5,424.5 - parent: 1 - - uid: 8876 + pos: -64.5,-32.5 + parent: 2 + - uid: 15592 components: - type: Transform - pos: 415.5,424.5 - parent: 1 - - uid: 8877 + pos: -50.5,-32.5 + parent: 2 + - uid: 15593 components: - type: Transform - pos: 414.5,424.5 - parent: 1 - - uid: 8878 + pos: -51.5,-32.5 + parent: 2 + - uid: 15594 components: - type: Transform - pos: 413.5,424.5 - parent: 1 - - uid: 8879 + pos: -53.5,-32.5 + parent: 2 + - uid: 15595 components: - type: Transform - pos: 412.5,424.5 - parent: 1 - - uid: 8880 + pos: -54.5,-32.5 + parent: 2 + - uid: 15596 components: - type: Transform - pos: 411.5,424.5 - parent: 1 - - uid: 8881 + pos: -55.5,-32.5 + parent: 2 + - uid: 15597 components: - type: Transform - pos: 410.5,424.5 - parent: 1 - - uid: 8882 + pos: -56.5,-32.5 + parent: 2 + - uid: 15598 components: - type: Transform - pos: 409.5,424.5 - parent: 1 - - uid: 8883 + pos: -57.5,-32.5 + parent: 2 + - uid: 15599 components: - type: Transform - pos: 408.5,424.5 - parent: 1 - - uid: 8884 + pos: -58.5,-32.5 + parent: 2 + - uid: 15600 components: - type: Transform - pos: 407.5,424.5 - parent: 1 - - uid: 8885 + pos: -60.5,-32.5 + parent: 2 + - uid: 15624 components: - type: Transform - pos: 406.5,424.5 - parent: 1 - - uid: 8886 + pos: -76.5,-54.5 + parent: 2 + - uid: 15700 components: - type: Transform - pos: 405.5,424.5 - parent: 1 - - uid: 8887 + pos: -50.5,-36.5 + parent: 2 + - uid: 15724 components: - type: Transform - pos: 418.5,424.5 - parent: 1 - - uid: 8888 + pos: -15.5,-34.5 + parent: 2 + - uid: 15796 components: - type: Transform - pos: 405.5,425.5 - parent: 1 - - uid: 8889 + pos: -45.5,-46.5 + parent: 2 + - uid: 15923 components: - type: Transform - pos: 403.5,425.5 - parent: 1 - - uid: 8890 + pos: -68.5,-21.5 + parent: 2 + - uid: 15978 components: - type: Transform - pos: 404.5,425.5 - parent: 1 - - uid: 8891 + pos: -97.5,22.5 + parent: 2 + - uid: 15979 components: - type: Transform - pos: 403.5,424.5 - parent: 1 - - uid: 8892 + pos: -98.5,22.5 + parent: 2 + - uid: 15980 components: - type: Transform - pos: 401.5,424.5 - parent: 1 - - uid: 8893 + pos: -95.5,22.5 + parent: 2 + - uid: 16088 components: - type: Transform - pos: 400.5,424.5 - parent: 1 - - uid: 8894 + pos: -120.5,-39.5 + parent: 2 + - uid: 16106 components: - type: Transform - pos: 399.5,424.5 - parent: 1 - - uid: 8895 + pos: -122.5,25.5 + parent: 2 + - uid: 16108 components: - type: Transform - pos: 398.5,424.5 - parent: 1 - - uid: 8896 + pos: -120.5,25.5 + parent: 2 + - uid: 16110 components: - type: Transform - pos: 397.5,424.5 - parent: 1 - - uid: 8897 + pos: -124.5,25.5 + parent: 2 + - uid: 16113 components: - type: Transform - pos: 396.5,424.5 - parent: 1 - - uid: 8898 + pos: -123.5,25.5 + parent: 2 + - uid: 16138 components: - type: Transform - pos: 395.5,424.5 - parent: 1 - - uid: 8899 + pos: -50.5,-63.5 + parent: 2 + - uid: 16205 components: - type: Transform - pos: 402.5,424.5 - parent: 1 - - uid: 8900 + pos: -29.5,-50.5 + parent: 2 + - uid: 16213 components: - type: Transform - pos: 394.5,424.5 - parent: 1 - - uid: 8901 + pos: -72.5,-29.5 + parent: 2 + - uid: 16234 components: - type: Transform - pos: 393.5,424.5 - parent: 1 - - uid: 8902 + pos: -72.5,-35.5 + parent: 2 + - uid: 16490 components: - type: Transform - pos: 393.5,423.5 - parent: 1 - - uid: 8903 + pos: -73.5,-35.5 + parent: 2 + - uid: 16778 components: - type: Transform - pos: 393.5,421.5 - parent: 1 - - uid: 8904 + pos: -72.5,-34.5 + parent: 2 + - uid: 16820 components: - type: Transform - pos: 393.5,422.5 - parent: 1 - - uid: 8905 + pos: -72.5,-32.5 + parent: 2 + - uid: 16841 components: - type: Transform - pos: 392.5,421.5 - parent: 1 - - uid: 8906 + pos: -45.5,-44.5 + parent: 2 + - uid: 16860 components: - type: Transform - pos: 390.5,421.5 - parent: 1 - - uid: 8907 + pos: -76.5,-56.5 + parent: 2 + - uid: 16914 components: - type: Transform - pos: 391.5,421.5 - parent: 1 - - uid: 8908 + pos: -75.5,-35.5 + parent: 2 + - uid: 16915 components: - type: Transform - pos: 390.5,420.5 - parent: 1 - - uid: 8909 + pos: -76.5,-36.5 + parent: 2 + - uid: 16960 components: - type: Transform - pos: 390.5,418.5 - parent: 1 - - uid: 8910 + pos: -139.5,-39.5 + parent: 2 + - uid: 17029 components: - type: Transform - pos: 390.5,419.5 - parent: 1 - - uid: 8911 + pos: -29.5,-55.5 + parent: 2 + - uid: 17033 components: - type: Transform - pos: 391.5,418.5 - parent: 1 - - uid: 8912 + pos: -29.5,-53.5 + parent: 2 + - uid: 17050 components: - type: Transform - pos: 392.5,418.5 - parent: 1 - - uid: 8913 + pos: -123.5,-2.5 + parent: 2 + - uid: 17137 components: - type: Transform - pos: 393.5,418.5 - parent: 1 - - uid: 8914 + pos: -73.5,-58.5 + parent: 2 + - uid: 17159 components: - type: Transform - pos: 393.5,419.5 - parent: 1 - - uid: 8915 + pos: -34.5,-68.5 + parent: 2 + - uid: 17160 components: - type: Transform - pos: 389.5,421.5 - parent: 1 - - uid: 8916 + pos: -34.5,-67.5 + parent: 2 + - uid: 17300 components: - type: Transform - pos: 387.5,421.5 - parent: 1 - - uid: 8917 + pos: -138.5,-37.5 + parent: 2 + - uid: 17338 components: - type: Transform - pos: 386.5,421.5 - parent: 1 - - uid: 8918 + pos: -72.5,-30.5 + parent: 2 + - uid: 17358 components: - type: Transform - pos: 385.5,421.5 - parent: 1 - - uid: 8919 + pos: -72.5,-28.5 + parent: 2 + - uid: 17404 components: - type: Transform - pos: 384.5,421.5 - parent: 1 - - uid: 8920 + pos: -29.5,-54.5 + parent: 2 + - uid: 17413 components: - type: Transform - pos: 383.5,421.5 - parent: 1 - - uid: 8921 + pos: -29.5,-51.5 + parent: 2 + - uid: 17488 components: - type: Transform - pos: 382.5,421.5 - parent: 1 - - uid: 8922 + pos: -88.5,4.5 + parent: 2 + - uid: 17492 components: - type: Transform - pos: 381.5,421.5 - parent: 1 - - uid: 8923 + pos: -88.5,2.5 + parent: 2 + - uid: 17493 components: - type: Transform - pos: 380.5,421.5 - parent: 1 - - uid: 8924 + pos: -88.5,5.5 + parent: 2 + - uid: 17584 components: - type: Transform - pos: 379.5,421.5 - parent: 1 - - uid: 8925 + pos: -16.5,-64.5 + parent: 2 + - uid: 17615 components: - type: Transform - pos: 378.5,421.5 - parent: 1 - - uid: 8926 + pos: -19.5,-59.5 + parent: 2 + - uid: 17619 components: - type: Transform - pos: 377.5,421.5 - parent: 1 - - uid: 8927 + pos: -15.5,-62.5 + parent: 2 + - uid: 17627 components: - type: Transform - pos: 376.5,421.5 - parent: 1 - - uid: 8928 + pos: -15.5,-64.5 + parent: 2 + - uid: 17633 components: - type: Transform - pos: 388.5,421.5 - parent: 1 - - uid: 8929 + pos: -15.5,-60.5 + parent: 2 + - uid: 17637 components: - type: Transform - pos: 374.5,421.5 - parent: 1 - - uid: 8930 + pos: -18.5,-59.5 + parent: 2 + - uid: 17645 components: - type: Transform - pos: 372.5,421.5 - parent: 1 - - uid: 8931 + pos: -17.5,-59.5 + parent: 2 + - uid: 17646 components: - type: Transform - pos: 375.5,421.5 - parent: 1 - - uid: 8932 + pos: -15.5,-59.5 + parent: 2 + - uid: 17654 components: - type: Transform - pos: 373.5,421.5 - parent: 1 - - uid: 8933 + pos: -15.5,-63.5 + parent: 2 + - uid: 18106 components: - type: Transform - pos: 372.5,420.5 - parent: 1 - - uid: 8934 + pos: -27.5,-56.5 + parent: 2 + - uid: 18359 components: - type: Transform - pos: 372.5,418.5 - parent: 1 - - uid: 8935 + pos: -111.5,-10.5 + parent: 2 + - uid: 18409 components: - type: Transform - pos: 372.5,417.5 - parent: 1 - - uid: 8936 + pos: -97.5,-42.5 + parent: 2 + - uid: 18410 components: - type: Transform - pos: 372.5,416.5 - parent: 1 - - uid: 8937 + pos: -97.5,-41.5 + parent: 2 + - uid: 18411 components: - type: Transform - pos: 372.5,419.5 - parent: 1 - - uid: 8938 + pos: -96.5,-41.5 + parent: 2 + - uid: 18412 components: - type: Transform - pos: 371.5,416.5 - parent: 1 - - uid: 8939 + pos: -95.5,-41.5 + parent: 2 + - uid: 18413 components: - type: Transform - pos: 370.5,416.5 - parent: 1 - - uid: 8940 + pos: -95.5,-40.5 + parent: 2 + - uid: 18414 components: - type: Transform - pos: 369.5,416.5 - parent: 1 - - uid: 8941 + pos: -95.5,-39.5 + parent: 2 + - uid: 18415 components: - type: Transform - pos: 368.5,416.5 - parent: 1 - - uid: 8942 + pos: -95.5,-37.5 + parent: 2 + - uid: 18416 components: - type: Transform - pos: 366.5,416.5 - parent: 1 - - uid: 8943 + pos: -95.5,-36.5 + parent: 2 + - uid: 18417 components: - type: Transform - pos: 365.5,416.5 - parent: 1 - - uid: 8944 + pos: -95.5,-38.5 + parent: 2 + - uid: 18418 components: - type: Transform - pos: 364.5,416.5 - parent: 1 - - uid: 8945 + pos: -94.5,-37.5 + parent: 2 + - uid: 18419 components: - type: Transform - pos: 363.5,416.5 - parent: 1 - - uid: 8946 + pos: -95.5,-35.5 + parent: 2 + - uid: 18420 components: - type: Transform - pos: 362.5,416.5 - parent: 1 - - uid: 8947 + pos: -95.5,-34.5 + parent: 2 + - uid: 18421 components: - type: Transform - pos: 361.5,416.5 - parent: 1 - - uid: 8948 + pos: -95.5,-33.5 + parent: 2 + - uid: 18422 components: - type: Transform - pos: 360.5,416.5 - parent: 1 - - uid: 8949 + pos: -94.5,-33.5 + parent: 2 + - uid: 18423 components: - type: Transform - pos: 367.5,416.5 - parent: 1 - - uid: 8970 + pos: -93.5,-33.5 + parent: 2 + - uid: 18424 components: - type: Transform - pos: 367.5,417.5 - parent: 1 - - uid: 8971 + pos: -92.5,-33.5 + parent: 2 + - uid: 18425 components: - type: Transform - pos: 367.5,419.5 - parent: 1 - - uid: 8972 + pos: -91.5,-33.5 + parent: 2 + - uid: 18426 components: - type: Transform - pos: 367.5,418.5 - parent: 1 - - uid: 8973 + pos: -91.5,-34.5 + parent: 2 + - uid: 18427 components: - type: Transform - pos: 366.5,419.5 - parent: 1 - - uid: 8974 + pos: -91.5,-35.5 + parent: 2 + - uid: 18428 components: - type: Transform - pos: 365.5,419.5 - parent: 1 - - uid: 8975 + pos: -91.5,-36.5 + parent: 2 + - uid: 18429 components: - type: Transform - pos: 365.5,420.5 - parent: 1 - - uid: 8976 + pos: -91.5,-37.5 + parent: 2 + - uid: 18430 components: - type: Transform - pos: 365.5,422.5 - parent: 1 - - uid: 8977 + pos: -90.5,-37.5 + parent: 2 + - uid: 18431 components: - type: Transform - pos: 365.5,423.5 - parent: 1 - - uid: 8978 + pos: -89.5,-37.5 + parent: 2 + - uid: 18432 components: - type: Transform - pos: 365.5,421.5 - parent: 1 - - uid: 8979 + pos: -88.5,-37.5 + parent: 2 + - uid: 18433 components: - type: Transform - pos: 366.5,423.5 - parent: 1 - - uid: 8980 + pos: -88.5,-36.5 + parent: 2 + - uid: 18434 components: - type: Transform - pos: 368.5,423.5 - parent: 1 - - uid: 8981 + pos: -91.5,-32.5 + parent: 2 + - uid: 18435 components: - type: Transform - pos: 367.5,423.5 - parent: 1 - - uid: 8982 + pos: -91.5,-31.5 + parent: 2 + - uid: 18436 components: - type: Transform - pos: 369.5,423.5 - parent: 1 - - uid: 8983 + pos: -91.5,-30.5 + parent: 2 + - uid: 18437 components: - type: Transform - pos: 369.5,422.5 - parent: 1 - - uid: 9095 + pos: -90.5,-30.5 + parent: 2 + - uid: 18438 components: - type: Transform - pos: 358.5,405.5 - parent: 1 - - uid: 9096 + pos: -89.5,-30.5 + parent: 2 + - uid: 18439 components: - type: Transform - pos: 358.5,404.5 - parent: 1 - - uid: 9097 + pos: -85.5,-30.5 + parent: 2 + - uid: 18440 components: - type: Transform - pos: 358.5,403.5 - parent: 1 - - uid: 9098 + pos: -85.5,-29.5 + parent: 2 + - uid: 18441 components: - type: Transform - pos: 358.5,406.5 - parent: 1 - - uid: 9099 + pos: -85.5,-28.5 + parent: 2 + - uid: 18442 components: - type: Transform - pos: 360.5,403.5 - parent: 1 - - uid: 9100 + pos: -85.5,-27.5 + parent: 2 + - uid: 18443 components: - type: Transform - pos: 361.5,403.5 - parent: 1 - - uid: 9101 + pos: -86.5,-27.5 + parent: 2 + - uid: 18444 components: - type: Transform - pos: 362.5,403.5 - parent: 1 - - uid: 9102 + pos: -87.5,-27.5 + parent: 2 + - uid: 18445 components: - type: Transform - pos: 359.5,403.5 - parent: 1 - - uid: 9103 + pos: -89.5,-27.5 + parent: 2 + - uid: 18446 components: - type: Transform - pos: 362.5,402.5 - parent: 1 - - uid: 9104 + pos: -90.5,-27.5 + parent: 2 + - uid: 18447 components: - type: Transform - pos: 362.5,400.5 - parent: 1 - - uid: 9105 + pos: -91.5,-27.5 + parent: 2 + - uid: 18448 components: - type: Transform - pos: 362.5,399.5 - parent: 1 - - uid: 9106 + pos: -88.5,-27.5 + parent: 2 + - uid: 18449 components: - type: Transform - pos: 362.5,401.5 - parent: 1 - - uid: 9107 + pos: -91.5,-28.5 + parent: 2 + - uid: 18450 components: - type: Transform - pos: 362.5,398.5 - parent: 1 - - uid: 9108 + pos: -91.5,-29.5 + parent: 2 + - uid: 18451 components: - type: Transform - pos: 362.5,397.5 - parent: 1 - - uid: 9109 + pos: -84.5,-27.5 + parent: 2 + - uid: 18452 components: - type: Transform - pos: 362.5,396.5 - parent: 1 - - uid: 9110 + pos: -83.5,-27.5 + parent: 2 + - uid: 18453 components: - type: Transform - pos: 362.5,395.5 - parent: 1 - - uid: 9111 + pos: -82.5,-27.5 + parent: 2 + - uid: 18454 components: - type: Transform - pos: 362.5,394.5 - parent: 1 - - uid: 9112 + pos: -82.5,-28.5 + parent: 2 + - uid: 18455 components: - type: Transform - pos: 362.5,393.5 - parent: 1 - - uid: 9113 + pos: -82.5,-30.5 + parent: 2 + - uid: 18456 components: - type: Transform - pos: 362.5,392.5 - parent: 1 - - uid: 9114 + pos: -82.5,-31.5 + parent: 2 + - uid: 18457 components: - type: Transform - pos: 360.5,392.5 - parent: 1 - - uid: 9115 + pos: -82.5,-29.5 + parent: 2 + - uid: 18458 components: - type: Transform - pos: 359.5,392.5 - parent: 1 - - uid: 9116 + pos: -81.5,-31.5 + parent: 2 + - uid: 18459 components: - type: Transform - pos: 361.5,392.5 - parent: 1 - - uid: 9117 + pos: -80.5,-31.5 + parent: 2 + - uid: 18460 components: - type: Transform - pos: 359.5,390.5 - parent: 1 - - uid: 9118 + pos: -79.5,-31.5 + parent: 2 + - uid: 18461 components: - type: Transform - pos: 359.5,389.5 - parent: 1 - - uid: 9119 + pos: -87.5,-26.5 + parent: 2 + - uid: 18462 components: - type: Transform - pos: 359.5,391.5 - parent: 1 - - uid: 9120 + pos: -87.5,-25.5 + parent: 2 + - uid: 18463 components: - type: Transform - pos: 360.5,389.5 - parent: 1 - - uid: 9121 + pos: -87.5,-23.5 + parent: 2 + - uid: 18464 components: - type: Transform - pos: 362.5,389.5 - parent: 1 - - uid: 9122 + pos: -87.5,-22.5 + parent: 2 + - uid: 18465 components: - type: Transform - pos: 363.5,389.5 - parent: 1 - - uid: 9123 + pos: -87.5,-24.5 + parent: 2 + - uid: 18466 components: - type: Transform - pos: 364.5,389.5 - parent: 1 - - uid: 9124 + pos: -87.5,-21.5 + parent: 2 + - uid: 18467 components: - type: Transform - pos: 365.5,389.5 - parent: 1 - - uid: 9125 + pos: -87.5,-20.5 + parent: 2 + - uid: 18468 components: - type: Transform - pos: 366.5,389.5 - parent: 1 - - uid: 9126 + pos: -87.5,-18.5 + parent: 2 + - uid: 18469 components: - type: Transform - pos: 361.5,389.5 - parent: 1 - - uid: 9127 + pos: -87.5,-17.5 + parent: 2 + - uid: 18470 components: - type: Transform - pos: 366.5,387.5 - parent: 1 - - uid: 9128 + pos: -87.5,-19.5 + parent: 2 + - uid: 18471 components: - type: Transform - pos: 366.5,386.5 - parent: 1 - - uid: 9129 + pos: -86.5,-19.5 + parent: 2 + - uid: 18472 components: - type: Transform - pos: 366.5,385.5 - parent: 1 - - uid: 9130 + pos: -86.5,-18.5 + parent: 2 + - uid: 18693 components: - type: Transform - pos: 366.5,384.5 - parent: 1 - - uid: 9131 + pos: -45.5,-41.5 + parent: 2 + - uid: 18991 components: - type: Transform - pos: 366.5,383.5 - parent: 1 - - uid: 9132 + pos: -123.5,-3.5 + parent: 2 + - uid: 18992 components: - type: Transform - pos: 366.5,382.5 - parent: 1 - - uid: 9133 + pos: -123.5,-4.5 + parent: 2 + - uid: 18993 components: - type: Transform - pos: 366.5,381.5 - parent: 1 - - uid: 9134 + pos: -123.5,-6.5 + parent: 2 + - uid: 18994 components: - type: Transform - pos: 366.5,388.5 - parent: 1 - - uid: 9135 + pos: -123.5,-7.5 + parent: 2 + - uid: 18995 components: - type: Transform - pos: 366.5,380.5 - parent: 1 - - uid: 9136 + pos: -123.5,-8.5 + parent: 2 + - uid: 18996 components: - type: Transform - pos: 365.5,380.5 - parent: 1 - - uid: 9137 + pos: -123.5,-9.5 + parent: 2 + - uid: 18997 components: - type: Transform - pos: 363.5,380.5 - parent: 1 - - uid: 9138 + pos: -123.5,-10.5 + parent: 2 + - uid: 18998 components: - type: Transform - pos: 362.5,380.5 - parent: 1 - - uid: 9139 + pos: -123.5,-11.5 + parent: 2 + - uid: 18999 components: - type: Transform - pos: 364.5,380.5 - parent: 1 - - uid: 9340 + pos: -123.5,-5.5 + parent: 2 + - uid: 19000 components: - type: Transform - pos: 331.5,399.5 - parent: 1 - - uid: 9341 + pos: -123.5,-12.5 + parent: 2 + - uid: 19001 components: - type: Transform - pos: 331.5,397.5 - parent: 1 - - uid: 9342 + pos: -123.5,-13.5 + parent: 2 + - uid: 19002 components: - type: Transform - pos: 331.5,398.5 - parent: 1 - - uid: 9343 + pos: -122.5,-13.5 + parent: 2 + - uid: 19003 components: - type: Transform - pos: 330.5,397.5 - parent: 1 - - uid: 9344 + pos: -124.5,-13.5 + parent: 2 + - uid: 19004 components: - type: Transform - pos: 328.5,397.5 - parent: 1 - - uid: 9345 + pos: -125.5,-13.5 + parent: 2 + - uid: 19005 components: - type: Transform - pos: 329.5,397.5 - parent: 1 - - uid: 9346 + pos: -126.5,-13.5 + parent: 2 + - uid: 19006 components: - type: Transform - pos: 328.5,396.5 - parent: 1 - - uid: 9400 + pos: -121.5,-13.5 + parent: 2 + - uid: 19007 components: - type: Transform - pos: 322.5,430.5 - parent: 1 - - uid: 9401 + pos: -121.5,-14.5 + parent: 2 + - uid: 19008 components: - type: Transform - pos: 323.5,430.5 - parent: 1 - - uid: 9402 + pos: -121.5,-16.5 + parent: 2 + - uid: 19009 components: - type: Transform - pos: 323.5,431.5 - parent: 1 - - uid: 9403 + pos: -121.5,-17.5 + parent: 2 + - uid: 19010 components: - type: Transform - pos: 323.5,432.5 - parent: 1 - - uid: 9404 + pos: -121.5,-15.5 + parent: 2 + - uid: 19011 components: - type: Transform - pos: 324.5,432.5 - parent: 1 - - uid: 10832 + pos: -124.5,-10.5 + parent: 2 + - uid: 19012 components: - type: Transform - pos: 332.5,411.5 - parent: 1 - - uid: 10833 + pos: -125.5,-10.5 + parent: 2 + - uid: 19013 components: - type: Transform - pos: 334.5,411.5 - parent: 1 - - uid: 10834 + pos: -126.5,-10.5 + parent: 2 + - uid: 19014 components: - type: Transform - pos: 335.5,411.5 - parent: 1 - - uid: 10835 + pos: -128.5,-10.5 + parent: 2 + - uid: 19015 components: - type: Transform - pos: 336.5,411.5 - parent: 1 - - uid: 10836 + pos: -129.5,-10.5 + parent: 2 + - uid: 19016 components: - type: Transform - pos: 337.5,411.5 - parent: 1 - - uid: 10837 + pos: -130.5,-10.5 + parent: 2 + - uid: 19017 components: - type: Transform - pos: 338.5,411.5 - parent: 1 - - uid: 10838 + pos: -131.5,-10.5 + parent: 2 + - uid: 19018 components: - type: Transform - pos: 339.5,411.5 - parent: 1 - - uid: 10839 + pos: -132.5,-10.5 + parent: 2 + - uid: 19019 components: - type: Transform - pos: 340.5,411.5 - parent: 1 - - uid: 10840 + pos: -133.5,-10.5 + parent: 2 + - uid: 19020 components: - type: Transform - pos: 333.5,411.5 - parent: 1 - - uid: 10841 + pos: -134.5,-10.5 + parent: 2 + - uid: 19021 components: - type: Transform - pos: 341.5,411.5 - parent: 1 - - uid: 10842 + pos: -135.5,-10.5 + parent: 2 + - uid: 19022 components: - type: Transform - pos: 342.5,411.5 - parent: 1 - - uid: 10843 + pos: -127.5,-10.5 + parent: 2 + - uid: 19023 components: - type: Transform - pos: 343.5,411.5 - parent: 1 - - uid: 10844 + pos: -136.5,-10.5 + parent: 2 + - uid: 19024 components: - type: Transform - pos: 344.5,411.5 - parent: 1 - - uid: 10845 + pos: -137.5,-10.5 + parent: 2 + - uid: 19025 components: - type: Transform - pos: 345.5,411.5 - parent: 1 - - uid: 10846 + pos: -122.5,-5.5 + parent: 2 + - uid: 19027 components: - type: Transform - pos: 346.5,411.5 - parent: 1 - - uid: 10847 + pos: -117.5,-20.5 + parent: 2 + - uid: 19033 components: - type: Transform - pos: 346.5,410.5 - parent: 1 - - uid: 10848 + pos: -119.5,-22.5 + parent: 2 + - uid: 19035 components: - type: Transform - pos: 346.5,408.5 - parent: 1 - - uid: 10849 + pos: -119.5,-20.5 + parent: 2 + - uid: 19036 components: - type: Transform - pos: 346.5,407.5 - parent: 1 - - uid: 10850 + pos: -119.5,-18.5 + parent: 2 + - uid: 19037 components: - type: Transform - pos: 346.5,409.5 - parent: 1 - - uid: 10851 + pos: -119.5,-17.5 + parent: 2 + - uid: 19038 components: - type: Transform - pos: 346.5,406.5 - parent: 1 - - uid: 10852 + pos: -119.5,-16.5 + parent: 2 + - uid: 19039 components: - type: Transform - pos: 347.5,411.5 - parent: 1 - - uid: 10853 + pos: -119.5,-15.5 + parent: 2 + - uid: 19040 components: - type: Transform - pos: 349.5,411.5 - parent: 1 - - uid: 10854 + pos: -119.5,-14.5 + parent: 2 + - uid: 19041 components: - type: Transform - pos: 350.5,411.5 - parent: 1 - - uid: 10855 + pos: -119.5,-13.5 + parent: 2 + - uid: 19042 components: - type: Transform - pos: 348.5,411.5 - parent: 1 - - uid: 10856 + pos: -119.5,-12.5 + parent: 2 + - uid: 19043 components: - type: Transform - pos: 350.5,410.5 - parent: 1 - - uid: 10857 + pos: -119.5,-11.5 + parent: 2 + - uid: 19044 components: - type: Transform - pos: 350.5,409.5 - parent: 1 - - uid: 10858 + pos: -119.5,-19.5 + parent: 2 + - uid: 19045 components: - type: Transform - pos: 349.5,408.5 - parent: 1 - - uid: 10859 + pos: -119.5,-10.5 + parent: 2 + - uid: 19046 components: - type: Transform - pos: 349.5,406.5 - parent: 1 - - uid: 10860 + pos: -118.5,-16.5 + parent: 2 + - uid: 19047 components: - type: Transform - pos: 350.5,408.5 - parent: 1 - - uid: 10861 + pos: -117.5,-16.5 + parent: 2 + - uid: 19048 components: - type: Transform - pos: 350.5,407.5 - parent: 1 - - uid: 10862 + pos: -117.5,-15.5 + parent: 2 + - uid: 19049 components: - type: Transform - pos: 349.5,407.5 - parent: 1 - - uid: 10863 + pos: -117.5,-14.5 + parent: 2 + - uid: 19050 components: - type: Transform - pos: 350.5,406.5 - parent: 1 - - uid: 10864 + pos: -120.5,-10.5 + parent: 2 + - uid: 19051 components: - type: Transform - pos: 351.5,408.5 - parent: 1 - - uid: 10865 + pos: -121.5,-10.5 + parent: 2 + - uid: 19052 components: - type: Transform - pos: 351.5,407.5 - parent: 1 - - uid: 10866 + pos: -122.5,-10.5 + parent: 2 + - uid: 19065 components: - type: Transform - pos: 351.5,406.5 - parent: 1 - - uid: 14790 + pos: -119.5,-9.5 + parent: 2 + - uid: 19066 components: - type: Transform - pos: 306.5,420.5 - parent: 1 - - uid: 15426 + pos: -119.5,-8.5 + parent: 2 + - uid: 19067 components: - type: Transform - pos: 293.5,388.5 - parent: 1 - - uid: 15427 + pos: -119.5,-7.5 + parent: 2 + - uid: 19068 components: - type: Transform - pos: 293.5,387.5 - parent: 1 - - uid: 15428 + pos: -119.5,-5.5 + parent: 2 + - uid: 19069 components: - type: Transform - pos: 293.5,386.5 - parent: 1 - - uid: 15429 + pos: -119.5,-4.5 + parent: 2 + - uid: 19070 components: - type: Transform - pos: 293.5,384.5 - parent: 1 - - uid: 15431 + pos: -119.5,-6.5 + parent: 2 + - uid: 19071 components: - type: Transform - pos: 293.5,382.5 - parent: 1 - - uid: 15432 + pos: -118.5,-4.5 + parent: 2 + - uid: 19072 components: - type: Transform - pos: 293.5,381.5 - parent: 1 - - uid: 15433 + pos: -117.5,-4.5 + parent: 2 + - uid: 19073 components: - type: Transform - pos: 293.5,380.5 - parent: 1 - - uid: 15434 + pos: -116.5,-4.5 + parent: 2 + - uid: 19074 components: - type: Transform - pos: 293.5,379.5 - parent: 1 - - uid: 15435 + pos: -116.5,-5.5 + parent: 2 + - uid: 19076 components: - type: Transform - pos: 293.5,385.5 - parent: 1 - - uid: 15436 + pos: -121.5,-1.5 + parent: 2 + - uid: 19077 components: - type: Transform - pos: 292.5,379.5 - parent: 1 - - uid: 15437 + pos: -119.5,-1.5 + parent: 2 + - uid: 19078 components: - type: Transform - pos: 290.5,379.5 - parent: 1 - - uid: 15438 + pos: -120.5,-1.5 + parent: 2 + - uid: 19079 components: - type: Transform - pos: 289.5,379.5 - parent: 1 - - uid: 15439 + pos: -119.5,-2.5 + parent: 2 + - uid: 19080 components: - type: Transform - pos: 288.5,379.5 - parent: 1 - - uid: 15440 + pos: -119.5,-3.5 + parent: 2 + - uid: 19097 components: - type: Transform - pos: 287.5,379.5 - parent: 1 - - uid: 15441 + pos: -109.5,-10.5 + parent: 2 + - uid: 19098 components: - type: Transform - pos: 291.5,379.5 - parent: 1 - - uid: 15442 + pos: -107.5,-10.5 + parent: 2 + - uid: 19099 components: - type: Transform - pos: 286.5,379.5 - parent: 1 - - uid: 15443 + pos: -110.5,-10.5 + parent: 2 + - uid: 19100 components: - type: Transform - pos: 286.5,380.5 - parent: 1 - - uid: 15444 + pos: -129.5,22.5 + parent: 2 + - uid: 19101 components: - type: Transform - pos: 285.5,380.5 - parent: 1 - - uid: 15445 + pos: -133.5,17.5 + parent: 2 + - uid: 19102 components: - type: Transform - pos: 284.5,380.5 - parent: 1 - - uid: 15446 + pos: -131.5,22.5 + parent: 2 + - uid: 19153 components: - type: Transform - pos: 284.5,379.5 - parent: 1 - - uid: 15447 + pos: -136.5,-12.5 + parent: 2 + - uid: 19154 components: - type: Transform - pos: 282.5,379.5 - parent: 1 - - uid: 15449 + pos: -137.5,-12.5 + parent: 2 + - uid: 19155 components: - type: Transform - pos: 280.5,379.5 - parent: 1 - - uid: 15450 + pos: -137.5,-9.5 + parent: 2 + - uid: 19158 components: - type: Transform - pos: 279.5,379.5 - parent: 1 - - uid: 15451 + pos: -137.5,-11.5 + parent: 2 + - uid: 19177 components: - type: Transform - pos: 278.5,379.5 - parent: 1 - - uid: 15452 + pos: -137.5,-8.5 + parent: 2 + - uid: 19178 components: - type: Transform - pos: 277.5,379.5 - parent: 1 - - uid: 15453 + pos: -137.5,-7.5 + parent: 2 + - uid: 19179 components: - type: Transform - pos: 283.5,379.5 - parent: 1 - - uid: 15454 + pos: -137.5,-6.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: -137.5,-5.5 + parent: 2 + - uid: 19181 components: - type: Transform - pos: 277.5,380.5 - parent: 1 - - uid: 15456 + pos: -138.5,-5.5 + parent: 2 + - uid: 19182 components: - type: Transform - pos: 277.5,382.5 - parent: 1 - - uid: 15457 + pos: -139.5,-5.5 + parent: 2 + - uid: 19183 components: - type: Transform - pos: 277.5,384.5 - parent: 1 - - uid: 15458 + pos: -140.5,-5.5 + parent: 2 + - uid: 19184 components: - type: Transform - pos: 277.5,385.5 - parent: 1 - - uid: 15459 + pos: -140.5,-6.5 + parent: 2 + - uid: 19185 components: - type: Transform - pos: 277.5,383.5 - parent: 1 - - uid: 15460 + pos: -140.5,-8.5 + parent: 2 + - uid: 19186 components: - type: Transform - pos: 277.5,386.5 - parent: 1 - - uid: 15461 + pos: -140.5,-7.5 + parent: 2 + - uid: 19334 components: - type: Transform - pos: 277.5,387.5 - parent: 1 - - uid: 15462 + pos: -135.5,1.5 + parent: 2 + - uid: 19335 components: - type: Transform - pos: 277.5,388.5 - parent: 1 - - uid: 15463 + pos: -133.5,-1.5 + parent: 2 + - uid: 19356 components: - type: Transform - pos: 277.5,389.5 - parent: 1 - - uid: 15464 + pos: -118.5,-20.5 + parent: 2 + - uid: 19357 components: - type: Transform - pos: 277.5,390.5 - parent: 1 - - uid: 15466 + pos: -119.5,-23.5 + parent: 2 + - uid: 19358 components: - type: Transform - pos: 277.5,393.5 - parent: 1 - - uid: 15467 + pos: -119.5,-24.5 + parent: 2 + - uid: 19359 components: - type: Transform - pos: 277.5,392.5 - parent: 1 - - uid: 15468 + pos: -119.5,-25.5 + parent: 2 + - uid: 19472 components: - type: Transform - pos: 277.5,394.5 - parent: 1 - - uid: 15469 + pos: -119.5,10.5 + parent: 2 + - uid: 19616 components: - type: Transform - pos: 277.5,395.5 - parent: 1 - - uid: 15470 + pos: -19.5,-9.5 + parent: 2 + - uid: 19821 components: - type: Transform - pos: 278.5,395.5 - parent: 1 - - uid: 15471 + pos: -85.5,14.5 + parent: 2 + - uid: 19822 components: - type: Transform - pos: 279.5,395.5 - parent: 1 - - uid: 15472 + pos: -85.5,13.5 + parent: 2 + - uid: 19823 components: - type: Transform - pos: 280.5,395.5 - parent: 1 - - uid: 15473 + pos: -86.5,11.5 + parent: 2 + - uid: 19825 components: - type: Transform - pos: 281.5,395.5 - parent: 1 - - uid: 15474 + pos: -85.5,7.5 + parent: 2 + - uid: 19826 components: - type: Transform - pos: 282.5,395.5 - parent: 1 - - uid: 15475 + pos: -85.5,9.5 + parent: 2 + - uid: 19827 components: - type: Transform - pos: 283.5,395.5 - parent: 1 - - uid: 15476 + pos: -85.5,10.5 + parent: 2 + - uid: 19828 components: - type: Transform - pos: 284.5,395.5 - parent: 1 - - uid: 15477 + pos: -85.5,11.5 + parent: 2 + - uid: 19829 components: - type: Transform - pos: 285.5,395.5 - parent: 1 - - uid: 15478 + pos: -85.5,12.5 + parent: 2 + - uid: 19830 components: - type: Transform - pos: 286.5,395.5 - parent: 1 - - uid: 15479 + pos: -85.5,8.5 + parent: 2 + - uid: 19831 components: - type: Transform - pos: 287.5,395.5 - parent: 1 - - uid: 15480 + pos: -86.5,13.5 + parent: 2 + - uid: 19832 components: - type: Transform - pos: 288.5,395.5 - parent: 1 - - uid: 15481 + pos: -95.5,15.5 + parent: 2 + - uid: 19833 components: - type: Transform - pos: 290.5,395.5 - parent: 1 - - uid: 15482 + pos: -96.5,15.5 + parent: 2 + - uid: 19834 components: - type: Transform - pos: 292.5,395.5 - parent: 1 - - uid: 15483 + pos: -98.5,15.5 + parent: 2 + - uid: 19835 components: - type: Transform - pos: 293.5,395.5 - parent: 1 - - uid: 15484 + pos: -97.5,15.5 + parent: 2 + - uid: 19836 components: - type: Transform - pos: 291.5,395.5 - parent: 1 - - uid: 15485 + pos: -94.5,15.5 + parent: 2 + - uid: 19837 components: - type: Transform - pos: 289.5,395.5 - parent: 1 - - uid: 15486 + pos: -85.5,15.5 + parent: 2 + - uid: 19838 components: - type: Transform - pos: 293.5,394.5 - parent: 1 - - uid: 15487 + pos: -86.5,15.5 + parent: 2 + - uid: 19839 components: - type: Transform - pos: 293.5,392.5 - parent: 1 - - uid: 15488 + pos: -88.5,15.5 + parent: 2 + - uid: 19840 components: - type: Transform - pos: 293.5,391.5 - parent: 1 - - uid: 15489 + pos: -89.5,15.5 + parent: 2 + - uid: 19841 components: - type: Transform - pos: 293.5,390.5 - parent: 1 - - uid: 15490 + pos: -90.5,15.5 + parent: 2 + - uid: 19842 components: - type: Transform - pos: 293.5,393.5 - parent: 1 - - uid: 15891 + pos: -91.5,15.5 + parent: 2 + - uid: 19843 components: - type: Transform - pos: 499.5,385.5 - parent: 1 - - uid: 16131 + pos: -87.5,15.5 + parent: 2 + - uid: 19844 components: - type: Transform - pos: 0.5,1.5 - parent: 16114 - - uid: 16132 + pos: -93.5,15.5 + parent: 2 + - uid: 19845 components: - type: Transform - pos: 0.5,2.5 - parent: 16114 - - uid: 16133 + pos: -92.5,15.5 + parent: 2 + - uid: 19846 components: - type: Transform - pos: 0.5,4.5 - parent: 16114 - - uid: 16134 + pos: -98.5,14.5 + parent: 2 + - uid: 19847 components: - type: Transform - pos: 0.5,3.5 - parent: 16114 - - uid: 16135 + pos: -98.5,13.5 + parent: 2 + - uid: 19848 components: - type: Transform - pos: 1.5,4.5 - parent: 16114 - - uid: 16136 + pos: -97.5,13.5 + parent: 2 + - uid: 19851 components: - type: Transform - pos: 1.5,5.5 - parent: 16114 - - uid: 17771 + pos: -94.5,16.5 + parent: 2 + - uid: 19852 components: - type: Transform - pos: 499.5,386.5 - parent: 1 - - uid: 18523 + pos: -94.5,18.5 + parent: 2 + - uid: 19853 components: - type: Transform - pos: 342.5,410.5 - parent: 1 - - uid: 18679 + pos: -94.5,19.5 + parent: 2 + - uid: 19854 components: - type: Transform - pos: 399.5,367.5 - parent: 1 - - uid: 18713 + pos: -94.5,20.5 + parent: 2 + - uid: 19855 components: - type: Transform - pos: 376.5,422.5 - parent: 1 - - uid: 18714 + pos: -94.5,21.5 + parent: 2 + - uid: 19856 components: - type: Transform - pos: 376.5,423.5 - parent: 1 - - uid: 18715 + pos: -94.5,22.5 + parent: 2 + - uid: 19857 components: - type: Transform - pos: 326.5,422.5 - parent: 1 - - uid: 18716 + pos: -94.5,17.5 + parent: 2 + - uid: 19858 components: - type: Transform - pos: 326.5,420.5 - parent: 1 - - uid: 18717 + pos: -94.5,23.5 + parent: 2 + - uid: 19859 components: - type: Transform - pos: 326.5,421.5 - parent: 1 - - uid: 20248 + pos: -94.5,24.5 + parent: 2 + - uid: 19860 components: - type: Transform - pos: 5.5,2.5 - parent: 20181 - - uid: 20249 + pos: -88.5,25.5 + parent: 2 + - uid: 19865 components: - type: Transform - pos: 5.5,-0.5 - parent: 20181 - - uid: 20250 + pos: -93.5,24.5 + parent: 2 + - uid: 19866 components: - type: Transform - pos: 5.5,0.5 - parent: 20181 - - uid: 20251 + pos: -92.5,24.5 + parent: 2 + - uid: 19867 components: - type: Transform - pos: 5.5,1.5 - parent: 20181 - - uid: 20252 + pos: -91.5,24.5 + parent: 2 + - uid: 19868 components: - type: Transform - pos: 3.5,1.5 - parent: 20181 - - uid: 20253 + pos: -90.5,24.5 + parent: 2 + - uid: 19869 components: - type: Transform - pos: 2.5,1.5 - parent: 20181 - - uid: 20254 + pos: -88.5,24.5 + parent: 2 + - uid: 19872 components: - type: Transform - pos: 4.5,1.5 - parent: 20181 - - uid: 20255 + pos: -89.5,24.5 + parent: 2 + - uid: 19878 components: - type: Transform - pos: 1.5,1.5 - parent: 20181 - - uid: 20256 + pos: -88.5,26.5 + parent: 2 + - uid: 19884 components: - type: Transform - pos: 0.5,1.5 - parent: 20181 - - uid: 20257 + pos: -65.5,-29.5 + parent: 2 + - uid: 19893 components: - type: Transform - pos: -1.5,1.5 - parent: 20181 - - uid: 20258 + pos: -65.5,-25.5 + parent: 2 + - uid: 19895 components: - type: Transform - pos: -0.5,1.5 - parent: 20181 - - uid: 20259 + pos: -68.5,-17.5 + parent: 2 + - uid: 19900 components: - type: Transform - pos: 5.5,-1.5 - parent: 20181 - - uid: 20260 + pos: -68.5,-16.5 + parent: 2 + - uid: 19903 components: - type: Transform - pos: 5.5,-2.5 - parent: 20181 - - uid: 20587 + pos: -68.5,-20.5 + parent: 2 + - uid: 19905 components: - type: Transform - pos: 0.5,7.5 - parent: 20527 - - uid: 20588 + pos: -69.5,-21.5 + parent: 2 + - uid: 19915 components: - type: Transform - pos: 1.5,7.5 - parent: 20527 - - uid: 20589 + pos: -68.5,-15.5 + parent: 2 + - uid: 19916 components: - type: Transform - pos: 1.5,8.5 - parent: 20527 - - uid: 20590 + pos: -68.5,-14.5 + parent: 2 + - uid: 19964 components: - type: Transform - pos: 1.5,9.5 - parent: 20527 - - uid: 21223 + pos: -68.5,-18.5 + parent: 2 + - uid: 20012 components: - type: Transform - pos: 304.5,421.5 - parent: 1 - - uid: 21224 + pos: -92.5,13.5 + parent: 2 + - uid: 20013 components: - type: Transform - pos: 304.5,422.5 - parent: 1 - - uid: 21225 + pos: -92.5,14.5 + parent: 2 + - uid: 20351 components: - type: Transform - pos: 304.5,423.5 - parent: 1 - - uid: 21226 + pos: -109.5,-50.5 + parent: 2 + - uid: 20385 components: - type: Transform - pos: 304.5,424.5 - parent: 1 - - uid: 21227 + pos: -133.5,22.5 + parent: 2 + - uid: 20712 components: - type: Transform - pos: 304.5,425.5 - parent: 1 - - uid: 21228 + pos: -42.5,-44.5 + parent: 2 + - uid: 20713 components: - type: Transform - pos: 304.5,426.5 - parent: 1 - - uid: 21230 + pos: -42.5,-45.5 + parent: 2 + - uid: 20714 components: - type: Transform - pos: 305.5,426.5 - parent: 1 - - uid: 21231 + pos: -42.5,-62.5 + parent: 2 + - uid: 20715 components: - type: Transform - pos: 305.5,427.5 - parent: 1 - - uid: 21232 + pos: -42.5,-61.5 + parent: 2 + - uid: 20716 components: - type: Transform - pos: 307.5,427.5 - parent: 1 - - uid: 21233 + pos: -42.5,-59.5 + parent: 2 + - uid: 20717 components: - type: Transform - pos: 306.5,427.5 - parent: 1 - - uid: 21234 + pos: -42.5,-58.5 + parent: 2 + - uid: 20718 components: - type: Transform - pos: 307.5,426.5 - parent: 1 - - uid: 21235 + pos: -42.5,-57.5 + parent: 2 + - uid: 20719 components: - type: Transform - pos: 307.5,424.5 - parent: 1 - - uid: 21236 + pos: -42.5,-56.5 + parent: 2 + - uid: 20720 components: - type: Transform - pos: 307.5,425.5 - parent: 1 - - uid: 21237 + pos: -42.5,-55.5 + parent: 2 + - uid: 20721 components: - type: Transform - pos: 307.5,423.5 - parent: 1 - - uid: 21238 + pos: -42.5,-54.5 + parent: 2 + - uid: 20722 components: - type: Transform - pos: 307.5,422.5 - parent: 1 - - uid: 21239 + pos: -42.5,-60.5 + parent: 2 + - uid: 20724 components: - type: Transform - pos: 307.5,421.5 - parent: 1 - - uid: 21240 + pos: -42.5,-43.5 + parent: 2 + - uid: 20725 components: - type: Transform - pos: 308.5,421.5 - parent: 1 - - uid: 21241 + pos: -42.5,-41.5 + parent: 2 + - uid: 20726 components: - type: Transform - pos: 308.5,420.5 - parent: 1 - - uid: 21377 + pos: -42.5,-42.5 + parent: 2 + - uid: 20786 components: - type: Transform - pos: 6.5,20.5 - parent: 5072 - - uid: 21407 + pos: -67.5,-56.5 + parent: 2 + - uid: 20787 components: - type: Transform - pos: 7.5,20.5 - parent: 5072 - - uid: 21442 + pos: -69.5,-56.5 + parent: 2 + - uid: 20788 components: - type: Transform - pos: 8.5,20.5 - parent: 5072 - - uid: 21478 + pos: -70.5,-56.5 + parent: 2 + - uid: 20789 components: - type: Transform - pos: 9.5,20.5 - parent: 5072 - - uid: 21516 + pos: -71.5,-56.5 + parent: 2 + - uid: 20790 components: - type: Transform - pos: 10.5,20.5 - parent: 5072 - - uid: 21521 + pos: -72.5,-56.5 + parent: 2 + - uid: 20791 components: - type: Transform - pos: 12.5,22.5 - parent: 5072 - - uid: 21554 + pos: -73.5,-56.5 + parent: 2 + - uid: 20792 components: - type: Transform - pos: 10.5,19.5 - parent: 5072 - - uid: 21558 + pos: -68.5,-56.5 + parent: 2 + - uid: 20793 components: - type: Transform - pos: 12.5,21.5 - parent: 5072 - - uid: 21587 + pos: -56.5,-56.5 + parent: 2 + - uid: 20794 components: - type: Transform - pos: 11.5,19.5 - parent: 5072 - - uid: 21590 + pos: -57.5,-56.5 + parent: 2 + - uid: 20795 components: - type: Transform - pos: 12.5,20.5 - parent: 5072 -- proto: CableHVStack - entities: - - uid: 6499 + pos: -58.5,-56.5 + parent: 2 + - uid: 20796 components: - type: Transform - pos: 319.5,428.5 - parent: 1 - - uid: 21150 + pos: -59.5,-56.5 + parent: 2 + - uid: 20797 components: - type: Transform - pos: 405.5,368.5 - parent: 1 -- proto: CableMV - entities: - - uid: 385 + pos: -61.5,-56.5 + parent: 2 + - uid: 20798 components: - type: Transform - pos: 422.5,424.5 - parent: 1 - - uid: 422 + pos: -62.5,-56.5 + parent: 2 + - uid: 20799 components: - type: Transform - pos: 375.5,418.5 - parent: 1 - - uid: 723 + pos: -63.5,-56.5 + parent: 2 + - uid: 20800 components: - type: Transform - pos: 433.5,407.5 - parent: 1 - - uid: 1050 + pos: -64.5,-56.5 + parent: 2 + - uid: 20801 components: - type: Transform - pos: 351.5,384.5 - parent: 1 - - uid: 1069 + pos: -65.5,-56.5 + parent: 2 + - uid: 20802 components: - type: Transform - pos: 372.5,397.5 - parent: 1 - - uid: 1817 + pos: -73.5,-57.5 + parent: 2 + - uid: 20805 components: - type: Transform - pos: 363.5,409.5 - parent: 1 - - uid: 2141 + pos: -29.5,-52.5 + parent: 2 + - uid: 20807 components: - type: Transform - pos: 371.5,415.5 - parent: 1 - - uid: 2166 + pos: -76.5,-59.5 + parent: 2 + - uid: 20808 components: - type: Transform - pos: 297.5,380.5 - parent: 1 - - uid: 2542 + pos: -76.5,-60.5 + parent: 2 + - uid: 20809 components: - type: Transform - pos: 353.5,384.5 - parent: 1 - - uid: 2702 + pos: -76.5,-61.5 + parent: 2 + - uid: 20810 components: - type: Transform - pos: 317.5,417.5 - parent: 1 - - uid: 3088 + pos: -76.5,-62.5 + parent: 2 + - uid: 20811 components: - type: Transform - pos: 315.5,411.5 - parent: 1 - - uid: 3089 + pos: -76.5,-64.5 + parent: 2 + - uid: 20812 components: - type: Transform - pos: 314.5,411.5 - parent: 1 - - uid: 3090 + pos: -76.5,-65.5 + parent: 2 + - uid: 20813 components: - type: Transform - pos: 316.5,411.5 - parent: 1 - - uid: 3120 + pos: -76.5,-63.5 + parent: 2 + - uid: 20814 components: - type: Transform - pos: 361.5,409.5 - parent: 1 - - uid: 3121 + pos: -56.5,-65.5 + parent: 2 + - uid: 20815 components: - type: Transform - pos: 360.5,409.5 - parent: 1 - - uid: 3536 + pos: -55.5,-65.5 + parent: 2 + - uid: 20816 components: - type: Transform - pos: 359.5,409.5 - parent: 1 - - uid: 3560 + pos: -65.5,-65.5 + parent: 2 + - uid: 20817 components: - type: Transform - pos: 296.5,381.5 - parent: 1 - - uid: 3561 + pos: -64.5,-65.5 + parent: 2 + - uid: 20818 components: - type: Transform - pos: 293.5,381.5 - parent: 1 - - uid: 3614 + pos: -63.5,-65.5 + parent: 2 + - uid: 20819 components: - type: Transform - pos: 363.5,410.5 - parent: 1 - - uid: 3665 + pos: -62.5,-65.5 + parent: 2 + - uid: 20820 components: - type: Transform - pos: 354.5,384.5 - parent: 1 - - uid: 4892 + pos: -61.5,-65.5 + parent: 2 + - uid: 20821 components: - type: Transform - pos: 410.5,392.5 - parent: 1 - - uid: 5020 + pos: -60.5,-65.5 + parent: 2 + - uid: 20822 components: - type: Transform - pos: 412.5,407.5 - parent: 1 - - uid: 5293 + pos: -66.5,-65.5 + parent: 2 + - uid: 20823 components: - type: Transform - pos: 422.5,423.5 - parent: 1 - - uid: 5588 + pos: -59.5,-65.5 + parent: 2 + - uid: 20824 components: - type: Transform - pos: 372.5,398.5 - parent: 1 - - uid: 7356 + pos: -58.5,-65.5 + parent: 2 + - uid: 20825 components: - type: Transform - pos: 451.5,402.5 - parent: 1 - - uid: 9140 + pos: -57.5,-65.5 + parent: 2 + - uid: 20826 components: - type: Transform - pos: 362.5,380.5 - parent: 1 - - uid: 9141 + pos: -75.5,-65.5 + parent: 2 + - uid: 20827 components: - type: Transform - pos: 363.5,380.5 - parent: 1 - - uid: 9142 + pos: -73.5,-65.5 + parent: 2 + - uid: 20828 components: - type: Transform - pos: 364.5,380.5 - parent: 1 - - uid: 9143 + pos: -72.5,-65.5 + parent: 2 + - uid: 20829 components: - type: Transform - pos: 365.5,380.5 - parent: 1 - - uid: 9144 + pos: -71.5,-65.5 + parent: 2 + - uid: 20830 components: - type: Transform - pos: 366.5,380.5 - parent: 1 - - uid: 9145 + pos: -70.5,-65.5 + parent: 2 + - uid: 20831 components: - type: Transform - pos: 367.5,380.5 - parent: 1 - - uid: 9146 + pos: -74.5,-65.5 + parent: 2 + - uid: 20832 components: - type: Transform - pos: 368.5,380.5 - parent: 1 - - uid: 9147 + pos: -69.5,-65.5 + parent: 2 + - uid: 20833 components: - type: Transform - pos: 369.5,380.5 - parent: 1 - - uid: 9148 + pos: -67.5,-65.5 + parent: 2 + - uid: 20834 components: - type: Transform - pos: 369.5,381.5 - parent: 1 - - uid: 9149 + pos: -68.5,-65.5 + parent: 2 + - uid: 20835 components: - type: Transform - pos: 369.5,382.5 - parent: 1 - - uid: 9150 + pos: -55.5,-64.5 + parent: 2 + - uid: 20842 components: - type: Transform - pos: 366.5,381.5 - parent: 1 - - uid: 9151 + pos: -130.5,22.5 + parent: 2 + - uid: 20852 components: - type: Transform - pos: 366.5,383.5 - parent: 1 - - uid: 9152 + pos: -35.5,-58.5 + parent: 2 + - uid: 20853 components: - type: Transform - pos: 366.5,382.5 - parent: 1 - - uid: 9153 + pos: -35.5,-59.5 + parent: 2 + - uid: 20854 components: - type: Transform - pos: 366.5,384.5 - parent: 1 - - uid: 9154 + pos: -24.5,-59.5 + parent: 2 + - uid: 20855 components: - type: Transform - pos: 366.5,385.5 - parent: 1 - - uid: 9155 + pos: -23.5,-59.5 + parent: 2 + - uid: 20856 components: - type: Transform - pos: 366.5,386.5 - parent: 1 - - uid: 9156 + pos: -22.5,-59.5 + parent: 2 + - uid: 20857 components: - type: Transform - pos: 366.5,387.5 - parent: 1 - - uid: 9157 + pos: -31.5,-59.5 + parent: 2 + - uid: 20858 components: - type: Transform - pos: 367.5,387.5 - parent: 1 - - uid: 9158 + pos: -21.5,-59.5 + parent: 2 + - uid: 20860 components: - type: Transform - pos: 369.5,387.5 - parent: 1 - - uid: 9159 + pos: -20.5,-59.5 + parent: 2 + - uid: 20861 components: - type: Transform - pos: 368.5,387.5 - parent: 1 - - uid: 9160 + pos: -34.5,-59.5 + parent: 2 + - uid: 20862 components: - type: Transform - pos: 369.5,386.5 - parent: 1 - - uid: 9161 + pos: -33.5,-59.5 + parent: 2 + - uid: 20863 components: - type: Transform - pos: 365.5,385.5 - parent: 1 - - uid: 9162 + pos: -32.5,-59.5 + parent: 2 + - uid: 20864 components: - type: Transform - pos: 363.5,385.5 - parent: 1 - - uid: 9163 + pos: -30.5,-59.5 + parent: 2 + - uid: 20865 components: - type: Transform - pos: 362.5,385.5 - parent: 1 - - uid: 9164 + pos: -29.5,-59.5 + parent: 2 + - uid: 20866 components: - type: Transform - pos: 361.5,385.5 - parent: 1 - - uid: 9165 + pos: -28.5,-59.5 + parent: 2 + - uid: 20867 components: - type: Transform - pos: 360.5,385.5 - parent: 1 - - uid: 9166 + pos: -27.5,-59.5 + parent: 2 + - uid: 20868 components: - type: Transform - pos: 359.5,385.5 - parent: 1 - - uid: 9167 + pos: -26.5,-59.5 + parent: 2 + - uid: 20869 components: - type: Transform - pos: 364.5,385.5 - parent: 1 - - uid: 9168 + pos: -25.5,-59.5 + parent: 2 + - uid: 20892 components: - type: Transform - pos: 359.5,384.5 - parent: 1 - - uid: 9169 + pos: -133.5,19.5 + parent: 2 + - uid: 21010 components: - type: Transform - pos: 359.5,383.5 - parent: 1 - - uid: 9170 + pos: -133.5,21.5 + parent: 2 + - uid: 21091 components: - type: Transform - pos: 359.5,382.5 - parent: 1 - - uid: 9171 + pos: -23.5,-1.5 + parent: 2 + - uid: 21092 components: - type: Transform - pos: 359.5,381.5 - parent: 1 - - uid: 9172 + pos: -22.5,-1.5 + parent: 2 + - uid: 21093 components: - type: Transform - pos: 359.5,380.5 - parent: 1 - - uid: 9173 + pos: -21.5,-1.5 + parent: 2 + - uid: 21551 components: - type: Transform - pos: 359.5,379.5 - parent: 1 - - uid: 9174 + pos: -26.5,-56.5 + parent: 2 + - uid: 21608 components: - type: Transform - pos: 359.5,378.5 - parent: 1 - - uid: 9175 + pos: -29.5,-56.5 + parent: 2 + - uid: 21746 components: - type: Transform - pos: 360.5,381.5 - parent: 1 - - uid: 9176 + pos: -126.5,22.5 + parent: 2 + - uid: 21773 components: - type: Transform - pos: 361.5,381.5 - parent: 1 - - uid: 9177 + pos: -132.5,22.5 + parent: 2 + - uid: 21781 components: - type: Transform - pos: 360.5,378.5 - parent: 1 - - uid: 9178 + pos: -127.5,22.5 + parent: 2 + - uid: 21782 components: - type: Transform - pos: 361.5,378.5 - parent: 1 - - uid: 9179 + pos: -128.5,22.5 + parent: 2 + - uid: 21957 components: - type: Transform - pos: 358.5,381.5 - parent: 1 - - uid: 9180 + pos: -14.5,-63.5 + parent: 2 + - uid: 22141 components: - type: Transform - pos: 356.5,381.5 - parent: 1 - - uid: 9181 + pos: -72.5,-21.5 + parent: 2 + - uid: 22163 components: - type: Transform - pos: 355.5,381.5 - parent: 1 - - uid: 9182 + pos: -76.5,-53.5 + parent: 2 + - uid: 22349 components: - type: Transform - pos: 354.5,381.5 - parent: 1 - - uid: 9183 + pos: -15.5,4.5 + parent: 2 + - uid: 22356 components: - type: Transform - pos: 353.5,381.5 - parent: 1 - - uid: 9184 + pos: -18.5,-9.5 + parent: 2 + - uid: 22476 components: - type: Transform - pos: 357.5,381.5 - parent: 1 - - uid: 9185 + pos: -56.5,-73.5 + parent: 2 + - uid: 22524 components: - type: Transform - pos: 353.5,382.5 - parent: 1 - - uid: 9186 + pos: -133.5,-11.5 + parent: 2 + - uid: 22525 components: - type: Transform - pos: 354.5,380.5 - parent: 1 - - uid: 9187 + pos: -133.5,-12.5 + parent: 2 + - uid: 22526 components: - type: Transform - pos: 366.5,388.5 - parent: 1 - - uid: 9188 + pos: -133.5,-13.5 + parent: 2 + - uid: 22527 components: - type: Transform - pos: 366.5,389.5 - parent: 1 - - uid: 9189 + pos: -133.5,-15.5 + parent: 2 + - uid: 22528 components: - type: Transform - pos: 365.5,389.5 - parent: 1 - - uid: 9190 + pos: -133.5,-16.5 + parent: 2 + - uid: 22529 components: - type: Transform - pos: 364.5,389.5 - parent: 1 - - uid: 9191 + pos: -133.5,-17.5 + parent: 2 + - uid: 22530 components: - type: Transform - pos: 363.5,389.5 - parent: 1 - - uid: 9192 + pos: -133.5,-18.5 + parent: 2 + - uid: 22531 components: - type: Transform - pos: 362.5,389.5 - parent: 1 - - uid: 9193 + pos: -133.5,-14.5 + parent: 2 + - uid: 22532 components: - type: Transform - pos: 361.5,389.5 - parent: 1 - - uid: 9194 + pos: -133.5,-19.5 + parent: 2 + - uid: 22533 components: - type: Transform - pos: 359.5,389.5 - parent: 1 - - uid: 9195 + pos: -133.5,-20.5 + parent: 2 + - uid: 22534 components: - type: Transform - pos: 360.5,389.5 - parent: 1 - - uid: 9196 + pos: -133.5,-21.5 + parent: 2 + - uid: 22535 components: - type: Transform - pos: 359.5,390.5 - parent: 1 - - uid: 9197 + pos: -133.5,-22.5 + parent: 2 + - uid: 22536 components: - type: Transform - pos: 357.5,390.5 - parent: 1 - - uid: 9198 + pos: -133.5,-23.5 + parent: 2 + - uid: 22537 components: - type: Transform - pos: 358.5,390.5 - parent: 1 - - uid: 9200 + pos: -133.5,-24.5 + parent: 2 + - uid: 22538 components: - type: Transform - pos: 347.5,383.5 - parent: 1 - - uid: 9201 + pos: -133.5,-26.5 + parent: 2 + - uid: 22539 components: - type: Transform - pos: 348.5,383.5 - parent: 1 - - uid: 9202 + pos: -133.5,-27.5 + parent: 2 + - uid: 22540 components: - type: Transform - pos: 348.5,385.5 - parent: 1 - - uid: 9203 + pos: -133.5,-25.5 + parent: 2 + - uid: 22541 components: - type: Transform - pos: 348.5,384.5 - parent: 1 - - uid: 9204 + pos: -134.5,-27.5 + parent: 2 + - uid: 22545 components: - type: Transform - pos: 347.5,385.5 - parent: 1 - - uid: 9205 + pos: -123.5,-27.5 + parent: 2 + - uid: 22546 components: - type: Transform - pos: 347.5,387.5 - parent: 1 - - uid: 9206 + pos: -122.5,-27.5 + parent: 2 + - uid: 22547 components: - type: Transform - pos: 347.5,388.5 - parent: 1 - - uid: 9207 + pos: -120.5,-27.5 + parent: 2 + - uid: 22548 components: - type: Transform - pos: 346.5,388.5 - parent: 1 - - uid: 9208 + pos: -118.5,-27.5 + parent: 2 + - uid: 22549 components: - type: Transform - pos: 347.5,386.5 - parent: 1 - - uid: 9209 + pos: -117.5,-27.5 + parent: 2 + - uid: 22550 components: - type: Transform - pos: 346.5,389.5 - parent: 1 - - uid: 9210 + pos: -116.5,-27.5 + parent: 2 + - uid: 22551 components: - type: Transform - pos: 346.5,390.5 - parent: 1 - - uid: 9211 + pos: -121.5,-27.5 + parent: 2 + - uid: 22552 components: - type: Transform - pos: 348.5,388.5 - parent: 1 - - uid: 9212 + pos: -119.5,-27.5 + parent: 2 + - uid: 22553 components: - type: Transform - pos: 350.5,388.5 - parent: 1 - - uid: 9213 + pos: -132.5,-27.5 + parent: 2 + - uid: 22554 components: - type: Transform - pos: 351.5,388.5 - parent: 1 - - uid: 9214 + pos: -130.5,-27.5 + parent: 2 + - uid: 22555 components: - type: Transform - pos: 349.5,388.5 - parent: 1 - - uid: 9215 + pos: -129.5,-27.5 + parent: 2 + - uid: 22556 components: - type: Transform - pos: 352.5,388.5 - parent: 1 - - uid: 9216 + pos: -128.5,-27.5 + parent: 2 + - uid: 22557 components: - type: Transform - pos: 353.5,388.5 - parent: 1 - - uid: 9217 + pos: -127.5,-27.5 + parent: 2 + - uid: 22558 components: - type: Transform - pos: 353.5,387.5 - parent: 1 - - uid: 9218 + pos: -126.5,-27.5 + parent: 2 + - uid: 22559 components: - type: Transform - pos: 354.5,388.5 - parent: 1 - - uid: 9219 + pos: -125.5,-27.5 + parent: 2 + - uid: 22560 components: - type: Transform - pos: 355.5,388.5 - parent: 1 - - uid: 9220 + pos: -131.5,-27.5 + parent: 2 + - uid: 22561 components: - type: Transform - pos: 355.5,387.5 - parent: 1 - - uid: 9221 + pos: -124.5,-27.5 + parent: 2 + - uid: 22562 components: - type: Transform - pos: 355.5,389.5 - parent: 1 - - uid: 9222 + pos: -119.5,-26.5 + parent: 2 + - uid: 22563 components: - type: Transform - pos: 355.5,386.5 - parent: 1 - - uid: 9223 + pos: -115.5,-27.5 + parent: 2 + - uid: 22564 components: - type: Transform - pos: 354.5,385.5 - parent: 1 - - uid: 9224 + pos: -113.5,-27.5 + parent: 2 + - uid: 22565 components: - type: Transform - pos: 354.5,386.5 - parent: 1 - - uid: 9226 + pos: -112.5,-27.5 + parent: 2 + - uid: 22566 components: - type: Transform - pos: 351.5,385.5 - parent: 1 - - uid: 9228 + pos: -111.5,-27.5 + parent: 2 + - uid: 22567 components: - type: Transform - pos: 351.5,386.5 - parent: 1 - - uid: 9229 + pos: -110.5,-27.5 + parent: 2 + - uid: 22568 components: - type: Transform - pos: 355.5,391.5 - parent: 1 - - uid: 9230 + pos: -109.5,-27.5 + parent: 2 + - uid: 22569 components: - type: Transform - pos: 355.5,390.5 - parent: 1 - - uid: 9231 + pos: -114.5,-27.5 + parent: 2 + - uid: 22570 components: - type: Transform - pos: 355.5,392.5 - parent: 1 - - uid: 9232 + pos: -109.5,-28.5 + parent: 2 + - uid: 22629 components: - type: Transform - pos: 355.5,393.5 - parent: 1 - - uid: 9233 + pos: -76.5,-46.5 + parent: 2 + - uid: 22630 components: - type: Transform - pos: 355.5,394.5 - parent: 1 - - uid: 9234 + pos: -76.5,-44.5 + parent: 2 + - uid: 22661 components: - type: Transform - pos: 355.5,395.5 - parent: 1 - - uid: 9235 + pos: -119.5,-0.5 + parent: 2 + - uid: 22662 components: - type: Transform - pos: 355.5,396.5 - parent: 1 - - uid: 9236 + pos: -119.5,0.5 + parent: 2 + - uid: 22663 components: - type: Transform - pos: 354.5,396.5 - parent: 1 - - uid: 9237 + pos: -119.5,1.5 + parent: 2 + - uid: 22664 components: - type: Transform - pos: 353.5,396.5 - parent: 1 - - uid: 9238 + pos: -119.5,3.5 + parent: 2 + - uid: 22665 components: - type: Transform - pos: 353.5,397.5 - parent: 1 - - uid: 9239 + pos: -119.5,4.5 + parent: 2 + - uid: 22666 components: - type: Transform - pos: 353.5,398.5 - parent: 1 - - uid: 9240 + pos: -119.5,5.5 + parent: 2 + - uid: 22667 components: - type: Transform - pos: 352.5,398.5 - parent: 1 - - uid: 9241 + pos: -102.5,-2.5 + parent: 2 + - uid: 22671 components: - type: Transform - pos: 351.5,389.5 - parent: 1 - - uid: 9242 + pos: -103.5,-8.5 + parent: 2 + - uid: 22674 components: - type: Transform - pos: 351.5,390.5 - parent: 1 - - uid: 9243 + pos: -119.5,2.5 + parent: 2 + - uid: 22677 components: - type: Transform - pos: 351.5,391.5 - parent: 1 - - uid: 9244 + pos: -103.5,-6.5 + parent: 2 + - uid: 22678 components: - type: Transform - pos: 351.5,392.5 - parent: 1 - - uid: 9245 + pos: -119.5,18.5 + parent: 2 + - uid: 22679 components: - type: Transform - pos: 351.5,393.5 - parent: 1 - - uid: 9246 + pos: -119.5,19.5 + parent: 2 + - uid: 22680 components: - type: Transform - pos: 352.5,393.5 - parent: 1 - - uid: 9247 + pos: -119.5,20.5 + parent: 2 + - uid: 22681 components: - type: Transform - pos: 352.5,394.5 - parent: 1 - - uid: 9248 + pos: -119.5,21.5 + parent: 2 + - uid: 22682 components: - type: Transform - pos: 352.5,399.5 - parent: 1 - - uid: 9249 + pos: -119.5,22.5 + parent: 2 + - uid: 22684 components: - type: Transform - pos: 351.5,399.5 - parent: 1 - - uid: 9250 + pos: -119.5,24.5 + parent: 2 + - uid: 22685 components: - type: Transform - pos: 349.5,399.5 - parent: 1 - - uid: 9251 + pos: -119.5,25.5 + parent: 2 + - uid: 22686 components: - type: Transform - pos: 350.5,399.5 - parent: 1 - - uid: 9252 + pos: -119.5,23.5 + parent: 2 + - uid: 22688 components: - type: Transform - pos: 349.5,398.5 - parent: 1 - - uid: 9253 + pos: -116.5,25.5 + parent: 2 + - uid: 22689 components: - type: Transform - pos: 348.5,399.5 - parent: 1 - - uid: 9254 + pos: -107.5,25.5 + parent: 2 + - uid: 22690 components: - type: Transform - pos: 347.5,399.5 - parent: 1 - - uid: 9255 + pos: -106.5,25.5 + parent: 2 + - uid: 22693 components: - type: Transform - pos: 347.5,398.5 - parent: 1 - - uid: 9256 + pos: -108.5,25.5 + parent: 2 + - uid: 22694 components: - type: Transform - pos: 345.5,398.5 - parent: 1 - - uid: 9257 + pos: -118.5,25.5 + parent: 2 + - uid: 22695 components: - type: Transform - pos: 346.5,398.5 - parent: 1 - - uid: 9258 + pos: -117.5,25.5 + parent: 2 + - uid: 22696 components: - type: Transform - pos: 345.5,399.5 - parent: 1 - - uid: 9259 + pos: -115.5,25.5 + parent: 2 + - uid: 22697 components: - type: Transform - pos: 347.5,391.5 - parent: 1 - - uid: 9260 + pos: -114.5,25.5 + parent: 2 + - uid: 22698 components: - type: Transform - pos: 347.5,392.5 - parent: 1 - - uid: 9261 + pos: -113.5,25.5 + parent: 2 + - uid: 22699 components: - type: Transform - pos: 347.5,390.5 - parent: 1 - - uid: 9262 + pos: -112.5,25.5 + parent: 2 + - uid: 22700 components: - type: Transform - pos: 347.5,393.5 - parent: 1 - - uid: 9263 + pos: -111.5,25.5 + parent: 2 + - uid: 22701 components: - type: Transform - pos: 346.5,393.5 - parent: 1 - - uid: 9264 + pos: -110.5,25.5 + parent: 2 + - uid: 22702 components: - type: Transform - pos: 345.5,393.5 - parent: 1 - - uid: 9265 + pos: -109.5,25.5 + parent: 2 + - uid: 22704 components: - type: Transform - pos: 344.5,393.5 - parent: 1 - - uid: 9266 + pos: -106.5,26.5 + parent: 2 + - uid: 22808 components: - type: Transform - pos: 343.5,393.5 - parent: 1 - - uid: 9267 + pos: -133.5,20.5 + parent: 2 + - uid: 22878 components: - type: Transform - pos: 342.5,393.5 - parent: 1 - - uid: 9268 + pos: -75.5,-56.5 + parent: 2 + - uid: 22892 components: - type: Transform - pos: 341.5,393.5 - parent: 1 - - uid: 9269 + pos: -103.5,-10.5 + parent: 2 + - uid: 22894 components: - type: Transform - pos: 341.5,392.5 - parent: 1 - - uid: 9270 + pos: -101.5,-2.5 + parent: 2 + - uid: 22895 components: - type: Transform - pos: 341.5,391.5 - parent: 1 - - uid: 9271 + pos: -106.5,-10.5 + parent: 2 + - uid: 22898 components: - type: Transform - pos: 347.5,394.5 - parent: 1 - - uid: 9272 + pos: -103.5,-2.5 + parent: 2 + - uid: 22899 components: - type: Transform - pos: 347.5,395.5 - parent: 1 - - uid: 9273 + pos: -104.5,-10.5 + parent: 2 + - uid: 22903 components: - type: Transform - pos: 346.5,395.5 - parent: 1 - - uid: 9274 + pos: -103.5,-9.5 + parent: 2 + - uid: 22905 components: - type: Transform - pos: 347.5,396.5 - parent: 1 - - uid: 9275 + pos: -103.5,-4.5 + parent: 2 + - uid: 22910 components: - type: Transform - pos: 347.5,397.5 - parent: 1 - - uid: 9276 + pos: -34.5,-65.5 + parent: 2 + - uid: 22911 components: - type: Transform - pos: 297.5,381.5 - parent: 1 - - uid: 9278 + pos: -34.5,-66.5 + parent: 2 + - uid: 22912 components: - type: Transform - pos: 297.5,382.5 - parent: 1 - - uid: 9279 + pos: -33.5,-65.5 + parent: 2 + - uid: 22913 components: - type: Transform - pos: 298.5,382.5 - parent: 1 - - uid: 9280 + pos: -32.5,-65.5 + parent: 2 + - uid: 22914 components: - type: Transform - pos: 298.5,384.5 - parent: 1 - - uid: 9281 + pos: -31.5,-65.5 + parent: 2 + - uid: 22915 components: - type: Transform - pos: 298.5,383.5 - parent: 1 - - uid: 9282 + pos: -34.5,-64.5 + parent: 2 + - uid: 22916 components: - type: Transform - pos: 299.5,384.5 - parent: 1 - - uid: 9283 + pos: -34.5,-62.5 + parent: 2 + - uid: 22917 components: - type: Transform - pos: 300.5,384.5 - parent: 1 - - uid: 9284 + pos: -34.5,-61.5 + parent: 2 + - uid: 22918 components: - type: Transform - pos: 300.5,383.5 - parent: 1 - - uid: 9285 + pos: -34.5,-60.5 + parent: 2 + - uid: 22919 components: - type: Transform - pos: 298.5,385.5 - parent: 1 - - uid: 9286 + pos: -34.5,-63.5 + parent: 2 + - uid: 22920 components: - type: Transform - pos: 298.5,387.5 - parent: 1 - - uid: 9287 + pos: -26.5,-61.5 + parent: 2 + - uid: 22921 components: - type: Transform - pos: 298.5,386.5 - parent: 1 - - uid: 9288 + pos: -26.5,-60.5 + parent: 2 + - uid: 23168 components: - type: Transform - pos: 299.5,387.5 - parent: 1 - - uid: 9289 + pos: -108.5,-10.5 + parent: 2 + - uid: 23248 components: - type: Transform - pos: 301.5,387.5 - parent: 1 - - uid: 9290 + pos: -15.5,-21.5 + parent: 2 + - uid: 23249 components: - type: Transform - pos: 300.5,387.5 - parent: 1 - - uid: 9291 + pos: -15.5,-33.5 + parent: 2 + - uid: 23250 components: - type: Transform - pos: 302.5,387.5 - parent: 1 - - uid: 9292 + pos: -15.5,-30.5 + parent: 2 + - uid: 23252 components: - type: Transform - pos: 303.5,387.5 - parent: 1 - - uid: 9293 + pos: -126.5,25.5 + parent: 2 + - uid: 23332 components: - type: Transform - pos: 304.5,387.5 - parent: 1 - - uid: 9294 + pos: -67.5,-11.5 + parent: 2 + - uid: 23336 components: - type: Transform - pos: 306.5,387.5 - parent: 1 - - uid: 9295 + pos: -70.5,-25.5 + parent: 2 + - uid: 23426 components: - type: Transform - pos: 305.5,387.5 - parent: 1 - - uid: 9296 + pos: -105.5,-10.5 + parent: 2 + - uid: 23441 components: - type: Transform - pos: 308.5,387.5 - parent: 1 - - uid: 9297 + pos: -103.5,-3.5 + parent: 2 + - uid: 23626 components: - type: Transform - pos: 309.5,387.5 - parent: 1 - - uid: 9298 + pos: -68.5,-19.5 + parent: 2 + - uid: 23629 components: - type: Transform - pos: 310.5,387.5 - parent: 1 - - uid: 9299 + pos: -67.5,-10.5 + parent: 2 + - uid: 23647 components: - type: Transform - pos: 311.5,387.5 - parent: 1 - - uid: 9300 + pos: -67.5,-14.5 + parent: 2 + - uid: 23648 components: - type: Transform - pos: 312.5,387.5 - parent: 1 - - uid: 9301 + pos: -67.5,-12.5 + parent: 2 + - uid: 23673 components: - type: Transform - pos: 314.5,387.5 - parent: 1 - - uid: 9302 + pos: -69.5,-25.5 + parent: 2 + - uid: 23675 components: - type: Transform - pos: 313.5,387.5 - parent: 1 - - uid: 9303 + pos: -66.5,-25.5 + parent: 2 + - uid: 23682 components: - type: Transform - pos: 315.5,387.5 - parent: 1 - - uid: 9304 + pos: -79.5,5.5 + parent: 2 + - uid: 23683 components: - type: Transform - pos: 316.5,387.5 - parent: 1 - - uid: 9305 + pos: -82.5,5.5 + parent: 2 + - uid: 23684 components: - type: Transform - pos: 307.5,387.5 - parent: 1 - - uid: 9306 + pos: -79.5,-5.5 + parent: 2 + - uid: 23685 components: - type: Transform - pos: 317.5,387.5 - parent: 1 - - uid: 9307 + pos: -79.5,-4.5 + parent: 2 + - uid: 23686 components: - type: Transform - pos: 319.5,387.5 - parent: 1 - - uid: 9308 + pos: -79.5,-6.5 + parent: 2 + - uid: 23687 components: - type: Transform - pos: 320.5,387.5 - parent: 1 - - uid: 9309 + pos: -79.5,-7.5 + parent: 2 + - uid: 23688 components: - type: Transform - pos: 321.5,387.5 - parent: 1 - - uid: 9310 + pos: -79.5,-8.5 + parent: 2 + - uid: 23689 components: - type: Transform - pos: 322.5,387.5 - parent: 1 - - uid: 9311 + pos: -79.5,4.5 + parent: 2 + - uid: 23690 components: - type: Transform - pos: 318.5,387.5 - parent: 1 - - uid: 9312 + pos: -79.5,2.5 + parent: 2 + - uid: 23691 components: - type: Transform - pos: 323.5,387.5 - parent: 1 - - uid: 9313 + pos: -79.5,1.5 + parent: 2 + - uid: 23692 components: - type: Transform - pos: 324.5,387.5 - parent: 1 - - uid: 9314 + pos: -79.5,0.5 + parent: 2 + - uid: 23693 components: - type: Transform - pos: 326.5,387.5 - parent: 1 - - uid: 9315 + pos: -79.5,-0.5 + parent: 2 + - uid: 23694 components: - type: Transform - pos: 327.5,387.5 - parent: 1 - - uid: 9316 + pos: -79.5,-1.5 + parent: 2 + - uid: 23695 components: - type: Transform - pos: 325.5,387.5 - parent: 1 - - uid: 9317 + pos: -79.5,-2.5 + parent: 2 + - uid: 23696 components: - type: Transform - pos: 327.5,388.5 - parent: 1 - - uid: 9318 + pos: -79.5,3.5 + parent: 2 + - uid: 23697 components: - type: Transform - pos: 313.5,388.5 - parent: 1 - - uid: 9319 + pos: -79.5,-3.5 + parent: 2 + - uid: 23698 components: - type: Transform - pos: 313.5,389.5 - parent: 1 - - uid: 9320 + pos: -78.5,-8.5 + parent: 2 + - uid: 23699 components: - type: Transform - pos: 306.5,386.5 - parent: 1 - - uid: 9321 + pos: -76.5,-8.5 + parent: 2 + - uid: 23700 components: - type: Transform - pos: 306.5,385.5 - parent: 1 - - uid: 9322 + pos: -75.5,-8.5 + parent: 2 + - uid: 23701 components: - type: Transform - pos: 306.5,383.5 - parent: 1 - - uid: 9323 + pos: -77.5,-8.5 + parent: 2 + - uid: 23702 components: - type: Transform - pos: 306.5,384.5 - parent: 1 - - uid: 9324 + pos: -75.5,-9.5 + parent: 2 + - uid: 23703 components: - type: Transform - pos: 307.5,383.5 - parent: 1 - - uid: 9325 + pos: -75.5,-10.5 + parent: 2 + - uid: 23716 components: - type: Transform - pos: 309.5,383.5 - parent: 1 - - uid: 9326 + pos: -103.5,-5.5 + parent: 2 + - uid: 23721 components: - type: Transform - pos: 310.5,383.5 - parent: 1 - - uid: 9327 + pos: -70.5,-26.5 + parent: 2 + - uid: 23781 components: - type: Transform - pos: 311.5,383.5 - parent: 1 - - uid: 9328 + pos: -50.5,-33.5 + parent: 2 + - uid: 23795 components: - type: Transform - pos: 312.5,383.5 - parent: 1 - - uid: 9329 + pos: -103.5,-7.5 + parent: 2 + - uid: 23836 components: - type: Transform - pos: 313.5,383.5 - parent: 1 - - uid: 9330 + pos: -133.5,18.5 + parent: 2 + - uid: 23897 components: - type: Transform - pos: 314.5,383.5 - parent: 1 - - uid: 9331 + pos: -23.5,1.5 + parent: 2 + - uid: 23951 components: - type: Transform - pos: 308.5,383.5 - parent: 1 - - uid: 9332 + pos: -121.5,25.5 + parent: 2 + - uid: 23952 components: - type: Transform - pos: 315.5,383.5 - parent: 1 - - uid: 9333 + pos: -126.5,24.5 + parent: 2 + - uid: 23953 components: - type: Transform - pos: 316.5,383.5 - parent: 1 - - uid: 9334 + pos: -126.5,23.5 + parent: 2 + - uid: 23966 components: - type: Transform - pos: 317.5,383.5 - parent: 1 - - uid: 9335 + pos: -133.5,12.5 + parent: 2 + - uid: 23967 components: - type: Transform - pos: 318.5,383.5 - parent: 1 - - uid: 9338 + pos: -133.5,6.5 + parent: 2 + - uid: 23968 components: - type: Transform - pos: 314.5,384.5 - parent: 1 - - uid: 9339 + pos: -133.5,4.5 + parent: 2 + - uid: 23969 components: - type: Transform - pos: 314.5,385.5 - parent: 1 - - uid: 9347 + pos: -133.5,3.5 + parent: 2 + - uid: 23970 components: - type: Transform - pos: 328.5,396.5 - parent: 1 - - uid: 9348 + pos: -133.5,2.5 + parent: 2 + - uid: 23971 components: - type: Transform - pos: 328.5,397.5 - parent: 1 - - uid: 9349 + pos: -133.5,1.5 + parent: 2 + - uid: 23972 components: - type: Transform - pos: 328.5,398.5 - parent: 1 - - uid: 9350 + pos: -133.5,7.5 + parent: 2 + - uid: 23973 components: - type: Transform - pos: 328.5,399.5 - parent: 1 - - uid: 9352 + pos: -133.5,5.5 + parent: 2 + - uid: 23975 components: - type: Transform - pos: 330.5,408.5 - parent: 1 - - uid: 9353 + pos: -133.5,16.5 + parent: 2 + - uid: 23976 components: - type: Transform - pos: 332.5,408.5 - parent: 1 - - uid: 9354 + pos: -133.5,15.5 + parent: 2 + - uid: 23977 components: - type: Transform - pos: 331.5,408.5 - parent: 1 - - uid: 9355 + pos: -133.5,14.5 + parent: 2 + - uid: 23978 components: - type: Transform - pos: 330.5,407.5 - parent: 1 - - uid: 9356 + pos: -133.5,13.5 + parent: 2 + - uid: 23979 components: - type: Transform - pos: 330.5,406.5 - parent: 1 - - uid: 9357 + pos: -133.5,11.5 + parent: 2 + - uid: 23980 components: - type: Transform - pos: 328.5,406.5 - parent: 1 - - uid: 9358 + pos: -133.5,10.5 + parent: 2 + - uid: 23981 components: - type: Transform - pos: 327.5,406.5 - parent: 1 - - uid: 9359 + pos: -133.5,9.5 + parent: 2 + - uid: 23982 components: - type: Transform - pos: 329.5,406.5 - parent: 1 - - uid: 9360 + pos: -133.5,8.5 + parent: 2 + - uid: 23993 components: - type: Transform - pos: 327.5,405.5 - parent: 1 - - uid: 9361 + pos: -94.5,25.5 + parent: 2 + - uid: 23994 components: - type: Transform - pos: 326.5,405.5 - parent: 1 - - uid: 9362 + pos: -73.5,-21.5 + parent: 2 + - uid: 23995 components: - type: Transform - pos: 331.5,409.5 - parent: 1 - - uid: 9363 + pos: -26.5,-57.5 + parent: 2 + - uid: 24001 components: - type: Transform - pos: 331.5,411.5 - parent: 1 - - uid: 9364 + pos: -28.5,-56.5 + parent: 2 + - uid: 24052 components: - type: Transform - pos: 331.5,410.5 - parent: 1 - - uid: 9365 + pos: -15.5,-22.5 + parent: 2 + - uid: 24053 components: - type: Transform - pos: 330.5,411.5 - parent: 1 - - uid: 9366 + pos: -15.5,-24.5 + parent: 2 + - uid: 24054 components: - type: Transform - pos: 329.5,411.5 - parent: 1 - - uid: 9367 + pos: -15.5,-25.5 + parent: 2 + - uid: 24055 components: - type: Transform - pos: 329.5,412.5 - parent: 1 - - uid: 9368 + pos: -15.5,-26.5 + parent: 2 + - uid: 24056 components: - type: Transform - pos: 331.5,412.5 - parent: 1 - - uid: 9369 + pos: -15.5,-27.5 + parent: 2 + - uid: 24057 components: - type: Transform - pos: 331.5,414.5 - parent: 1 - - uid: 9370 + pos: -15.5,-28.5 + parent: 2 + - uid: 24058 components: - type: Transform - pos: 331.5,415.5 - parent: 1 - - uid: 9371 + pos: -15.5,-23.5 + parent: 2 + - uid: 24059 components: - type: Transform - pos: 331.5,416.5 - parent: 1 - - uid: 9372 + pos: -15.5,-29.5 + parent: 2 + - uid: 24079 components: - type: Transform - pos: 331.5,417.5 - parent: 1 - - uid: 9373 + pos: -17.5,-33.5 + parent: 2 + - uid: 24430 components: - type: Transform - pos: 331.5,418.5 - parent: 1 - - uid: 9374 + pos: -115.5,-10.5 + parent: 2 + - uid: 24431 components: - type: Transform - pos: 331.5,419.5 - parent: 1 - - uid: 9375 + pos: -116.5,-10.5 + parent: 2 + - uid: 24432 components: - type: Transform - pos: 331.5,413.5 - parent: 1 - - uid: 9376 + pos: -117.5,-10.5 + parent: 2 + - uid: 24433 components: - type: Transform - pos: 332.5,419.5 - parent: 1 - - uid: 9377 + pos: -118.5,-10.5 + parent: 2 + - uid: 24461 components: - type: Transform - pos: 334.5,419.5 - parent: 1 - - uid: 9378 + pos: -86.5,5.5 + parent: 2 + - uid: 24586 components: - type: Transform - pos: 335.5,419.5 - parent: 1 - - uid: 9379 + pos: -77.5,-56.5 + parent: 2 + - uid: 24587 components: - type: Transform - pos: 336.5,419.5 - parent: 1 - - uid: 9380 + pos: -78.5,-56.5 + parent: 2 + - uid: 24588 components: - type: Transform - pos: 333.5,419.5 - parent: 1 - - uid: 9381 + pos: -80.5,-56.5 + parent: 2 + - uid: 24589 components: - type: Transform - pos: 331.5,421.5 - parent: 1 - - uid: 9382 + pos: -81.5,-56.5 + parent: 2 + - uid: 24590 components: - type: Transform - pos: 331.5,422.5 - parent: 1 - - uid: 9383 + pos: -82.5,-56.5 + parent: 2 + - uid: 24591 components: - type: Transform - pos: 331.5,420.5 - parent: 1 - - uid: 9384 + pos: -83.5,-56.5 + parent: 2 + - uid: 24592 components: - type: Transform - pos: 331.5,423.5 - parent: 1 - - uid: 9385 + pos: -79.5,-56.5 + parent: 2 + - uid: 24593 components: - type: Transform - pos: 331.5,424.5 - parent: 1 - - uid: 9386 + pos: -84.5,-56.5 + parent: 2 + - uid: 24594 components: - type: Transform - pos: 330.5,424.5 - parent: 1 - - uid: 9387 + pos: -86.5,-56.5 + parent: 2 + - uid: 24595 components: - type: Transform - pos: 328.5,424.5 - parent: 1 - - uid: 9388 + pos: -85.5,-56.5 + parent: 2 + - uid: 24596 components: - type: Transform - pos: 329.5,424.5 - parent: 1 - - uid: 9389 + pos: -87.5,-56.5 + parent: 2 + - uid: 24597 components: - type: Transform - pos: 327.5,424.5 - parent: 1 - - uid: 9390 + pos: -88.5,-56.5 + parent: 2 + - uid: 24598 components: - type: Transform - pos: 326.5,424.5 - parent: 1 - - uid: 9391 + pos: -89.5,-56.5 + parent: 2 + - uid: 24599 components: - type: Transform - pos: 325.5,424.5 - parent: 1 - - uid: 9392 + pos: -90.5,-56.5 + parent: 2 + - uid: 24600 components: - type: Transform - pos: 324.5,424.5 - parent: 1 - - uid: 9393 + pos: -91.5,-56.5 + parent: 2 + - uid: 24601 components: - type: Transform - pos: 323.5,424.5 - parent: 1 - - uid: 9394 + pos: -92.5,-56.5 + parent: 2 + - uid: 24602 components: - type: Transform - pos: 322.5,424.5 - parent: 1 - - uid: 9395 + pos: -92.5,-57.5 + parent: 2 + - uid: 24603 components: - type: Transform - pos: 322.5,425.5 - parent: 1 - - uid: 9396 + pos: -92.5,-58.5 + parent: 2 + - uid: 24604 components: - type: Transform - pos: 322.5,427.5 - parent: 1 - - uid: 9397 + pos: -92.5,-59.5 + parent: 2 + - uid: 24605 components: - type: Transform - pos: 322.5,426.5 - parent: 1 - - uid: 9398 + pos: -92.5,-60.5 + parent: 2 + - uid: 24606 components: - type: Transform - pos: 318.5,430.5 - parent: 1 - - uid: 9399 + pos: -91.5,-60.5 + parent: 2 + - uid: 24628 components: - type: Transform - pos: 318.5,429.5 - parent: 1 - - uid: 9405 + pos: -10.5,-15.5 + parent: 2 + - uid: 24639 components: - type: Transform - pos: 319.5,430.5 - parent: 1 - - uid: 9407 + pos: -15.5,5.5 + parent: 2 + - uid: 24640 components: - type: Transform - pos: 320.5,430.5 - parent: 1 - - uid: 9408 + pos: -15.5,6.5 + parent: 2 + - uid: 24641 components: - type: Transform - pos: 321.5,429.5 - parent: 1 - - uid: 9409 + pos: -14.5,6.5 + parent: 2 + - uid: 24642 components: - type: Transform - pos: 322.5,429.5 - parent: 1 - - uid: 9410 + pos: -13.5,6.5 + parent: 2 + - uid: 24643 components: - type: Transform - pos: 323.5,429.5 - parent: 1 - - uid: 9411 + pos: -13.5,5.5 + parent: 2 + - uid: 24665 components: - type: Transform - pos: 323.5,431.5 - parent: 1 - - uid: 9412 + pos: -17.5,11.5 + parent: 2 + - uid: 25111 components: - type: Transform - pos: 323.5,432.5 - parent: 1 - - uid: 9413 + pos: -120.5,-88.5 + parent: 2 + - uid: 25112 components: - type: Transform - pos: 323.5,433.5 - parent: 1 - - uid: 9414 + pos: -120.5,-87.5 + parent: 2 + - uid: 25113 components: - type: Transform - pos: 323.5,430.5 - parent: 1 - - uid: 9415 + pos: -119.5,-87.5 + parent: 2 + - uid: 25135 components: - type: Transform - pos: 324.5,433.5 - parent: 1 - - uid: 9416 + pos: -119.5,-75.5 + parent: 2 + - uid: 25137 components: - type: Transform - pos: 325.5,433.5 - parent: 1 - - uid: 9417 + pos: -120.5,-75.5 + parent: 2 + - uid: 25138 components: - type: Transform - pos: 325.5,434.5 - parent: 1 - - uid: 9418 + pos: -120.5,-74.5 + parent: 2 + - uid: 25207 components: - type: Transform - pos: 326.5,434.5 - parent: 1 - - uid: 9419 + pos: -121.5,-69.5 + parent: 2 + - uid: 25208 components: - type: Transform - pos: 327.5,434.5 - parent: 1 - - uid: 9420 + pos: -120.5,-69.5 + parent: 2 + - uid: 25209 components: - type: Transform - pos: 327.5,436.5 - parent: 1 - - uid: 9421 + pos: -120.5,-73.5 + parent: 2 + - uid: 25210 components: - type: Transform - pos: 327.5,437.5 - parent: 1 - - uid: 9422 + pos: -120.5,-72.5 + parent: 2 + - uid: 25211 components: - type: Transform - pos: 327.5,438.5 - parent: 1 - - uid: 9423 + pos: -120.5,-70.5 + parent: 2 + - uid: 25213 components: - type: Transform - pos: 327.5,439.5 - parent: 1 - - uid: 9424 + pos: -120.5,-71.5 + parent: 2 + - uid: 25214 components: - type: Transform - pos: 327.5,440.5 - parent: 1 - - uid: 9425 + pos: -119.5,-69.5 + parent: 2 + - uid: 25437 components: - type: Transform - pos: 327.5,435.5 - parent: 1 - - uid: 9426 + pos: -76.5,-51.5 + parent: 2 + - uid: 25438 components: - type: Transform - pos: 326.5,440.5 - parent: 1 - - uid: 9427 + pos: -76.5,-50.5 + parent: 2 + - uid: 25439 components: - type: Transform - pos: 333.5,410.5 - parent: 1 - - uid: 9428 + pos: -76.5,-49.5 + parent: 2 + - uid: 25440 components: - type: Transform - pos: 334.5,410.5 - parent: 1 - - uid: 9429 + pos: -76.5,-48.5 + parent: 2 + - uid: 25441 components: - type: Transform - pos: 332.5,410.5 - parent: 1 - - uid: 9430 + pos: -76.5,-52.5 + parent: 2 + - uid: 25442 components: - type: Transform - pos: 334.5,409.5 - parent: 1 - - uid: 9431 + pos: -76.5,-47.5 + parent: 2 + - uid: 25458 components: - type: Transform - pos: 334.5,408.5 - parent: 1 - - uid: 9432 + pos: -72.5,-25.5 + parent: 2 + - uid: 25459 components: - type: Transform - pos: 334.5,407.5 - parent: 1 - - uid: 9433 + pos: -71.5,-25.5 + parent: 2 + - uid: 25851 components: - type: Transform - pos: 335.5,407.5 - parent: 1 - - uid: 9434 + pos: -120.5,-68.5 + parent: 2 + - uid: 25852 components: - type: Transform - pos: 336.5,407.5 - parent: 1 - - uid: 9435 + pos: -120.5,-67.5 + parent: 2 + - uid: 25853 components: - type: Transform - pos: 337.5,407.5 - parent: 1 - - uid: 9436 + pos: -119.5,-67.5 + parent: 2 + - uid: 25854 components: - type: Transform - pos: 337.5,408.5 - parent: 1 - - uid: 9437 + pos: -118.5,-67.5 + parent: 2 + - uid: 25855 components: - type: Transform - pos: 334.5,411.5 - parent: 1 - - uid: 9438 + pos: -117.5,-67.5 + parent: 2 + - uid: 25865 components: - type: Transform - pos: 335.5,411.5 - parent: 1 - - uid: 9439 + pos: -137.5,-28.5 + parent: 2 + - uid: 25866 components: - type: Transform - pos: 336.5,411.5 - parent: 1 - - uid: 9440 + pos: -137.5,-27.5 + parent: 2 + - uid: 25867 components: - type: Transform - pos: 337.5,411.5 - parent: 1 - - uid: 9441 + pos: -136.5,-27.5 + parent: 2 + - uid: 25868 components: - type: Transform - pos: 338.5,411.5 - parent: 1 - - uid: 9442 + pos: -135.5,-27.5 + parent: 2 + - uid: 25950 components: - type: Transform - pos: 339.5,411.5 - parent: 1 - - uid: 9443 + pos: -75.5,-11.5 + parent: 2 + - uid: 25951 components: - type: Transform - pos: 340.5,411.5 - parent: 1 - - uid: 9444 + pos: -74.5,-11.5 + parent: 2 + - uid: 25952 components: - type: Transform - pos: 341.5,411.5 - parent: 1 - - uid: 9445 + pos: -73.5,-11.5 + parent: 2 + - uid: 25968 components: - type: Transform - pos: 342.5,411.5 - parent: 1 - - uid: 9446 + pos: -75.5,-54.5 + parent: 2 + - uid: 25969 components: - type: Transform - pos: 343.5,411.5 - parent: 1 - - uid: 9447 + pos: -74.5,-54.5 + parent: 2 + - uid: 26111 components: - type: Transform - pos: 344.5,411.5 - parent: 1 - - uid: 9448 + pos: -21.5,-30.5 + parent: 2 + - uid: 26180 components: - type: Transform - pos: 344.5,410.5 - parent: 1 - - uid: 9449 + pos: -3.5,-6.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 4379 components: - type: Transform - pos: 336.5,412.5 - parent: 1 - - uid: 9450 + pos: -26.525082,-6.3854237 + parent: 2 +- proto: CableTerminal + entities: + - uid: 2019 components: - type: Transform - pos: 345.5,411.5 - parent: 1 - - uid: 9451 + rot: 3.141592653589793 rad + pos: -71.5,-9.5 + parent: 2 + - uid: 2022 components: - type: Transform - pos: 346.5,411.5 - parent: 1 - - uid: 9452 + rot: 3.141592653589793 rad + pos: -72.5,-9.5 + parent: 2 + - uid: 4018 components: - type: Transform - pos: 347.5,411.5 - parent: 1 - - uid: 9453 + rot: 1.5707963267948966 rad + pos: -87.5,-17.5 + parent: 2 + - uid: 4409 components: - type: Transform - pos: 347.5,412.5 - parent: 1 - - uid: 9454 + pos: -82.5,-8.5 + parent: 2 + - uid: 4855 components: - type: Transform - pos: 347.5,414.5 - parent: 1 - - uid: 9455 + rot: 3.141592653589793 rad + pos: -127.5,-6.5 + parent: 2 + - uid: 4856 components: - type: Transform - pos: 347.5,415.5 - parent: 1 - - uid: 9456 + rot: 3.141592653589793 rad + pos: -126.5,-6.5 + parent: 2 + - uid: 4857 components: - type: Transform - pos: 347.5,416.5 - parent: 1 - - uid: 9457 + rot: 3.141592653589793 rad + pos: -125.5,-6.5 + parent: 2 + - uid: 4859 components: - type: Transform - pos: 347.5,413.5 - parent: 1 - - uid: 9458 + pos: -125.5,-2.5 + parent: 2 + - uid: 4860 components: - type: Transform - pos: 348.5,416.5 - parent: 1 - - uid: 9459 + pos: -127.5,-2.5 + parent: 2 + - uid: 4863 components: - type: Transform - pos: 349.5,416.5 - parent: 1 - - uid: 9460 + pos: -126.5,-2.5 + parent: 2 + - uid: 6211 components: - type: Transform - pos: 349.5,417.5 - parent: 1 - - uid: 9461 + rot: -1.5707963267948966 rad + pos: -122.5,-20.5 + parent: 2 + - uid: 7620 components: - type: Transform - pos: 355.5,414.5 - parent: 1 - - uid: 9462 + rot: 3.141592653589793 rad + pos: -128.5,-6.5 + parent: 2 + - uid: 7748 components: - type: Transform - pos: 355.5,413.5 - parent: 1 - - uid: 9463 + pos: -128.5,-2.5 + parent: 2 + - uid: 17617 components: - type: Transform - pos: 355.5,412.5 - parent: 1 - - uid: 9464 + rot: 3.141592653589793 rad + pos: -19.5,-65.5 + parent: 2 + - uid: 21307 components: - type: Transform - pos: 355.5,411.5 - parent: 1 - - uid: 9465 + rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 2 + - uid: 25106 components: - type: Transform - pos: 354.5,411.5 - parent: 1 - - uid: 9466 + pos: -121.5,-86.5 + parent: 2 + - uid: 25156 components: - type: Transform - pos: 354.5,410.5 - parent: 1 - - uid: 9467 + rot: 1.5707963267948966 rad + pos: -118.5,-65.5 + parent: 2 +- proto: Candle + entities: + - uid: 26089 components: - type: Transform - pos: 354.5,409.5 - parent: 1 - - uid: 9468 + rot: -1.5707963267948966 rad + pos: -54.705303,-43.69443 + parent: 2 + - uid: 26090 components: - type: Transform - pos: 353.5,409.5 - parent: 1 - - uid: 9469 + rot: -1.5707963267948966 rad + pos: -54.50218,-43.491306 + parent: 2 + - uid: 26091 components: - type: Transform - pos: 353.5,408.5 - parent: 1 - - uid: 9470 + rot: -1.5707963267948966 rad + pos: -54.28343,-43.69443 + parent: 2 +- proto: CandleRed + entities: + - uid: 17455 components: - type: Transform - pos: 353.5,406.5 - parent: 1 - - uid: 9471 + rot: 1.5707963267948966 rad + pos: -130.54828,-58.444664 + parent: 2 +- proto: CandyBowl + entities: + - uid: 3927 components: - type: Transform - pos: 353.5,405.5 - parent: 1 - - uid: 9472 + pos: -39.443195,-16.486511 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 22261 components: - type: Transform - pos: 353.5,407.5 - parent: 1 - - uid: 9473 + pos: -49.606716,0.5633166 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 5270 components: - type: Transform - pos: 353.5,404.5 - parent: 1 - - uid: 9474 + pos: -109.5,14.5 + parent: 2 + - uid: 5271 components: - type: Transform - pos: 353.5,403.5 - parent: 1 - - uid: 9475 + pos: -109.5,13.5 + parent: 2 + - uid: 5803 components: - type: Transform - pos: 354.5,403.5 - parent: 1 - - uid: 9476 + pos: -109.5,15.5 + parent: 2 + - uid: 22807 components: - type: Transform - pos: 355.5,403.5 - parent: 1 - - uid: 9477 + pos: -129.5,7.5 + parent: 2 +- proto: Carpet + entities: + - uid: 1601 components: - type: Transform - pos: 355.5,404.5 - parent: 1 - - uid: 9478 + rot: 3.141592653589793 rad + pos: -97.5,-46.5 + parent: 2 + - uid: 3375 components: - type: Transform - pos: 355.5,405.5 - parent: 1 - - uid: 9479 + pos: -55.5,-38.5 + parent: 2 + - uid: 3378 components: - type: Transform - pos: 351.5,403.5 - parent: 1 - - uid: 9480 + pos: -54.5,-37.5 + parent: 2 + - uid: 3380 components: - type: Transform - pos: 352.5,403.5 - parent: 1 - - uid: 9481 + pos: -55.5,-37.5 + parent: 2 + - uid: 3390 components: - type: Transform - pos: 350.5,403.5 - parent: 1 - - uid: 9482 + pos: -54.5,-38.5 + parent: 2 + - uid: 3393 components: - type: Transform - pos: 349.5,403.5 - parent: 1 - - uid: 9483 + pos: -55.5,-36.5 + parent: 2 + - uid: 3632 components: - type: Transform - pos: 348.5,403.5 - parent: 1 - - uid: 9484 + pos: -69.5,-22.5 + parent: 2 + - uid: 3675 components: - type: Transform - pos: 347.5,403.5 - parent: 1 - - uid: 9485 + rot: 1.5707963267948966 rad + pos: -51.5,-45.5 + parent: 2 + - uid: 3676 components: - type: Transform - pos: 346.5,403.5 - parent: 1 - - uid: 9486 + rot: 1.5707963267948966 rad + pos: -53.5,-45.5 + parent: 2 + - uid: 3950 components: - type: Transform - pos: 344.5,403.5 - parent: 1 - - uid: 9487 + pos: -10.5,2.5 + parent: 2 + - uid: 4991 components: - type: Transform - pos: 343.5,403.5 - parent: 1 - - uid: 9488 + pos: -68.5,-21.5 + parent: 2 + - uid: 5111 components: - type: Transform - pos: 342.5,403.5 - parent: 1 - - uid: 9489 + pos: -68.5,-20.5 + parent: 2 + - uid: 5892 components: - type: Transform - pos: 341.5,403.5 - parent: 1 - - uid: 9490 + rot: 1.5707963267948966 rad + pos: -97.5,-47.5 + parent: 2 + - uid: 6551 components: - type: Transform - pos: 340.5,403.5 - parent: 1 - - uid: 9491 + rot: 3.141592653589793 rad + pos: -99.5,-46.5 + parent: 2 + - uid: 6719 components: - type: Transform - pos: 339.5,403.5 - parent: 1 - - uid: 9492 + pos: -62.5,-31.5 + parent: 2 + - uid: 6749 components: - type: Transform - pos: 338.5,403.5 - parent: 1 - - uid: 9493 + rot: 1.5707963267948966 rad + pos: -82.5,-32.5 + parent: 2 + - uid: 6769 components: - type: Transform - pos: 345.5,403.5 - parent: 1 - - uid: 9494 + rot: 1.5707963267948966 rad + pos: -76.5,-30.5 + parent: 2 + - uid: 6812 components: - type: Transform - pos: 338.5,404.5 - parent: 1 - - uid: 9495 + rot: 1.5707963267948966 rad + pos: -83.5,-32.5 + parent: 2 + - uid: 6847 components: - type: Transform - pos: 338.5,405.5 - parent: 1 - - uid: 9496 + rot: 1.5707963267948966 rad + pos: -77.5,-31.5 + parent: 2 + - uid: 6855 components: - type: Transform - pos: 356.5,403.5 - parent: 1 - - uid: 9497 + rot: 1.5707963267948966 rad + pos: -76.5,-31.5 + parent: 2 + - uid: 6898 components: - type: Transform - pos: 358.5,403.5 - parent: 1 - - uid: 9498 + rot: 1.5707963267948966 rad + pos: -78.5,-30.5 + parent: 2 + - uid: 6925 components: - type: Transform - pos: 357.5,403.5 - parent: 1 - - uid: 9499 + rot: 1.5707963267948966 rad + pos: -77.5,-30.5 + parent: 2 + - uid: 6960 components: - type: Transform - pos: 360.5,403.5 - parent: 1 - - uid: 9500 + rot: 1.5707963267948966 rad + pos: -77.5,-29.5 + parent: 2 + - uid: 7085 components: - type: Transform - pos: 359.5,403.5 - parent: 1 - - uid: 9501 + pos: -62.5,-32.5 + parent: 2 + - uid: 7090 components: - type: Transform - pos: 361.5,403.5 - parent: 1 - - uid: 9502 + rot: 1.5707963267948966 rad + pos: -82.5,-34.5 + parent: 2 + - uid: 7091 components: - type: Transform - pos: 362.5,403.5 - parent: 1 - - uid: 9503 + rot: 1.5707963267948966 rad + pos: -81.5,-33.5 + parent: 2 + - uid: 7092 components: - type: Transform - pos: 362.5,401.5 - parent: 1 - - uid: 9504 + rot: 1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - uid: 7093 components: - type: Transform - pos: 362.5,400.5 - parent: 1 - - uid: 9505 + rot: 1.5707963267948966 rad + pos: -81.5,-32.5 + parent: 2 + - uid: 7094 components: - type: Transform - pos: 362.5,399.5 - parent: 1 - - uid: 9506 + rot: 1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - uid: 7240 components: - type: Transform - pos: 362.5,402.5 - parent: 1 - - uid: 9507 + rot: 1.5707963267948966 rad + pos: -83.5,-33.5 + parent: 2 + - uid: 7243 components: - type: Transform - pos: 363.5,399.5 - parent: 1 - - uid: 9508 + rot: 1.5707963267948966 rad + pos: -82.5,-33.5 + parent: 2 + - uid: 7248 components: - type: Transform - pos: 362.5,398.5 - parent: 1 - - uid: 9509 + rot: 1.5707963267948966 rad + pos: -78.5,-29.5 + parent: 2 + - uid: 7249 components: - type: Transform - pos: 362.5,396.5 - parent: 1 - - uid: 9510 + rot: 1.5707963267948966 rad + pos: -76.5,-29.5 + parent: 2 + - uid: 7537 components: - type: Transform - pos: 362.5,395.5 - parent: 1 - - uid: 9511 + pos: -62.5,-30.5 + parent: 2 + - uid: 8388 components: - type: Transform - pos: 362.5,394.5 - parent: 1 - - uid: 9512 + pos: -20.5,-21.5 + parent: 2 + - uid: 8481 components: - type: Transform - pos: 362.5,393.5 - parent: 1 - - uid: 9513 + rot: 1.5707963267948966 rad + pos: -54.5,-36.5 + parent: 2 + - uid: 8570 components: - type: Transform - pos: 362.5,397.5 - parent: 1 - - uid: 9514 + pos: -10.5,3.5 + parent: 2 + - uid: 8578 components: - type: Transform - pos: 363.5,393.5 - parent: 1 - - uid: 9515 + pos: -11.5,3.5 + parent: 2 + - uid: 8579 components: - type: Transform - pos: 364.5,393.5 - parent: 1 - - uid: 9516 + pos: -10.5,1.5 + parent: 2 + - uid: 8650 components: - type: Transform - pos: 364.5,403.5 - parent: 1 - - uid: 9517 + pos: -20.5,-20.5 + parent: 2 + - uid: 8873 components: - type: Transform - pos: 365.5,403.5 - parent: 1 - - uid: 9518 + pos: -19.5,-20.5 + parent: 2 + - uid: 8968 components: - type: Transform - pos: 366.5,403.5 - parent: 1 - - uid: 9519 + pos: -19.5,-21.5 + parent: 2 + - uid: 8969 components: - type: Transform - pos: 363.5,403.5 - parent: 1 - - uid: 9520 + pos: -18.5,-21.5 + parent: 2 + - uid: 9175 components: - type: Transform - pos: 367.5,403.5 - parent: 1 - - uid: 9521 + rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 2 + - uid: 11161 components: - type: Transform - pos: 368.5,403.5 - parent: 1 - - uid: 9522 + rot: 3.141592653589793 rad + pos: -98.5,-45.5 + parent: 2 + - uid: 11170 components: - type: Transform - pos: 369.5,403.5 - parent: 1 - - uid: 9523 + rot: 3.141592653589793 rad + pos: -99.5,-45.5 + parent: 2 + - uid: 11175 components: - type: Transform - pos: 370.5,403.5 - parent: 1 - - uid: 9524 + rot: 1.5707963267948966 rad + pos: -98.5,-47.5 + parent: 2 + - uid: 11842 components: - type: Transform - pos: 370.5,404.5 - parent: 1 - - uid: 9525 + rot: 3.141592653589793 rad + pos: -98.5,-46.5 + parent: 2 + - uid: 11843 components: - type: Transform - pos: 370.5,405.5 - parent: 1 - - uid: 9526 + rot: 3.141592653589793 rad + pos: -97.5,-45.5 + parent: 2 + - uid: 11876 components: - type: Transform - pos: 372.5,403.5 - parent: 1 - - uid: 9527 + rot: 1.5707963267948966 rad + pos: -99.5,-47.5 + parent: 2 + - uid: 13542 components: - type: Transform - pos: 373.5,403.5 - parent: 1 - - uid: 9528 + rot: 3.141592653589793 rad + pos: -98.5,-40.5 + parent: 2 + - uid: 13543 components: - type: Transform - pos: 374.5,403.5 - parent: 1 - - uid: 9529 + rot: 3.141592653589793 rad + pos: -96.5,-38.5 + parent: 2 + - uid: 13544 components: - type: Transform - pos: 375.5,403.5 - parent: 1 - - uid: 9530 + rot: 3.141592653589793 rad + pos: -97.5,-38.5 + parent: 2 + - uid: 13545 components: - type: Transform - pos: 376.5,403.5 - parent: 1 - - uid: 9531 + rot: 3.141592653589793 rad + pos: -97.5,-39.5 + parent: 2 + - uid: 13546 components: - type: Transform - pos: 377.5,403.5 - parent: 1 - - uid: 9532 + rot: 3.141592653589793 rad + pos: -97.5,-40.5 + parent: 2 + - uid: 13547 components: - type: Transform - pos: 371.5,403.5 - parent: 1 - - uid: 9533 + rot: 3.141592653589793 rad + pos: -98.5,-38.5 + parent: 2 + - uid: 13548 components: - type: Transform - pos: 378.5,403.5 - parent: 1 - - uid: 9534 + rot: 3.141592653589793 rad + pos: -96.5,-39.5 + parent: 2 + - uid: 13549 components: - type: Transform - pos: 379.5,403.5 - parent: 1 - - uid: 9535 + rot: 3.141592653589793 rad + pos: -98.5,-39.5 + parent: 2 + - uid: 13550 components: - type: Transform - pos: 380.5,403.5 - parent: 1 - - uid: 9536 + rot: 3.141592653589793 rad + pos: -96.5,-40.5 + parent: 2 + - uid: 13576 components: - type: Transform - pos: 382.5,403.5 - parent: 1 - - uid: 9537 + pos: -78.5,-31.5 + parent: 2 + - uid: 13763 components: - type: Transform - pos: 383.5,403.5 - parent: 1 - - uid: 9538 + rot: 1.5707963267948966 rad + pos: -55.5,-50.5 + parent: 2 + - uid: 14283 components: - type: Transform - pos: 384.5,403.5 - parent: 1 - - uid: 9539 + rot: 1.5707963267948966 rad + pos: -48.5,-45.5 + parent: 2 + - uid: 14284 components: - type: Transform - pos: 381.5,403.5 - parent: 1 - - uid: 9540 + rot: 1.5707963267948966 rad + pos: -50.5,-46.5 + parent: 2 + - uid: 14286 components: - type: Transform - pos: 384.5,404.5 - parent: 1 - - uid: 9541 + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 2 + - uid: 14287 components: - type: Transform - pos: 384.5,405.5 - parent: 1 - - uid: 9542 + rot: 1.5707963267948966 rad + pos: -52.5,-45.5 + parent: 2 + - uid: 14289 components: - type: Transform - pos: 385.5,403.5 - parent: 1 - - uid: 9543 + rot: 1.5707963267948966 rad + pos: -50.5,-45.5 + parent: 2 + - uid: 14291 components: - type: Transform - pos: 386.5,403.5 - parent: 1 - - uid: 9544 + rot: 1.5707963267948966 rad + pos: -50.5,-47.5 + parent: 2 + - uid: 14292 components: - type: Transform - pos: 387.5,403.5 - parent: 1 - - uid: 9545 + rot: 1.5707963267948966 rad + pos: -49.5,-45.5 + parent: 2 + - uid: 14295 components: - type: Transform - pos: 388.5,403.5 - parent: 1 - - uid: 9546 + rot: 1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 2 + - uid: 14529 components: - type: Transform - pos: 389.5,403.5 - parent: 1 - - uid: 9547 + pos: -61.5,-30.5 + parent: 2 + - uid: 14530 components: - type: Transform - pos: 390.5,403.5 - parent: 1 - - uid: 9548 + pos: -61.5,-31.5 + parent: 2 + - uid: 14531 components: - type: Transform - pos: 391.5,403.5 - parent: 1 - - uid: 9549 + pos: -60.5,-30.5 + parent: 2 + - uid: 14532 components: - type: Transform - pos: 392.5,403.5 - parent: 1 - - uid: 9550 + pos: -60.5,-31.5 + parent: 2 + - uid: 14533 components: - type: Transform - pos: 393.5,403.5 - parent: 1 - - uid: 9551 + pos: -60.5,-32.5 + parent: 2 + - uid: 14534 components: - type: Transform - pos: 392.5,404.5 - parent: 1 - - uid: 9552 + pos: -61.5,-32.5 + parent: 2 + - uid: 14535 components: - type: Transform - pos: 392.5,406.5 - parent: 1 - - uid: 9553 + pos: -61.5,-35.5 + parent: 2 + - uid: 14536 components: - type: Transform - pos: 392.5,405.5 - parent: 1 - - uid: 9554 + pos: -59.5,-35.5 + parent: 2 + - uid: 14537 components: - type: Transform - pos: 392.5,407.5 - parent: 1 - - uid: 9555 + pos: -58.5,-35.5 + parent: 2 + - uid: 14538 components: - type: Transform - pos: 391.5,407.5 - parent: 1 - - uid: 9556 + pos: -60.5,-35.5 + parent: 2 + - uid: 14539 components: - type: Transform - pos: 390.5,407.5 - parent: 1 - - uid: 9557 + pos: -57.5,-35.5 + parent: 2 + - uid: 14558 components: - type: Transform - pos: 389.5,407.5 - parent: 1 - - uid: 9558 + rot: 1.5707963267948966 rad + pos: -62.5,-54.5 + parent: 2 + - uid: 14559 components: - type: Transform - pos: 388.5,407.5 - parent: 1 - - uid: 9559 + rot: 1.5707963267948966 rad + pos: -62.5,-52.5 + parent: 2 + - uid: 14560 components: - type: Transform - pos: 394.5,407.5 - parent: 1 - - uid: 9560 + rot: 1.5707963267948966 rad + pos: -61.5,-54.5 + parent: 2 + - uid: 14561 components: - type: Transform - pos: 395.5,407.5 - parent: 1 - - uid: 9561 + rot: 1.5707963267948966 rad + pos: -61.5,-53.5 + parent: 2 + - uid: 14562 components: - type: Transform - pos: 396.5,407.5 - parent: 1 - - uid: 9562 + rot: 1.5707963267948966 rad + pos: -61.5,-52.5 + parent: 2 + - uid: 14563 components: - type: Transform - pos: 393.5,407.5 - parent: 1 - - uid: 9563 + rot: 1.5707963267948966 rad + pos: -60.5,-54.5 + parent: 2 + - uid: 14564 components: - type: Transform - pos: 396.5,408.5 - parent: 1 - - uid: 9564 + rot: 1.5707963267948966 rad + pos: -60.5,-53.5 + parent: 2 + - uid: 14565 components: - type: Transform - pos: 396.5,409.5 - parent: 1 - - uid: 9565 + rot: 1.5707963267948966 rad + pos: -62.5,-53.5 + parent: 2 + - uid: 14566 components: - type: Transform - pos: 397.5,409.5 - parent: 1 - - uid: 9566 + rot: 1.5707963267948966 rad + pos: -60.5,-52.5 + parent: 2 + - uid: 14802 components: - type: Transform - pos: 398.5,409.5 - parent: 1 - - uid: 9567 + rot: 1.5707963267948966 rad + pos: -55.5,-51.5 + parent: 2 + - uid: 14803 components: - type: Transform - pos: 392.5,408.5 - parent: 1 - - uid: 9568 + rot: 1.5707963267948966 rad + pos: -54.5,-50.5 + parent: 2 + - uid: 14804 components: - type: Transform - pos: 392.5,409.5 - parent: 1 - - uid: 9569 + rot: 1.5707963267948966 rad + pos: -54.5,-51.5 + parent: 2 + - uid: 14805 components: - type: Transform - pos: 392.5,410.5 - parent: 1 - - uid: 9570 + rot: 1.5707963267948966 rad + pos: -54.5,-52.5 + parent: 2 + - uid: 14806 components: - type: Transform - pos: 392.5,411.5 - parent: 1 - - uid: 9571 + rot: 1.5707963267948966 rad + pos: -53.5,-50.5 + parent: 2 + - uid: 14807 components: - type: Transform - pos: 391.5,411.5 - parent: 1 - - uid: 9572 + rot: 1.5707963267948966 rad + pos: -53.5,-51.5 + parent: 2 + - uid: 14808 components: - type: Transform - pos: 394.5,403.5 - parent: 1 - - uid: 9573 + rot: 1.5707963267948966 rad + pos: -53.5,-52.5 + parent: 2 + - uid: 14809 components: - type: Transform - pos: 391.5,412.5 - parent: 1 - - uid: 9574 + rot: 1.5707963267948966 rad + pos: -55.5,-52.5 + parent: 2 + - uid: 14810 components: - type: Transform - pos: 395.5,403.5 - parent: 1 - - uid: 9575 + rot: 1.5707963267948966 rad + pos: -52.5,-50.5 + parent: 2 + - uid: 14811 components: - type: Transform - pos: 396.5,403.5 - parent: 1 - - uid: 9576 + rot: 1.5707963267948966 rad + pos: -52.5,-51.5 + parent: 2 + - uid: 14812 components: - type: Transform - pos: 397.5,403.5 - parent: 1 - - uid: 9577 + rot: 1.5707963267948966 rad + pos: -52.5,-52.5 + parent: 2 + - uid: 15222 components: - type: Transform - pos: 398.5,403.5 - parent: 1 - - uid: 9578 + pos: -69.5,-21.5 + parent: 2 + - uid: 17108 components: - type: Transform - pos: 399.5,403.5 - parent: 1 - - uid: 9579 + pos: -68.5,-22.5 + parent: 2 + - uid: 23889 components: - type: Transform - pos: 400.5,403.5 - parent: 1 - - uid: 9580 + pos: -69.5,-20.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 9268 components: - type: Transform - pos: 401.5,403.5 - parent: 1 - - uid: 9581 + rot: 1.5707963267948966 rad + pos: -64.5,-9.5 + parent: 2 + - uid: 9269 components: - type: Transform - pos: 402.5,403.5 - parent: 1 - - uid: 9582 + rot: 1.5707963267948966 rad + pos: -63.5,-9.5 + parent: 2 + - uid: 11225 components: - type: Transform - pos: 403.5,403.5 - parent: 1 - - uid: 9583 + rot: 1.5707963267948966 rad + pos: -59.5,-12.5 + parent: 2 + - uid: 11226 components: - type: Transform - pos: 404.5,403.5 - parent: 1 - - uid: 9584 + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 11229 components: - type: Transform - pos: 405.5,403.5 - parent: 1 - - uid: 9585 + rot: 1.5707963267948966 rad + pos: -63.5,-12.5 + parent: 2 + - uid: 11232 components: - type: Transform - pos: 406.5,403.5 - parent: 1 - - uid: 9586 + rot: 1.5707963267948966 rad + pos: -59.5,-9.5 + parent: 2 + - uid: 11233 components: - type: Transform - pos: 407.5,403.5 - parent: 1 - - uid: 9587 + rot: 1.5707963267948966 rad + pos: -58.5,-9.5 + parent: 2 + - uid: 11234 components: - type: Transform - pos: 408.5,403.5 - parent: 1 - - uid: 9588 + rot: 1.5707963267948966 rad + pos: -64.5,-12.5 + parent: 2 + - uid: 14546 components: - type: Transform - pos: 409.5,403.5 - parent: 1 - - uid: 9589 + rot: 1.5707963267948966 rad + pos: -67.5,-54.5 + parent: 2 + - uid: 14547 components: - type: Transform - pos: 410.5,403.5 - parent: 1 - - uid: 9590 + rot: 1.5707963267948966 rad + pos: -67.5,-55.5 + parent: 2 + - uid: 14551 components: - type: Transform - pos: 411.5,403.5 - parent: 1 - - uid: 9591 + rot: 1.5707963267948966 rad + pos: -67.5,-56.5 + parent: 2 + - uid: 14552 components: - type: Transform - pos: 412.5,403.5 - parent: 1 - - uid: 9592 + rot: 1.5707963267948966 rad + pos: -66.5,-54.5 + parent: 2 + - uid: 14553 components: - type: Transform - pos: 413.5,403.5 - parent: 1 - - uid: 9593 + rot: 1.5707963267948966 rad + pos: -66.5,-55.5 + parent: 2 + - uid: 14554 components: - type: Transform - pos: 412.5,404.5 - parent: 1 - - uid: 9594 + rot: 1.5707963267948966 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 14555 components: - type: Transform - pos: 412.5,402.5 - parent: 1 - - uid: 9595 + rot: 1.5707963267948966 rad + pos: -65.5,-54.5 + parent: 2 + - uid: 14556 components: - type: Transform - pos: 412.5,399.5 - parent: 1 - - uid: 9596 + rot: 1.5707963267948966 rad + pos: -65.5,-55.5 + parent: 2 + - uid: 14557 components: - type: Transform - pos: 412.5,401.5 - parent: 1 - - uid: 9597 + rot: 1.5707963267948966 rad + pos: -65.5,-56.5 + parent: 2 + - uid: 22103 components: - type: Transform - pos: 412.5,398.5 - parent: 1 - - uid: 9598 + pos: -46.5,-52.5 + parent: 2 + - uid: 22104 components: - type: Transform - pos: 412.5,397.5 - parent: 1 - - uid: 9599 + pos: -46.5,-51.5 + parent: 2 + - uid: 22105 components: - type: Transform - pos: 412.5,396.5 - parent: 1 - - uid: 9600 + pos: -45.5,-52.5 + parent: 2 + - uid: 22106 components: - type: Transform - pos: 412.5,395.5 - parent: 1 - - uid: 9601 + pos: -45.5,-51.5 + parent: 2 + - uid: 22108 components: - type: Transform - pos: 412.5,400.5 - parent: 1 - - uid: 9602 + pos: -44.5,-52.5 + parent: 2 + - uid: 22109 components: - type: Transform - pos: 412.5,394.5 - parent: 1 - - uid: 9603 + pos: -44.5,-51.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 391 components: - type: Transform - pos: 412.5,393.5 - parent: 1 - - uid: 9604 + rot: -1.5707963267948966 rad + pos: -49.5,-5.5 + parent: 2 + - uid: 392 components: - type: Transform - pos: 412.5,392.5 - parent: 1 - - uid: 9605 + rot: -1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - uid: 2869 components: - type: Transform - pos: 412.5,391.5 - parent: 1 - - uid: 9606 + pos: -51.5,1.5 + parent: 2 + - uid: 2871 components: - type: Transform - pos: 412.5,390.5 - parent: 1 - - uid: 9607 + pos: -51.5,0.5 + parent: 2 + - uid: 2875 components: - type: Transform - pos: 412.5,389.5 - parent: 1 - - uid: 9608 + pos: -51.5,-0.5 + parent: 2 + - uid: 2876 components: - type: Transform - pos: 412.5,388.5 - parent: 1 - - uid: 9609 + pos: -50.5,0.5 + parent: 2 + - uid: 2877 components: - type: Transform - pos: 411.5,388.5 - parent: 1 - - uid: 9610 + pos: -50.5,-0.5 + parent: 2 + - uid: 2878 components: - type: Transform - pos: 411.5,387.5 - parent: 1 - - uid: 9611 + pos: -49.5,1.5 + parent: 2 + - uid: 2879 components: - type: Transform - pos: 411.5,386.5 - parent: 1 - - uid: 9612 + pos: -49.5,0.5 + parent: 2 + - uid: 2880 components: - type: Transform - pos: 414.5,392.5 - parent: 1 - - uid: 9613 + pos: -49.5,-0.5 + parent: 2 + - uid: 2881 components: - type: Transform - pos: 415.5,392.5 - parent: 1 - - uid: 9614 + pos: -50.5,1.5 + parent: 2 + - uid: 2898 components: - type: Transform - pos: 413.5,392.5 - parent: 1 - - uid: 9615 + rot: -1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + - uid: 2908 components: - type: Transform - pos: 415.5,391.5 - parent: 1 - - uid: 9616 + pos: -46.5,-8.5 + parent: 2 + - uid: 2909 components: - type: Transform - pos: 415.5,389.5 - parent: 1 - - uid: 9617 + pos: -46.5,-9.5 + parent: 2 + - uid: 2910 components: - type: Transform - pos: 415.5,390.5 - parent: 1 - - uid: 9618 + pos: -45.5,-9.5 + parent: 2 + - uid: 2911 components: - type: Transform - pos: 416.5,389.5 - parent: 1 - - uid: 9619 + pos: -45.5,-8.5 + parent: 2 + - uid: 2933 components: - type: Transform - pos: 417.5,389.5 - parent: 1 - - uid: 9620 + rot: -1.5707963267948966 rad + pos: -42.5,1.5 + parent: 2 + - uid: 3004 components: - type: Transform - pos: 409.5,392.5 - parent: 1 - - uid: 9621 + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 3005 components: - type: Transform - pos: 406.5,392.5 - parent: 1 - - uid: 9622 + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 + - uid: 3006 components: - type: Transform - pos: 408.5,392.5 - parent: 1 - - uid: 9623 + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 + - uid: 3007 components: - type: Transform - pos: 407.5,392.5 - parent: 1 - - uid: 9624 + rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 2 + - uid: 3014 components: - type: Transform - pos: 411.5,392.5 - parent: 1 - - uid: 9625 + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + - uid: 3016 components: - type: Transform - pos: 408.5,391.5 - parent: 1 - - uid: 9627 + rot: -1.5707963267948966 rad + pos: -52.5,-6.5 + parent: 2 + - uid: 3018 components: - type: Transform - pos: 408.5,389.5 - parent: 1 - - uid: 9628 + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 2 + - uid: 3019 components: - type: Transform - pos: 408.5,388.5 - parent: 1 - - uid: 9629 + rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + - uid: 3021 components: - type: Transform - pos: 408.5,387.5 - parent: 1 - - uid: 9630 + rot: -1.5707963267948966 rad + pos: -50.5,-5.5 + parent: 2 + - uid: 3022 components: - type: Transform - pos: 408.5,386.5 - parent: 1 - - uid: 9631 + rot: -1.5707963267948966 rad + pos: -52.5,-5.5 + parent: 2 + - uid: 9339 components: - type: Transform - pos: 408.5,385.5 - parent: 1 - - uid: 9632 + rot: 1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - uid: 11199 components: - type: Transform - pos: 408.5,384.5 - parent: 1 - - uid: 9633 + pos: -61.5,-5.5 + parent: 2 + - uid: 11201 components: - type: Transform - pos: 408.5,390.5 - parent: 1 - - uid: 9634 + rot: 1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 11202 components: - type: Transform - pos: 407.5,384.5 - parent: 1 - - uid: 9635 + rot: 1.5707963267948966 rad + pos: -61.5,-3.5 + parent: 2 + - uid: 11203 components: - type: Transform - pos: 406.5,384.5 - parent: 1 - - uid: 9636 + rot: 3.141592653589793 rad + pos: -61.5,-4.5 + parent: 2 + - uid: 11204 components: - type: Transform - pos: 408.5,382.5 - parent: 1 - - uid: 9637 + pos: -62.5,-5.5 + parent: 2 + - uid: 11205 components: - type: Transform - pos: 409.5,383.5 - parent: 1 - - uid: 9638 + rot: 1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 11206 components: - type: Transform - pos: 408.5,383.5 - parent: 1 - - uid: 9639 + rot: 1.5707963267948966 rad + pos: -60.5,-3.5 + parent: 2 + - uid: 11207 components: - type: Transform - pos: 409.5,382.5 - parent: 1 - - uid: 9640 + rot: 1.5707963267948966 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 11208 components: - type: Transform - pos: 410.5,382.5 - parent: 1 - - uid: 9641 + rot: 1.5707963267948966 rad + pos: -59.5,-2.5 + parent: 2 + - uid: 11209 components: - type: Transform - pos: 411.5,382.5 - parent: 1 - - uid: 9642 + pos: -63.5,-5.5 + parent: 2 + - uid: 11211 components: - type: Transform - pos: 412.5,382.5 - parent: 1 - - uid: 9643 + rot: 1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 2 + - uid: 11212 components: - type: Transform - pos: 413.5,382.5 - parent: 1 - - uid: 9644 + rot: 1.5707963267948966 rad + pos: -63.5,-3.5 + parent: 2 + - uid: 11213 components: - type: Transform - pos: 414.5,382.5 - parent: 1 - - uid: 9645 + pos: -59.5,-5.5 + parent: 2 + - uid: 11214 components: - type: Transform - pos: 415.5,382.5 - parent: 1 - - uid: 9646 + rot: 1.5707963267948966 rad + pos: -62.5,-2.5 + parent: 2 + - uid: 11215 components: - type: Transform - pos: 415.5,380.5 - parent: 1 - - uid: 9647 + rot: 1.5707963267948966 rad + pos: -62.5,-3.5 + parent: 2 + - uid: 11216 components: - type: Transform - pos: 415.5,381.5 - parent: 1 - - uid: 9648 + rot: 1.5707963267948966 rad + pos: -62.5,-4.5 + parent: 2 + - uid: 11217 components: - type: Transform - pos: 415.5,379.5 - parent: 1 - - uid: 9649 + pos: -60.5,-5.5 + parent: 2 + - uid: 11218 components: - type: Transform - pos: 415.5,378.5 - parent: 1 - - uid: 9650 + rot: 1.5707963267948966 rad + pos: -63.5,-4.5 + parent: 2 + - uid: 11219 components: - type: Transform - pos: 416.5,378.5 - parent: 1 - - uid: 9651 + rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - uid: 11220 components: - type: Transform - pos: 417.5,378.5 - parent: 1 - - uid: 9652 + rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 2 + - uid: 11221 components: - type: Transform - pos: 420.5,383.5 - parent: 1 - - uid: 9653 + rot: 1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 11222 components: - type: Transform - pos: 421.5,383.5 - parent: 1 - - uid: 9654 + rot: 1.5707963267948966 rad + pos: -62.5,-11.5 + parent: 2 + - uid: 11223 components: - type: Transform - pos: 421.5,384.5 - parent: 1 - - uid: 9655 + rot: 1.5707963267948966 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 11224 components: - type: Transform - pos: 421.5,385.5 - parent: 1 - - uid: 9656 + rot: 1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - uid: 12543 components: - type: Transform - pos: 422.5,385.5 - parent: 1 - - uid: 9657 + pos: -35.5,-41.5 + parent: 2 + - uid: 12544 components: - type: Transform - pos: 423.5,385.5 - parent: 1 - - uid: 9658 + pos: -34.5,-40.5 + parent: 2 + - uid: 12560 components: - type: Transform - pos: 423.5,387.5 - parent: 1 - - uid: 9659 + pos: -34.5,-41.5 + parent: 2 + - uid: 12561 components: - type: Transform - pos: 423.5,388.5 - parent: 1 - - uid: 9660 + pos: -34.5,-42.5 + parent: 2 + - uid: 12562 components: - type: Transform - pos: 423.5,386.5 - parent: 1 - - uid: 9661 + pos: -37.5,-36.5 + parent: 2 + - uid: 12564 components: - type: Transform - pos: 424.5,388.5 - parent: 1 - - uid: 9662 + pos: -36.5,-40.5 + parent: 2 + - uid: 12566 components: - type: Transform - pos: 426.5,388.5 - parent: 1 - - uid: 9663 + pos: -35.5,-40.5 + parent: 2 + - uid: 12567 components: - type: Transform - pos: 425.5,388.5 - parent: 1 - - uid: 9664 + pos: -36.5,-42.5 + parent: 2 + - uid: 12568 components: - type: Transform - pos: 426.5,389.5 - parent: 1 - - uid: 9665 + pos: -35.5,-42.5 + parent: 2 + - uid: 12941 components: - type: Transform - pos: 426.5,390.5 - parent: 1 - - uid: 9666 + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 13240 components: - type: Transform - pos: 427.5,388.5 - parent: 1 - - uid: 9667 + pos: -36.5,-41.5 + parent: 2 + - uid: 13249 components: - type: Transform - pos: 429.5,388.5 - parent: 1 - - uid: 9668 + pos: -37.5,-35.5 + parent: 2 + - uid: 13262 components: - type: Transform - pos: 428.5,388.5 - parent: 1 - - uid: 9669 + pos: -36.5,-36.5 + parent: 2 + - uid: 13264 components: - type: Transform - pos: 430.5,388.5 - parent: 1 - - uid: 9670 + pos: -36.5,-35.5 + parent: 2 + - uid: 14515 components: - type: Transform - pos: 426.5,391.5 - parent: 1 - - uid: 9671 + rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 15956 components: - type: Transform - pos: 427.5,391.5 - parent: 1 - - uid: 9672 + pos: -60.5,-4.5 + parent: 2 + - uid: 22268 components: - type: Transform - pos: 428.5,391.5 - parent: 1 - - uid: 9673 + rot: 3.141592653589793 rad + pos: -42.5,-4.5 + parent: 2 + - uid: 22270 components: - type: Transform - pos: 428.5,390.5 - parent: 1 - - uid: 9674 + rot: 3.141592653589793 rad + pos: -43.5,-5.5 + parent: 2 + - uid: 22271 components: - type: Transform - pos: 427.5,393.5 - parent: 1 - - uid: 9675 + rot: 3.141592653589793 rad + pos: -43.5,-4.5 + parent: 2 + - uid: 22272 components: - type: Transform - pos: 427.5,394.5 - parent: 1 - - uid: 9676 + rot: 3.141592653589793 rad + pos: -43.5,-6.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 14294 components: - type: Transform - pos: 427.5,395.5 - parent: 1 - - uid: 9677 + rot: 1.5707963267948966 rad + pos: -44.5,-47.5 + parent: 2 + - uid: 14297 components: - type: Transform - pos: 427.5,392.5 - parent: 1 - - uid: 9678 + rot: 3.141592653589793 rad + pos: -44.5,-46.5 + parent: 2 + - uid: 14784 components: - type: Transform - pos: 427.5,396.5 - parent: 1 - - uid: 9679 + rot: -1.5707963267948966 rad + pos: -45.5,-46.5 + parent: 2 + - uid: 14785 components: - type: Transform - pos: 427.5,397.5 - parent: 1 - - uid: 9680 + rot: -1.5707963267948966 rad + pos: -45.5,-43.5 + parent: 2 + - uid: 14786 components: - type: Transform - pos: 427.5,398.5 - parent: 1 - - uid: 9681 + rot: 3.141592653589793 rad + pos: -44.5,-43.5 + parent: 2 + - uid: 14787 components: - type: Transform - pos: 427.5,399.5 - parent: 1 - - uid: 9682 + rot: 1.5707963267948966 rad + pos: -44.5,-44.5 + parent: 2 + - uid: 14788 components: - type: Transform - pos: 427.5,400.5 - parent: 1 - - uid: 9683 + pos: -45.5,-44.5 + parent: 2 + - uid: 15181 components: - type: Transform - pos: 427.5,401.5 - parent: 1 - - uid: 9684 + pos: -45.5,-47.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 5719 components: - type: Transform - pos: 427.5,402.5 - parent: 1 - - uid: 9685 + rot: 3.141592653589793 rad + pos: -51.5,-56.5 + parent: 2 + - uid: 16017 components: - type: Transform - pos: 427.5,403.5 - parent: 1 - - uid: 9686 + pos: -111.5,-30.5 + parent: 2 + - uid: 16018 components: - type: Transform - pos: 426.5,403.5 - parent: 1 - - uid: 9687 + pos: -111.5,-31.5 + parent: 2 + - uid: 16019 components: - type: Transform - pos: 425.5,403.5 - parent: 1 - - uid: 9688 + pos: -110.5,-30.5 + parent: 2 + - uid: 16020 components: - type: Transform - pos: 425.5,404.5 - parent: 1 - - uid: 9689 + pos: -110.5,-31.5 + parent: 2 + - uid: 16021 components: - type: Transform - pos: 424.5,403.5 - parent: 1 - - uid: 9690 + pos: -110.5,-32.5 + parent: 2 + - uid: 16022 components: - type: Transform - pos: 422.5,403.5 - parent: 1 - - uid: 9691 + pos: -111.5,-32.5 + parent: 2 + - uid: 17846 components: - type: Transform - pos: 421.5,403.5 - parent: 1 - - uid: 9692 + rot: 3.141592653589793 rad + pos: -52.5,-56.5 + parent: 2 + - uid: 24379 components: - type: Transform - pos: 420.5,403.5 - parent: 1 - - uid: 9693 + rot: 3.141592653589793 rad + pos: -51.5,-55.5 + parent: 2 + - uid: 25539 components: - type: Transform - pos: 419.5,403.5 - parent: 1 - - uid: 9694 + rot: 3.141592653589793 rad + pos: -50.5,-55.5 + parent: 2 + - uid: 25540 components: - type: Transform - pos: 423.5,403.5 - parent: 1 - - uid: 9695 + rot: 3.141592653589793 rad + pos: -52.5,-55.5 + parent: 2 + - uid: 25541 components: - type: Transform - pos: 419.5,404.5 - parent: 1 - - uid: 9696 + rot: 3.141592653589793 rad + pos: -50.5,-56.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 969 components: - type: Transform - pos: 417.5,404.5 - parent: 1 - - uid: 9697 + pos: -86.5,34.5 + parent: 2 + - uid: 970 components: - type: Transform - pos: 416.5,404.5 - parent: 1 - - uid: 9698 + pos: -86.5,33.5 + parent: 2 + - uid: 4195 components: - type: Transform - pos: 418.5,404.5 - parent: 1 - - uid: 9699 + pos: -55.5,-77.5 + parent: 2 + - uid: 4418 components: - type: Transform - pos: 416.5,405.5 - parent: 1 - - uid: 9700 + pos: -55.5,-78.5 + parent: 2 + - uid: 4730 components: - type: Transform - pos: 416.5,406.5 - parent: 1 - - uid: 9702 + pos: -86.5,29.5 + parent: 2 + - uid: 4732 components: - type: Transform - pos: 414.5,403.5 - parent: 1 - - uid: 9703 + pos: -87.5,29.5 + parent: 2 + - uid: 4733 components: - type: Transform - pos: 412.5,406.5 - parent: 1 - - uid: 9704 + pos: -87.5,28.5 + parent: 2 + - uid: 4734 components: - type: Transform - pos: 412.5,405.5 - parent: 1 - - uid: 9705 + pos: -86.5,30.5 + parent: 2 + - uid: 4735 components: - type: Transform - pos: 413.5,407.5 - parent: 1 - - uid: 9706 + pos: -86.5,28.5 + parent: 2 + - uid: 4736 components: - type: Transform - pos: 414.5,407.5 - parent: 1 - - uid: 9707 + pos: -85.5,30.5 + parent: 2 + - uid: 4737 components: - type: Transform - pos: 419.5,405.5 - parent: 1 - - uid: 9708 + pos: -85.5,29.5 + parent: 2 + - uid: 4738 components: - type: Transform - pos: 419.5,407.5 - parent: 1 - - uid: 9709 + pos: -85.5,28.5 + parent: 2 + - uid: 4742 components: - type: Transform - pos: 419.5,408.5 - parent: 1 - - uid: 9710 + pos: -87.5,34.5 + parent: 2 + - uid: 5798 components: - type: Transform - pos: 419.5,406.5 - parent: 1 - - uid: 9711 + rot: 3.141592653589793 rad + pos: -124.5,-17.5 + parent: 2 + - uid: 5917 components: - type: Transform - pos: 420.5,408.5 - parent: 1 - - uid: 9712 + pos: -87.5,33.5 + parent: 2 + - uid: 9576 components: - type: Transform - pos: 421.5,408.5 - parent: 1 - - uid: 9713 + rot: 3.141592653589793 rad + pos: -124.5,-16.5 + parent: 2 + - uid: 17088 components: - type: Transform - pos: 423.5,405.5 - parent: 1 - - uid: 9714 + pos: -56.5,-78.5 + parent: 2 + - uid: 18762 components: - type: Transform - pos: 423.5,406.5 - parent: 1 - - uid: 9715 + rot: 3.141592653589793 rad + pos: -124.5,-15.5 + parent: 2 + - uid: 18763 components: - type: Transform - pos: 423.5,407.5 - parent: 1 - - uid: 9716 + rot: 3.141592653589793 rad + pos: -123.5,-15.5 + parent: 2 + - uid: 18764 components: - type: Transform - pos: 423.5,408.5 - parent: 1 - - uid: 9717 + rot: 3.141592653589793 rad + pos: -123.5,-16.5 + parent: 2 + - uid: 18765 components: - type: Transform - pos: 423.5,409.5 - parent: 1 - - uid: 9718 + rot: 3.141592653589793 rad + pos: -123.5,-17.5 + parent: 2 + - uid: 18766 components: - type: Transform - pos: 423.5,410.5 - parent: 1 - - uid: 9719 + rot: 3.141592653589793 rad + pos: -122.5,-15.5 + parent: 2 + - uid: 18767 components: - type: Transform - pos: 423.5,404.5 - parent: 1 - - uid: 9720 + rot: 3.141592653589793 rad + pos: -122.5,-16.5 + parent: 2 + - uid: 18768 components: - type: Transform - pos: 424.5,410.5 - parent: 1 - - uid: 9721 + rot: 3.141592653589793 rad + pos: -122.5,-17.5 + parent: 2 + - uid: 19493 components: - type: Transform - pos: 426.5,410.5 - parent: 1 - - uid: 9722 + pos: -129.5,-16.5 + parent: 2 + - uid: 19494 components: - type: Transform - pos: 427.5,410.5 - parent: 1 - - uid: 9723 + pos: -129.5,-15.5 + parent: 2 + - uid: 19495 components: - type: Transform - pos: 425.5,410.5 - parent: 1 - - uid: 9724 + pos: -130.5,-15.5 + parent: 2 + - uid: 19496 components: - type: Transform - pos: 427.5,411.5 - parent: 1 - - uid: 9725 + pos: -131.5,-16.5 + parent: 2 + - uid: 19497 components: - type: Transform - pos: 427.5,413.5 - parent: 1 - - uid: 9726 + pos: -131.5,-15.5 + parent: 2 + - uid: 19498 components: - type: Transform - pos: 427.5,412.5 - parent: 1 - - uid: 9727 + pos: -130.5,-16.5 + parent: 2 + - uid: 19690 components: - type: Transform - pos: 426.5,413.5 - parent: 1 - - uid: 9728 + rot: 1.5707963267948966 rad + pos: -87.5,30.5 + parent: 2 + - uid: 20331 components: - type: Transform - pos: 425.5,413.5 - parent: 1 - - uid: 9729 + pos: -56.5,-77.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 920 components: - type: Transform - pos: 425.5,412.5 - parent: 1 - - uid: 9730 + rot: -1.5707963267948966 rad + pos: -133.5,-52.5 + parent: 2 + - uid: 7915 components: - type: Transform - pos: 423.5,390.5 - parent: 1 - - uid: 9731 + rot: -1.5707963267948966 rad + pos: -132.5,-51.5 + parent: 2 + - uid: 7918 components: - type: Transform - pos: 423.5,391.5 - parent: 1 - - uid: 9732 + rot: -1.5707963267948966 rad + pos: -132.5,-52.5 + parent: 2 + - uid: 7919 components: - type: Transform - pos: 423.5,392.5 - parent: 1 - - uid: 9733 + rot: -1.5707963267948966 rad + pos: -132.5,-50.5 + parent: 2 + - uid: 13654 components: - type: Transform - pos: 423.5,389.5 - parent: 1 - - uid: 9734 + rot: -1.5707963267948966 rad + pos: -133.5,-50.5 + parent: 2 + - uid: 17357 components: - type: Transform - pos: 422.5,392.5 - parent: 1 - - uid: 9735 + rot: -1.5707963267948966 rad + pos: -133.5,-51.5 + parent: 2 + - uid: 20480 components: - type: Transform - pos: 421.5,392.5 - parent: 1 - - uid: 9736 + pos: -134.5,-47.5 + parent: 2 + - uid: 20481 components: - type: Transform - pos: 421.5,391.5 - parent: 1 - - uid: 9746 + pos: -134.5,-46.5 + parent: 2 + - uid: 20482 components: - type: Transform - pos: 427.5,404.5 - parent: 1 - - uid: 9747 + pos: -133.5,-46.5 + parent: 2 + - uid: 20483 components: - type: Transform - pos: 427.5,405.5 - parent: 1 - - uid: 9748 + pos: -132.5,-47.5 + parent: 2 + - uid: 20484 components: - type: Transform - pos: 427.5,406.5 - parent: 1 - - uid: 9749 + pos: -132.5,-46.5 + parent: 2 + - uid: 20485 components: - type: Transform - pos: 427.5,407.5 - parent: 1 - - uid: 9750 + pos: -133.5,-47.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 15 components: - type: Transform - pos: 428.5,407.5 - parent: 1 - - uid: 9751 + pos: -19.5,-59.5 + parent: 2 + - uid: 274 components: - type: Transform - pos: 429.5,407.5 - parent: 1 - - uid: 9752 + rot: 3.141592653589793 rad + pos: -83.5,5.5 + parent: 2 + - uid: 338 components: - type: Transform - pos: 430.5,407.5 - parent: 1 - - uid: 9753 + pos: -107.5,-27.5 + parent: 2 + - uid: 361 components: - type: Transform - pos: 430.5,406.5 - parent: 1 - - uid: 9754 + pos: -92.5,-60.5 + parent: 2 + - uid: 366 components: - type: Transform - pos: 434.5,413.5 - parent: 1 - - uid: 9755 + pos: -92.5,-59.5 + parent: 2 + - uid: 826 components: - type: Transform - pos: 434.5,415.5 - parent: 1 - - uid: 9756 + rot: 1.5707963267948966 rad + pos: -137.5,-3.5 + parent: 2 + - uid: 850 components: - type: Transform - pos: 434.5,414.5 - parent: 1 - - uid: 9757 + pos: -128.5,-4.5 + parent: 2 + - uid: 851 components: - type: Transform - pos: 433.5,415.5 - parent: 1 - - uid: 9758 + pos: -127.5,-4.5 + parent: 2 + - uid: 916 components: - type: Transform - pos: 432.5,415.5 - parent: 1 - - uid: 9759 + pos: -126.5,-4.5 + parent: 2 + - uid: 918 components: - type: Transform - pos: 432.5,414.5 - parent: 1 - - uid: 9760 + pos: -125.5,-4.5 + parent: 2 + - uid: 923 components: - type: Transform - pos: 432.5,412.5 - parent: 1 - - uid: 9761 + rot: -1.5707963267948966 rad + pos: -111.5,-10.5 + parent: 2 + - uid: 974 components: - type: Transform - pos: 432.5,411.5 - parent: 1 - - uid: 9762 + rot: -1.5707963267948966 rad + pos: -105.5,7.5 + parent: 2 + - uid: 989 components: - type: Transform - pos: 432.5,410.5 - parent: 1 - - uid: 9763 + rot: -1.5707963267948966 rad + pos: -75.5,-8.5 + parent: 2 + - uid: 1002 components: - type: Transform - pos: 432.5,409.5 - parent: 1 - - uid: 9764 + rot: 1.5707963267948966 rad + pos: -108.5,-5.5 + parent: 2 + - uid: 1097 components: - type: Transform - pos: 432.5,408.5 - parent: 1 - - uid: 9765 + pos: -85.5,-11.5 + parent: 2 + - uid: 1106 components: - type: Transform - pos: 432.5,413.5 - parent: 1 - - uid: 9766 + rot: -1.5707963267948966 rad + pos: -108.5,-10.5 + parent: 2 + - uid: 1154 components: - type: Transform - pos: 433.5,408.5 - parent: 1 - - uid: 9767 + pos: -15.5,5.5 + parent: 2 + - uid: 1463 components: - type: Transform - pos: 435.5,408.5 - parent: 1 - - uid: 9768 + rot: 1.5707963267948966 rad + pos: -92.5,15.5 + parent: 2 + - uid: 1902 components: - type: Transform - pos: 436.5,408.5 - parent: 1 - - uid: 9769 + rot: -1.5707963267948966 rad + pos: -110.5,-10.5 + parent: 2 + - uid: 1928 components: - type: Transform - pos: 437.5,408.5 - parent: 1 - - uid: 9770 + rot: -1.5707963267948966 rad + pos: -107.5,-10.5 + parent: 2 + - uid: 1943 components: - type: Transform - pos: 438.5,408.5 - parent: 1 - - uid: 9771 + rot: -1.5707963267948966 rad + pos: -109.5,-10.5 + parent: 2 + - uid: 2032 components: - type: Transform - pos: 439.5,408.5 - parent: 1 - - uid: 9772 + rot: 3.141592653589793 rad + pos: -154.5,4.5 + parent: 2 + - uid: 2037 components: - type: Transform - pos: 434.5,408.5 - parent: 1 - - uid: 9773 + pos: -112.5,-4.5 + parent: 2 + - uid: 2042 components: - type: Transform - pos: 440.5,408.5 - parent: 1 - - uid: 9774 + rot: 1.5707963267948966 rad + pos: -108.5,-3.5 + parent: 2 + - uid: 2180 components: - type: Transform - pos: 440.5,407.5 - parent: 1 - - uid: 9775 + rot: 1.5707963267948966 rad + pos: -126.5,-10.5 + parent: 2 + - uid: 2324 components: - type: Transform - pos: 440.5,406.5 - parent: 1 - - uid: 9776 + rot: 3.141592653589793 rad + pos: -155.5,5.5 + parent: 2 + - uid: 2421 components: - type: Transform - pos: 440.5,410.5 - parent: 1 - - uid: 9777 + pos: -141.5,-54.5 + parent: 2 + - uid: 2619 components: - type: Transform - pos: 440.5,411.5 - parent: 1 - - uid: 9778 + rot: 1.5707963267948966 rad + pos: -103.5,-5.5 + parent: 2 + - uid: 2627 components: - type: Transform - pos: 440.5,412.5 - parent: 1 - - uid: 9779 + rot: 1.5707963267948966 rad + pos: -103.5,-3.5 + parent: 2 + - uid: 2628 components: - type: Transform - pos: 440.5,409.5 - parent: 1 - - uid: 9780 + rot: 1.5707963267948966 rad + pos: -103.5,-1.5 + parent: 2 + - uid: 2714 components: - type: Transform - pos: 439.5,412.5 - parent: 1 - - uid: 9781 + rot: 1.5707963267948966 rad + pos: -103.5,-7.5 + parent: 2 + - uid: 2726 components: - type: Transform - pos: 438.5,412.5 - parent: 1 - - uid: 9782 + rot: 1.5707963267948966 rad + pos: -103.5,-6.5 + parent: 2 + - uid: 2739 components: - type: Transform - pos: 441.5,408.5 - parent: 1 - - uid: 9783 + rot: 1.5707963267948966 rad + pos: -103.5,-2.5 + parent: 2 + - uid: 3165 components: - type: Transform - pos: 442.5,408.5 - parent: 1 - - uid: 9784 + pos: -123.5,-5.5 + parent: 2 + - uid: 3166 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 9785 + pos: -123.5,-4.5 + parent: 2 + - uid: 3169 components: - type: Transform - pos: 442.5,405.5 - parent: 1 - - uid: 9786 + pos: -123.5,-6.5 + parent: 2 + - uid: 3171 components: - type: Transform - pos: 442.5,407.5 - parent: 1 - - uid: 9787 + pos: -124.5,-4.5 + parent: 2 + - uid: 3315 components: - type: Transform - pos: 442.5,404.5 - parent: 1 - - uid: 9788 + pos: -67.5,-41.5 + parent: 2 + - uid: 3426 components: - type: Transform - pos: 442.5,403.5 - parent: 1 - - uid: 9789 + rot: 1.5707963267948966 rad + pos: -71.5,-25.5 + parent: 2 + - uid: 3549 components: - type: Transform - pos: 442.5,402.5 - parent: 1 - - uid: 9790 + pos: -21.5,2.5 + parent: 2 + - uid: 3735 components: - type: Transform - pos: 442.5,401.5 - parent: 1 - - uid: 9791 + rot: 3.141592653589793 rad + pos: -102.5,-45.5 + parent: 2 + - uid: 3762 components: - type: Transform - pos: 442.5,400.5 - parent: 1 - - uid: 9792 + rot: 3.141592653589793 rad + pos: -103.5,-45.5 + parent: 2 + - uid: 3805 components: - type: Transform - pos: 443.5,400.5 - parent: 1 - - uid: 9794 + rot: 3.141592653589793 rad + pos: -102.5,-40.5 + parent: 2 + - uid: 3807 components: - type: Transform - pos: 445.5,408.5 - parent: 1 - - uid: 9796 + rot: 3.141592653589793 rad + pos: -103.5,-40.5 + parent: 2 + - uid: 4569 components: - type: Transform - pos: 446.5,408.5 - parent: 1 - - uid: 9797 + rot: -1.5707963267948966 rad + pos: -74.5,-25.5 + parent: 2 + - uid: 4570 components: - type: Transform - pos: 447.5,408.5 - parent: 1 - - uid: 9798 + rot: -1.5707963267948966 rad + pos: -75.5,-26.5 + parent: 2 + - uid: 4623 components: - type: Transform - pos: 448.5,408.5 - parent: 1 - - uid: 9799 + rot: -1.5707963267948966 rad + pos: -100.5,-56.5 + parent: 2 + - uid: 4676 components: - type: Transform - pos: 449.5,408.5 - parent: 1 - - uid: 9800 + rot: 3.141592653589793 rad + pos: -98.5,5.5 + parent: 2 + - uid: 4678 components: - type: Transform - pos: 450.5,408.5 - parent: 1 - - uid: 9801 + rot: 3.141592653589793 rad + pos: -101.5,5.5 + parent: 2 + - uid: 4682 components: - type: Transform - pos: 451.5,408.5 - parent: 1 - - uid: 9802 + rot: 3.141592653589793 rad + pos: -100.5,5.5 + parent: 2 + - uid: 4798 components: - type: Transform - pos: 449.5,407.5 - parent: 1 - - uid: 9803 + pos: -141.5,-56.5 + parent: 2 + - uid: 4816 components: - type: Transform - pos: 449.5,406.5 - parent: 1 - - uid: 9804 + rot: 1.5707963267948966 rad + pos: -103.5,1.5 + parent: 2 + - uid: 4827 components: - type: Transform - pos: 449.5,405.5 - parent: 1 - - uid: 9805 + rot: 1.5707963267948966 rad + pos: -103.5,2.5 + parent: 2 + - uid: 4832 components: - type: Transform - pos: 449.5,404.5 - parent: 1 - - uid: 9806 + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 2 + - uid: 4846 components: - type: Transform - pos: 449.5,403.5 - parent: 1 - - uid: 9808 + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 2 + - uid: 4851 components: - type: Transform - pos: 449.5,402.5 - parent: 1 - - uid: 9809 + rot: 1.5707963267948966 rad + pos: -103.5,3.5 + parent: 2 + - uid: 4853 components: - type: Transform - pos: 450.5,401.5 - parent: 1 - - uid: 9810 + rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 2 + - uid: 4854 components: - type: Transform - pos: 450.5,400.5 - parent: 1 - - uid: 9811 + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 2 + - uid: 5348 components: - type: Transform - pos: 449.5,409.5 - parent: 1 - - uid: 9812 + pos: -125.5,8.5 + parent: 2 + - uid: 5465 components: - type: Transform - pos: 449.5,411.5 - parent: 1 - - uid: 9813 + pos: -125.5,6.5 + parent: 2 + - uid: 5467 components: - type: Transform - pos: 449.5,412.5 - parent: 1 - - uid: 9814 + pos: -125.5,9.5 + parent: 2 + - uid: 5566 components: - type: Transform - pos: 449.5,413.5 - parent: 1 - - uid: 9815 + rot: 3.141592653589793 rad + pos: -133.5,17.5 + parent: 2 + - uid: 5567 components: - type: Transform - pos: 449.5,414.5 - parent: 1 - - uid: 9816 + rot: 3.141592653589793 rad + pos: -133.5,20.5 + parent: 2 + - uid: 5595 components: - type: Transform - pos: 449.5,415.5 - parent: 1 - - uid: 9817 + pos: -125.5,10.5 + parent: 2 + - uid: 5596 components: - type: Transform - pos: 449.5,410.5 - parent: 1 - - uid: 9818 + pos: -125.5,12.5 + parent: 2 + - uid: 5691 components: - type: Transform - pos: 450.5,415.5 - parent: 1 - - uid: 9819 + rot: 1.5707963267948966 rad + pos: -137.5,-10.5 + parent: 2 + - uid: 5704 components: - type: Transform - pos: 451.5,415.5 - parent: 1 - - uid: 9820 + pos: -137.5,-11.5 + parent: 2 + - uid: 5767 components: - type: Transform - pos: 451.5,411.5 - parent: 1 - - uid: 9821 + pos: -123.5,-8.5 + parent: 2 + - uid: 5769 components: - type: Transform - pos: 452.5,411.5 - parent: 1 - - uid: 9822 + pos: -123.5,-9.5 + parent: 2 + - uid: 5785 components: - type: Transform - pos: 450.5,411.5 - parent: 1 - - uid: 9823 + rot: 1.5707963267948966 rad + pos: -113.5,-4.5 + parent: 2 + - uid: 5786 components: - type: Transform - pos: 452.5,412.5 - parent: 1 - - uid: 9824 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 + parent: 2 + - uid: 5787 components: - type: Transform - pos: 452.5,414.5 - parent: 1 - - uid: 9825 + rot: 1.5707963267948966 rad + pos: -115.5,-4.5 + parent: 2 + - uid: 5792 components: - type: Transform - pos: 452.5,413.5 - parent: 1 - - uid: 9826 + rot: 1.5707963267948966 rad + pos: -119.5,-6.5 + parent: 2 + - uid: 5793 components: - type: Transform - pos: 453.5,414.5 - parent: 1 - - uid: 9827 + rot: 1.5707963267948966 rad + pos: -119.5,-4.5 + parent: 2 + - uid: 5794 components: - type: Transform - pos: 453.5,415.5 - parent: 1 - - uid: 9828 + rot: 1.5707963267948966 rad + pos: -119.5,-3.5 + parent: 2 + - uid: 5795 components: - type: Transform - pos: 453.5,416.5 - parent: 1 - - uid: 9829 + rot: 1.5707963267948966 rad + pos: -119.5,-2.5 + parent: 2 + - uid: 5797 components: - type: Transform - pos: 453.5,417.5 - parent: 1 - - uid: 9830 + rot: 1.5707963267948966 rad + pos: -119.5,-5.5 + parent: 2 + - uid: 5828 components: - type: Transform - pos: 453.5,411.5 - parent: 1 - - uid: 9831 + pos: -115.5,-10.5 + parent: 2 + - uid: 5829 components: - type: Transform - pos: 455.5,411.5 - parent: 1 - - uid: 9832 + pos: -114.5,-10.5 + parent: 2 + - uid: 5835 components: - type: Transform - pos: 454.5,411.5 - parent: 1 - - uid: 9833 + pos: -112.5,-10.5 + parent: 2 + - uid: 5838 components: - type: Transform - pos: 455.5,412.5 - parent: 1 - - uid: 9834 + pos: -127.5,-10.5 + parent: 2 + - uid: 5839 components: - type: Transform - pos: 455.5,414.5 - parent: 1 - - uid: 9835 + pos: -125.5,-10.5 + parent: 2 + - uid: 5841 components: - type: Transform - pos: 455.5,415.5 - parent: 1 - - uid: 9836 + pos: -130.5,-10.5 + parent: 2 + - uid: 5842 components: - type: Transform - pos: 455.5,416.5 - parent: 1 - - uid: 9837 + pos: -131.5,-10.5 + parent: 2 + - uid: 5844 components: - type: Transform - pos: 455.5,413.5 - parent: 1 - - uid: 9838 + pos: -133.5,-10.5 + parent: 2 + - uid: 5845 components: - type: Transform - pos: 456.5,416.5 - parent: 1 - - uid: 9839 + pos: -134.5,-10.5 + parent: 2 + - uid: 5848 components: - type: Transform - pos: 456.5,417.5 - parent: 1 - - uid: 9840 + pos: -136.5,-10.5 + parent: 2 + - uid: 5852 components: - type: Transform - pos: 456.5,411.5 - parent: 1 - - uid: 9841 + pos: -141.5,-10.5 + parent: 2 + - uid: 5853 components: - type: Transform - pos: 458.5,411.5 - parent: 1 - - uid: 9842 + pos: -128.5,-10.5 + parent: 2 + - uid: 5854 components: - type: Transform - pos: 459.5,411.5 - parent: 1 - - uid: 9843 + pos: -117.5,-10.5 + parent: 2 + - uid: 5855 components: - type: Transform - pos: 457.5,411.5 - parent: 1 - - uid: 9844 + pos: -118.5,-10.5 + parent: 2 + - uid: 5856 components: - type: Transform - pos: 459.5,413.5 - parent: 1 - - uid: 9845 + pos: -120.5,-10.5 + parent: 2 + - uid: 5857 components: - type: Transform - pos: 459.5,414.5 - parent: 1 - - uid: 9846 + pos: -121.5,-10.5 + parent: 2 + - uid: 5858 components: - type: Transform - pos: 459.5,415.5 - parent: 1 - - uid: 9847 + pos: -122.5,-10.5 + parent: 2 + - uid: 5859 components: - type: Transform - pos: 459.5,412.5 - parent: 1 - - uid: 9848 + pos: -123.5,-10.5 + parent: 2 + - uid: 5860 components: - type: Transform - pos: 460.5,415.5 - parent: 1 - - uid: 9849 + pos: -124.5,-10.5 + parent: 2 + - uid: 5861 components: - type: Transform - pos: 461.5,415.5 - parent: 1 - - uid: 9850 + pos: -119.5,-10.5 + parent: 2 + - uid: 5863 components: - type: Transform - pos: 422.5,420.5 - parent: 1 - - uid: 9851 + pos: -119.5,-8.5 + parent: 2 + - uid: 5864 components: - type: Transform - pos: 422.5,422.5 - parent: 1 - - uid: 9852 + pos: -119.5,-9.5 + parent: 2 + - uid: 5907 components: - type: Transform - pos: 422.5,421.5 - parent: 1 - - uid: 9853 + rot: 1.5707963267948966 rad + pos: -138.5,-10.5 + parent: 2 + - uid: 5911 components: - type: Transform - pos: 421.5,422.5 - parent: 1 - - uid: 9854 + rot: 1.5707963267948966 rad + pos: -137.5,-5.5 + parent: 2 + - uid: 5914 components: - type: Transform - pos: 419.5,422.5 - parent: 1 - - uid: 9855 + rot: 1.5707963267948966 rad + pos: -137.5,-6.5 + parent: 2 + - uid: 5915 components: - type: Transform - pos: 420.5,422.5 - parent: 1 - - uid: 9856 + rot: 1.5707963267948966 rad + pos: -137.5,-7.5 + parent: 2 + - uid: 5916 components: - type: Transform - pos: 419.5,423.5 - parent: 1 - - uid: 9857 + rot: 1.5707963267948966 rad + pos: -139.5,-10.5 + parent: 2 + - uid: 5920 components: - type: Transform - pos: 419.5,424.5 - parent: 1 - - uid: 9858 + rot: 1.5707963267948966 rad + pos: -137.5,-9.5 + parent: 2 + - uid: 5949 components: - type: Transform - pos: 417.5,424.5 - parent: 1 - - uid: 9859 + pos: -154.5,-7.5 + parent: 2 + - uid: 5950 components: - type: Transform - pos: 418.5,424.5 - parent: 1 - - uid: 9860 + pos: -154.5,-6.5 + parent: 2 + - uid: 5961 components: - type: Transform - pos: 416.5,424.5 - parent: 1 - - uid: 9861 + rot: 3.141592653589793 rad + pos: -153.5,1.5 + parent: 2 + - uid: 5969 components: - type: Transform - pos: 415.5,424.5 - parent: 1 - - uid: 9862 + rot: 3.141592653589793 rad + pos: -154.5,-14.5 + parent: 2 + - uid: 5973 components: - type: Transform - pos: 414.5,424.5 - parent: 1 - - uid: 9863 + rot: 3.141592653589793 rad + pos: -154.5,-13.5 + parent: 2 + - uid: 5975 components: - type: Transform - pos: 413.5,424.5 - parent: 1 - - uid: 9864 + pos: -154.5,-4.5 + parent: 2 + - uid: 5976 components: - type: Transform - pos: 412.5,424.5 - parent: 1 - - uid: 9865 + pos: -154.5,-3.5 + parent: 2 + - uid: 5977 components: - type: Transform - pos: 411.5,424.5 - parent: 1 - - uid: 9866 + pos: -154.5,-2.5 + parent: 2 + - uid: 5978 components: - type: Transform - pos: 410.5,424.5 - parent: 1 - - uid: 9867 + pos: -154.5,-1.5 + parent: 2 + - uid: 5979 components: - type: Transform - pos: 409.5,424.5 - parent: 1 - - uid: 9868 + pos: -154.5,-0.5 + parent: 2 + - uid: 5980 components: - type: Transform - pos: 407.5,424.5 - parent: 1 - - uid: 9869 + pos: -154.5,-5.5 + parent: 2 + - uid: 6085 components: - type: Transform - pos: 408.5,424.5 - parent: 1 - - uid: 9870 + rot: 3.141592653589793 rad + pos: -154.5,-16.5 + parent: 2 + - uid: 6086 components: - type: Transform - pos: 406.5,424.5 - parent: 1 - - uid: 9871 + rot: 3.141592653589793 rad + pos: -154.5,-17.5 + parent: 2 + - uid: 6087 components: - type: Transform - pos: 405.5,424.5 - parent: 1 - - uid: 9872 + rot: 3.141592653589793 rad + pos: -154.5,-18.5 + parent: 2 + - uid: 6090 components: - type: Transform - pos: 405.5,425.5 - parent: 1 - - uid: 9873 + rot: 3.141592653589793 rad + pos: -154.5,-15.5 + parent: 2 + - uid: 6136 components: - type: Transform - pos: 404.5,425.5 - parent: 1 - - uid: 9874 + pos: -119.5,-11.5 + parent: 2 + - uid: 6137 components: - type: Transform - pos: 403.5,425.5 - parent: 1 - - uid: 9875 + pos: -119.5,-12.5 + parent: 2 + - uid: 6139 components: - type: Transform - pos: 403.5,424.5 - parent: 1 - - uid: 9876 + pos: -119.5,-15.5 + parent: 2 + - uid: 6140 components: - type: Transform - pos: 401.5,424.5 - parent: 1 - - uid: 9877 + pos: -119.5,-16.5 + parent: 2 + - uid: 6141 components: - type: Transform - pos: 400.5,424.5 - parent: 1 - - uid: 9878 + pos: -119.5,-17.5 + parent: 2 + - uid: 6142 components: - type: Transform - pos: 399.5,424.5 - parent: 1 - - uid: 9879 + pos: -119.5,-18.5 + parent: 2 + - uid: 6143 components: - type: Transform - pos: 402.5,424.5 - parent: 1 - - uid: 9880 + pos: -119.5,-19.5 + parent: 2 + - uid: 6144 components: - type: Transform - pos: 396.5,424.5 - parent: 1 - - uid: 9881 + pos: -119.5,-20.5 + parent: 2 + - uid: 6145 components: - type: Transform - pos: 398.5,424.5 - parent: 1 - - uid: 9882 + pos: -119.5,-21.5 + parent: 2 + - uid: 6146 components: - type: Transform - pos: 397.5,424.5 - parent: 1 - - uid: 9883 + pos: -119.5,-14.5 + parent: 2 + - uid: 6147 components: - type: Transform - pos: 396.5,423.5 - parent: 1 - - uid: 9884 + pos: -119.5,-22.5 + parent: 2 + - uid: 6148 components: - type: Transform - pos: 396.5,422.5 - parent: 1 - - uid: 9885 + pos: -118.5,-22.5 + parent: 2 + - uid: 6179 components: - type: Transform - pos: 396.5,421.5 - parent: 1 - - uid: 9886 + rot: 1.5707963267948966 rad + pos: -144.5,-10.5 + parent: 2 + - uid: 6180 components: - type: Transform - pos: 395.5,421.5 - parent: 1 - - uid: 9887 + rot: 1.5707963267948966 rad + pos: -145.5,-10.5 + parent: 2 + - uid: 6181 components: - type: Transform - pos: 394.5,421.5 - parent: 1 - - uid: 9888 + rot: 1.5707963267948966 rad + pos: -147.5,-10.5 + parent: 2 + - uid: 6182 components: - type: Transform - pos: 419.5,421.5 - parent: 1 - - uid: 9889 + rot: 1.5707963267948966 rad + pos: -148.5,-10.5 + parent: 2 + - uid: 6183 components: - type: Transform - pos: 419.5,419.5 - parent: 1 - - uid: 9890 + rot: 1.5707963267948966 rad + pos: -149.5,-10.5 + parent: 2 + - uid: 6184 components: - type: Transform - pos: 419.5,420.5 - parent: 1 - - uid: 9891 + rot: 1.5707963267948966 rad + pos: -150.5,-10.5 + parent: 2 + - uid: 6185 components: - type: Transform - pos: 418.5,419.5 - parent: 1 - - uid: 9892 + rot: 1.5707963267948966 rad + pos: -151.5,-10.5 + parent: 2 + - uid: 6186 components: - type: Transform - pos: 416.5,419.5 - parent: 1 - - uid: 9893 + rot: 1.5707963267948966 rad + pos: -146.5,-10.5 + parent: 2 + - uid: 6189 components: - type: Transform - pos: 415.5,419.5 - parent: 1 - - uid: 9894 + rot: 1.5707963267948966 rad + pos: -154.5,-9.5 + parent: 2 + - uid: 6190 components: - type: Transform - pos: 414.5,419.5 - parent: 1 - - uid: 9895 + rot: 1.5707963267948966 rad + pos: -154.5,-10.5 + parent: 2 + - uid: 6191 components: - type: Transform - pos: 417.5,419.5 - parent: 1 - - uid: 9896 + rot: 1.5707963267948966 rad + pos: -153.5,-10.5 + parent: 2 + - uid: 6192 components: - type: Transform - pos: 409.5,423.5 - parent: 1 - - uid: 9897 + rot: 1.5707963267948966 rad + pos: -154.5,-11.5 + parent: 2 + - uid: 6197 components: - type: Transform - pos: 409.5,422.5 - parent: 1 - - uid: 9898 + rot: 1.5707963267948966 rad + pos: -120.5,-22.5 + parent: 2 + - uid: 6256 components: - type: Transform - pos: 410.5,422.5 - parent: 1 - - uid: 9899 + pos: -122.5,-22.5 + parent: 2 + - uid: 6257 components: - type: Transform - pos: 401.5,423.5 - parent: 1 - - uid: 9900 + pos: -123.5,-22.5 + parent: 2 + - uid: 6258 components: - type: Transform - pos: 401.5,421.5 - parent: 1 - - uid: 9901 + pos: -124.5,-22.5 + parent: 2 + - uid: 6260 components: - type: Transform - pos: 401.5,422.5 - parent: 1 - - uid: 9902 + pos: -125.5,-22.5 + parent: 2 + - uid: 6326 components: - type: Transform - pos: 402.5,421.5 - parent: 1 - - uid: 9903 + pos: -108.5,-4.5 + parent: 2 + - uid: 6434 components: - type: Transform - pos: 404.5,421.5 - parent: 1 - - uid: 9904 + rot: 3.141592653589793 rad + pos: -143.5,-10.5 + parent: 2 + - uid: 6517 components: - type: Transform - pos: 403.5,421.5 - parent: 1 - - uid: 9905 + rot: 3.141592653589793 rad + pos: -146.5,5.5 + parent: 2 + - uid: 6664 components: - type: Transform - pos: 404.5,420.5 - parent: 1 - - uid: 9906 + pos: -151.5,13.5 + parent: 2 + - uid: 6779 components: - type: Transform - pos: 404.5,418.5 - parent: 1 - - uid: 9907 + rot: 3.141592653589793 rad + pos: -148.5,5.5 + parent: 2 + - uid: 6963 components: - type: Transform - pos: 404.5,417.5 - parent: 1 - - uid: 9908 + pos: -125.5,13.5 + parent: 2 + - uid: 7404 components: - type: Transform - pos: 404.5,416.5 - parent: 1 - - uid: 9909 + rot: 3.141592653589793 rad + pos: -152.5,5.5 + parent: 2 + - uid: 7414 components: - type: Transform - pos: 404.5,419.5 - parent: 1 - - uid: 9910 + pos: -150.5,13.5 + parent: 2 + - uid: 7432 components: - type: Transform - pos: 404.5,415.5 - parent: 1 - - uid: 9911 + pos: -149.5,13.5 + parent: 2 + - uid: 7439 components: - type: Transform - pos: 404.5,414.5 - parent: 1 - - uid: 9912 + rot: 3.141592653589793 rad + pos: -154.5,3.5 + parent: 2 + - uid: 7456 components: - type: Transform - pos: 404.5,413.5 - parent: 1 - - uid: 9913 + pos: -142.5,13.5 + parent: 2 + - uid: 7499 components: - type: Transform - pos: 404.5,411.5 - parent: 1 - - uid: 9914 + rot: -1.5707963267948966 rad + pos: -130.5,-27.5 + parent: 2 + - uid: 7500 components: - type: Transform - pos: 404.5,412.5 - parent: 1 - - uid: 9915 + rot: -1.5707963267948966 rad + pos: -128.5,-27.5 + parent: 2 + - uid: 7501 components: - type: Transform - pos: 404.5,410.5 - parent: 1 - - uid: 9916 + rot: -1.5707963267948966 rad + pos: -127.5,-27.5 + parent: 2 + - uid: 7502 components: - type: Transform - pos: 403.5,410.5 - parent: 1 - - uid: 9917 + rot: -1.5707963267948966 rad + pos: -124.5,-27.5 + parent: 2 + - uid: 7506 components: - type: Transform - pos: 402.5,410.5 - parent: 1 - - uid: 9918 + rot: 1.5707963267948966 rad + pos: -140.5,-27.5 + parent: 2 + - uid: 7511 components: - type: Transform - pos: 405.5,416.5 - parent: 1 - - uid: 9919 + pos: -52.5,-69.5 + parent: 2 + - uid: 7619 components: - type: Transform - pos: 407.5,416.5 - parent: 1 - - uid: 9920 + rot: 3.141592653589793 rad + pos: -129.5,-4.5 + parent: 2 + - uid: 7913 components: - type: Transform - pos: 408.5,416.5 - parent: 1 - - uid: 9921 + rot: 1.5707963267948966 rad + pos: -139.5,-27.5 + parent: 2 + - uid: 8172 components: - type: Transform - pos: 406.5,416.5 - parent: 1 - - uid: 9922 + rot: 1.5707963267948966 rad + pos: -103.5,-8.5 + parent: 2 + - uid: 8314 components: - type: Transform - pos: 408.5,414.5 - parent: 1 - - uid: 9923 + rot: 3.141592653589793 rad + pos: -119.5,-23.5 + parent: 2 + - uid: 8315 components: - type: Transform - pos: 408.5,413.5 - parent: 1 - - uid: 9924 + rot: 3.141592653589793 rad + pos: -119.5,-24.5 + parent: 2 + - uid: 8326 components: - type: Transform - pos: 408.5,415.5 - parent: 1 - - uid: 9925 + rot: 1.5707963267948966 rad + pos: -92.5,-13.5 + parent: 2 + - uid: 8337 components: - type: Transform - pos: 408.5,412.5 - parent: 1 - - uid: 9926 + rot: 3.141592653589793 rad + pos: -105.5,25.5 + parent: 2 + - uid: 8353 components: - type: Transform - pos: 408.5,410.5 - parent: 1 - - uid: 9927 + rot: -1.5707963267948966 rad + pos: -120.5,-27.5 + parent: 2 + - uid: 8373 components: - type: Transform - pos: 408.5,409.5 - parent: 1 - - uid: 9928 + rot: -1.5707963267948966 rad + pos: -125.5,-27.5 + parent: 2 + - uid: 8479 components: - type: Transform - pos: 408.5,408.5 - parent: 1 - - uid: 9929 + rot: -1.5707963267948966 rad + pos: -129.5,-27.5 + parent: 2 + - uid: 8646 components: - type: Transform - pos: 408.5,411.5 - parent: 1 - - uid: 9930 + rot: -1.5707963267948966 rad + pos: -131.5,-27.5 + parent: 2 + - uid: 8691 components: - type: Transform - pos: 407.5,408.5 - parent: 1 - - uid: 9931 + rot: 3.141592653589793 rad + pos: -33.5,-44.5 + parent: 2 + - uid: 8863 components: - type: Transform - pos: 406.5,408.5 - parent: 1 - - uid: 9932 + rot: 3.141592653589793 rad + pos: -34.5,-44.5 + parent: 2 + - uid: 8904 components: - type: Transform - pos: 409.5,415.5 - parent: 1 - - uid: 9933 + rot: 3.141592653589793 rad + pos: -39.5,-44.5 + parent: 2 + - uid: 8907 components: - type: Transform - pos: 410.5,415.5 - parent: 1 - - uid: 9934 + rot: 3.141592653589793 rad + pos: -36.5,-44.5 + parent: 2 + - uid: 8975 components: - type: Transform - pos: 401.5,410.5 - parent: 1 - - uid: 9935 + rot: -1.5707963267948966 rad + pos: -126.5,-27.5 + parent: 2 + - uid: 8977 components: - type: Transform - pos: 401.5,409.5 - parent: 1 - - uid: 9936 + rot: -1.5707963267948966 rad + pos: -122.5,-27.5 + parent: 2 + - uid: 8979 components: - type: Transform - pos: 400.5,409.5 - parent: 1 - - uid: 9937 + rot: -1.5707963267948966 rad + pos: -123.5,-27.5 + parent: 2 + - uid: 9160 components: - type: Transform - pos: 400.5,408.5 - parent: 1 - - uid: 9938 + rot: -1.5707963267948966 rad + pos: -94.5,45.5 + parent: 2 + - uid: 9236 components: - type: Transform - pos: 400.5,407.5 - parent: 1 - - uid: 9939 + rot: -1.5707963267948966 rad + pos: -105.5,6.5 + parent: 2 + - uid: 9241 components: - type: Transform - pos: 399.5,407.5 - parent: 1 - - uid: 9940 + rot: -1.5707963267948966 rad + pos: -94.5,43.5 + parent: 2 + - uid: 9252 components: - type: Transform - pos: 398.5,407.5 - parent: 1 - - uid: 9941 + rot: 1.5707963267948966 rad + pos: -103.5,0.5 + parent: 2 + - uid: 9254 components: - type: Transform - pos: 402.5,416.5 - parent: 1 - - uid: 9942 + rot: 1.5707963267948966 rad + pos: -103.5,-4.5 + parent: 2 + - uid: 9283 components: - type: Transform - pos: 401.5,416.5 - parent: 1 - - uid: 9943 + rot: -1.5707963267948966 rad + pos: -94.5,44.5 + parent: 2 + - uid: 9446 components: - type: Transform - pos: 400.5,416.5 - parent: 1 - - uid: 9944 + rot: 3.141592653589793 rad + pos: -103.5,5.5 + parent: 2 + - uid: 9486 components: - type: Transform - pos: 399.5,416.5 - parent: 1 - - uid: 9945 + pos: -152.5,13.5 + parent: 2 + - uid: 9491 components: - type: Transform - pos: 398.5,416.5 - parent: 1 - - uid: 9946 + pos: -145.5,13.5 + parent: 2 + - uid: 9496 components: - type: Transform - pos: 403.5,416.5 - parent: 1 - - uid: 9947 + pos: -143.5,13.5 + parent: 2 + - uid: 9606 components: - type: Transform - pos: 398.5,415.5 - parent: 1 - - uid: 9948 + rot: -1.5707963267948966 rad + pos: -75.5,-35.5 + parent: 2 + - uid: 9732 components: - type: Transform - pos: 397.5,415.5 - parent: 1 - - uid: 9949 + pos: -30.5,-5.5 + parent: 2 + - uid: 9944 components: - type: Transform - pos: 396.5,415.5 - parent: 1 - - uid: 9950 + pos: -125.5,11.5 + parent: 2 + - uid: 9997 components: - type: Transform - pos: 395.5,415.5 - parent: 1 - - uid: 9951 + pos: -94.5,36.5 + parent: 2 + - uid: 9998 components: - type: Transform - pos: 395.5,416.5 - parent: 1 - - uid: 9952 + pos: -94.5,37.5 + parent: 2 + - uid: 9999 components: - type: Transform - pos: 393.5,419.5 - parent: 1 - - uid: 9953 + pos: -94.5,39.5 + parent: 2 + - uid: 10000 components: - type: Transform - pos: 393.5,418.5 - parent: 1 - - uid: 9954 + pos: -94.5,40.5 + parent: 2 + - uid: 10001 components: - type: Transform - pos: 392.5,418.5 - parent: 1 - - uid: 9955 + pos: -94.5,41.5 + parent: 2 + - uid: 10002 components: - type: Transform - pos: 390.5,418.5 - parent: 1 - - uid: 9956 + pos: -94.5,42.5 + parent: 2 + - uid: 10003 components: - type: Transform - pos: 391.5,418.5 - parent: 1 - - uid: 9957 + pos: -94.5,38.5 + parent: 2 + - uid: 10014 components: - type: Transform - pos: 390.5,417.5 - parent: 1 - - uid: 9958 + pos: -68.5,-16.5 + parent: 2 + - uid: 10015 components: - type: Transform - pos: 390.5,416.5 - parent: 1 - - uid: 9959 + rot: 3.141592653589793 rad + pos: -154.5,5.5 + parent: 2 + - uid: 10016 components: - type: Transform - pos: 390.5,415.5 - parent: 1 - - uid: 9960 + pos: -154.5,13.5 + parent: 2 + - uid: 10076 components: - type: Transform - pos: 390.5,414.5 - parent: 1 - - uid: 9961 + rot: 3.141592653589793 rad + pos: -140.5,3.5 + parent: 2 + - uid: 10155 components: - type: Transform - pos: 390.5,413.5 - parent: 1 - - uid: 9962 + rot: 1.5707963267948966 rad + pos: -94.5,20.5 + parent: 2 + - uid: 10178 components: - type: Transform - pos: 390.5,412.5 - parent: 1 - - uid: 9963 + rot: 3.141592653589793 rad + pos: -142.5,1.5 + parent: 2 + - uid: 10181 components: - type: Transform - pos: 390.5,420.5 - parent: 1 - - uid: 9964 + rot: 3.141592653589793 rad + pos: -143.5,1.5 + parent: 2 + - uid: 10498 components: - type: Transform - pos: 390.5,421.5 - parent: 1 - - uid: 9965 + pos: -129.5,-10.5 + parent: 2 + - uid: 10709 components: - type: Transform - pos: 390.5,419.5 - parent: 1 - - uid: 9966 + rot: -1.5707963267948966 rad + pos: -105.5,-10.5 + parent: 2 + - uid: 10710 components: - type: Transform - pos: 389.5,421.5 - parent: 1 - - uid: 9967 + rot: -1.5707963267948966 rad + pos: -103.5,-10.5 + parent: 2 + - uid: 10711 components: - type: Transform - pos: 388.5,421.5 - parent: 1 - - uid: 9968 + rot: -1.5707963267948966 rad + pos: -104.5,-10.5 + parent: 2 + - uid: 10712 components: - type: Transform - pos: 387.5,421.5 - parent: 1 - - uid: 9969 + rot: -1.5707963267948966 rad + pos: -103.5,-11.5 + parent: 2 + - uid: 10713 components: - type: Transform - pos: 386.5,421.5 - parent: 1 - - uid: 9970 + rot: -1.5707963267948966 rad + pos: -103.5,-12.5 + parent: 2 + - uid: 10714 components: - type: Transform - pos: 385.5,421.5 - parent: 1 - - uid: 9971 + rot: -1.5707963267948966 rad + pos: -103.5,-13.5 + parent: 2 + - uid: 10715 components: - type: Transform - pos: 384.5,421.5 - parent: 1 - - uid: 9972 + rot: -1.5707963267948966 rad + pos: -102.5,-13.5 + parent: 2 + - uid: 10716 components: - type: Transform - pos: 383.5,421.5 - parent: 1 - - uid: 9973 + rot: -1.5707963267948966 rad + pos: -101.5,-13.5 + parent: 2 + - uid: 10717 components: - type: Transform - pos: 383.5,420.5 - parent: 1 - - uid: 9974 + rot: -1.5707963267948966 rad + pos: -100.5,-13.5 + parent: 2 + - uid: 10718 components: - type: Transform - pos: 383.5,419.5 - parent: 1 - - uid: 9976 + rot: -1.5707963267948966 rad + pos: -99.5,-13.5 + parent: 2 + - uid: 10719 components: - type: Transform - pos: 383.5,418.5 - parent: 1 - - uid: 9977 + rot: -1.5707963267948966 rad + pos: -97.5,-13.5 + parent: 2 + - uid: 10720 components: - type: Transform - pos: 381.5,418.5 - parent: 1 - - uid: 9978 + rot: -1.5707963267948966 rad + pos: -96.5,-13.5 + parent: 2 + - uid: 10721 components: - type: Transform - pos: 380.5,418.5 - parent: 1 - - uid: 9979 + rot: -1.5707963267948966 rad + pos: -95.5,-13.5 + parent: 2 + - uid: 10722 components: - type: Transform - pos: 379.5,418.5 - parent: 1 - - uid: 9980 + rot: -1.5707963267948966 rad + pos: -94.5,-13.5 + parent: 2 + - uid: 10723 components: - type: Transform - pos: 378.5,418.5 - parent: 1 - - uid: 9981 + rot: -1.5707963267948966 rad + pos: -93.5,-13.5 + parent: 2 + - uid: 10725 components: - type: Transform - pos: 377.5,418.5 - parent: 1 - - uid: 9982 + rot: -1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 + - uid: 10726 components: - type: Transform - pos: 382.5,418.5 - parent: 1 - - uid: 9983 + rot: -1.5707963267948966 rad + pos: -90.5,-13.5 + parent: 2 + - uid: 10728 components: - type: Transform - pos: 377.5,419.5 - parent: 1 - - uid: 9984 + rot: -1.5707963267948966 rad + pos: -88.5,-13.5 + parent: 2 + - uid: 10729 components: - type: Transform - pos: 379.5,416.5 - parent: 1 - - uid: 9985 + rot: -1.5707963267948966 rad + pos: -98.5,-13.5 + parent: 2 + - uid: 10730 components: - type: Transform - pos: 379.5,417.5 - parent: 1 - - uid: 9986 + rot: -1.5707963267948966 rad + pos: -87.5,-13.5 + parent: 2 + - uid: 10731 components: - type: Transform - pos: 379.5,415.5 - parent: 1 - - uid: 9987 + rot: -1.5707963267948966 rad + pos: -85.5,-13.5 + parent: 2 + - uid: 10732 components: - type: Transform - pos: 379.5,414.5 - parent: 1 - - uid: 9988 + rot: -1.5707963267948966 rad + pos: -86.5,-13.5 + parent: 2 + - uid: 10733 components: - type: Transform - pos: 379.5,411.5 - parent: 1 - - uid: 9989 + rot: -1.5707963267948966 rad + pos: -83.5,-13.5 + parent: 2 + - uid: 10734 components: - type: Transform - pos: 379.5,410.5 - parent: 1 - - uid: 9990 + rot: -1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 + - uid: 10735 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 9991 + rot: -1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 + - uid: 10736 components: - type: Transform - pos: 379.5,413.5 - parent: 1 - - uid: 9992 + rot: -1.5707963267948966 rad + pos: -95.5,-14.5 + parent: 2 + - uid: 10737 components: - type: Transform - pos: 379.5,412.5 - parent: 1 - - uid: 9993 + rot: -1.5707963267948966 rad + pos: -95.5,-15.5 + parent: 2 + - uid: 10795 components: - type: Transform - pos: 380.5,409.5 - parent: 1 - - uid: 9994 + rot: 3.141592653589793 rad + pos: -140.5,4.5 + parent: 2 + - uid: 11122 components: - type: Transform - pos: 382.5,409.5 - parent: 1 - - uid: 9995 + rot: 3.141592653589793 rad + pos: -134.5,13.5 + parent: 2 + - uid: 11133 components: - type: Transform - pos: 383.5,409.5 - parent: 1 - - uid: 9996 + rot: 1.5707963267948966 rad + pos: -103.5,-9.5 + parent: 2 + - uid: 11315 components: - type: Transform - pos: 381.5,409.5 - parent: 1 - - uid: 9997 + rot: 3.141592653589793 rad + pos: -141.5,1.5 + parent: 2 + - uid: 11317 components: - type: Transform - pos: 384.5,418.5 - parent: 1 - - uid: 9998 + rot: 3.141592653589793 rad + pos: -141.5,5.5 + parent: 2 + - uid: 11400 components: - type: Transform - pos: 386.5,418.5 - parent: 1 - - uid: 9999 + rot: 3.141592653589793 rad + pos: -104.5,-58.5 + parent: 2 + - uid: 11401 components: - type: Transform - pos: 385.5,418.5 - parent: 1 - - uid: 10000 + rot: 3.141592653589793 rad + pos: -104.5,-59.5 + parent: 2 + - uid: 11645 components: - type: Transform - pos: 386.5,417.5 - parent: 1 - - uid: 10001 + rot: 3.141592653589793 rad + pos: -140.5,5.5 + parent: 2 + - uid: 12727 components: - type: Transform - pos: 386.5,416.5 - parent: 1 - - uid: 10002 + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 12951 components: - type: Transform - pos: 386.5,415.5 - parent: 1 - - uid: 10003 + pos: -18.5,2.5 + parent: 2 + - uid: 13041 components: - type: Transform - pos: 387.5,415.5 - parent: 1 - - uid: 10005 + rot: 3.141592653589793 rad + pos: -103.5,-23.5 + parent: 2 + - uid: 13042 components: - type: Transform - pos: 376.5,418.5 - parent: 1 - - uid: 10007 + rot: 3.141592653589793 rad + pos: -103.5,-25.5 + parent: 2 + - uid: 13043 components: - type: Transform - pos: 374.5,418.5 - parent: 1 - - uid: 10008 + rot: 3.141592653589793 rad + pos: -103.5,-24.5 + parent: 2 + - uid: 13110 components: - type: Transform - pos: 373.5,418.5 - parent: 1 - - uid: 10009 + rot: 3.141592653589793 rad + pos: -140.5,1.5 + parent: 2 + - uid: 13481 components: - type: Transform - pos: 372.5,418.5 - parent: 1 - - uid: 10010 + rot: 3.141592653589793 rad + pos: -140.5,2.5 + parent: 2 + - uid: 13623 components: - type: Transform - pos: 372.5,417.5 - parent: 1 - - uid: 10011 + rot: -1.5707963267948966 rad + pos: -121.5,-27.5 + parent: 2 + - uid: 13715 components: - type: Transform - pos: 372.5,416.5 - parent: 1 - - uid: 10015 + pos: -141.5,-55.5 + parent: 2 + - uid: 13723 components: - type: Transform - pos: 372.5,415.5 - parent: 1 - - uid: 10019 + pos: -141.5,-57.5 + parent: 2 + - uid: 13739 components: - type: Transform - pos: 369.5,420.5 - parent: 1 - - uid: 10020 + pos: -105.5,-45.5 + parent: 2 + - uid: 13743 components: - type: Transform - pos: 370.5,420.5 - parent: 1 - - uid: 10023 + pos: -104.5,-35.5 + parent: 2 + - uid: 13745 components: - type: Transform - pos: 369.5,422.5 - parent: 1 - - uid: 10024 + pos: -104.5,-37.5 + parent: 2 + - uid: 13746 components: - type: Transform - pos: 369.5,421.5 - parent: 1 - - uid: 10026 + pos: -104.5,-33.5 + parent: 2 + - uid: 13747 components: - type: Transform - pos: 366.5,410.5 - parent: 1 - - uid: 10028 + pos: -104.5,-34.5 + parent: 2 + - uid: 13748 components: - type: Transform - pos: 366.5,409.5 - parent: 1 - - uid: 10029 + pos: -104.5,-32.5 + parent: 2 + - uid: 13749 components: - type: Transform - pos: 365.5,410.5 - parent: 1 - - uid: 10030 + pos: -104.5,-31.5 + parent: 2 + - uid: 13750 components: - type: Transform - pos: 364.5,410.5 - parent: 1 - - uid: 10031 + pos: -104.5,-30.5 + parent: 2 + - uid: 13751 components: - type: Transform - pos: 364.5,411.5 - parent: 1 - - uid: 10032 + pos: -104.5,-29.5 + parent: 2 + - uid: 13752 components: - type: Transform - pos: 364.5,413.5 - parent: 1 - - uid: 10033 + pos: -104.5,-28.5 + parent: 2 + - uid: 13753 components: - type: Transform - pos: 364.5,414.5 - parent: 1 - - uid: 10034 + pos: -104.5,-27.5 + parent: 2 + - uid: 13754 components: - type: Transform - pos: 364.5,412.5 - parent: 1 - - uid: 10035 + pos: -104.5,-26.5 + parent: 2 + - uid: 13755 components: - type: Transform - pos: 365.5,414.5 - parent: 1 - - uid: 10036 + pos: -104.5,-45.5 + parent: 2 + - uid: 13756 components: - type: Transform - pos: 365.5,415.5 - parent: 1 - - uid: 10044 + pos: -104.5,-43.5 + parent: 2 + - uid: 13757 components: - type: Transform - pos: 423.5,384.5 - parent: 1 - - uid: 10045 + pos: -104.5,-42.5 + parent: 2 + - uid: 13758 components: - type: Transform - pos: 423.5,382.5 - parent: 1 - - uid: 10046 + pos: -104.5,-41.5 + parent: 2 + - uid: 13759 components: - type: Transform - pos: 423.5,381.5 - parent: 1 - - uid: 10047 + pos: -104.5,-40.5 + parent: 2 + - uid: 13760 components: - type: Transform - pos: 423.5,380.5 - parent: 1 - - uid: 10048 + pos: -104.5,-39.5 + parent: 2 + - uid: 13761 components: - type: Transform - pos: 423.5,379.5 - parent: 1 - - uid: 10049 + pos: -104.5,-38.5 + parent: 2 + - uid: 13762 components: - type: Transform - pos: 423.5,383.5 - parent: 1 - - uid: 10050 + pos: -104.5,-44.5 + parent: 2 + - uid: 13764 components: - type: Transform - pos: 422.5,379.5 - parent: 1 - - uid: 10051 + pos: -103.5,-22.5 + parent: 2 + - uid: 13766 components: - type: Transform - pos: 422.5,377.5 - parent: 1 - - uid: 10052 + pos: -103.5,-19.5 + parent: 2 + - uid: 13767 components: - type: Transform - pos: 422.5,376.5 - parent: 1 - - uid: 10053 + pos: -103.5,-18.5 + parent: 2 + - uid: 13768 components: - type: Transform - pos: 422.5,378.5 - parent: 1 - - uid: 10054 + pos: -103.5,-17.5 + parent: 2 + - uid: 13769 components: - type: Transform - pos: 422.5,375.5 - parent: 1 - - uid: 10055 + pos: -103.5,-16.5 + parent: 2 + - uid: 13770 components: - type: Transform - pos: 420.5,375.5 - parent: 1 - - uid: 10056 + pos: -103.5,-15.5 + parent: 2 + - uid: 13771 components: - type: Transform - pos: 419.5,375.5 - parent: 1 - - uid: 10057 + pos: -103.5,-14.5 + parent: 2 + - uid: 13772 components: - type: Transform - pos: 418.5,375.5 - parent: 1 - - uid: 10058 + pos: -103.5,-20.5 + parent: 2 + - uid: 13773 components: - type: Transform - pos: 417.5,375.5 - parent: 1 - - uid: 10059 + pos: -104.5,-46.5 + parent: 2 + - uid: 13774 components: - type: Transform - pos: 421.5,375.5 - parent: 1 - - uid: 10060 + pos: -104.5,-48.5 + parent: 2 + - uid: 13775 components: - type: Transform - pos: 416.5,375.5 - parent: 1 - - uid: 10061 + pos: -104.5,-49.5 + parent: 2 + - uid: 13776 components: - type: Transform - pos: 414.5,375.5 - parent: 1 - - uid: 10062 + pos: -104.5,-50.5 + parent: 2 + - uid: 13777 components: - type: Transform - pos: 415.5,375.5 - parent: 1 - - uid: 10063 + pos: -104.5,-51.5 + parent: 2 + - uid: 13778 components: - type: Transform - pos: 413.5,375.5 - parent: 1 - - uid: 10064 + pos: -104.5,-52.5 + parent: 2 + - uid: 13779 components: - type: Transform - pos: 413.5,376.5 - parent: 1 - - uid: 10065 + pos: -104.5,-47.5 + parent: 2 + - uid: 13780 components: - type: Transform - pos: 415.5,374.5 - parent: 1 - - uid: 10066 + pos: -104.5,-55.5 + parent: 2 + - uid: 13781 components: - type: Transform - pos: 415.5,372.5 - parent: 1 - - uid: 10067 + pos: -104.5,-54.5 + parent: 2 + - uid: 13782 components: - type: Transform - pos: 415.5,371.5 - parent: 1 - - uid: 10068 + pos: -104.5,-56.5 + parent: 2 + - uid: 13785 components: - type: Transform - pos: 415.5,373.5 - parent: 1 - - uid: 10069 + pos: -154.5,0.5 + parent: 2 + - uid: 13801 components: - type: Transform - pos: 416.5,371.5 - parent: 1 - - uid: 10070 + pos: -154.5,1.5 + parent: 2 + - uid: 13834 components: - type: Transform - pos: 417.5,371.5 - parent: 1 - - uid: 10071 + rot: -1.5707963267948966 rad + pos: -143.5,-27.5 + parent: 2 + - uid: 13874 components: - type: Transform - pos: 418.5,371.5 - parent: 1 - - uid: 10072 + rot: 3.141592653589793 rad + pos: -157.5,5.5 + parent: 2 + - uid: 13878 components: - type: Transform - pos: 419.5,371.5 - parent: 1 - - uid: 10073 + rot: 3.141592653589793 rad + pos: -142.5,5.5 + parent: 2 + - uid: 13880 components: - type: Transform - pos: 419.5,372.5 - parent: 1 - - uid: 10074 + rot: -1.5707963267948966 rad + pos: -157.5,-16.5 + parent: 2 + - uid: 13884 components: - type: Transform - pos: 415.5,370.5 - parent: 1 - - uid: 10075 + rot: -1.5707963267948966 rad + pos: -147.5,-27.5 + parent: 2 + - uid: 13888 components: - type: Transform - pos: 415.5,368.5 - parent: 1 - - uid: 10076 + rot: -1.5707963267948966 rad + pos: -156.5,-16.5 + parent: 2 + - uid: 13895 components: - type: Transform - pos: 415.5,369.5 - parent: 1 - - uid: 10077 + rot: 3.141592653589793 rad + pos: -156.5,5.5 + parent: 2 + - uid: 13906 components: - type: Transform - pos: 416.5,368.5 - parent: 1 - - uid: 10078 + rot: 3.141592653589793 rad + pos: -154.5,2.5 + parent: 2 + - uid: 13958 components: - type: Transform - pos: 417.5,368.5 - parent: 1 - - uid: 10079 + pos: -153.5,-16.5 + parent: 2 + - uid: 14019 components: - type: Transform - pos: 418.5,368.5 - parent: 1 - - uid: 10080 + pos: -152.5,-16.5 + parent: 2 + - uid: 14082 components: - type: Transform - pos: 419.5,368.5 - parent: 1 - - uid: 10081 + rot: 3.141592653589793 rad + pos: -144.5,5.5 + parent: 2 + - uid: 14083 components: - type: Transform - pos: 419.5,369.5 - parent: 1 - - uid: 10082 + rot: 3.141592653589793 rad + pos: -37.5,-44.5 + parent: 2 + - uid: 14152 components: - type: Transform - pos: 411.5,375.5 - parent: 1 - - uid: 10083 + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 14171 components: - type: Transform - pos: 410.5,375.5 - parent: 1 - - uid: 10084 + rot: 3.141592653589793 rad + pos: -38.5,-44.5 + parent: 2 + - uid: 14282 components: - type: Transform - pos: 409.5,375.5 - parent: 1 - - uid: 10085 + rot: -1.5707963267948966 rad + pos: -103.5,-56.5 + parent: 2 + - uid: 14501 components: - type: Transform - pos: 408.5,375.5 - parent: 1 - - uid: 10086 + rot: -1.5707963267948966 rad + pos: -102.5,-56.5 + parent: 2 + - uid: 14642 components: - type: Transform - pos: 412.5,375.5 - parent: 1 - - uid: 10087 + rot: 3.141592653589793 rad + pos: -32.5,-44.5 + parent: 2 + - uid: 14644 components: - type: Transform - pos: 408.5,374.5 - parent: 1 - - uid: 10088 + rot: -1.5707963267948966 rad + pos: -76.5,-35.5 + parent: 2 + - uid: 14649 components: - type: Transform - pos: 408.5,373.5 - parent: 1 - - uid: 10089 + pos: -140.5,-14.5 + parent: 2 + - uid: 14671 components: - type: Transform - pos: 408.5,372.5 - parent: 1 - - uid: 10090 + rot: 3.141592653589793 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 14672 components: - type: Transform - pos: 407.5,372.5 - parent: 1 - - uid: 10091 + rot: 3.141592653589793 rad + pos: -79.5,-13.5 + parent: 2 + - uid: 14673 components: - type: Transform - pos: 406.5,372.5 - parent: 1 - - uid: 10092 + rot: 3.141592653589793 rad + pos: -80.5,-13.5 + parent: 2 + - uid: 14674 components: - type: Transform - pos: 408.5,370.5 - parent: 1 - - uid: 10093 + rot: 3.141592653589793 rad + pos: -81.5,-13.5 + parent: 2 + - uid: 14675 components: - type: Transform - pos: 408.5,369.5 - parent: 1 - - uid: 10094 + rot: 3.141592653589793 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 14677 components: - type: Transform - pos: 408.5,368.5 - parent: 1 - - uid: 10095 + rot: -1.5707963267948966 rad + pos: -67.5,-11.5 + parent: 2 + - uid: 14678 components: - type: Transform - pos: 408.5,371.5 - parent: 1 - - uid: 10096 + rot: -1.5707963267948966 rad + pos: -75.5,-14.5 + parent: 2 + - uid: 14679 components: - type: Transform - pos: 410.5,368.5 - parent: 1 - - uid: 10097 + rot: -1.5707963267948966 rad + pos: -75.5,-13.5 + parent: 2 + - uid: 14680 components: - type: Transform - pos: 411.5,368.5 - parent: 1 - - uid: 10098 + rot: -1.5707963267948966 rad + pos: -75.5,-11.5 + parent: 2 + - uid: 14681 components: - type: Transform - pos: 412.5,368.5 - parent: 1 - - uid: 10099 + rot: -1.5707963267948966 rad + pos: -75.5,-12.5 + parent: 2 + - uid: 14682 components: - type: Transform - pos: 409.5,368.5 - parent: 1 - - uid: 10100 + rot: -1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 14683 components: - type: Transform - pos: 412.5,369.5 - parent: 1 - - uid: 10101 + rot: -1.5707963267948966 rad + pos: -74.5,-13.5 + parent: 2 + - uid: 14684 components: - type: Transform - pos: 409.5,371.5 - parent: 1 - - uid: 10102 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 14685 components: - type: Transform - pos: 411.5,371.5 - parent: 1 - - uid: 10103 + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - uid: 14686 components: - type: Transform - pos: 412.5,371.5 - parent: 1 - - uid: 10104 + rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - uid: 14687 components: - type: Transform - pos: 410.5,371.5 - parent: 1 - - uid: 10105 + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 14688 components: - type: Transform - pos: 412.5,372.5 - parent: 1 - - uid: 10106 + rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 14689 components: - type: Transform - pos: 407.5,375.5 - parent: 1 - - uid: 10107 + rot: 3.141592653589793 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 14690 components: - type: Transform - pos: 405.5,375.5 - parent: 1 - - uid: 10108 + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 14691 components: - type: Transform - pos: 404.5,375.5 - parent: 1 - - uid: 10109 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 14692 components: - type: Transform - pos: 406.5,375.5 - parent: 1 - - uid: 10110 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 14693 components: - type: Transform - pos: 403.5,375.5 - parent: 1 - - uid: 10111 + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 + - uid: 14694 components: - type: Transform - pos: 403.5,374.5 - parent: 1 - - uid: 10112 + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 14695 components: - type: Transform - pos: 403.5,373.5 - parent: 1 - - uid: 10113 + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - uid: 14696 components: - type: Transform - pos: 402.5,373.5 - parent: 1 - - uid: 10114 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 14697 components: - type: Transform - pos: 401.5,373.5 - parent: 1 - - uid: 10115 + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 14698 components: - type: Transform - pos: 400.5,373.5 - parent: 1 - - uid: 10116 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 14699 components: - type: Transform - pos: 400.5,372.5 - parent: 1 - - uid: 10117 + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 14700 components: - type: Transform - pos: 400.5,371.5 - parent: 1 - - uid: 10118 + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 14701 components: - type: Transform - pos: 401.5,371.5 - parent: 1 - - uid: 10120 + rot: -1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 + - uid: 14702 components: - type: Transform - pos: 384.5,402.5 - parent: 1 - - uid: 10121 + rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 2 + - uid: 14703 components: - type: Transform - pos: 384.5,400.5 - parent: 1 - - uid: 10122 + rot: -1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 14704 components: - type: Transform - pos: 384.5,399.5 - parent: 1 - - uid: 10123 + rot: -1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 14705 components: - type: Transform - pos: 384.5,398.5 - parent: 1 - - uid: 10124 + rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 + - uid: 14706 components: - type: Transform - pos: 384.5,397.5 - parent: 1 - - uid: 10125 + rot: -1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 + - uid: 14707 components: - type: Transform - pos: 384.5,396.5 - parent: 1 - - uid: 10126 + rot: -1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 2 + - uid: 14708 components: - type: Transform - pos: 384.5,401.5 - parent: 1 - - uid: 10127 + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 14709 components: - type: Transform - pos: 385.5,396.5 - parent: 1 - - uid: 10128 + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 14710 components: - type: Transform - pos: 386.5,396.5 - parent: 1 - - uid: 10129 + rot: -1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 2 + - uid: 14711 components: - type: Transform - pos: 386.5,398.5 - parent: 1 - - uid: 10130 + rot: -1.5707963267948966 rad + pos: -15.5,-14.5 + parent: 2 + - uid: 14712 components: - type: Transform - pos: 386.5,397.5 - parent: 1 - - uid: 10131 + rot: -1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 + - uid: 14713 components: - type: Transform - pos: 387.5,396.5 - parent: 1 - - uid: 10132 + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 14714 components: - type: Transform - pos: 389.5,396.5 - parent: 1 - - uid: 10133 + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 14715 components: - type: Transform - pos: 390.5,396.5 - parent: 1 - - uid: 10134 + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - uid: 14716 components: - type: Transform - pos: 388.5,396.5 - parent: 1 - - uid: 10135 + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 14718 components: - type: Transform - pos: 390.5,395.5 - parent: 1 - - uid: 10136 + rot: -1.5707963267948966 rad + pos: -29.5,-9.5 + parent: 2 + - uid: 14719 components: - type: Transform - pos: 390.5,393.5 - parent: 1 - - uid: 10137 + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 14720 components: - type: Transform - pos: 390.5,392.5 - parent: 1 - - uid: 10138 + rot: -1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 2 + - uid: 14721 components: - type: Transform - pos: 390.5,391.5 - parent: 1 - - uid: 10139 + rot: -1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 14722 components: - type: Transform - pos: 390.5,390.5 - parent: 1 - - uid: 10140 + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 14723 components: - type: Transform - pos: 390.5,389.5 - parent: 1 - - uid: 10141 + rot: -1.5707963267948966 rad + pos: -29.5,-11.5 + parent: 2 + - uid: 14724 components: - type: Transform - pos: 390.5,388.5 - parent: 1 - - uid: 10142 + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 14725 components: - type: Transform - pos: 390.5,387.5 - parent: 1 - - uid: 10143 + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 2 + - uid: 14726 components: - type: Transform - pos: 390.5,386.5 - parent: 1 - - uid: 10144 + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 14727 components: - type: Transform - pos: 390.5,394.5 - parent: 1 - - uid: 10145 + rot: -1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 14728 components: - type: Transform - pos: 390.5,385.5 - parent: 1 - - uid: 10146 + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 14734 components: - type: Transform - pos: 390.5,384.5 - parent: 1 - - uid: 10147 + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - uid: 14735 components: - type: Transform - pos: 390.5,383.5 - parent: 1 - - uid: 10148 + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 14742 components: - type: Transform - pos: 390.5,382.5 - parent: 1 - - uid: 10149 + rot: 3.141592653589793 rad + pos: -42.5,-13.5 + parent: 2 + - uid: 14743 components: - type: Transform - pos: 390.5,381.5 - parent: 1 - - uid: 10150 + rot: 3.141592653589793 rad + pos: -43.5,-13.5 + parent: 2 + - uid: 14744 components: - type: Transform - pos: 390.5,380.5 - parent: 1 - - uid: 10151 + rot: 3.141592653589793 rad + pos: -43.5,-15.5 + parent: 2 + - uid: 14745 components: - type: Transform - pos: 390.5,379.5 - parent: 1 - - uid: 10152 + rot: 3.141592653589793 rad + pos: -43.5,-14.5 + parent: 2 + - uid: 14747 components: - type: Transform - pos: 390.5,378.5 - parent: 1 - - uid: 10153 + rot: 3.141592653589793 rad + pos: -43.5,-11.5 + parent: 2 + - uid: 15002 components: - type: Transform - pos: 390.5,377.5 - parent: 1 - - uid: 10154 + rot: 3.141592653589793 rad + pos: -140.5,-10.5 + parent: 2 + - uid: 15326 components: - type: Transform - pos: 390.5,376.5 - parent: 1 - - uid: 10155 + rot: 3.141592653589793 rad + pos: -103.5,4.5 + parent: 2 + - uid: 15583 components: - type: Transform - pos: 390.5,375.5 - parent: 1 - - uid: 10156 + pos: -94.5,22.5 + parent: 2 + - uid: 15873 components: - type: Transform - pos: 389.5,375.5 - parent: 1 - - uid: 10157 + pos: -146.5,13.5 + parent: 2 + - uid: 15903 components: - type: Transform - pos: 388.5,375.5 - parent: 1 - - uid: 10158 + pos: -94.5,23.5 + parent: 2 + - uid: 15920 components: - type: Transform - pos: 383.5,396.5 - parent: 1 - - uid: 10159 + pos: -94.5,24.5 + parent: 2 + - uid: 15934 components: - type: Transform - pos: 381.5,396.5 - parent: 1 - - uid: 10160 + rot: -1.5707963267948966 rad + pos: -105.5,11.5 + parent: 2 + - uid: 15960 components: - type: Transform - pos: 380.5,396.5 - parent: 1 - - uid: 10161 + rot: -1.5707963267948966 rad + pos: -76.5,-37.5 + parent: 2 + - uid: 16064 components: - type: Transform - pos: 379.5,396.5 - parent: 1 - - uid: 10162 + rot: -1.5707963267948966 rad + pos: -99.5,-56.5 + parent: 2 + - uid: 16065 components: - type: Transform - pos: 378.5,396.5 - parent: 1 - - uid: 10163 + rot: -1.5707963267948966 rad + pos: -98.5,-56.5 + parent: 2 + - uid: 16066 components: - type: Transform - pos: 377.5,396.5 - parent: 1 - - uid: 10164 + rot: -1.5707963267948966 rad + pos: -97.5,-56.5 + parent: 2 + - uid: 16067 components: - type: Transform - pos: 376.5,396.5 - parent: 1 - - uid: 10165 + rot: -1.5707963267948966 rad + pos: -96.5,-56.5 + parent: 2 + - uid: 16069 components: - type: Transform - pos: 382.5,396.5 - parent: 1 - - uid: 10166 + rot: -1.5707963267948966 rad + pos: -101.5,-56.5 + parent: 2 + - uid: 16070 components: - type: Transform - pos: 374.5,396.5 - parent: 1 - - uid: 10167 + rot: -1.5707963267948966 rad + pos: -92.5,-56.5 + parent: 2 + - uid: 16071 components: - type: Transform - pos: 375.5,396.5 - parent: 1 - - uid: 10168 + rot: -1.5707963267948966 rad + pos: -81.5,-56.5 + parent: 2 + - uid: 16072 components: - type: Transform - pos: 373.5,396.5 - parent: 1 - - uid: 10170 + rot: -1.5707963267948966 rad + pos: -87.5,-56.5 + parent: 2 + - uid: 16073 components: - type: Transform - pos: 372.5,396.5 - parent: 1 - - uid: 10171 + rot: -1.5707963267948966 rad + pos: -80.5,-56.5 + parent: 2 + - uid: 16074 components: - type: Transform - pos: 372.5,395.5 - parent: 1 - - uid: 10172 + rot: -1.5707963267948966 rad + pos: -79.5,-56.5 + parent: 2 + - uid: 16075 components: - type: Transform - pos: 372.5,394.5 - parent: 1 - - uid: 10173 + rot: -1.5707963267948966 rad + pos: -84.5,-56.5 + parent: 2 + - uid: 16076 components: - type: Transform - pos: 372.5,392.5 - parent: 1 - - uid: 10174 + rot: -1.5707963267948966 rad + pos: -91.5,-56.5 + parent: 2 + - uid: 16077 components: - type: Transform - pos: 372.5,393.5 - parent: 1 - - uid: 10175 + rot: -1.5707963267948966 rad + pos: -90.5,-56.5 + parent: 2 + - uid: 16078 components: - type: Transform - pos: 373.5,392.5 - parent: 1 - - uid: 10180 + rot: -1.5707963267948966 rad + pos: -94.5,-56.5 + parent: 2 + - uid: 16079 components: - type: Transform - pos: 346.5,385.5 - parent: 1 - - uid: 10181 + rot: -1.5707963267948966 rad + pos: -89.5,-56.5 + parent: 2 + - uid: 16080 components: - type: Transform - pos: 345.5,385.5 - parent: 1 - - uid: 10182 + rot: -1.5707963267948966 rad + pos: -88.5,-56.5 + parent: 2 + - uid: 16081 components: - type: Transform - pos: 344.5,385.5 - parent: 1 - - uid: 10183 + rot: -1.5707963267948966 rad + pos: -86.5,-56.5 + parent: 2 + - uid: 16082 components: - type: Transform - pos: 344.5,384.5 - parent: 1 - - uid: 10184 + rot: -1.5707963267948966 rad + pos: -85.5,-56.5 + parent: 2 + - uid: 16083 components: - type: Transform - pos: 344.5,383.5 - parent: 1 - - uid: 10185 + rot: -1.5707963267948966 rad + pos: -93.5,-56.5 + parent: 2 + - uid: 16084 components: - type: Transform - pos: 343.5,383.5 - parent: 1 - - uid: 10186 + rot: -1.5707963267948966 rad + pos: -83.5,-56.5 + parent: 2 + - uid: 16085 components: - type: Transform - pos: 342.5,383.5 - parent: 1 - - uid: 10187 + rot: -1.5707963267948966 rad + pos: -82.5,-56.5 + parent: 2 + - uid: 16092 components: - type: Transform - pos: 341.5,383.5 - parent: 1 - - uid: 10188 + rot: -1.5707963267948966 rad + pos: -76.5,-36.5 + parent: 2 + - uid: 16142 components: - type: Transform - pos: 340.5,383.5 - parent: 1 - - uid: 10189 + pos: -94.5,25.5 + parent: 2 + - uid: 16143 components: - type: Transform - pos: 339.5,383.5 - parent: 1 - - uid: 10190 + pos: -94.5,19.5 + parent: 2 + - uid: 16284 components: - type: Transform - pos: 338.5,383.5 - parent: 1 - - uid: 10191 + rot: -1.5707963267948966 rad + pos: -72.5,-28.5 + parent: 2 + - uid: 16285 components: - type: Transform - pos: 338.5,382.5 - parent: 1 - - uid: 10192 + rot: -1.5707963267948966 rad + pos: -154.5,-34.5 + parent: 2 + - uid: 16292 components: - type: Transform - pos: 337.5,382.5 - parent: 1 - - uid: 10193 + rot: -1.5707963267948966 rad + pos: -72.5,-32.5 + parent: 2 + - uid: 16403 components: - type: Transform - pos: 336.5,382.5 - parent: 1 - - uid: 10194 + rot: -1.5707963267948966 rad + pos: -72.5,-25.5 + parent: 2 + - uid: 16416 components: - type: Transform - pos: 336.5,381.5 - parent: 1 - - uid: 10195 + rot: -1.5707963267948966 rad + pos: -78.5,-56.5 + parent: 2 + - uid: 16417 components: - type: Transform - pos: 336.5,380.5 - parent: 1 - - uid: 10196 + rot: -1.5707963267948966 rad + pos: -76.5,-56.5 + parent: 2 + - uid: 16418 components: - type: Transform - pos: 336.5,379.5 - parent: 1 - - uid: 10197 + rot: -1.5707963267948966 rad + pos: -75.5,-56.5 + parent: 2 + - uid: 16419 components: - type: Transform - pos: 337.5,379.5 - parent: 1 - - uid: 10201 + rot: -1.5707963267948966 rad + pos: -76.5,-58.5 + parent: 2 + - uid: 16420 components: - type: Transform - pos: 415.5,367.5 - parent: 1 - - uid: 10202 + rot: -1.5707963267948966 rad + pos: -76.5,-57.5 + parent: 2 + - uid: 16421 components: - type: Transform - pos: 415.5,365.5 - parent: 1 - - uid: 10203 + rot: -1.5707963267948966 rad + pos: -76.5,-55.5 + parent: 2 + - uid: 16422 components: - type: Transform - pos: 415.5,366.5 - parent: 1 - - uid: 10204 + rot: -1.5707963267948966 rad + pos: -76.5,-54.5 + parent: 2 + - uid: 16463 components: - type: Transform - pos: 415.5,364.5 - parent: 1 - - uid: 10205 + rot: -1.5707963267948966 rad + pos: -73.5,-25.5 + parent: 2 + - uid: 16507 components: - type: Transform - pos: 415.5,363.5 - parent: 1 - - uid: 10206 + pos: -144.5,13.5 + parent: 2 + - uid: 16773 components: - type: Transform - pos: 415.5,362.5 - parent: 1 - - uid: 10207 + rot: -1.5707963267948966 rad + pos: -154.5,-21.5 + parent: 2 + - uid: 16775 components: - type: Transform - pos: 414.5,362.5 - parent: 1 - - uid: 10208 + rot: -1.5707963267948966 rad + pos: -146.5,-27.5 + parent: 2 + - uid: 16779 components: - type: Transform - pos: 413.5,362.5 - parent: 1 - - uid: 10209 + rot: -1.5707963267948966 rad + pos: -72.5,-26.5 + parent: 2 + - uid: 16800 components: - type: Transform - pos: 412.5,362.5 - parent: 1 - - uid: 10210 + rot: -1.5707963267948966 rad + pos: -154.5,-22.5 + parent: 2 + - uid: 16802 components: - type: Transform - pos: 411.5,362.5 - parent: 1 - - uid: 10211 + rot: -1.5707963267948966 rad + pos: -145.5,-27.5 + parent: 2 + - uid: 16812 components: - type: Transform - pos: 411.5,361.5 - parent: 1 - - uid: 10212 + rot: -1.5707963267948966 rad + pos: -72.5,-27.5 + parent: 2 + - uid: 16847 components: - type: Transform - pos: 411.5,360.5 - parent: 1 - - uid: 10213 + rot: -1.5707963267948966 rad + pos: -148.5,-27.5 + parent: 2 + - uid: 16850 components: - type: Transform - pos: 416.5,362.5 - parent: 1 - - uid: 10214 + rot: -1.5707963267948966 rad + pos: -154.5,-30.5 + parent: 2 + - uid: 16851 components: - type: Transform - pos: 416.5,360.5 - parent: 1 - - uid: 10215 + rot: -1.5707963267948966 rad + pos: -154.5,-25.5 + parent: 2 + - uid: 16852 components: - type: Transform - pos: 416.5,359.5 - parent: 1 - - uid: 10216 + rot: 3.141592653589793 rad + pos: -133.5,19.5 + parent: 2 + - uid: 16853 components: - type: Transform - pos: 416.5,358.5 - parent: 1 - - uid: 10217 + rot: 3.141592653589793 rad + pos: -133.5,18.5 + parent: 2 + - uid: 16857 components: - type: Transform - pos: 416.5,357.5 - parent: 1 - - uid: 10218 + rot: -1.5707963267948966 rad + pos: -154.5,-23.5 + parent: 2 + - uid: 16858 components: - type: Transform - pos: 416.5,356.5 - parent: 1 - - uid: 10219 + rot: -1.5707963267948966 rad + pos: -154.5,-26.5 + parent: 2 + - uid: 16900 components: - type: Transform - pos: 416.5,355.5 - parent: 1 - - uid: 10220 + rot: -1.5707963267948966 rad + pos: -154.5,-24.5 + parent: 2 + - uid: 16923 components: - type: Transform - pos: 416.5,354.5 - parent: 1 - - uid: 10221 + rot: -1.5707963267948966 rad + pos: -72.5,-31.5 + parent: 2 + - uid: 16950 components: - type: Transform - pos: 416.5,353.5 - parent: 1 - - uid: 10222 + rot: -1.5707963267948966 rad + pos: -154.5,-39.5 + parent: 2 + - uid: 16957 components: - type: Transform - pos: 416.5,361.5 - parent: 1 - - uid: 10223 + rot: -1.5707963267948966 rad + pos: -154.5,-35.5 + parent: 2 + - uid: 16958 components: - type: Transform - pos: 416.5,352.5 - parent: 1 - - uid: 10224 + rot: -1.5707963267948966 rad + pos: -154.5,-38.5 + parent: 2 + - uid: 16959 components: - type: Transform - pos: 416.5,351.5 - parent: 1 - - uid: 10225 + rot: -1.5707963267948966 rad + pos: -154.5,-40.5 + parent: 2 + - uid: 16999 components: - type: Transform - pos: 418.5,351.5 - parent: 1 - - uid: 10226 + rot: 1.5707963267948966 rad + pos: -93.5,15.5 + parent: 2 + - uid: 17002 components: - type: Transform - pos: 417.5,351.5 - parent: 1 - - uid: 10227 + rot: -1.5707963267948966 rad + pos: -155.5,-16.5 + parent: 2 + - uid: 17015 components: - type: Transform - pos: 419.5,351.5 - parent: 1 - - uid: 10228 + rot: -1.5707963267948966 rad + pos: -72.5,-33.5 + parent: 2 + - uid: 17024 components: - type: Transform - pos: 421.5,351.5 - parent: 1 - - uid: 10229 + rot: 1.5707963267948966 rad + pos: -94.5,21.5 + parent: 2 + - uid: 17030 components: - type: Transform - pos: 420.5,351.5 - parent: 1 - - uid: 10230 + pos: -89.5,-13.5 + parent: 2 + - uid: 17047 components: - type: Transform - pos: 422.5,351.5 - parent: 1 - - uid: 10231 + pos: -130.5,-5.5 + parent: 2 + - uid: 17051 components: - type: Transform - pos: 424.5,351.5 - parent: 1 - - uid: 10232 + pos: -130.5,-6.5 + parent: 2 + - uid: 17068 components: - type: Transform - pos: 423.5,351.5 - parent: 1 - - uid: 10233 + rot: -1.5707963267948966 rad + pos: -72.5,-29.5 + parent: 2 + - uid: 17073 components: - type: Transform - pos: 424.5,352.5 - parent: 1 - - uid: 10234 + pos: -76.5,-48.5 + parent: 2 + - uid: 17079 components: - type: Transform - pos: 424.5,354.5 - parent: 1 - - uid: 10235 + pos: -76.5,-50.5 + parent: 2 + - uid: 17081 components: - type: Transform - pos: 424.5,355.5 - parent: 1 - - uid: 10236 + pos: -76.5,-51.5 + parent: 2 + - uid: 17098 components: - type: Transform - pos: 424.5,353.5 - parent: 1 - - uid: 10238 + pos: -76.5,-52.5 + parent: 2 + - uid: 17130 components: - type: Transform - pos: 417.5,362.5 - parent: 1 - - uid: 10239 + pos: -62.5,-65.5 + parent: 2 + - uid: 17133 components: - type: Transform - pos: 418.5,362.5 - parent: 1 - - uid: 10240 + pos: -76.5,-46.5 + parent: 2 + - uid: 17327 components: - type: Transform - pos: 419.5,362.5 - parent: 1 - - uid: 10241 + rot: -1.5707963267948966 rad + pos: -72.5,-34.5 + parent: 2 + - uid: 17331 components: - type: Transform - pos: 420.5,362.5 - parent: 1 - - uid: 10242 + rot: -1.5707963267948966 rad + pos: -154.5,-33.5 + parent: 2 + - uid: 17365 components: - type: Transform - pos: 421.5,362.5 - parent: 1 - - uid: 10243 + pos: -141.5,-59.5 + parent: 2 + - uid: 17366 components: - type: Transform - pos: 422.5,362.5 - parent: 1 - - uid: 10244 + pos: -141.5,-58.5 + parent: 2 + - uid: 17378 components: - type: Transform - pos: 423.5,362.5 - parent: 1 - - uid: 10245 + rot: -1.5707963267948966 rad + pos: -154.5,-27.5 + parent: 2 + - uid: 17379 components: - type: Transform - pos: 423.5,363.5 - parent: 1 - - uid: 10246 + rot: -1.5707963267948966 rad + pos: -154.5,-36.5 + parent: 2 + - uid: 17380 components: - type: Transform - pos: 423.5,364.5 - parent: 1 - - uid: 10247 + rot: -1.5707963267948966 rad + pos: -154.5,-37.5 + parent: 2 + - uid: 17405 components: - type: Transform - pos: 358.5,409.5 - parent: 1 - - uid: 10248 + rot: -1.5707963267948966 rad + pos: -154.5,-29.5 + parent: 2 + - uid: 17406 components: - type: Transform - pos: 362.5,409.5 - parent: 1 - - uid: 10249 + rot: -1.5707963267948966 rad + pos: -153.5,-27.5 + parent: 2 + - uid: 17410 components: - type: Transform - pos: 358.5,408.5 - parent: 1 - - uid: 10250 + rot: -1.5707963267948966 rad + pos: -154.5,-28.5 + parent: 2 + - uid: 17411 components: - type: Transform - pos: 358.5,407.5 - parent: 1 - - uid: 10251 + rot: -1.5707963267948966 rad + pos: -154.5,-31.5 + parent: 2 + - uid: 17412 components: - type: Transform - pos: 359.5,407.5 - parent: 1 - - uid: 10252 + rot: -1.5707963267948966 rad + pos: -154.5,-32.5 + parent: 2 + - uid: 17417 components: - type: Transform - pos: 361.5,407.5 - parent: 1 - - uid: 10253 + pos: -147.5,13.5 + parent: 2 + - uid: 17418 components: - type: Transform - pos: 360.5,407.5 - parent: 1 - - uid: 10254 + rot: -1.5707963267948966 rad + pos: -144.5,-27.5 + parent: 2 + - uid: 17430 components: - type: Transform - pos: 361.5,406.5 - parent: 1 - - uid: 10256 + rot: -1.5707963267948966 rad + pos: -142.5,-27.5 + parent: 2 + - uid: 17435 components: - type: Transform - pos: 422.5,374.5 - parent: 1 - - uid: 10257 + rot: -1.5707963267948966 rad + pos: -141.5,-27.5 + parent: 2 + - uid: 17450 components: - type: Transform - pos: 424.5,374.5 - parent: 1 - - uid: 10258 + rot: -1.5707963267948966 rad + pos: -151.5,-27.5 + parent: 2 + - uid: 17480 components: - type: Transform - pos: 423.5,374.5 - parent: 1 - - uid: 10259 + rot: -1.5707963267948966 rad + pos: -152.5,-27.5 + parent: 2 + - uid: 17481 components: - type: Transform - pos: 425.5,374.5 - parent: 1 - - uid: 10260 + rot: -1.5707963267948966 rad + pos: -150.5,-27.5 + parent: 2 + - uid: 17482 components: - type: Transform - pos: 426.5,374.5 - parent: 1 - - uid: 10261 + rot: -1.5707963267948966 rad + pos: -149.5,-27.5 + parent: 2 + - uid: 17532 components: - type: Transform - pos: 427.5,374.5 - parent: 1 - - uid: 10262 + rot: -1.5707963267948966 rad + pos: -154.5,-19.5 + parent: 2 + - uid: 17533 components: - type: Transform - pos: 428.5,374.5 - parent: 1 - - uid: 10263 + rot: -1.5707963267948966 rad + pos: -154.5,-20.5 + parent: 2 + - uid: 17841 components: - type: Transform - pos: 428.5,375.5 - parent: 1 - - uid: 10264 + rot: 3.141592653589793 rad + pos: -143.5,5.5 + parent: 2 + - uid: 17872 components: - type: Transform - pos: 428.5,376.5 - parent: 1 - - uid: 10665 + rot: -1.5707963267948966 rad + pos: -103.5,-26.5 + parent: 2 + - uid: 17990 components: - type: Transform - pos: 402.5,375.5 - parent: 1 - - uid: 10767 + pos: -76.5,-45.5 + parent: 2 + - uid: 17993 components: - type: Transform - pos: 436.5,407.5 - parent: 1 - - uid: 11515 + pos: -76.5,-47.5 + parent: 2 + - uid: 18043 components: - type: Transform - pos: 460.5,412.5 - parent: 1 - - uid: 11516 + pos: -48.5,-65.5 + parent: 2 + - uid: 18221 components: - type: Transform - pos: 461.5,412.5 - parent: 1 - - uid: 11517 + pos: -48.5,-64.5 + parent: 2 + - uid: 18357 components: - type: Transform - pos: 461.5,411.5 - parent: 1 - - uid: 11518 + pos: -76.5,-49.5 + parent: 2 + - uid: 18751 components: - type: Transform - pos: 459.5,410.5 - parent: 1 - - uid: 11519 + pos: -138.5,-14.5 + parent: 2 + - uid: 18756 components: - type: Transform - pos: 459.5,408.5 - parent: 1 - - uid: 11520 + pos: -133.5,-11.5 + parent: 2 + - uid: 18757 components: - type: Transform - pos: 449.5,416.5 - parent: 1 - - uid: 11521 + pos: -133.5,-12.5 + parent: 2 + - uid: 18758 components: - type: Transform - pos: 459.5,409.5 - parent: 1 - - uid: 11522 + pos: -133.5,-9.5 + parent: 2 + - uid: 18759 components: - type: Transform - pos: 460.5,408.5 - parent: 1 - - uid: 11523 + pos: -133.5,-8.5 + parent: 2 + - uid: 18780 components: - type: Transform - pos: 462.5,408.5 - parent: 1 - - uid: 11524 + pos: -92.5,-61.5 + parent: 2 + - uid: 18781 components: - type: Transform - pos: 463.5,408.5 - parent: 1 - - uid: 11525 + pos: -92.5,-63.5 + parent: 2 + - uid: 18796 components: - type: Transform - pos: 461.5,408.5 - parent: 1 - - uid: 11526 + rot: 3.141592653589793 rad + pos: -126.5,22.5 + parent: 2 + - uid: 18797 components: - type: Transform - pos: 464.5,408.5 - parent: 1 - - uid: 11527 + rot: 3.141592653589793 rad + pos: -129.5,22.5 + parent: 2 + - uid: 18798 components: - type: Transform - pos: 464.5,409.5 - parent: 1 - - uid: 11528 + rot: 3.141592653589793 rad + pos: -127.5,22.5 + parent: 2 + - uid: 18799 components: - type: Transform - pos: 464.5,407.5 - parent: 1 - - uid: 11529 + rot: 3.141592653589793 rad + pos: -130.5,22.5 + parent: 2 + - uid: 18805 components: - type: Transform - pos: 464.5,406.5 - parent: 1 - - uid: 11530 + rot: 3.141592653589793 rad + pos: -132.5,22.5 + parent: 2 + - uid: 18833 components: - type: Transform - pos: 449.5,418.5 - parent: 1 - - uid: 11531 + pos: -92.5,-62.5 + parent: 2 + - uid: 18863 components: - type: Transform - pos: 449.5,417.5 - parent: 1 - - uid: 11532 + pos: -148.5,13.5 + parent: 2 + - uid: 19091 components: - type: Transform - pos: 451.5,418.5 - parent: 1 - - uid: 11533 + rot: 3.141592653589793 rad + pos: -131.5,22.5 + parent: 2 + - uid: 19272 components: - type: Transform - pos: 450.5,418.5 - parent: 1 - - uid: 11534 + pos: -134.5,22.5 + parent: 2 + - uid: 19326 components: - type: Transform - pos: 452.5,418.5 - parent: 1 - - uid: 11535 + pos: -127.5,-22.5 + parent: 2 + - uid: 19404 components: - type: Transform - pos: 453.5,418.5 - parent: 1 - - uid: 11536 + rot: -1.5707963267948966 rad + pos: -72.5,-35.5 + parent: 2 + - uid: 19465 components: - type: Transform - pos: 453.5,419.5 - parent: 1 - - uid: 11537 + pos: -125.5,1.5 + parent: 2 + - uid: 19474 components: - type: Transform - pos: 451.5,420.5 - parent: 1 - - uid: 11538 + rot: -1.5707963267948966 rad + pos: -105.5,9.5 + parent: 2 + - uid: 19476 components: - type: Transform - pos: 451.5,419.5 - parent: 1 - - uid: 11539 + pos: -125.5,2.5 + parent: 2 + - uid: 19477 components: - type: Transform - pos: 451.5,421.5 - parent: 1 - - uid: 11540 + pos: -125.5,4.5 + parent: 2 + - uid: 19478 components: - type: Transform - pos: 452.5,421.5 - parent: 1 - - uid: 11541 + pos: -125.5,5.5 + parent: 2 + - uid: 19480 components: - type: Transform - pos: 453.5,421.5 - parent: 1 - - uid: 11542 + pos: -125.5,7.5 + parent: 2 + - uid: 19483 components: - type: Transform - pos: 451.5,422.5 - parent: 1 - - uid: 11543 + pos: -125.5,3.5 + parent: 2 + - uid: 19619 components: - type: Transform - pos: 451.5,423.5 - parent: 1 - - uid: 11544 + pos: -15.5,2.5 + parent: 2 + - uid: 19763 components: - type: Transform - pos: 450.5,423.5 - parent: 1 - - uid: 11545 + rot: 3.141592653589793 rad + pos: -102.5,5.5 + parent: 2 + - uid: 19820 components: - type: Transform - pos: 448.5,423.5 - parent: 1 - - uid: 11546 + pos: -85.5,-12.5 + parent: 2 + - uid: 19969 components: - type: Transform - pos: 449.5,423.5 - parent: 1 - - uid: 11547 + pos: -28.5,-2.5 + parent: 2 + - uid: 19973 components: - type: Transform - pos: 448.5,418.5 - parent: 1 - - uid: 11548 + rot: -1.5707963267948966 rad + pos: -105.5,5.5 + parent: 2 + - uid: 20102 components: - type: Transform - pos: 446.5,418.5 - parent: 1 - - uid: 11549 + rot: 3.141592653589793 rad + pos: -133.5,21.5 + parent: 2 + - uid: 20177 components: - type: Transform - pos: 445.5,418.5 - parent: 1 - - uid: 11550 + rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - uid: 20194 components: - type: Transform - pos: 447.5,418.5 - parent: 1 - - uid: 11551 + rot: 3.141592653589793 rad + pos: -104.5,-57.5 + parent: 2 + - uid: 20335 components: - type: Transform - pos: 444.5,418.5 - parent: 1 - - uid: 11552 + pos: -130.5,-4.5 + parent: 2 + - uid: 20440 components: - type: Transform - pos: 444.5,419.5 - parent: 1 - - uid: 11553 + pos: -137.5,-14.5 + parent: 2 + - uid: 20451 components: - type: Transform - pos: 444.5,420.5 - parent: 1 - - uid: 11554 + pos: -107.5,-45.5 + parent: 2 + - uid: 20453 components: - type: Transform - pos: 445.5,420.5 - parent: 1 - - uid: 11555 + pos: -109.5,-45.5 + parent: 2 + - uid: 20454 components: - type: Transform - pos: 443.5,418.5 - parent: 1 - - uid: 11556 + pos: -110.5,-45.5 + parent: 2 + - uid: 20486 components: - type: Transform - pos: 443.5,417.5 - parent: 1 - - uid: 11557 + rot: 3.141592653589793 rad + pos: -124.5,-37.5 + parent: 2 + - uid: 20487 components: - type: Transform - pos: 443.5,416.5 - parent: 1 - - uid: 11558 + rot: 3.141592653589793 rad + pos: -124.5,-35.5 + parent: 2 + - uid: 20488 components: - type: Transform - pos: 443.5,415.5 - parent: 1 - - uid: 11559 + rot: 3.141592653589793 rad + pos: -124.5,-36.5 + parent: 2 + - uid: 20489 components: - type: Transform - pos: 448.5,415.5 - parent: 1 - - uid: 11560 + rot: 3.141592653589793 rad + pos: -130.5,-37.5 + parent: 2 + - uid: 20490 components: - type: Transform - pos: 446.5,415.5 - parent: 1 - - uid: 11561 + rot: 3.141592653589793 rad + pos: -130.5,-35.5 + parent: 2 + - uid: 20491 components: - type: Transform - pos: 445.5,415.5 - parent: 1 - - uid: 11562 + rot: 3.141592653589793 rad + pos: -130.5,-36.5 + parent: 2 + - uid: 20944 components: - type: Transform - pos: 447.5,415.5 - parent: 1 - - uid: 11563 + pos: -92.5,-58.5 + parent: 2 + - uid: 20960 components: - type: Transform - pos: 445.5,414.5 - parent: 1 - - uid: 11564 + rot: 1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 2 + - uid: 20963 components: - type: Transform - pos: 445.5,413.5 - parent: 1 - - uid: 11565 + rot: 1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 2 + - uid: 20964 components: - type: Transform - pos: 446.5,413.5 - parent: 1 - - uid: 11566 + rot: 1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 2 + - uid: 20965 components: - type: Transform - pos: 448.5,411.5 - parent: 1 - - uid: 11567 + rot: 1.5707963267948966 rad + pos: -43.5,-22.5 + parent: 2 + - uid: 20966 components: - type: Transform - pos: 447.5,411.5 - parent: 1 - - uid: 11568 + rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - uid: 20967 components: - type: Transform - pos: 447.5,410.5 - parent: 1 - - uid: 11569 + rot: 1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 + - uid: 20968 components: - type: Transform - pos: 447.5,412.5 - parent: 1 - - uid: 11570 + rot: 1.5707963267948966 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 20969 components: - type: Transform - pos: 442.5,409.5 - parent: 1 - - uid: 11571 + rot: 1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 20970 components: - type: Transform - pos: 444.5,409.5 - parent: 1 - - uid: 11572 + rot: 1.5707963267948966 rad + pos: -43.5,-19.5 + parent: 2 + - uid: 20971 components: - type: Transform - pos: 445.5,409.5 - parent: 1 - - uid: 11573 + rot: 1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 2 + - uid: 20972 components: - type: Transform - pos: 443.5,409.5 - parent: 1 - - uid: 11574 + rot: 1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 2 + - uid: 20973 components: - type: Transform - pos: 440.5,413.5 - parent: 1 - - uid: 11575 + rot: 1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - uid: 20974 components: - type: Transform - pos: 440.5,414.5 - parent: 1 - - uid: 11576 + rot: 1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 2 + - uid: 20975 components: - type: Transform - pos: 441.5,414.5 - parent: 1 - - uid: 11577 + rot: 1.5707963267948966 rad + pos: -43.5,-25.5 + parent: 2 + - uid: 20976 components: - type: Transform - pos: 436.5,409.5 - parent: 1 - - uid: 11578 + rot: 1.5707963267948966 rad + pos: -43.5,-26.5 + parent: 2 + - uid: 20977 components: - type: Transform - pos: 437.5,409.5 - parent: 1 - - uid: 11581 + rot: 1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - uid: 20978 components: - type: Transform - pos: 436.5,406.5 - parent: 1 - - uid: 11582 + rot: 1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 + - uid: 20979 components: - type: Transform - pos: 293.5,393.5 - parent: 1 - - uid: 11583 + rot: 1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 + - uid: 20980 components: - type: Transform - pos: 450.5,402.5 - parent: 1 - - uid: 11584 + rot: 1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 20981 components: - type: Transform - pos: 453.5,402.5 - parent: 1 - - uid: 11585 + rot: 1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - uid: 20982 components: - type: Transform - pos: 452.5,402.5 - parent: 1 - - uid: 11586 + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 20983 components: - type: Transform - pos: 453.5,401.5 - parent: 1 - - uid: 11587 + rot: 1.5707963267948966 rad + pos: -49.5,-32.5 + parent: 2 + - uid: 20984 components: - type: Transform - pos: 453.5,400.5 - parent: 1 - - uid: 11588 + rot: 1.5707963267948966 rad + pos: -49.5,-34.5 + parent: 2 + - uid: 20985 components: - type: Transform - pos: 454.5,402.5 - parent: 1 - - uid: 11589 + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 20986 components: - type: Transform - pos: 456.5,402.5 - parent: 1 - - uid: 11590 + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 + parent: 2 + - uid: 20987 components: - type: Transform - pos: 457.5,402.5 - parent: 1 - - uid: 11591 + rot: 1.5707963267948966 rad + pos: -49.5,-37.5 + parent: 2 + - uid: 20988 components: - type: Transform - pos: 458.5,402.5 - parent: 1 - - uid: 11592 + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 + parent: 2 + - uid: 20989 components: - type: Transform - pos: 455.5,402.5 - parent: 1 - - uid: 11593 + rot: 1.5707963267948966 rad + pos: -49.5,-39.5 + parent: 2 + - uid: 20990 components: - type: Transform - pos: 458.5,401.5 - parent: 1 - - uid: 11594 + rot: 1.5707963267948966 rad + pos: -49.5,-40.5 + parent: 2 + - uid: 20991 components: - type: Transform - pos: 458.5,400.5 - parent: 1 - - uid: 11595 + rot: 1.5707963267948966 rad + pos: -49.5,-33.5 + parent: 2 + - uid: 20992 components: - type: Transform - pos: 457.5,400.5 - parent: 1 - - uid: 11596 + rot: 1.5707963267948966 rad + pos: -48.5,-40.5 + parent: 2 + - uid: 20993 components: - type: Transform - pos: 459.5,400.5 - parent: 1 - - uid: 11597 + rot: 1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 20994 components: - type: Transform - pos: 459.5,402.5 - parent: 1 - - uid: 11598 + rot: 1.5707963267948966 rad + pos: -45.5,-40.5 + parent: 2 + - uid: 20995 components: - type: Transform - pos: 461.5,402.5 - parent: 1 - - uid: 11599 + rot: 1.5707963267948966 rad + pos: -44.5,-40.5 + parent: 2 + - uid: 20996 components: - type: Transform - pos: 460.5,402.5 - parent: 1 - - uid: 11600 + rot: 1.5707963267948966 rad + pos: -43.5,-40.5 + parent: 2 + - uid: 20997 components: - type: Transform - pos: 461.5,403.5 - parent: 1 - - uid: 11601 + rot: 1.5707963267948966 rad + pos: -46.5,-40.5 + parent: 2 + - uid: 21015 components: - type: Transform - pos: 458.5,415.5 - parent: 1 - - uid: 11602 + rot: 3.141592653589793 rad + pos: -42.5,-49.5 + parent: 2 + - uid: 21016 components: - type: Transform - pos: 457.5,415.5 - parent: 1 - - uid: 11603 + rot: 3.141592653589793 rad + pos: -42.5,-50.5 + parent: 2 + - uid: 21017 components: - type: Transform - pos: 457.5,414.5 - parent: 1 - - uid: 11604 + rot: 3.141592653589793 rad + pos: -42.5,-51.5 + parent: 2 + - uid: 21018 components: - type: Transform - pos: 454.5,415.5 - parent: 1 - - uid: 11605 + rot: 3.141592653589793 rad + pos: -42.5,-52.5 + parent: 2 + - uid: 21019 components: - type: Transform - pos: 454.5,414.5 - parent: 1 - - uid: 11770 + rot: 3.141592653589793 rad + pos: -42.5,-53.5 + parent: 2 + - uid: 21020 components: - type: Transform - pos: 294.5,381.5 - parent: 1 - - uid: 11772 + rot: 3.141592653589793 rad + pos: -42.5,-54.5 + parent: 2 + - uid: 21021 components: - type: Transform - pos: 295.5,381.5 - parent: 1 - - uid: 11773 + rot: 3.141592653589793 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 21022 components: - type: Transform - pos: 293.5,384.5 - parent: 1 - - uid: 11774 + rot: 3.141592653589793 rad + pos: -42.5,-56.5 + parent: 2 + - uid: 21023 components: - type: Transform - pos: 293.5,385.5 - parent: 1 - - uid: 11775 + rot: 3.141592653589793 rad + pos: -42.5,-58.5 + parent: 2 + - uid: 21024 components: - type: Transform - pos: 293.5,386.5 - parent: 1 - - uid: 11776 + rot: 3.141592653589793 rad + pos: -42.5,-59.5 + parent: 2 + - uid: 21025 components: - type: Transform - pos: 293.5,387.5 - parent: 1 - - uid: 11777 + rot: 3.141592653589793 rad + pos: -42.5,-57.5 + parent: 2 + - uid: 21026 components: - type: Transform - pos: 293.5,388.5 - parent: 1 - - uid: 11778 + rot: 3.141592653589793 rad + pos: -42.5,-40.5 + parent: 2 + - uid: 21027 components: - type: Transform - pos: 293.5,389.5 - parent: 1 - - uid: 11779 + rot: 3.141592653589793 rad + pos: -42.5,-41.5 + parent: 2 + - uid: 21028 components: - type: Transform - pos: 293.5,390.5 - parent: 1 - - uid: 11780 + rot: 3.141592653589793 rad + pos: -42.5,-42.5 + parent: 2 + - uid: 21029 components: - type: Transform - pos: 293.5,391.5 - parent: 1 - - uid: 11781 + rot: 3.141592653589793 rad + pos: -42.5,-44.5 + parent: 2 + - uid: 21030 components: - type: Transform - pos: 293.5,392.5 - parent: 1 - - uid: 11782 + rot: 3.141592653589793 rad + pos: -42.5,-45.5 + parent: 2 + - uid: 21031 components: - type: Transform - pos: 293.5,394.5 - parent: 1 - - uid: 11783 + rot: 3.141592653589793 rad + pos: -42.5,-46.5 + parent: 2 + - uid: 21032 components: - type: Transform - pos: 293.5,395.5 - parent: 1 - - uid: 11784 + rot: 3.141592653589793 rad + pos: -42.5,-47.5 + parent: 2 + - uid: 21033 components: - type: Transform - pos: 284.5,380.5 - parent: 1 - - uid: 11785 + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 21034 components: - type: Transform - pos: 292.5,395.5 - parent: 1 - - uid: 11786 + rot: 3.141592653589793 rad + pos: -42.5,-43.5 + parent: 2 + - uid: 21072 components: - type: Transform - pos: 291.5,395.5 - parent: 1 - - uid: 11787 + pos: -94.5,18.5 + parent: 2 + - uid: 21073 components: - type: Transform - pos: 290.5,395.5 - parent: 1 - - uid: 11788 + pos: -94.5,17.5 + parent: 2 + - uid: 21074 components: - type: Transform - pos: 289.5,395.5 - parent: 1 - - uid: 11789 + pos: -94.5,16.5 + parent: 2 + - uid: 21075 components: - type: Transform - pos: 287.5,395.5 - parent: 1 - - uid: 11790 + pos: -94.5,15.5 + parent: 2 + - uid: 21076 components: - type: Transform - pos: 286.5,395.5 - parent: 1 - - uid: 11791 + pos: -94.5,14.5 + parent: 2 + - uid: 21078 components: - type: Transform - pos: 285.5,395.5 - parent: 1 - - uid: 11792 + pos: -89.5,15.5 + parent: 2 + - uid: 21079 components: - type: Transform - pos: 284.5,395.5 - parent: 1 - - uid: 11793 + pos: -88.5,15.5 + parent: 2 + - uid: 21080 components: - type: Transform - pos: 283.5,395.5 - parent: 1 - - uid: 11794 + pos: -87.5,15.5 + parent: 2 + - uid: 21081 components: - type: Transform - pos: 282.5,395.5 - parent: 1 - - uid: 11795 + pos: -86.5,15.5 + parent: 2 + - uid: 21082 components: - type: Transform - pos: 281.5,395.5 - parent: 1 - - uid: 11796 + pos: -85.5,15.5 + parent: 2 + - uid: 21083 components: - type: Transform - pos: 280.5,395.5 - parent: 1 - - uid: 11797 + pos: -85.5,14.5 + parent: 2 + - uid: 21084 components: - type: Transform - pos: 279.5,395.5 - parent: 1 - - uid: 11798 + pos: -93.5,24.5 + parent: 2 + - uid: 21248 components: - type: Transform - pos: 278.5,395.5 - parent: 1 - - uid: 11799 + pos: -6.5,6.5 + parent: 2 + - uid: 21249 components: - type: Transform - pos: 277.5,395.5 - parent: 1 - - uid: 11800 + pos: -4.5,6.5 + parent: 2 + - uid: 21250 components: - type: Transform - pos: 288.5,395.5 - parent: 1 - - uid: 11801 + pos: -5.5,6.5 + parent: 2 + - uid: 21251 components: - type: Transform - pos: 277.5,394.5 - parent: 1 - - uid: 11802 + pos: -3.5,6.5 + parent: 2 + - uid: 21252 components: - type: Transform - pos: 277.5,392.5 - parent: 1 - - uid: 11803 + pos: -2.5,6.5 + parent: 2 + - uid: 21253 components: - type: Transform - pos: 277.5,391.5 - parent: 1 - - uid: 11804 + pos: -1.5,6.5 + parent: 2 + - uid: 21254 components: - type: Transform - pos: 277.5,390.5 - parent: 1 - - uid: 11805 + pos: -0.5,6.5 + parent: 2 + - uid: 21256 components: - type: Transform - pos: 277.5,389.5 - parent: 1 - - uid: 11806 + pos: -4.5,-0.5 + parent: 2 + - uid: 21257 components: - type: Transform - pos: 277.5,388.5 - parent: 1 - - uid: 11807 + pos: -4.5,0.5 + parent: 2 + - uid: 21258 components: - type: Transform - pos: 277.5,387.5 - parent: 1 - - uid: 11808 + pos: -4.5,2.5 + parent: 2 + - uid: 21259 components: - type: Transform - pos: 277.5,386.5 - parent: 1 - - uid: 11809 + pos: -4.5,3.5 + parent: 2 + - uid: 21260 components: - type: Transform - pos: 277.5,393.5 - parent: 1 - - uid: 11810 + pos: -4.5,4.5 + parent: 2 + - uid: 21261 components: - type: Transform - pos: 277.5,385.5 - parent: 1 - - uid: 11811 + pos: -4.5,5.5 + parent: 2 + - uid: 21262 components: - type: Transform - pos: 277.5,383.5 - parent: 1 - - uid: 11812 + pos: -4.5,1.5 + parent: 2 + - uid: 21263 components: - type: Transform - pos: 277.5,384.5 - parent: 1 - - uid: 11813 + pos: -0.5,-0.5 + parent: 2 + - uid: 21264 components: - type: Transform - pos: 277.5,382.5 - parent: 1 - - uid: 11814 + pos: -0.5,0.5 + parent: 2 + - uid: 21265 components: - type: Transform - pos: 277.5,381.5 - parent: 1 - - uid: 11815 + pos: -0.5,2.5 + parent: 2 + - uid: 21266 components: - type: Transform - pos: 277.5,380.5 - parent: 1 - - uid: 11816 + pos: -0.5,3.5 + parent: 2 + - uid: 21267 components: - type: Transform - pos: 277.5,379.5 - parent: 1 - - uid: 11817 + pos: -0.5,4.5 + parent: 2 + - uid: 21268 components: - type: Transform - pos: 278.5,379.5 - parent: 1 - - uid: 11818 + pos: -0.5,5.5 + parent: 2 + - uid: 21269 components: - type: Transform - pos: 280.5,379.5 - parent: 1 - - uid: 11819 + pos: -0.5,1.5 + parent: 2 + - uid: 21270 components: - type: Transform - pos: 281.5,379.5 - parent: 1 - - uid: 11820 + pos: -4.5,15.5 + parent: 2 + - uid: 21271 components: - type: Transform - pos: 282.5,379.5 - parent: 1 - - uid: 11821 + pos: -4.5,18.5 + parent: 2 + - uid: 21272 components: - type: Transform - pos: 283.5,379.5 - parent: 1 - - uid: 11822 + pos: -4.5,19.5 + parent: 2 + - uid: 21273 components: - type: Transform - pos: 284.5,379.5 - parent: 1 - - uid: 11823 + pos: -4.5,21.5 + parent: 2 + - uid: 21274 components: - type: Transform - pos: 286.5,379.5 - parent: 1 - - uid: 11824 + pos: -4.5,20.5 + parent: 2 + - uid: 21275 components: - type: Transform - pos: 287.5,379.5 - parent: 1 - - uid: 11825 + pos: -4.5,22.5 + parent: 2 + - uid: 21276 components: - type: Transform - pos: 288.5,379.5 - parent: 1 - - uid: 11826 + pos: -4.5,16.5 + parent: 2 + - uid: 21277 components: - type: Transform - pos: 289.5,379.5 - parent: 1 - - uid: 11827 + pos: -4.5,7.5 + parent: 2 + - uid: 21278 components: - type: Transform - pos: 290.5,379.5 - parent: 1 - - uid: 11828 + pos: -4.5,8.5 + parent: 2 + - uid: 21279 components: - type: Transform - pos: 291.5,379.5 - parent: 1 - - uid: 11829 + pos: -4.5,10.5 + parent: 2 + - uid: 21280 components: - type: Transform - pos: 292.5,379.5 - parent: 1 - - uid: 11830 + pos: -4.5,11.5 + parent: 2 + - uid: 21281 components: - type: Transform - pos: 293.5,379.5 - parent: 1 - - uid: 11831 + pos: -4.5,12.5 + parent: 2 + - uid: 21282 components: - type: Transform - pos: 279.5,379.5 - parent: 1 - - uid: 11832 + pos: -4.5,13.5 + parent: 2 + - uid: 21283 components: - type: Transform - pos: 293.5,380.5 - parent: 1 - - uid: 11833 + pos: -4.5,14.5 + parent: 2 + - uid: 21284 components: - type: Transform - pos: 285.5,380.5 - parent: 1 - - uid: 11834 + pos: -4.5,9.5 + parent: 2 + - uid: 21285 components: - type: Transform - pos: 286.5,380.5 - parent: 1 - - uid: 12247 + pos: -4.5,17.5 + parent: 2 + - uid: 21286 components: - type: Transform - pos: 352.5,384.5 - parent: 1 - - uid: 13125 + pos: -0.5,22.5 + parent: 2 + - uid: 21287 components: - type: Transform - pos: 373.5,398.5 - parent: 1 - - uid: 14793 + pos: -0.5,21.5 + parent: 2 + - uid: 21288 components: - type: Transform - pos: 308.5,420.5 - parent: 1 - - uid: 14794 + pos: -0.5,20.5 + parent: 2 + - uid: 21289 components: - type: Transform - pos: 307.5,420.5 - parent: 1 - - uid: 14795 + pos: -0.5,18.5 + parent: 2 + - uid: 21290 components: - type: Transform - pos: 307.5,421.5 - parent: 1 - - uid: 14796 + pos: -0.5,17.5 + parent: 2 + - uid: 21291 components: - type: Transform - pos: 307.5,422.5 - parent: 1 - - uid: 14797 + pos: -0.5,16.5 + parent: 2 + - uid: 21292 components: - type: Transform - pos: 308.5,422.5 - parent: 1 - - uid: 14798 + pos: -0.5,15.5 + parent: 2 + - uid: 21293 components: - type: Transform - pos: 307.5,423.5 - parent: 1 - - uid: 14799 + pos: -0.5,14.5 + parent: 2 + - uid: 21294 components: - type: Transform - pos: 307.5,424.5 - parent: 1 - - uid: 14800 + pos: -0.5,19.5 + parent: 2 + - uid: 21295 components: - type: Transform - pos: 306.5,424.5 - parent: 1 - - uid: 14801 + pos: -0.5,13.5 + parent: 2 + - uid: 21296 components: - type: Transform - pos: 304.5,424.5 - parent: 1 - - uid: 14802 + pos: -0.5,11.5 + parent: 2 + - uid: 21297 components: - type: Transform - pos: 305.5,424.5 - parent: 1 - - uid: 14803 + pos: -0.5,10.5 + parent: 2 + - uid: 21298 components: - type: Transform - pos: 304.5,423.5 - parent: 1 - - uid: 14804 + pos: -0.5,9.5 + parent: 2 + - uid: 21299 components: - type: Transform - pos: 304.5,421.5 - parent: 1 - - uid: 14805 + pos: -0.5,8.5 + parent: 2 + - uid: 21300 components: - type: Transform - pos: 304.5,420.5 - parent: 1 - - uid: 14806 + pos: -0.5,7.5 + parent: 2 + - uid: 21301 components: - type: Transform - pos: 304.5,422.5 - parent: 1 - - uid: 14807 + pos: -0.5,12.5 + parent: 2 + - uid: 21392 components: - type: Transform - pos: 308.5,424.5 - parent: 1 - - uid: 14808 + pos: -133.5,12.5 + parent: 2 + - uid: 21393 components: - type: Transform - pos: 309.5,424.5 - parent: 1 - - uid: 14809 + pos: -133.5,14.5 + parent: 2 + - uid: 21394 components: - type: Transform - pos: 310.5,424.5 - parent: 1 - - uid: 14810 + pos: -133.5,8.5 + parent: 2 + - uid: 21395 components: - type: Transform - pos: 310.5,423.5 - parent: 1 - - uid: 14811 + rot: 3.141592653589793 rad + pos: -128.5,22.5 + parent: 2 + - uid: 21396 components: - type: Transform - pos: 310.5,421.5 - parent: 1 - - uid: 14812 + pos: -133.5,15.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 310.5,420.5 - parent: 1 - - uid: 14813 + pos: -133.5,16.5 + parent: 2 + - uid: 21399 components: - type: Transform - pos: 310.5,422.5 - parent: 1 - - uid: 14814 + pos: -133.5,3.5 + parent: 2 + - uid: 21400 components: - type: Transform - pos: 307.5,419.5 - parent: 1 - - uid: 14815 + pos: -133.5,5.5 + parent: 2 + - uid: 21401 components: - type: Transform - pos: 307.5,417.5 - parent: 1 - - uid: 14816 + pos: -133.5,4.5 + parent: 2 + - uid: 21402 components: - type: Transform - pos: 307.5,418.5 - parent: 1 - - uid: 14817 + pos: -133.5,6.5 + parent: 2 + - uid: 21403 components: - type: Transform - pos: 307.5,416.5 - parent: 1 - - uid: 14818 + pos: -133.5,7.5 + parent: 2 + - uid: 21404 components: - type: Transform - pos: 307.5,415.5 - parent: 1 - - uid: 14819 + pos: -133.5,9.5 + parent: 2 + - uid: 21405 components: - type: Transform - pos: 307.5,414.5 - parent: 1 - - uid: 14820 + pos: -133.5,1.5 + parent: 2 + - uid: 21406 components: - type: Transform - pos: 307.5,413.5 - parent: 1 - - uid: 14821 + pos: -133.5,11.5 + parent: 2 + - uid: 21407 components: - type: Transform - pos: 307.5,412.5 - parent: 1 - - uid: 14822 + pos: -133.5,10.5 + parent: 2 + - uid: 21408 components: - type: Transform - pos: 306.5,413.5 - parent: 1 - - uid: 14823 + pos: -133.5,13.5 + parent: 2 + - uid: 21409 components: - type: Transform - pos: 305.5,413.5 - parent: 1 - - uid: 14824 + pos: -133.5,-6.5 + parent: 2 + - uid: 21410 components: - type: Transform - pos: 303.5,413.5 - parent: 1 - - uid: 14825 + pos: -133.5,-5.5 + parent: 2 + - uid: 21411 components: - type: Transform - pos: 304.5,413.5 - parent: 1 - - uid: 14826 + pos: -133.5,-3.5 + parent: 2 + - uid: 21412 components: - type: Transform - pos: 303.5,412.5 - parent: 1 - - uid: 14827 + pos: -133.5,-2.5 + parent: 2 + - uid: 21413 components: - type: Transform - pos: 308.5,413.5 - parent: 1 - - uid: 14828 + pos: -133.5,-1.5 + parent: 2 + - uid: 21414 components: - type: Transform - pos: 310.5,413.5 - parent: 1 - - uid: 14829 + pos: -133.5,-0.5 + parent: 2 + - uid: 21415 components: - type: Transform - pos: 311.5,413.5 - parent: 1 - - uid: 14830 + pos: -133.5,-4.5 + parent: 2 + - uid: 21417 components: - type: Transform - pos: 309.5,413.5 - parent: 1 - - uid: 14831 + pos: -133.5,0.5 + parent: 2 + - uid: 21428 components: - type: Transform - pos: 310.5,412.5 - parent: 1 - - uid: 14832 + pos: -126.5,23.5 + parent: 2 + - uid: 21429 components: - type: Transform - pos: 310.5,410.5 - parent: 1 - - uid: 14833 + pos: -126.5,24.5 + parent: 2 + - uid: 21430 components: - type: Transform - pos: 310.5,411.5 - parent: 1 - - uid: 14834 + pos: -126.5,25.5 + parent: 2 + - uid: 21432 components: - type: Transform - pos: 311.5,410.5 - parent: 1 - - uid: 14835 + pos: -116.5,25.5 + parent: 2 + - uid: 21433 components: - type: Transform - pos: 312.5,410.5 - parent: 1 - - uid: 14836 + pos: -115.5,25.5 + parent: 2 + - uid: 21434 components: - type: Transform - pos: 313.5,410.5 - parent: 1 - - uid: 14837 + pos: -114.5,25.5 + parent: 2 + - uid: 21435 components: - type: Transform - pos: 314.5,410.5 - parent: 1 - - uid: 14838 + pos: -113.5,25.5 + parent: 2 + - uid: 21436 components: - type: Transform - pos: 310.5,409.5 - parent: 1 - - uid: 14839 + pos: -112.5,25.5 + parent: 2 + - uid: 21437 components: - type: Transform - pos: 310.5,408.5 - parent: 1 - - uid: 14840 + pos: -111.5,25.5 + parent: 2 + - uid: 21438 components: - type: Transform - pos: 311.5,408.5 - parent: 1 - - uid: 14841 + pos: -110.5,25.5 + parent: 2 + - uid: 21439 components: - type: Transform - pos: 310.5,407.5 - parent: 1 - - uid: 14842 + pos: -109.5,25.5 + parent: 2 + - uid: 21440 components: - type: Transform - pos: 309.5,407.5 - parent: 1 - - uid: 14843 + pos: -108.5,25.5 + parent: 2 + - uid: 21441 components: - type: Transform - pos: 309.5,406.5 - parent: 1 - - uid: 14844 + pos: -107.5,25.5 + parent: 2 + - uid: 21445 components: - type: Transform - pos: 308.5,407.5 - parent: 1 - - uid: 14845 + pos: -125.5,25.5 + parent: 2 + - uid: 21446 components: - type: Transform - pos: 307.5,407.5 - parent: 1 - - uid: 14846 + pos: -124.5,25.5 + parent: 2 + - uid: 21447 components: - type: Transform - pos: 306.5,407.5 - parent: 1 - - uid: 14847 + pos: -123.5,25.5 + parent: 2 + - uid: 21448 components: - type: Transform - pos: 305.5,407.5 - parent: 1 - - uid: 14848 + pos: -122.5,25.5 + parent: 2 + - uid: 21449 components: - type: Transform - pos: 304.5,407.5 - parent: 1 - - uid: 14849 + pos: -121.5,25.5 + parent: 2 + - uid: 21450 components: - type: Transform - pos: 303.5,407.5 - parent: 1 - - uid: 14850 + pos: -120.5,25.5 + parent: 2 + - uid: 21451 components: - type: Transform - pos: 303.5,406.5 - parent: 1 - - uid: 14851 + pos: -119.5,25.5 + parent: 2 + - uid: 21452 components: - type: Transform - pos: 304.5,408.5 - parent: 1 - - uid: 14852 + pos: -118.5,25.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: 303.5,409.5 - parent: 1 - - uid: 14854 + pos: -117.5,25.5 + parent: 2 + - uid: 21552 components: - type: Transform - pos: 304.5,409.5 - parent: 1 - - uid: 14927 + rot: 3.141592653589793 rad + pos: -29.5,-58.5 + parent: 2 + - uid: 21555 components: - type: Transform - pos: 326.5,406.5 - parent: 1 - - uid: 14928 + pos: -15.5,-54.5 + parent: 2 + - uid: 21556 components: - type: Transform - pos: 326.5,407.5 - parent: 1 - - uid: 14929 + pos: -15.5,-45.5 + parent: 2 + - uid: 21557 components: - type: Transform - pos: 326.5,404.5 - parent: 1 - - uid: 14930 + pos: -15.5,-48.5 + parent: 2 + - uid: 21558 components: - type: Transform - pos: 326.5,403.5 - parent: 1 - - uid: 16137 + pos: -15.5,-47.5 + parent: 2 + - uid: 21559 components: - type: Transform - pos: 1.5,5.5 - parent: 16114 - - uid: 16138 + pos: -15.5,-49.5 + parent: 2 + - uid: 21560 components: - type: Transform - pos: -2.5,5.5 - parent: 16114 - - uid: 16139 + pos: -15.5,-50.5 + parent: 2 + - uid: 21561 components: - type: Transform - pos: -3.5,5.5 - parent: 16114 - - uid: 16140 + pos: -15.5,-52.5 + parent: 2 + - uid: 21562 components: - type: Transform - pos: -3.5,4.5 - parent: 16114 - - uid: 16141 + pos: -15.5,-53.5 + parent: 2 + - uid: 21563 components: - type: Transform - pos: -4.5,4.5 - parent: 16114 - - uid: 16142 + pos: -15.5,-51.5 + parent: 2 + - uid: 21564 components: - type: Transform - pos: -4.5,3.5 - parent: 16114 - - uid: 16143 + pos: -15.5,-55.5 + parent: 2 + - uid: 21566 components: - type: Transform - pos: -3.5,3.5 - parent: 16114 - - uid: 16144 + pos: -15.5,-37.5 + parent: 2 + - uid: 21567 components: - type: Transform - pos: -2.5,3.5 - parent: 16114 - - uid: 16145 + pos: -15.5,-38.5 + parent: 2 + - uid: 21568 components: - type: Transform - pos: -2.5,2.5 - parent: 16114 - - uid: 16146 + pos: -15.5,-39.5 + parent: 2 + - uid: 21569 components: - type: Transform - pos: -2.5,1.5 - parent: 16114 - - uid: 16147 + pos: -15.5,-40.5 + parent: 2 + - uid: 21570 components: - type: Transform - pos: -1.5,5.5 - parent: 16114 - - uid: 16148 + pos: -15.5,-41.5 + parent: 2 + - uid: 21571 components: - type: Transform - pos: -0.5,4.5 - parent: 16114 - - uid: 16149 + pos: -15.5,-42.5 + parent: 2 + - uid: 21572 components: - type: Transform - pos: -0.5,5.5 - parent: 16114 - - uid: 16150 + pos: -15.5,-43.5 + parent: 2 + - uid: 21574 components: - type: Transform - pos: 0.5,4.5 - parent: 16114 - - uid: 16151 + pos: -15.5,-30.5 + parent: 2 + - uid: 21575 components: - type: Transform - pos: 1.5,4.5 - parent: 16114 - - uid: 16152 + pos: -15.5,-46.5 + parent: 2 + - uid: 21576 components: - type: Transform - pos: 2.5,4.5 - parent: 16114 - - uid: 16153 + pos: -15.5,-27.5 + parent: 2 + - uid: 21577 components: - type: Transform - pos: 2.5,3.5 - parent: 16114 - - uid: 16154 + pos: -15.5,-26.5 + parent: 2 + - uid: 21578 components: - type: Transform - pos: 2.5,2.5 - parent: 16114 - - uid: 16270 + pos: -15.5,-28.5 + parent: 2 + - uid: 21579 components: - type: Transform - pos: 407.5,367.5 - parent: 1 - - uid: 17556 + pos: -15.5,-29.5 + parent: 2 + - uid: 21580 components: - type: Transform - pos: 408.5,367.5 - parent: 1 - - uid: 17757 + pos: -15.5,-31.5 + parent: 2 + - uid: 21581 components: - type: Transform - pos: 500.5,385.5 - parent: 1 - - uid: 17759 + pos: -15.5,-32.5 + parent: 2 + - uid: 21582 components: - type: Transform - pos: 505.5,386.5 - parent: 1 - - uid: 17760 + pos: -15.5,-33.5 + parent: 2 + - uid: 21583 components: - type: Transform - pos: 505.5,388.5 - parent: 1 - - uid: 17768 + pos: -15.5,-34.5 + parent: 2 + - uid: 21584 components: - type: Transform - pos: 506.5,386.5 - parent: 1 - - uid: 17769 + pos: -15.5,-35.5 + parent: 2 + - uid: 21585 components: - type: Transform - pos: 508.5,386.5 - parent: 1 - - uid: 17770 + pos: -15.5,-36.5 + parent: 2 + - uid: 21586 components: - type: Transform - pos: 505.5,383.5 - parent: 1 - - uid: 17776 + pos: -15.5,-17.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: 502.5,382.5 - parent: 1 - - uid: 17778 + pos: -15.5,-19.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: 503.5,382.5 - parent: 1 - - uid: 17779 + pos: -15.5,-20.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: 507.5,386.5 - parent: 1 - - uid: 17780 + pos: -15.5,-21.5 + parent: 2 + - uid: 21590 components: - type: Transform - pos: 509.5,386.5 - parent: 1 - - uid: 17787 + pos: -15.5,-22.5 + parent: 2 + - uid: 21591 components: - type: Transform - pos: 503.5,384.5 - parent: 1 - - uid: 17788 + pos: -15.5,-23.5 + parent: 2 + - uid: 21592 components: - type: Transform - pos: 510.5,384.5 - parent: 1 - - uid: 17789 + pos: -15.5,-24.5 + parent: 2 + - uid: 21593 components: - type: Transform - pos: 510.5,386.5 - parent: 1 - - uid: 17800 + pos: -15.5,-25.5 + parent: 2 + - uid: 21594 components: - type: Transform - pos: 503.5,383.5 - parent: 1 - - uid: 17801 + pos: -15.5,-18.5 + parent: 2 + - uid: 21602 components: - type: Transform - pos: 510.5,385.5 - parent: 1 - - uid: 17802 + pos: -40.5,-59.5 + parent: 2 + - uid: 21603 components: - type: Transform - pos: 505.5,389.5 - parent: 1 - - uid: 17805 + pos: -41.5,-59.5 + parent: 2 + - uid: 21604 components: - type: Transform - pos: 511.5,384.5 - parent: 1 - - uid: 17808 + pos: -31.5,-59.5 + parent: 2 + - uid: 21605 components: - type: Transform - pos: 501.5,385.5 - parent: 1 - - uid: 17809 + pos: -20.5,-59.5 + parent: 2 + - uid: 21606 components: - type: Transform - pos: 506.5,389.5 - parent: 1 - - uid: 17810 + pos: -21.5,-59.5 + parent: 2 + - uid: 21607 components: - type: Transform - pos: 505.5,387.5 - parent: 1 - - uid: 17811 + pos: -22.5,-59.5 + parent: 2 + - uid: 21609 components: - type: Transform - pos: 507.5,389.5 - parent: 1 - - uid: 17818 + pos: -25.5,-59.5 + parent: 2 + - uid: 21610 components: - type: Transform - pos: 503.5,385.5 - parent: 1 - - uid: 17819 + pos: -26.5,-59.5 + parent: 2 + - uid: 21611 components: - type: Transform - pos: 504.5,385.5 - parent: 1 - - uid: 17833 + pos: -27.5,-59.5 + parent: 2 + - uid: 21612 components: - type: Transform - pos: 505.5,384.5 - parent: 1 - - uid: 17886 + pos: -28.5,-59.5 + parent: 2 + - uid: 21613 components: - type: Transform - pos: 501.5,381.5 - parent: 1 - - uid: 17896 + pos: -24.5,-59.5 + parent: 2 + - uid: 21615 components: - type: Transform - pos: 505.5,385.5 - parent: 1 - - uid: 17903 + pos: -32.5,-59.5 + parent: 2 + - uid: 21616 components: - type: Transform - pos: 501.5,382.5 - parent: 1 - - uid: 17923 + pos: -30.5,-59.5 + parent: 2 + - uid: 21617 components: - type: Transform - pos: 502.5,385.5 - parent: 1 - - uid: 17960 + pos: -33.5,-59.5 + parent: 2 + - uid: 21618 components: - type: Transform - pos: 499.5,385.5 - parent: 1 - - uid: 18063 + pos: -34.5,-59.5 + parent: 2 + - uid: 21619 components: - type: Transform - pos: 317.5,411.5 - parent: 1 - - uid: 18064 + pos: -35.5,-59.5 + parent: 2 + - uid: 21620 components: - type: Transform - pos: 317.5,412.5 - parent: 1 - - uid: 18065 + pos: -36.5,-59.5 + parent: 2 + - uid: 21621 components: - type: Transform - pos: 318.5,412.5 - parent: 1 - - uid: 18066 + pos: -37.5,-59.5 + parent: 2 + - uid: 21622 components: - type: Transform - pos: 318.5,414.5 - parent: 1 - - uid: 18067 + pos: -38.5,-59.5 + parent: 2 + - uid: 21623 components: - type: Transform - pos: 318.5,415.5 - parent: 1 - - uid: 18068 + pos: -39.5,-59.5 + parent: 2 + - uid: 21624 components: - type: Transform - pos: 318.5,413.5 - parent: 1 - - uid: 18069 + pos: -42.5,-60.5 + parent: 2 + - uid: 21625 components: - type: Transform - pos: 318.5,416.5 - parent: 1 - - uid: 18070 + pos: -92.5,-57.5 + parent: 2 + - uid: 21626 components: - type: Transform - pos: 318.5,417.5 - parent: 1 - - uid: 18071 + pos: -42.5,-63.5 + parent: 2 + - uid: 21627 components: - type: Transform - pos: 315.5,417.5 - parent: 1 - - uid: 18072 + pos: -42.5,-62.5 + parent: 2 + - uid: 21628 components: - type: Transform - pos: 314.5,417.5 - parent: 1 - - uid: 18073 + pos: -43.5,-63.5 + parent: 2 + - uid: 21629 components: - type: Transform - pos: 313.5,417.5 - parent: 1 - - uid: 18074 + pos: -44.5,-63.5 + parent: 2 + - uid: 21630 components: - type: Transform - pos: 312.5,417.5 - parent: 1 - - uid: 18075 + pos: -45.5,-63.5 + parent: 2 + - uid: 21631 components: - type: Transform - pos: 311.5,417.5 - parent: 1 - - uid: 18076 + pos: -47.5,-63.5 + parent: 2 + - uid: 21632 components: - type: Transform - pos: 316.5,417.5 - parent: 1 - - uid: 18077 + pos: -48.5,-63.5 + parent: 2 + - uid: 21633 components: - type: Transform - pos: 313.5,418.5 - parent: 1 - - uid: 18078 + pos: -49.5,-63.5 + parent: 2 + - uid: 21634 components: - type: Transform - pos: 313.5,419.5 - parent: 1 - - uid: 18079 + pos: -50.5,-63.5 + parent: 2 + - uid: 21635 components: - type: Transform - pos: 314.5,419.5 - parent: 1 - - uid: 18080 + pos: -51.5,-63.5 + parent: 2 + - uid: 21636 components: - type: Transform - pos: 315.5,419.5 - parent: 1 - - uid: 18081 + pos: -52.5,-63.5 + parent: 2 + - uid: 21637 components: - type: Transform - pos: 321.5,409.5 - parent: 1 - - uid: 18082 + pos: -53.5,-63.5 + parent: 2 + - uid: 21638 components: - type: Transform - pos: 317.5,410.5 - parent: 1 - - uid: 18083 + pos: -46.5,-63.5 + parent: 2 + - uid: 21639 components: - type: Transform - pos: 319.5,410.5 - parent: 1 - - uid: 18084 + pos: -54.5,-63.5 + parent: 2 + - uid: 21640 components: - type: Transform - pos: 320.5,410.5 - parent: 1 - - uid: 18085 + pos: -55.5,-63.5 + parent: 2 + - uid: 21641 components: - type: Transform - pos: 321.5,410.5 - parent: 1 - - uid: 18086 + pos: -55.5,-62.5 + parent: 2 + - uid: 21642 components: - type: Transform - pos: 318.5,410.5 - parent: 1 - - uid: 18087 + pos: -55.5,-61.5 + parent: 2 + - uid: 21643 components: - type: Transform - pos: 321.5,407.5 - parent: 1 - - uid: 18088 + pos: -55.5,-60.5 + parent: 2 + - uid: 21644 components: - type: Transform - pos: 321.5,406.5 - parent: 1 - - uid: 18089 + pos: -55.5,-59.5 + parent: 2 + - uid: 21645 components: - type: Transform - pos: 321.5,405.5 - parent: 1 - - uid: 18090 + pos: -55.5,-57.5 + parent: 2 + - uid: 21646 components: - type: Transform - pos: 321.5,404.5 - parent: 1 - - uid: 18091 + pos: -55.5,-56.5 + parent: 2 + - uid: 21647 components: - type: Transform - pos: 321.5,403.5 - parent: 1 - - uid: 18092 + pos: -55.5,-58.5 + parent: 2 + - uid: 21648 components: - type: Transform - pos: 321.5,408.5 - parent: 1 - - uid: 18093 + pos: -55.5,-64.5 + parent: 2 + - uid: 21649 components: - type: Transform - pos: 320.5,403.5 - parent: 1 - - uid: 18094 + pos: -55.5,-65.5 + parent: 2 + - uid: 21650 components: - type: Transform - pos: 318.5,403.5 - parent: 1 - - uid: 18095 + pos: -56.5,-65.5 + parent: 2 + - uid: 21651 components: - type: Transform - pos: 319.5,403.5 - parent: 1 - - uid: 18096 + pos: -58.5,-65.5 + parent: 2 + - uid: 21652 components: - type: Transform - pos: 317.5,403.5 - parent: 1 - - uid: 18097 + pos: -59.5,-65.5 + parent: 2 + - uid: 21653 components: - type: Transform - pos: 316.5,403.5 - parent: 1 - - uid: 18098 + pos: -60.5,-65.5 + parent: 2 + - uid: 21654 components: - type: Transform - pos: 315.5,403.5 - parent: 1 - - uid: 18099 + pos: -61.5,-65.5 + parent: 2 + - uid: 21656 components: - type: Transform - pos: 314.5,403.5 - parent: 1 - - uid: 18100 + pos: -63.5,-65.5 + parent: 2 + - uid: 21657 components: - type: Transform - pos: 314.5,404.5 - parent: 1 - - uid: 18101 + pos: -64.5,-65.5 + parent: 2 + - uid: 21658 components: - type: Transform - pos: 314.5,402.5 - parent: 1 - - uid: 18102 + pos: -57.5,-65.5 + parent: 2 + - uid: 21659 components: - type: Transform - pos: 314.5,401.5 - parent: 1 - - uid: 18103 + pos: -66.5,-65.5 + parent: 2 + - uid: 21660 components: - type: Transform - pos: 305.5,403.5 - parent: 1 - - uid: 18104 + pos: -67.5,-65.5 + parent: 2 + - uid: 21661 components: - type: Transform - pos: 313.5,401.5 - parent: 1 - - uid: 18105 + pos: -68.5,-65.5 + parent: 2 + - uid: 21662 components: - type: Transform - pos: 311.5,401.5 - parent: 1 - - uid: 18106 + pos: -69.5,-65.5 + parent: 2 + - uid: 21663 components: - type: Transform - pos: 310.5,401.5 - parent: 1 - - uid: 18107 + pos: -70.5,-65.5 + parent: 2 + - uid: 21664 components: - type: Transform - pos: 309.5,401.5 - parent: 1 - - uid: 18108 + pos: -71.5,-65.5 + parent: 2 + - uid: 21665 components: - type: Transform - pos: 312.5,401.5 - parent: 1 - - uid: 18109 + pos: -72.5,-65.5 + parent: 2 + - uid: 21666 components: - type: Transform - pos: 308.5,401.5 - parent: 1 - - uid: 18110 + pos: -73.5,-65.5 + parent: 2 + - uid: 21667 components: - type: Transform - pos: 308.5,402.5 - parent: 1 - - uid: 18111 + pos: -74.5,-65.5 + parent: 2 + - uid: 21668 components: - type: Transform - pos: 307.5,402.5 - parent: 1 - - uid: 18112 + pos: -65.5,-65.5 + parent: 2 + - uid: 21669 components: - type: Transform - pos: 305.5,402.5 - parent: 1 - - uid: 18113 + pos: -75.5,-65.5 + parent: 2 + - uid: 21670 components: - type: Transform - pos: 306.5,402.5 - parent: 1 - - uid: 18114 + pos: -76.5,-65.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 303.5,403.5 - parent: 1 - - uid: 18115 + pos: -76.5,-64.5 + parent: 2 + - uid: 21672 components: - type: Transform - pos: 304.5,403.5 - parent: 1 - - uid: 18116 + pos: -76.5,-63.5 + parent: 2 + - uid: 21673 components: - type: Transform - pos: 302.5,403.5 - parent: 1 - - uid: 18117 + pos: -76.5,-61.5 + parent: 2 + - uid: 21674 components: - type: Transform - pos: 301.5,403.5 - parent: 1 - - uid: 18118 + pos: -76.5,-60.5 + parent: 2 + - uid: 21675 components: - type: Transform - pos: 301.5,404.5 - parent: 1 - - uid: 18119 + pos: -76.5,-62.5 + parent: 2 + - uid: 21715 components: - type: Transform - pos: 300.5,404.5 - parent: 1 - - uid: 18120 + rot: 3.141592653589793 rad + pos: -133.5,22.5 + parent: 2 + - uid: 21955 components: - type: Transform - pos: 298.5,408.5 - parent: 1 - - uid: 18121 + pos: -18.5,-59.5 + parent: 2 + - uid: 22009 components: - type: Transform - pos: 300.5,405.5 - parent: 1 - - uid: 18122 + rot: -1.5707963267948966 rad + pos: -105.5,-27.5 + parent: 2 + - uid: 22010 components: - type: Transform - pos: 298.5,405.5 - parent: 1 - - uid: 18123 + rot: -1.5707963267948966 rad + pos: -106.5,-27.5 + parent: 2 + - uid: 22013 components: - type: Transform - pos: 299.5,405.5 - parent: 1 - - uid: 18124 + rot: -1.5707963267948966 rad + pos: -111.5,-27.5 + parent: 2 + - uid: 22017 components: - type: Transform - pos: 297.5,405.5 - parent: 1 - - uid: 18125 + rot: -1.5707963267948966 rad + pos: -119.5,-27.5 + parent: 2 + - uid: 22021 components: - type: Transform - pos: 297.5,406.5 - parent: 1 - - uid: 18126 + rot: -1.5707963267948966 rad + pos: -109.5,-27.5 + parent: 2 + - uid: 22022 components: - type: Transform - pos: 297.5,407.5 - parent: 1 - - uid: 18127 + rot: -1.5707963267948966 rad + pos: -110.5,-27.5 + parent: 2 + - uid: 22023 components: - type: Transform - pos: 298.5,407.5 - parent: 1 - - uid: 18128 + rot: -1.5707963267948966 rad + pos: -112.5,-27.5 + parent: 2 + - uid: 22024 components: - type: Transform - pos: 298.5,410.5 - parent: 1 - - uid: 18129 + rot: -1.5707963267948966 rad + pos: -113.5,-27.5 + parent: 2 + - uid: 22025 components: - type: Transform - pos: 298.5,411.5 - parent: 1 - - uid: 18130 + rot: -1.5707963267948966 rad + pos: -114.5,-27.5 + parent: 2 + - uid: 22026 components: - type: Transform - pos: 298.5,412.5 - parent: 1 - - uid: 18131 + rot: -1.5707963267948966 rad + pos: -115.5,-27.5 + parent: 2 + - uid: 22027 components: - type: Transform - pos: 298.5,409.5 - parent: 1 - - uid: 18132 + rot: -1.5707963267948966 rad + pos: -116.5,-27.5 + parent: 2 + - uid: 22028 components: - type: Transform - pos: 297.5,412.5 - parent: 1 - - uid: 18133 + rot: -1.5707963267948966 rad + pos: -117.5,-27.5 + parent: 2 + - uid: 22029 components: - type: Transform - pos: 299.5,407.5 - parent: 1 - - uid: 18134 + rot: -1.5707963267948966 rad + pos: -118.5,-27.5 + parent: 2 + - uid: 22030 components: - type: Transform - pos: 297.5,413.5 - parent: 1 - - uid: 18135 + rot: -1.5707963267948966 rad + pos: -119.5,-26.5 + parent: 2 + - uid: 22035 components: - type: Transform - pos: 297.5,415.5 - parent: 1 - - uid: 18136 + rot: -1.5707963267948966 rad + pos: -132.5,-27.5 + parent: 2 + - uid: 22036 components: - type: Transform - pos: 297.5,416.5 - parent: 1 - - uid: 18137 + rot: -1.5707963267948966 rad + pos: -133.5,-27.5 + parent: 2 + - uid: 22038 components: - type: Transform - pos: 297.5,417.5 - parent: 1 - - uid: 18138 + rot: -1.5707963267948966 rad + pos: -133.5,-16.5 + parent: 2 + - uid: 22039 components: - type: Transform - pos: 297.5,414.5 - parent: 1 - - uid: 18139 + rot: -1.5707963267948966 rad + pos: -133.5,-23.5 + parent: 2 + - uid: 22040 components: - type: Transform - pos: 298.5,415.5 - parent: 1 - - uid: 18140 + rot: -1.5707963267948966 rad + pos: -133.5,-15.5 + parent: 2 + - uid: 22041 components: - type: Transform - pos: 299.5,415.5 - parent: 1 - - uid: 18141 + rot: -1.5707963267948966 rad + pos: -134.5,-27.5 + parent: 2 + - uid: 22042 components: - type: Transform - pos: 297.5,418.5 - parent: 1 - - uid: 18142 + rot: -1.5707963267948966 rad + pos: -133.5,-14.5 + parent: 2 + - uid: 22043 components: - type: Transform - pos: 297.5,419.5 - parent: 1 - - uid: 18143 + rot: -1.5707963267948966 rad + pos: -133.5,-26.5 + parent: 2 + - uid: 22044 components: - type: Transform - pos: 299.5,419.5 - parent: 1 - - uid: 18144 + rot: -1.5707963267948966 rad + pos: -133.5,-25.5 + parent: 2 + - uid: 22045 components: - type: Transform - pos: 298.5,419.5 - parent: 1 - - uid: 18145 + rot: -1.5707963267948966 rad + pos: -133.5,-24.5 + parent: 2 + - uid: 22046 components: - type: Transform - pos: 300.5,419.5 - parent: 1 - - uid: 18146 + rot: -1.5707963267948966 rad + pos: -133.5,-22.5 + parent: 2 + - uid: 22047 components: - type: Transform - pos: 301.5,419.5 - parent: 1 - - uid: 18147 + rot: -1.5707963267948966 rad + pos: -133.5,-21.5 + parent: 2 + - uid: 22048 components: - type: Transform - pos: 302.5,419.5 - parent: 1 - - uid: 18148 + rot: -1.5707963267948966 rad + pos: -133.5,-20.5 + parent: 2 + - uid: 22049 components: - type: Transform - pos: 302.5,418.5 - parent: 1 - - uid: 18149 + rot: -1.5707963267948966 rad + pos: -133.5,-19.5 + parent: 2 + - uid: 22050 components: - type: Transform - pos: 302.5,417.5 - parent: 1 - - uid: 18150 + rot: -1.5707963267948966 rad + pos: -133.5,-18.5 + parent: 2 + - uid: 22051 components: - type: Transform - pos: 303.5,418.5 - parent: 1 - - uid: 18151 + rot: -1.5707963267948966 rad + pos: -133.5,-17.5 + parent: 2 + - uid: 22122 components: - type: Transform - pos: 297.5,420.5 - parent: 1 - - uid: 18152 + rot: -1.5707963267948966 rad + pos: -105.5,10.5 + parent: 2 + - uid: 22191 components: - type: Transform - pos: 297.5,422.5 - parent: 1 - - uid: 18153 + pos: -19.5,2.5 + parent: 2 + - uid: 22212 components: - type: Transform - pos: 297.5,421.5 - parent: 1 - - uid: 18154 + rot: 1.5707963267948966 rad + pos: -90.5,15.5 + parent: 2 + - uid: 22213 components: - type: Transform - pos: 298.5,422.5 - parent: 1 - - uid: 18155 + rot: 1.5707963267948966 rad + pos: -91.5,15.5 + parent: 2 + - uid: 22214 components: - type: Transform - pos: 300.5,422.5 - parent: 1 - - uid: 18156 + rot: 1.5707963267948966 rad + pos: -95.5,15.5 + parent: 2 + - uid: 22215 components: - type: Transform - pos: 299.5,422.5 - parent: 1 - - uid: 18157 + rot: 1.5707963267948966 rad + pos: -96.5,15.5 + parent: 2 + - uid: 22296 components: - type: Transform - pos: 300.5,423.5 - parent: 1 - - uid: 18158 + rot: -1.5707963267948966 rad + pos: -72.5,-30.5 + parent: 2 + - uid: 22323 components: - type: Transform - pos: 300.5,424.5 - parent: 1 - - uid: 18160 + rot: -1.5707963267948966 rad + pos: -96.5,-2.5 + parent: 2 + - uid: 22344 components: - type: Transform - pos: 299.5,424.5 - parent: 1 - - uid: 18161 + rot: -1.5707963267948966 rad + pos: -97.5,-2.5 + parent: 2 + - uid: 22367 components: - type: Transform - pos: 299.5,426.5 - parent: 1 - - uid: 18162 + pos: -75.5,-24.5 + parent: 2 + - uid: 22631 components: - type: Transform - pos: 299.5,427.5 - parent: 1 - - uid: 18163 + rot: 3.141592653589793 rad + pos: -147.5,5.5 + parent: 2 + - uid: 22640 components: - type: Transform - pos: 299.5,428.5 - parent: 1 - - uid: 18164 + pos: -16.5,2.5 + parent: 2 + - uid: 22708 components: - type: Transform - pos: 299.5,429.5 - parent: 1 - - uid: 18165 + pos: -106.5,25.5 + parent: 2 + - uid: 22792 components: - type: Transform - pos: 299.5,425.5 - parent: 1 - - uid: 18166 + pos: -153.5,13.5 + parent: 2 + - uid: 22812 components: - type: Transform - pos: 300.5,429.5 - parent: 1 - - uid: 18167 + rot: 1.5707963267948966 rad + pos: -104.5,-53.5 + parent: 2 + - uid: 22908 components: - type: Transform - pos: 302.5,429.5 - parent: 1 - - uid: 18168 + rot: 3.141592653589793 rad + pos: -150.5,1.5 + parent: 2 + - uid: 22957 components: - type: Transform - pos: 301.5,429.5 - parent: 1 - - uid: 18169 + rot: 3.141592653589793 rad + pos: -152.5,1.5 + parent: 2 + - uid: 23146 components: - type: Transform - pos: 302.5,430.5 - parent: 1 - - uid: 18170 + rot: 3.141592653589793 rad + pos: -153.5,5.5 + parent: 2 + - uid: 23151 components: - type: Transform - pos: 304.5,430.5 - parent: 1 - - uid: 18171 + rot: 3.141592653589793 rad + pos: -151.5,1.5 + parent: 2 + - uid: 23155 components: - type: Transform - pos: 303.5,430.5 - parent: 1 - - uid: 18172 + rot: 3.141592653589793 rad + pos: -144.5,1.5 + parent: 2 + - uid: 23162 components: - type: Transform - pos: 304.5,429.5 - parent: 1 - - uid: 18173 + rot: -1.5707963267948966 rad + pos: -73.5,-35.5 + parent: 2 + - uid: 23163 components: - type: Transform - pos: 305.5,429.5 - parent: 1 - - uid: 18174 + rot: -1.5707963267948966 rad + pos: -74.5,-35.5 + parent: 2 + - uid: 23173 components: - type: Transform - pos: 306.5,429.5 - parent: 1 - - uid: 18175 + rot: 3.141592653589793 rad + pos: -48.5,-66.5 + parent: 2 + - uid: 23175 components: - type: Transform - pos: 306.5,430.5 - parent: 1 - - uid: 18176 + rot: 3.141592653589793 rad + pos: -48.5,-67.5 + parent: 2 + - uid: 23176 components: - type: Transform - pos: 306.5,431.5 - parent: 1 - - uid: 18177 + rot: 3.141592653589793 rad + pos: -48.5,-68.5 + parent: 2 + - uid: 23177 components: - type: Transform - pos: 308.5,431.5 - parent: 1 - - uid: 18178 + rot: 3.141592653589793 rad + pos: -48.5,-69.5 + parent: 2 + - uid: 23178 components: - type: Transform - pos: 309.5,431.5 - parent: 1 - - uid: 18179 + rot: 3.141592653589793 rad + pos: -48.5,-71.5 + parent: 2 + - uid: 23179 components: - type: Transform - pos: 307.5,431.5 - parent: 1 - - uid: 18180 + rot: 3.141592653589793 rad + pos: -48.5,-70.5 + parent: 2 + - uid: 23180 components: - type: Transform - pos: 309.5,430.5 - parent: 1 - - uid: 18181 + rot: 3.141592653589793 rad + pos: -49.5,-71.5 + parent: 2 + - uid: 23181 components: - type: Transform - pos: 310.5,430.5 - parent: 1 - - uid: 18182 + rot: 3.141592653589793 rad + pos: -51.5,-71.5 + parent: 2 + - uid: 23182 components: - type: Transform - pos: 310.5,431.5 - parent: 1 - - uid: 18183 + rot: 3.141592653589793 rad + pos: -52.5,-71.5 + parent: 2 + - uid: 23183 components: - type: Transform - pos: 312.5,431.5 - parent: 1 - - uid: 18184 + rot: 3.141592653589793 rad + pos: -50.5,-71.5 + parent: 2 + - uid: 23184 components: - type: Transform - pos: 311.5,431.5 - parent: 1 - - uid: 18185 + rot: 3.141592653589793 rad + pos: -52.5,-70.5 + parent: 2 + - uid: 23187 components: - type: Transform - pos: 314.5,431.5 - parent: 1 - - uid: 18186 + rot: 3.141592653589793 rad + pos: -53.5,-71.5 + parent: 2 + - uid: 23188 components: - type: Transform - pos: 313.5,431.5 - parent: 1 - - uid: 18187 + rot: 3.141592653589793 rad + pos: -54.5,-71.5 + parent: 2 + - uid: 23189 components: - type: Transform - pos: 314.5,430.5 - parent: 1 - - uid: 18188 + rot: 3.141592653589793 rad + pos: -55.5,-71.5 + parent: 2 + - uid: 23408 components: - type: Transform - pos: 314.5,428.5 - parent: 1 - - uid: 18189 + rot: 3.141592653589793 rad + pos: -104.5,5.5 + parent: 2 + - uid: 23430 components: - type: Transform - pos: 314.5,429.5 - parent: 1 - - uid: 18190 + pos: -108.5,-45.5 + parent: 2 + - uid: 23464 components: - type: Transform - pos: 315.5,428.5 - parent: 1 - - uid: 18191 + pos: -15.5,4.5 + parent: 2 + - uid: 23796 components: - type: Transform - pos: 315.5,426.5 - parent: 1 - - uid: 18192 + pos: -139.5,-14.5 + parent: 2 + - uid: 23871 components: - type: Transform - pos: 315.5,427.5 - parent: 1 - - uid: 18193 + pos: -15.5,6.5 + parent: 2 + - uid: 23885 components: - type: Transform - pos: 314.5,426.5 - parent: 1 - - uid: 18194 + pos: -67.5,-42.5 + parent: 2 + - uid: 23886 components: - type: Transform - pos: 314.5,425.5 - parent: 1 - - uid: 18195 + rot: 1.5707963267948966 rad + pos: -43.5,-9.5 + parent: 2 + - uid: 23887 components: - type: Transform - pos: 314.5,424.5 - parent: 1 - - uid: 18953 + pos: -14.5,6.5 + parent: 2 + - uid: 23893 components: - type: Transform - pos: 433.5,405.5 - parent: 1 - - uid: 18954 + rot: -1.5707963267948966 rad + pos: -105.5,8.5 + parent: 2 + - uid: 23896 components: - type: Transform - pos: 433.5,406.5 - parent: 1 - - uid: 18955 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - uid: 23898 components: - type: Transform - pos: 432.5,405.5 - parent: 1 - - uid: 18956 + rot: 1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - uid: 23899 components: - type: Transform - pos: 432.5,404.5 - parent: 1 - - uid: 18957 + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 23900 components: - type: Transform - pos: 432.5,403.5 - parent: 1 - - uid: 18958 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 23901 components: - type: Transform - pos: 433.5,403.5 - parent: 1 - - uid: 18959 + rot: 1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 23902 components: - type: Transform - pos: 433.5,401.5 - parent: 1 - - uid: 18960 + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + - uid: 23903 components: - type: Transform - pos: 433.5,402.5 - parent: 1 - - uid: 18961 + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - uid: 23904 components: - type: Transform - pos: 432.5,401.5 - parent: 1 - - uid: 18962 + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 23905 components: - type: Transform - pos: 432.5,400.5 - parent: 1 - - uid: 18963 + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - uid: 23906 components: - type: Transform - pos: 432.5,399.5 - parent: 1 - - uid: 18964 + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 23907 components: - type: Transform - pos: 433.5,399.5 - parent: 1 - - uid: 18965 + rot: 1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 23908 components: - type: Transform - pos: 434.5,399.5 - parent: 1 - - uid: 18966 + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 23933 components: - type: Transform - pos: 434.5,398.5 - parent: 1 - - uid: 18967 + rot: 3.141592653589793 rad + pos: -40.5,-44.5 + parent: 2 + - uid: 23934 components: - type: Transform - pos: 434.5,397.5 - parent: 1 - - uid: 18968 + rot: 3.141592653589793 rad + pos: -41.5,-44.5 + parent: 2 + - uid: 24028 components: - type: Transform - pos: 433.5,397.5 - parent: 1 - - uid: 18969 + pos: -68.5,-15.5 + parent: 2 + - uid: 24040 components: - type: Transform - pos: 432.5,397.5 - parent: 1 - - uid: 18970 + pos: -17.5,2.5 + parent: 2 + - uid: 24042 components: - type: Transform - pos: 432.5,396.5 - parent: 1 - - uid: 18971 + pos: -20.5,2.5 + parent: 2 + - uid: 24129 components: - type: Transform - pos: 432.5,395.5 - parent: 1 - - uid: 18972 + pos: -22.5,2.5 + parent: 2 + - uid: 24151 components: - type: Transform - pos: 433.5,395.5 - parent: 1 - - uid: 18973 + pos: -23.5,2.5 + parent: 2 + - uid: 24153 components: - type: Transform - pos: 433.5,394.5 - parent: 1 - - uid: 18974 + pos: -24.5,2.5 + parent: 2 + - uid: 24154 components: - type: Transform - pos: 433.5,393.5 - parent: 1 - - uid: 18975 + pos: -25.5,2.5 + parent: 2 + - uid: 24155 components: - type: Transform - pos: 432.5,393.5 - parent: 1 - - uid: 18976 + pos: -43.5,-8.5 + parent: 2 + - uid: 24156 components: - type: Transform - pos: 432.5,392.5 - parent: 1 - - uid: 18977 + pos: -42.5,-8.5 + parent: 2 + - uid: 24158 components: - type: Transform - pos: 432.5,391.5 - parent: 1 - - uid: 19196 + pos: -41.5,-8.5 + parent: 2 + - uid: 24159 components: - type: Transform - pos: 320.5,429.5 - parent: 1 - - uid: 20109 + pos: -40.5,-8.5 + parent: 2 + - uid: 24165 components: - type: Transform - pos: 328.5,434.5 - parent: 1 - - uid: 20110 + pos: -40.5,2.5 + parent: 2 + - uid: 24233 components: - type: Transform - pos: 329.5,434.5 - parent: 1 - - uid: 20111 + pos: -40.5,-3.5 + parent: 2 + - uid: 24234 components: - type: Transform - pos: 330.5,434.5 - parent: 1 - - uid: 20112 + pos: -40.5,-7.5 + parent: 2 + - uid: 24235 components: - type: Transform - pos: 331.5,434.5 - parent: 1 - - uid: 20113 + pos: -40.5,-6.5 + parent: 2 + - uid: 24236 components: - type: Transform - pos: 333.5,434.5 - parent: 1 - - uid: 20114 + pos: -40.5,-5.5 + parent: 2 + - uid: 24237 components: - type: Transform - pos: 334.5,434.5 - parent: 1 - - uid: 20115 + pos: -40.5,-4.5 + parent: 2 + - uid: 24238 components: - type: Transform - pos: 332.5,434.5 - parent: 1 - - uid: 20116 + pos: -40.5,-2.5 + parent: 2 + - uid: 24239 components: - type: Transform - pos: 334.5,435.5 - parent: 1 - - uid: 20117 + pos: -40.5,-1.5 + parent: 2 + - uid: 24240 components: - type: Transform - pos: 335.5,435.5 - parent: 1 - - uid: 20118 + pos: -40.5,-0.5 + parent: 2 + - uid: 24241 components: - type: Transform - pos: 337.5,435.5 - parent: 1 - - uid: 20119 + pos: -40.5,0.5 + parent: 2 + - uid: 24242 components: - type: Transform - pos: 336.5,435.5 - parent: 1 - - uid: 20120 + pos: -40.5,1.5 + parent: 2 + - uid: 24243 components: - type: Transform - pos: 338.5,435.5 - parent: 1 - - uid: 20121 + pos: -39.5,2.5 + parent: 2 + - uid: 24244 components: - type: Transform - pos: 340.5,435.5 - parent: 1 - - uid: 20122 + pos: -38.5,2.5 + parent: 2 + - uid: 24245 components: - type: Transform - pos: 341.5,435.5 - parent: 1 - - uid: 20123 + pos: -37.5,2.5 + parent: 2 + - uid: 24246 components: - type: Transform - pos: 339.5,435.5 - parent: 1 - - uid: 20124 + pos: -35.5,2.5 + parent: 2 + - uid: 24247 components: - type: Transform - pos: 341.5,436.5 - parent: 1 - - uid: 20125 + pos: -34.5,2.5 + parent: 2 + - uid: 24248 components: - type: Transform - pos: 341.5,438.5 - parent: 1 - - uid: 20126 + pos: -33.5,2.5 + parent: 2 + - uid: 24252 components: - type: Transform - pos: 341.5,439.5 - parent: 1 - - uid: 20127 + pos: -36.5,2.5 + parent: 2 + - uid: 24293 components: - type: Transform - pos: 341.5,437.5 - parent: 1 - - uid: 20128 + pos: -18.5,3.5 + parent: 2 + - uid: 24296 components: - type: Transform - pos: 341.5,440.5 - parent: 1 - - uid: 20129 + pos: -18.5,4.5 + parent: 2 + - uid: 24325 components: - type: Transform - pos: 342.5,440.5 - parent: 1 - - uid: 20130 + pos: -18.5,5.5 + parent: 2 + - uid: 24332 components: - type: Transform - pos: 343.5,440.5 - parent: 1 - - uid: 20131 + pos: -18.5,6.5 + parent: 2 + - uid: 24346 components: - type: Transform - pos: 340.5,440.5 - parent: 1 - - uid: 20132 + pos: -18.5,7.5 + parent: 2 + - uid: 24347 components: - type: Transform - pos: 339.5,440.5 - parent: 1 - - uid: 20133 + pos: -18.5,8.5 + parent: 2 + - uid: 24352 components: - type: Transform - pos: 338.5,440.5 - parent: 1 - - uid: 20134 + pos: -110.5,5.5 + parent: 2 + - uid: 24354 components: - type: Transform - pos: 337.5,440.5 - parent: 1 - - uid: 20135 + pos: -76.5,-44.5 + parent: 2 + - uid: 24355 components: - type: Transform - pos: 337.5,439.5 - parent: 1 - - uid: 20136 + pos: -76.5,-43.5 + parent: 2 + - uid: 24356 components: - type: Transform - pos: 335.5,439.5 - parent: 1 - - uid: 20137 + pos: -76.5,-42.5 + parent: 2 + - uid: 24357 components: - type: Transform - pos: 336.5,439.5 - parent: 1 - - uid: 20138 + pos: -76.5,-41.5 + parent: 2 + - uid: 24358 components: - type: Transform - pos: 335.5,440.5 - parent: 1 - - uid: 20139 + pos: -76.5,-40.5 + parent: 2 + - uid: 24359 components: - type: Transform - pos: 334.5,440.5 - parent: 1 - - uid: 20140 + pos: -76.5,-39.5 + parent: 2 + - uid: 24360 components: - type: Transform - pos: 332.5,440.5 - parent: 1 - - uid: 20141 + pos: -76.5,-38.5 + parent: 2 + - uid: 24380 components: - type: Transform - pos: 333.5,440.5 - parent: 1 - - uid: 20142 + pos: -75.5,-25.5 + parent: 2 + - uid: 24382 components: - type: Transform - pos: 332.5,439.5 - parent: 1 - - uid: 20143 + pos: -75.5,-19.5 + parent: 2 + - uid: 24383 components: - type: Transform - pos: 332.5,438.5 - parent: 1 - - uid: 20144 + pos: -75.5,-18.5 + parent: 2 + - uid: 24384 components: - type: Transform - pos: 331.5,438.5 - parent: 1 - - uid: 20145 + pos: -75.5,-17.5 + parent: 2 + - uid: 24387 components: - type: Transform - pos: 330.5,438.5 - parent: 1 - - uid: 20261 + pos: -76.5,-8.5 + parent: 2 + - uid: 24388 components: - type: Transform - pos: 5.5,1.5 - parent: 20181 - - uid: 20262 + pos: -78.5,-8.5 + parent: 2 + - uid: 24390 components: - type: Transform - pos: 5.5,0.5 - parent: 20181 - - uid: 20263 + pos: -77.5,-8.5 + parent: 2 + - uid: 24391 components: - type: Transform - pos: 5.5,2.5 - parent: 20181 - - uid: 20264 + pos: -79.5,-7.5 + parent: 2 + - uid: 24392 components: - type: Transform - pos: 5.5,-0.5 - parent: 20181 - - uid: 20265 + pos: -79.5,-6.5 + parent: 2 + - uid: 24393 components: - type: Transform - pos: -1.5,1.5 - parent: 20181 - - uid: 20266 + pos: -79.5,-5.5 + parent: 2 + - uid: 24394 components: - type: Transform - pos: -1.5,0.5 - parent: 20181 - - uid: 20267 + pos: -79.5,-4.5 + parent: 2 + - uid: 24395 components: - type: Transform - pos: 4.5,2.5 - parent: 20181 - - uid: 20268 + pos: -79.5,-3.5 + parent: 2 + - uid: 24396 components: - type: Transform - pos: 3.5,2.5 - parent: 20181 - - uid: 20269 + pos: -79.5,-2.5 + parent: 2 + - uid: 24397 components: - type: Transform - pos: 3.5,3.5 - parent: 20181 - - uid: 20270 + pos: -79.5,-1.5 + parent: 2 + - uid: 24398 components: - type: Transform - pos: 3.5,4.5 - parent: 20181 - - uid: 20271 + pos: -79.5,0.5 + parent: 2 + - uid: 24399 components: - type: Transform - pos: 4.5,4.5 - parent: 20181 - - uid: 20591 + pos: -79.5,1.5 + parent: 2 + - uid: 24400 components: - type: Transform - pos: 1.5,9.5 - parent: 20527 - - uid: 20592 + pos: -79.5,2.5 + parent: 2 + - uid: 24401 components: - type: Transform - pos: 1.5,7.5 - parent: 20527 - - uid: 20593 + pos: -79.5,3.5 + parent: 2 + - uid: 24402 components: - type: Transform - pos: 1.5,6.5 - parent: 20527 - - uid: 20594 + pos: -79.5,4.5 + parent: 2 + - uid: 24403 components: - type: Transform - pos: 1.5,5.5 - parent: 20527 - - uid: 20595 + pos: -79.5,5.5 + parent: 2 + - uid: 24404 components: - type: Transform - pos: 1.5,4.5 - parent: 20527 - - uid: 20596 + pos: -79.5,-0.5 + parent: 2 + - uid: 24405 components: - type: Transform - pos: 1.5,3.5 - parent: 20527 - - uid: 20597 + pos: -80.5,5.5 + parent: 2 + - uid: 24406 components: - type: Transform - pos: 1.5,2.5 - parent: 20527 - - uid: 20598 + pos: -81.5,5.5 + parent: 2 + - uid: 24407 components: - type: Transform - pos: 1.5,8.5 - parent: 20527 - - uid: 20599 + pos: -82.5,5.5 + parent: 2 + - uid: 24409 components: - type: Transform - pos: 1.5,0.5 - parent: 20527 - - uid: 20600 + pos: -88.5,5.5 + parent: 2 + - uid: 24410 components: - type: Transform - pos: 1.5,1.5 - parent: 20527 - - uid: 20601 + pos: -95.5,5.5 + parent: 2 + - uid: 24411 components: - type: Transform - pos: 2.5,3.5 - parent: 20527 - - uid: 20602 + pos: -97.5,5.5 + parent: 2 + - uid: 24413 components: - type: Transform - pos: 2.5,0.5 - parent: 20527 - - uid: 20603 + pos: -96.5,5.5 + parent: 2 + - uid: 24414 components: - type: Transform - pos: 3.5,0.5 - parent: 20527 - - uid: 20604 + pos: -84.5,5.5 + parent: 2 + - uid: 24415 components: - type: Transform - pos: 3.5,-0.5 - parent: 20527 - - uid: 20605 + pos: -85.5,5.5 + parent: 2 + - uid: 24416 components: - type: Transform - pos: 4.5,-0.5 - parent: 20527 - - uid: 20606 + pos: -86.5,5.5 + parent: 2 + - uid: 24417 components: - type: Transform - pos: 5.5,-0.5 - parent: 20527 - - uid: 20607 + pos: -87.5,5.5 + parent: 2 + - uid: 24418 components: - type: Transform - pos: 5.5,0.5 - parent: 20527 - - uid: 20608 + pos: -89.5,5.5 + parent: 2 + - uid: 24419 components: - type: Transform - pos: 5.5,1.5 - parent: 20527 - - uid: 20609 + pos: -90.5,5.5 + parent: 2 + - uid: 24420 components: - type: Transform - pos: 5.5,2.5 - parent: 20527 - - uid: 20610 + pos: -91.5,5.5 + parent: 2 + - uid: 24421 components: - type: Transform - pos: 6.5,1.5 - parent: 20527 - - uid: 20611 + pos: -92.5,5.5 + parent: 2 + - uid: 24422 components: - type: Transform - pos: 7.5,1.5 - parent: 20527 - - uid: 20612 + pos: -93.5,5.5 + parent: 2 + - uid: 24423 components: - type: Transform - pos: 2.5,5.5 - parent: 20527 - - uid: 20613 + pos: -85.5,6.5 + parent: 2 + - uid: 24424 components: - type: Transform - pos: 4.5,5.5 - parent: 20527 - - uid: 20614 + pos: -85.5,8.5 + parent: 2 + - uid: 24425 components: - type: Transform - pos: 5.5,5.5 - parent: 20527 - - uid: 20615 + pos: -85.5,9.5 + parent: 2 + - uid: 24426 components: - type: Transform - pos: 6.5,5.5 - parent: 20527 - - uid: 20616 + pos: -85.5,10.5 + parent: 2 + - uid: 24427 components: - type: Transform - pos: 3.5,5.5 - parent: 20527 - - uid: 20617 + pos: -85.5,11.5 + parent: 2 + - uid: 24428 components: - type: Transform - pos: 6.5,6.5 - parent: 20527 - - uid: 20618 + pos: -85.5,7.5 + parent: 2 + - uid: 24429 components: - type: Transform - pos: 7.5,6.5 - parent: 20527 - - uid: 20619 + pos: -85.5,12.5 + parent: 2 + - uid: 24441 components: - type: Transform - pos: 8.5,6.5 - parent: 20527 - - uid: 20620 + rot: 3.141592653589793 rad + pos: -151.5,5.5 + parent: 2 + - uid: 24460 components: - type: Transform - pos: 9.5,6.5 - parent: 20527 - - uid: 20621 + rot: 3.141592653589793 rad + pos: -150.5,5.5 + parent: 2 + - uid: 24462 components: - type: Transform - pos: 9.5,5.5 - parent: 20527 - - uid: 21066 + rot: 3.141592653589793 rad + pos: -145.5,5.5 + parent: 2 + - uid: 24468 components: - type: Transform - pos: 338.5,441.5 - parent: 1 - - uid: 21067 + rot: 3.141592653589793 rad + pos: -149.5,5.5 + parent: 2 + - uid: 24478 components: - type: Transform - pos: 338.5,442.5 - parent: 1 - - uid: 21071 + rot: -1.5707963267948966 rad + pos: -75.5,-9.5 + parent: 2 + - uid: 24618 components: - type: Transform - pos: 338.5,443.5 - parent: 1 - - uid: 21072 + pos: -42.5,-61.5 + parent: 2 + - uid: 24710 components: - type: Transform - pos: 338.5,444.5 - parent: 1 - - uid: 21073 + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 24711 components: - type: Transform - pos: 338.5,445.5 - parent: 1 - - uid: 21074 + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 24778 components: - type: Transform - pos: 338.5,446.5 - parent: 1 - - uid: 21076 + rot: 3.141592653589793 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 24814 components: - type: Transform - pos: 338.5,447.5 - parent: 1 - - uid: 21077 + pos: -130.5,-8.5 + parent: 2 + - uid: 24815 components: - type: Transform - pos: 338.5,448.5 - parent: 1 - - uid: 21078 + pos: -130.5,-9.5 + parent: 2 + - uid: 24884 components: - type: Transform - pos: 338.5,449.5 - parent: 1 - - uid: 21079 + rot: 1.5707963267948966 rad + pos: -108.5,-68.5 + parent: 2 + - uid: 24914 components: - type: Transform - pos: 339.5,449.5 - parent: 1 - - uid: 21096 + rot: 1.5707963267948966 rad + pos: -113.5,-68.5 + parent: 2 + - uid: 25055 components: - type: Transform - pos: 340.5,449.5 - parent: 1 - - uid: 21098 + pos: -105.5,-57.5 + parent: 2 + - uid: 25056 components: - type: Transform - pos: 379.5,404.5 - parent: 1 - - uid: 21100 + pos: -106.5,-57.5 + parent: 2 + - uid: 25072 components: - type: Transform - pos: 407.5,366.5 - parent: 1 - - uid: 21106 + rot: 1.5707963267948966 rad + pos: -112.5,-68.5 + parent: 2 + - uid: 25073 components: - type: Transform - pos: 340.5,450.5 - parent: 1 - - uid: 21215 + rot: 1.5707963267948966 rad + pos: -111.5,-68.5 + parent: 2 + - uid: 25074 components: - type: Transform - pos: 407.5,365.5 - parent: 1 - - uid: 21242 + rot: 1.5707963267948966 rad + pos: -110.5,-68.5 + parent: 2 + - uid: 25075 components: - type: Transform - pos: 423.5,424.5 - parent: 1 - - uid: 21309 + rot: 1.5707963267948966 rad + pos: -107.5,-68.5 + parent: 2 + - uid: 25076 components: - type: Transform - pos: 0.5,25.5 - parent: 5072 - - uid: 21318 + rot: 1.5707963267948966 rad + pos: -109.5,-68.5 + parent: 2 + - uid: 25139 components: - type: Transform - pos: 1.5,25.5 - parent: 5072 - - uid: 21321 + rot: 1.5707963267948966 rad + pos: -104.5,-68.5 + parent: 2 + - uid: 25141 components: - type: Transform - pos: 0.5,26.5 - parent: 5072 - - uid: 21331 + rot: 1.5707963267948966 rad + pos: -105.5,-68.5 + parent: 2 + - uid: 25182 components: - type: Transform - pos: 2.5,25.5 - parent: 5072 - - uid: 21344 + rot: 1.5707963267948966 rad + pos: -106.5,-68.5 + parent: 2 + - uid: 25481 components: - type: Transform - pos: 3.5,25.5 - parent: 5072 - - uid: 21359 + rot: 1.5707963267948966 rad + pos: -122.5,-32.5 + parent: 2 + - uid: 25482 components: - type: Transform - pos: 4.5,25.5 - parent: 5072 - - uid: 21389 + rot: 1.5707963267948966 rad + pos: -134.5,-32.5 + parent: 2 + - uid: 25483 components: - type: Transform - pos: 5.5,25.5 - parent: 5072 - - uid: 21412 + rot: 1.5707963267948966 rad + pos: -131.5,-32.5 + parent: 2 + - uid: 25484 components: - type: Transform - pos: 9.5,22.5 - parent: 5072 - - uid: 21422 + rot: 1.5707963267948966 rad + pos: -124.5,-32.5 + parent: 2 + - uid: 25485 components: - type: Transform - pos: 6.5,25.5 - parent: 5072 - - uid: 21444 + rot: 1.5707963267948966 rad + pos: -125.5,-32.5 + parent: 2 + - uid: 25486 components: - type: Transform - pos: 9.5,21.5 - parent: 5072 - - uid: 21448 + rot: 1.5707963267948966 rad + pos: -126.5,-32.5 + parent: 2 + - uid: 25487 components: - type: Transform - pos: 9.5,23.5 - parent: 5072 - - uid: 21454 + rot: 1.5707963267948966 rad + pos: -127.5,-32.5 + parent: 2 + - uid: 25488 components: - type: Transform - pos: 7.5,25.5 - parent: 5072 - - uid: 21477 + rot: 1.5707963267948966 rad + pos: -128.5,-32.5 + parent: 2 + - uid: 25489 components: - type: Transform - pos: 9.5,20.5 - parent: 5072 - - uid: 21490 + rot: 1.5707963267948966 rad + pos: -129.5,-32.5 + parent: 2 + - uid: 25490 components: - type: Transform - pos: 8.5,25.5 - parent: 5072 - - uid: 21513 + rot: 1.5707963267948966 rad + pos: -130.5,-32.5 + parent: 2 + - uid: 25491 components: - type: Transform - pos: 9.5,19.5 - parent: 5072 - - uid: 21520 + rot: 1.5707963267948966 rad + pos: -132.5,-32.5 + parent: 2 + - uid: 25492 components: - type: Transform - pos: 12.5,22.5 - parent: 5072 - - uid: 21528 + rot: 1.5707963267948966 rad + pos: -133.5,-32.5 + parent: 2 + - uid: 25493 components: - type: Transform - pos: 10.5,24.5 - parent: 5072 - - uid: 21531 + rot: 1.5707963267948966 rad + pos: -134.5,-33.5 + parent: 2 + - uid: 25494 components: - type: Transform - pos: 9.5,25.5 - parent: 5072 - - uid: 21537 + rot: 1.5707963267948966 rad + pos: -134.5,-35.5 + parent: 2 + - uid: 25495 components: - type: Transform - pos: 8.5,26.5 - parent: 5072 - - uid: 21553 + rot: 1.5707963267948966 rad + pos: -134.5,-36.5 + parent: 2 + - uid: 25496 components: - type: Transform - pos: 10.5,19.5 - parent: 5072 - - uid: 21557 + rot: 1.5707963267948966 rad + pos: -135.5,-36.5 + parent: 2 + - uid: 25497 components: - type: Transform - pos: 12.5,21.5 - parent: 5072 - - uid: 21562 + rot: 1.5707963267948966 rad + pos: -136.5,-36.5 + parent: 2 + - uid: 25498 components: - type: Transform - pos: 12.5,23.5 - parent: 5072 - - uid: 21567 + rot: 1.5707963267948966 rad + pos: -137.5,-36.5 + parent: 2 + - uid: 25499 components: - type: Transform - pos: 11.5,24.5 - parent: 5072 - - uid: 21570 + rot: 1.5707963267948966 rad + pos: -138.5,-36.5 + parent: 2 + - uid: 25500 components: - type: Transform - pos: 10.5,25.5 - parent: 5072 - - uid: 21574 + rot: 1.5707963267948966 rad + pos: -138.5,-52.5 + parent: 2 + - uid: 25501 components: - type: Transform - pos: 8.5,27.5 - parent: 5072 - - uid: 21586 + rot: 1.5707963267948966 rad + pos: -138.5,-51.5 + parent: 2 + - uid: 25502 components: - type: Transform - pos: 11.5,19.5 - parent: 5072 - - uid: 21589 + rot: 1.5707963267948966 rad + pos: -138.5,-42.5 + parent: 2 + - uid: 25503 components: - type: Transform - pos: 12.5,20.5 - parent: 5072 - - uid: 21597 + rot: 1.5707963267948966 rad + pos: -138.5,-43.5 + parent: 2 + - uid: 25504 components: - type: Transform - pos: 12.5,24.5 - parent: 5072 - - uid: 21746 + rot: 1.5707963267948966 rad + pos: -138.5,-44.5 + parent: 2 + - uid: 25505 components: - type: Transform - pos: -2.5,26.5 - parent: 5072 - - uid: 21757 + rot: 1.5707963267948966 rad + pos: -138.5,-46.5 + parent: 2 + - uid: 25506 components: - type: Transform - pos: -1.5,26.5 - parent: 5072 - - uid: 21759 + rot: 1.5707963267948966 rad + pos: -138.5,-47.5 + parent: 2 + - uid: 25507 components: - type: Transform - pos: -2.5,27.5 - parent: 5072 - - uid: 21771 + rot: 1.5707963267948966 rad + pos: -138.5,-48.5 + parent: 2 + - uid: 25508 components: - type: Transform - pos: -0.5,26.5 - parent: 5072 - - uid: 22050 + rot: 1.5707963267948966 rad + pos: -138.5,-49.5 + parent: 2 + - uid: 25509 components: - type: Transform - pos: 407.5,364.5 - parent: 1 - - uid: 22055 + rot: 1.5707963267948966 rad + pos: -138.5,-50.5 + parent: 2 + - uid: 25510 components: - type: Transform - pos: 406.5,364.5 - parent: 1 - - uid: 22127 + rot: 1.5707963267948966 rad + pos: -138.5,-45.5 + parent: 2 + - uid: 25512 components: - type: Transform - pos: 405.5,364.5 - parent: 1 - - uid: 22128 + rot: 1.5707963267948966 rad + pos: -124.5,-57.5 + parent: 2 + - uid: 25513 components: - type: Transform - pos: 404.5,364.5 - parent: 1 - - uid: 22129 + rot: 1.5707963267948966 rad + pos: -125.5,-57.5 + parent: 2 + - uid: 25514 components: - type: Transform - pos: 404.5,365.5 - parent: 1 - - uid: 22130 + rot: 1.5707963267948966 rad + pos: -127.5,-57.5 + parent: 2 + - uid: 25515 components: - type: Transform - pos: 403.5,365.5 - parent: 1 - - uid: 22131 + rot: 1.5707963267948966 rad + pos: -128.5,-57.5 + parent: 2 + - uid: 25516 components: - type: Transform - pos: 402.5,365.5 - parent: 1 - - uid: 22132 + rot: 1.5707963267948966 rad + pos: -132.5,-57.5 + parent: 2 + - uid: 25517 components: - type: Transform - pos: 401.5,365.5 - parent: 1 - - uid: 22133 + rot: 1.5707963267948966 rad + pos: -126.5,-57.5 + parent: 2 + - uid: 25518 components: - type: Transform - pos: 400.5,365.5 - parent: 1 - - uid: 22134 + rot: 1.5707963267948966 rad + pos: -132.5,-56.5 + parent: 2 + - uid: 25519 components: - type: Transform - pos: 399.5,365.5 - parent: 1 - - uid: 22135 + rot: 1.5707963267948966 rad + pos: -135.5,-54.5 + parent: 2 + - uid: 25520 components: - type: Transform - pos: 398.5,365.5 - parent: 1 - - uid: 22147 + rot: 1.5707963267948966 rad + pos: -132.5,-54.5 + parent: 2 + - uid: 25521 components: - type: Transform - pos: 379.5,405.5 - parent: 1 - - uid: 22148 + rot: 1.5707963267948966 rad + pos: -136.5,-54.5 + parent: 2 + - uid: 25522 components: - type: Transform - pos: 380.5,405.5 - parent: 1 - - uid: 22149 + rot: 1.5707963267948966 rad + pos: -134.5,-54.5 + parent: 2 + - uid: 25524 components: - type: Transform - pos: 378.5,405.5 - parent: 1 - - uid: 22150 + rot: 1.5707963267948966 rad + pos: -133.5,-54.5 + parent: 2 + - uid: 25526 components: - type: Transform - pos: 366.5,408.5 - parent: 1 - - uid: 22151 + rot: 1.5707963267948966 rad + pos: -138.5,-54.5 + parent: 2 + - uid: 25527 components: - type: Transform - pos: 366.5,407.5 - parent: 1 -- proto: CableTerminal - entities: - - uid: 6674 + rot: 1.5707963267948966 rad + pos: -137.5,-54.5 + parent: 2 + - uid: 25568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,429.5 - parent: 1 - - uid: 6675 + rot: 3.141592653589793 rad + pos: -105.5,24.5 + parent: 2 + - uid: 25569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,428.5 - parent: 1 - - uid: 6676 + rot: 3.141592653589793 rad + pos: -105.5,23.5 + parent: 2 + - uid: 25570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,427.5 - parent: 1 - - uid: 6677 + rot: 3.141592653589793 rad + pos: -105.5,21.5 + parent: 2 + - uid: 25571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,407.5 - parent: 1 - - uid: 6678 + rot: 3.141592653589793 rad + pos: -105.5,20.5 + parent: 2 + - uid: 25572 components: - type: Transform rot: 3.141592653589793 rad - pos: 299.5,389.5 - parent: 1 - - uid: 6679 + pos: -105.5,19.5 + parent: 2 + - uid: 25573 components: - type: Transform rot: 3.141592653589793 rad - pos: 298.5,389.5 - parent: 1 - - uid: 6680 + pos: -105.5,22.5 + parent: 2 + - uid: 25574 components: - type: Transform rot: 3.141592653589793 rad - pos: 297.5,389.5 - parent: 1 - - uid: 7735 + pos: -105.5,17.5 + parent: 2 + - uid: 25575 components: - type: Transform rot: 3.141592653589793 rad - pos: 334.5,379.5 - parent: 1 - - uid: 7741 + pos: -105.5,16.5 + parent: 2 + - uid: 25576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,426.5 - parent: 1 - - uid: 7886 + rot: 3.141592653589793 rad + pos: -105.5,14.5 + parent: 2 + - uid: 25577 components: - type: Transform rot: 3.141592653589793 rad - pos: 400.5,366.5 - parent: 1 - - uid: 7887 + pos: -105.5,13.5 + parent: 2 + - uid: 25578 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,366.5 - parent: 1 - - uid: 8506 + pos: -105.5,15.5 + parent: 2 + - uid: 25579 components: - type: Transform rot: 3.141592653589793 rad - pos: 321.5,429.5 - parent: 1 - - uid: 8969 + pos: -105.5,18.5 + parent: 2 + - uid: 25802 components: - type: Transform rot: 1.5707963267948966 rad - pos: 368.5,423.5 - parent: 1 - - uid: 21229 + pos: -15.5,-81.5 + parent: 2 + - uid: 25803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,426.5 - parent: 1 -- proto: CameraBug - entities: - - uid: 4121 + rot: 1.5707963267948966 rad + pos: -15.5,-80.5 + parent: 2 + - uid: 25804 components: - type: Transform - pos: 508.5,380.5 - parent: 1 -- proto: CapacitorStockPart - entities: - - uid: 16350 + rot: 1.5707963267948966 rad + pos: -15.5,-83.5 + parent: 2 + - uid: 25805 components: - type: Transform - pos: 340.5,399.5 - parent: 1 - - uid: 16351 + rot: 1.5707963267948966 rad + pos: -15.5,-84.5 + parent: 2 + - uid: 25806 components: - type: Transform - pos: 357.5,397.5 - parent: 1 - - uid: 16352 + rot: 1.5707963267948966 rad + pos: -15.5,-85.5 + parent: 2 + - uid: 25807 components: - type: Transform - pos: 357.5,397.5 - parent: 1 -- proto: CaptainIDCard - entities: - - uid: 5760 + rot: 1.5707963267948966 rad + pos: -15.5,-86.5 + parent: 2 + - uid: 25808 components: - type: Transform - pos: 368.5,407.5 - parent: 1 -- proto: CaptainSabre - entities: - - uid: 18272 + rot: 1.5707963267948966 rad + pos: -15.5,-88.5 + parent: 2 + - uid: 25809 components: - - type: MetaData - desc: Кло-оун... о-отдай по хорошему...ГЭК... - name: клоунская сабля - type: Transform - pos: 407.5,425.5 - parent: 1 - missingComponents: - - MeleeWeapon - - Sharp - - Tool - - DamageOnHighSpeedImpact - - DamageExaminable -- proto: CarbonDioxideCanister - entities: - - uid: 6381 + rot: 1.5707963267948966 rad + pos: -15.5,-89.5 + parent: 2 + - uid: 25810 components: - type: Transform - pos: 342.5,430.5 - parent: 1 - - uid: 7369 + rot: 1.5707963267948966 rad + pos: -15.5,-82.5 + parent: 2 + - uid: 25811 components: - type: Transform - pos: 323.5,415.5 - parent: 1 - - uid: 7519 + rot: 1.5707963267948966 rad + pos: -15.5,-87.5 + parent: 2 + - uid: 25812 components: - type: Transform - pos: 352.5,391.5 - parent: 1 - - uid: 18980 + rot: 1.5707963267948966 rad + pos: -15.5,-71.5 + parent: 2 + - uid: 25813 components: - type: Transform - pos: 338.5,386.5 - parent: 1 -- proto: CarpetBlack - entities: - - uid: 21769 + rot: 1.5707963267948966 rad + pos: -15.5,-72.5 + parent: 2 + - uid: 25814 components: - type: Transform - pos: -1.5,25.5 - parent: 5072 - - uid: 21785 + rot: 1.5707963267948966 rad + pos: -15.5,-73.5 + parent: 2 + - uid: 25815 components: - type: Transform - pos: -1.5,24.5 - parent: 5072 -- proto: CarpetBlue - entities: - - uid: 5786 + rot: 1.5707963267948966 rad + pos: -15.5,-74.5 + parent: 2 + - uid: 25816 components: - type: Transform - pos: 363.5,406.5 - parent: 1 - - uid: 5787 + rot: 1.5707963267948966 rad + pos: -15.5,-76.5 + parent: 2 + - uid: 25817 components: - type: Transform - pos: 364.5,406.5 - parent: 1 - - uid: 5788 + rot: 1.5707963267948966 rad + pos: -15.5,-77.5 + parent: 2 + - uid: 25818 components: - type: Transform - pos: 364.5,407.5 - parent: 1 - - uid: 5789 + rot: 1.5707963267948966 rad + pos: -15.5,-78.5 + parent: 2 + - uid: 25819 components: - type: Transform - pos: 365.5,406.5 - parent: 1 - - uid: 5790 + rot: 1.5707963267948966 rad + pos: -15.5,-79.5 + parent: 2 + - uid: 25820 components: - type: Transform - pos: 365.5,407.5 - parent: 1 - - uid: 5791 + rot: 1.5707963267948966 rad + pos: -15.5,-75.5 + parent: 2 + - uid: 25823 components: - type: Transform - pos: 363.5,407.5 - parent: 1 - - uid: 5792 + pos: -17.5,-59.5 + parent: 2 + - uid: 25824 components: - type: Transform - pos: 367.5,406.5 - parent: 1 - - uid: 5793 + pos: -16.5,-59.5 + parent: 2 + - uid: 25825 components: - type: Transform - pos: 368.5,406.5 - parent: 1 - - uid: 5794 + pos: -15.5,-59.5 + parent: 2 + - uid: 25826 components: - type: Transform - pos: 368.5,407.5 - parent: 1 - - uid: 5795 + pos: -15.5,-58.5 + parent: 2 + - uid: 25827 components: - type: Transform - pos: 369.5,406.5 - parent: 1 - - uid: 5796 + pos: -15.5,-57.5 + parent: 2 + - uid: 25828 components: - type: Transform - pos: 367.5,407.5 - parent: 1 - - uid: 5797 + pos: -15.5,-56.5 + parent: 2 + - uid: 25829 components: - type: Transform - pos: 369.5,407.5 - parent: 1 - - uid: 21355 + pos: -15.5,-60.5 + parent: 2 + - uid: 25830 components: - type: Transform - pos: 6.5,23.5 - parent: 5072 - - uid: 21382 + pos: -15.5,-61.5 + parent: 2 + - uid: 25831 components: - type: Transform - pos: 7.5,23.5 - parent: 5072 - - uid: 21386 + pos: -15.5,-62.5 + parent: 2 + - uid: 25933 components: - type: Transform - pos: 6.5,24.5 - parent: 5072 - - uid: 21415 + rot: -1.5707963267948966 rad + pos: -29.5,-59.5 + parent: 2 + - uid: 25953 components: - type: Transform - pos: 8.5,23.5 - parent: 5072 - - uid: 21419 + rot: -1.5707963267948966 rad + pos: -79.5,-8.5 + parent: 2 + - uid: 26001 components: - type: Transform - pos: 7.5,24.5 - parent: 5072 - - uid: 21450 + rot: 1.5707963267948966 rad + pos: -137.5,-4.5 + parent: 2 + - uid: 26038 components: - type: Transform - pos: 8.5,24.5 - parent: 5072 - - uid: 21473 + rot: 1.5707963267948966 rad + pos: -98.5,-2.5 + parent: 2 + - uid: 26039 components: - type: Transform - pos: 8.5,19.5 - parent: 5072 - - uid: 21476 + rot: 1.5707963267948966 rad + pos: -100.5,-2.5 + parent: 2 + - uid: 26041 components: - type: Transform - pos: 9.5,20.5 - parent: 5072 - - uid: 21525 + rot: 1.5707963267948966 rad + pos: -99.5,-2.5 + parent: 2 + - uid: 26051 components: - type: Transform - pos: 11.5,23.5 - parent: 5072 - - uid: 21561 + rot: 1.5707963267948966 rad + pos: -101.5,-2.5 + parent: 2 + - uid: 26052 components: - type: Transform - pos: 12.5,23.5 - parent: 5072 - - uid: 21566 + rot: 1.5707963267948966 rad + pos: -102.5,-2.5 + parent: 2 + - uid: 26123 components: - type: Transform - pos: 11.5,24.5 - parent: 5072 - - uid: 21596 + pos: -119.5,24.5 + parent: 2 + - uid: 26124 components: - type: Transform - pos: 12.5,24.5 - parent: 5072 -- proto: CarpetOrange - entities: - - uid: 21135 + pos: -119.5,22.5 + parent: 2 + - uid: 26125 components: - type: Transform - pos: 417.5,371.5 - parent: 1 - - uid: 21136 + pos: -119.5,21.5 + parent: 2 + - uid: 26126 components: - type: Transform - pos: 418.5,371.5 - parent: 1 - - uid: 21137 + pos: -119.5,20.5 + parent: 2 + - uid: 26127 components: - type: Transform - pos: 419.5,371.5 - parent: 1 -- proto: CarpetPink - entities: - - uid: 5951 + pos: -119.5,19.5 + parent: 2 + - uid: 26128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,353.5 - parent: 1 - - uid: 5952 + pos: -119.5,17.5 + parent: 2 + - uid: 26129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,351.5 - parent: 1 - - uid: 5953 + pos: -119.5,16.5 + parent: 2 + - uid: 26130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,352.5 - parent: 1 - - uid: 5954 + pos: -119.5,0.5 + parent: 2 + - uid: 26131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,353.5 - parent: 1 - - uid: 5955 + pos: -119.5,-0.5 + parent: 2 + - uid: 26132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,352.5 - parent: 1 - - uid: 5956 + pos: -119.5,3.5 + parent: 2 + - uid: 26133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,351.5 - parent: 1 - - uid: 21129 + pos: -119.5,10.5 + parent: 2 + - uid: 26134 components: - type: Transform - pos: 410.5,368.5 - parent: 1 - - uid: 21130 + pos: -119.5,9.5 + parent: 2 + - uid: 26135 components: - type: Transform - pos: 411.5,368.5 - parent: 1 - - uid: 21134 + pos: -119.5,8.5 + parent: 2 + - uid: 26136 components: - type: Transform - pos: 412.5,368.5 - parent: 1 - - uid: 21138 + pos: -119.5,7.5 + parent: 2 + - uid: 26137 components: - type: Transform - pos: 417.5,368.5 - parent: 1 - - uid: 21139 + pos: -119.5,6.5 + parent: 2 + - uid: 26138 components: - type: Transform - pos: 419.5,368.5 - parent: 1 - - uid: 21140 + pos: -119.5,5.5 + parent: 2 + - uid: 26139 components: - type: Transform - pos: 418.5,368.5 - parent: 1 -- proto: CarpetPurple - entities: - - uid: 21131 + pos: -119.5,4.5 + parent: 2 + - uid: 26140 components: - type: Transform - pos: 412.5,371.5 - parent: 1 - - uid: 21132 + pos: -119.5,2.5 + parent: 2 + - uid: 26141 components: - type: Transform - pos: 410.5,371.5 - parent: 1 - - uid: 21133 + pos: -119.5,1.5 + parent: 2 + - uid: 26142 components: - type: Transform - pos: 411.5,371.5 - parent: 1 -- proto: CarpetSBlue + pos: -119.5,23.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + pos: -119.5,18.5 + parent: 2 +- proto: Chair entities: - - uid: 5798 + - uid: 128 components: - type: Transform - pos: 367.5,411.5 - parent: 1 - - uid: 5799 + pos: -24.5,-17.5 + parent: 2 + - uid: 131 components: - type: Transform - pos: 368.5,411.5 - parent: 1 - - uid: 5800 + pos: -25.5,-17.5 + parent: 2 + - uid: 133 components: - type: Transform - pos: 363.5,411.5 - parent: 1 - - uid: 5801 + pos: -26.5,-17.5 + parent: 2 + - uid: 1237 components: - type: Transform - pos: 365.5,411.5 - parent: 1 - - uid: 5802 + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + - uid: 1311 components: - type: Transform - pos: 364.5,411.5 - parent: 1 - - uid: 5803 + rot: 1.5707963267948966 rad + pos: -116.5,-21.5 + parent: 2 + - uid: 1327 components: - type: Transform - pos: 363.5,410.5 - parent: 1 - - uid: 5804 + rot: -1.5707963267948966 rad + pos: -92.5,-28.5 + parent: 2 + - uid: 1475 components: - type: Transform - pos: 363.5,409.5 - parent: 1 - - uid: 21607 + rot: 1.5707963267948966 rad + pos: -51.5,-47.5 + parent: 2 + - uid: 1477 components: - type: Transform - pos: 9.5,16.5 - parent: 5072 - - uid: 21626 + rot: 1.5707963267948966 rad + pos: -53.5,-44.5 + parent: 2 + - uid: 1532 components: - type: Transform - pos: 10.5,16.5 - parent: 5072 -- proto: CarrotSeeds - entities: - - uid: 5091 + rot: 3.141592653589793 rad + pos: -87.5,-34.5 + parent: 2 + - uid: 2670 components: - type: Transform - parent: 3117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Catwalk - entities: - - uid: 211 + rot: -1.5707963267948966 rad + pos: -126.5,-15.5 + parent: 2 + - uid: 2943 components: - type: Transform - pos: 311.5,438.5 - parent: 1 - - uid: 214 + pos: -52.5,-11.5 + parent: 2 + - uid: 2950 components: - type: Transform - pos: 313.5,438.5 - parent: 1 - - uid: 225 + pos: -51.5,-11.5 + parent: 2 + - uid: 2951 components: - type: Transform - pos: 315.5,438.5 - parent: 1 - - uid: 1490 + pos: -50.5,-11.5 + parent: 2 + - uid: 3550 components: - type: Transform rot: 1.5707963267948966 rad - pos: 372.5,380.5 - parent: 1 - - uid: 1498 - components: - - type: Transform - pos: 346.5,410.5 - parent: 1 - - uid: 1514 + pos: -49.5,-43.5 + parent: 2 + - uid: 3678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 372.5,381.5 - parent: 1 - - uid: 4879 + pos: -49.5,-47.5 + parent: 2 + - uid: 3679 components: - type: Transform - pos: 0.5,1.5 - parent: 16114 - - uid: 4882 + rot: 1.5707963267948966 rad + pos: -97.5,-19.5 + parent: 2 + - uid: 3855 components: - type: Transform - pos: 0.5,2.5 - parent: 16114 - - uid: 5670 + rot: 1.5707963267948966 rad + pos: -45.5,-55.5 + parent: 2 + - uid: 3869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,383.5 - parent: 1 - - uid: 5671 + rot: 1.5707963267948966 rad + pos: -53.5,-46.5 + parent: 2 + - uid: 3870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,384.5 - parent: 1 - - uid: 5672 + rot: 1.5707963267948966 rad + pos: -51.5,-44.5 + parent: 2 + - uid: 3871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,384.5 - parent: 1 - - uid: 5673 + rot: 1.5707963267948966 rad + pos: -49.5,-46.5 + parent: 2 + - uid: 3873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,383.5 - parent: 1 - - uid: 5678 + rot: 1.5707963267948966 rad + pos: -51.5,-46.5 + parent: 2 + - uid: 3875 components: - type: Transform - pos: 371.5,381.5 - parent: 1 - - uid: 5679 + rot: 1.5707963267948966 rad + pos: -49.5,-44.5 + parent: 2 + - uid: 3882 components: - type: Transform - pos: 371.5,380.5 - parent: 1 - - uid: 5689 + rot: 1.5707963267948966 rad + pos: -51.5,-43.5 + parent: 2 + - uid: 4072 components: - type: Transform - pos: 367.5,378.5 - parent: 1 - - uid: 5690 + rot: 1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 + - uid: 4073 components: - type: Transform - pos: 369.5,378.5 - parent: 1 - - uid: 5691 + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 4074 components: - type: Transform - pos: 355.5,377.5 - parent: 1 - - uid: 6232 + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 4075 components: - type: Transform - pos: 346.5,408.5 - parent: 1 - - uid: 6233 + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 + - uid: 4076 components: - type: Transform - pos: 346.5,407.5 - parent: 1 - - uid: 6234 + rot: 1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 4077 components: - type: Transform - pos: 346.5,406.5 - parent: 1 - - uid: 6235 + rot: 1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - uid: 4136 components: - type: Transform - pos: 346.5,409.5 - parent: 1 - - uid: 6356 + rot: -1.5707963267948966 rad + pos: -33.5,-50.5 + parent: 2 + - uid: 4139 components: - type: Transform - pos: 331.5,427.5 - parent: 1 - - uid: 6357 + pos: -34.5,-49.5 + parent: 2 + - uid: 4140 components: - type: Transform - pos: 334.5,427.5 - parent: 1 - - uid: 6358 + rot: 1.5707963267948966 rad + pos: -35.5,-50.5 + parent: 2 + - uid: 4250 components: - type: Transform - pos: 337.5,427.5 - parent: 1 - - uid: 6359 + rot: -1.5707963267948966 rad + pos: -53.5,-70.5 + parent: 2 + - uid: 4251 components: - type: Transform - pos: 340.5,427.5 - parent: 1 - - uid: 6360 + rot: -1.5707963267948966 rad + pos: -54.5,-73.5 + parent: 2 + - uid: 4252 components: - type: Transform - pos: 343.5,427.5 - parent: 1 - - uid: 6361 + rot: -1.5707963267948966 rad + pos: -54.5,-72.5 + parent: 2 + - uid: 4263 components: - type: Transform - pos: 346.5,427.5 - parent: 1 - - uid: 6362 + rot: -1.5707963267948966 rad + pos: -54.5,-70.5 + parent: 2 + - uid: 4279 components: - type: Transform - pos: 347.5,427.5 - parent: 1 - - uid: 6363 + rot: -1.5707963267948966 rad + pos: -53.5,-73.5 + parent: 2 + - uid: 4448 components: - type: Transform - pos: 353.5,423.5 - parent: 1 - - uid: 6364 + rot: 1.5707963267948966 rad + pos: -56.5,-77.5 + parent: 2 + - uid: 4505 components: - type: Transform - pos: 353.5,426.5 - parent: 1 - - uid: 6365 + pos: -81.5,1.5 + parent: 2 + - uid: 4642 components: - type: Transform - pos: 353.5,420.5 - parent: 1 - - uid: 6490 + pos: -96.5,11.5 + parent: 2 + - uid: 4643 components: - type: Transform - pos: 315.5,428.5 - parent: 1 - - uid: 6500 + pos: -95.5,11.5 + parent: 2 + - uid: 4644 components: - type: Transform - pos: 314.5,428.5 - parent: 1 - - uid: 6502 + rot: 3.141592653589793 rad + pos: -96.5,9.5 + parent: 2 + - uid: 4645 components: - type: Transform - pos: 314.5,429.5 - parent: 1 - - uid: 6503 + rot: 3.141592653589793 rad + pos: -95.5,9.5 + parent: 2 + - uid: 5108 components: - type: Transform - pos: 314.5,431.5 - parent: 1 - - uid: 6504 + rot: -1.5707963267948966 rad + pos: -53.5,-72.5 + parent: 2 + - uid: 5113 components: - type: Transform - pos: 314.5,432.5 - parent: 1 - - uid: 6505 + rot: -1.5707963267948966 rad + pos: -53.5,-69.5 + parent: 2 + - uid: 5116 components: - type: Transform - pos: 314.5,433.5 - parent: 1 - - uid: 6506 + rot: 1.5707963267948966 rad + pos: -130.5,-33.5 + parent: 2 + - uid: 5126 components: - type: Transform - pos: 314.5,434.5 - parent: 1 - - uid: 6507 + rot: -1.5707963267948966 rad + pos: -128.5,-33.5 + parent: 2 + - uid: 5616 components: - type: Transform - pos: 314.5,435.5 - parent: 1 - - uid: 6508 + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 5617 components: - type: Transform - pos: 314.5,436.5 - parent: 1 - - uid: 6509 + pos: -11.5,-2.5 + parent: 2 + - uid: 5770 components: - type: Transform - pos: 314.5,430.5 - parent: 1 - - uid: 6510 + rot: 1.5707963267948966 rad + pos: -116.5,-20.5 + parent: 2 + - uid: 5772 components: - type: Transform - pos: 314.5,437.5 - parent: 1 - - uid: 6511 + rot: -1.5707963267948966 rad + pos: -114.5,-21.5 + parent: 2 + - uid: 5773 components: - type: Transform - pos: 314.5,438.5 - parent: 1 - - uid: 6512 + rot: -1.5707963267948966 rad + pos: -114.5,-20.5 + parent: 2 + - uid: 6109 components: - type: Transform - pos: 314.5,439.5 - parent: 1 - - uid: 6513 + rot: 3.141592653589793 rad + pos: -147.5,-44.5 + parent: 2 + - uid: 6545 components: - type: Transform - pos: 314.5,440.5 - parent: 1 - - uid: 6514 + rot: 3.141592653589793 rad + pos: -62.5,-32.5 + parent: 2 + - uid: 6606 components: - type: Transform - pos: 314.5,441.5 - parent: 1 - - uid: 6515 + rot: 3.141592653589793 rad + pos: -61.5,-32.5 + parent: 2 + - uid: 6607 components: - type: Transform - pos: 314.5,442.5 - parent: 1 - - uid: 6516 + rot: 3.141592653589793 rad + pos: -60.5,-32.5 + parent: 2 + - uid: 6723 components: - type: Transform - pos: 314.5,443.5 - parent: 1 - - uid: 6517 + rot: 1.5707963267948966 rad + pos: -97.5,-17.5 + parent: 2 + - uid: 6834 components: - type: Transform - pos: 315.5,442.5 - parent: 1 - - uid: 6518 + rot: 1.5707963267948966 rad + pos: -97.5,-18.5 + parent: 2 + - uid: 6891 components: - type: Transform - pos: 317.5,442.5 - parent: 1 - - uid: 6519 + rot: -1.5707963267948966 rad + pos: -92.5,-29.5 + parent: 2 + - uid: 6915 components: - type: Transform - pos: 316.5,442.5 - parent: 1 - - uid: 6521 + rot: 1.5707963267948966 rad + pos: -94.5,-28.5 + parent: 2 + - uid: 7075 components: - type: Transform - pos: 313.5,442.5 - parent: 1 - - uid: 6522 + rot: 1.5707963267948966 rad + pos: -94.5,-29.5 + parent: 2 + - uid: 7283 components: - type: Transform - pos: 311.5,442.5 - parent: 1 - - uid: 6523 + pos: -147.5,-46.5 + parent: 2 + - uid: 7562 components: - type: Transform - pos: 312.5,442.5 - parent: 1 - - uid: 6524 + pos: -62.5,-30.5 + parent: 2 + - uid: 7572 components: - type: Transform - pos: 318.5,428.5 - parent: 1 - - uid: 6525 + pos: -60.5,-30.5 + parent: 2 + - uid: 7573 components: - type: Transform - pos: 312.5,438.5 - parent: 1 - - uid: 6527 + pos: -61.5,-30.5 + parent: 2 + - uid: 8264 components: - type: Transform - pos: 310.5,438.5 - parent: 1 - - uid: 6530 + pos: -31.5,12.5 + parent: 2 + - uid: 8275 components: - type: Transform - pos: 317.5,438.5 - parent: 1 - - uid: 6531 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + - uid: 8277 components: - type: Transform - pos: 318.5,438.5 - parent: 1 - - uid: 6533 + pos: -5.5,-14.5 + parent: 2 + - uid: 8278 components: - type: Transform - pos: 316.5,438.5 - parent: 1 - - uid: 6536 + pos: -6.5,-14.5 + parent: 2 + - uid: 8279 components: - type: Transform - pos: 315.5,437.5 - parent: 1 - - uid: 6537 + pos: -8.5,-14.5 + parent: 2 + - uid: 8280 components: - type: Transform - pos: 313.5,437.5 - parent: 1 - - uid: 6538 + pos: -9.5,-14.5 + parent: 2 + - uid: 8281 components: - type: Transform - pos: 313.5,439.5 - parent: 1 - - uid: 6539 + pos: -7.5,-14.5 + parent: 2 + - uid: 8282 components: - type: Transform - pos: 315.5,439.5 - parent: 1 - - uid: 6540 + rot: 3.141592653589793 rad + pos: -9.5,-12.5 + parent: 2 + - uid: 8283 components: - type: Transform - pos: 315.5,434.5 - parent: 1 - - uid: 6541 + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 8284 components: - type: Transform - pos: 316.5,434.5 - parent: 1 - - uid: 6542 + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 8285 components: - type: Transform - pos: 317.5,434.5 - parent: 1 - - uid: 6543 + rot: 3.141592653589793 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 8286 components: - type: Transform - pos: 313.5,434.5 - parent: 1 - - uid: 6544 + rot: 3.141592653589793 rad + pos: -5.5,-12.5 + parent: 2 + - uid: 8302 components: - type: Transform - pos: 312.5,434.5 - parent: 1 - - uid: 6545 + pos: -11.5,-6.5 + parent: 2 + - uid: 8303 components: - type: Transform - pos: 311.5,434.5 - parent: 1 - - uid: 7444 + pos: -12.5,-6.5 + parent: 2 + - uid: 8304 components: - type: Transform - pos: 342.5,397.5 - parent: 1 - - uid: 7445 + pos: -9.5,-6.5 + parent: 2 + - uid: 8305 components: - type: Transform - pos: 341.5,397.5 - parent: 1 - - uid: 7591 + pos: -8.5,-6.5 + parent: 2 + - uid: 8306 components: - type: Transform - pos: 333.5,372.5 - parent: 1 - - uid: 7592 + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 8307 components: - type: Transform - pos: 334.5,372.5 - parent: 1 - - uid: 7593 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 8308 components: - type: Transform - pos: 336.5,372.5 - parent: 1 - - uid: 7594 + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 8309 components: - type: Transform - pos: 337.5,372.5 - parent: 1 - - uid: 7595 + rot: 3.141592653589793 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 8360 components: - type: Transform - pos: 338.5,372.5 - parent: 1 - - uid: 7596 + pos: -27.5,12.5 + parent: 2 + - uid: 8444 components: - type: Transform - pos: 339.5,372.5 - parent: 1 - - uid: 7597 + rot: 3.141592653589793 rad + pos: -27.5,19.5 + parent: 2 + - uid: 8446 components: - type: Transform - pos: 340.5,372.5 - parent: 1 - - uid: 7598 + pos: -30.5,12.5 + parent: 2 + - uid: 8452 components: - type: Transform - pos: 341.5,372.5 - parent: 1 - - uid: 7599 + rot: 3.141592653589793 rad + pos: -31.5,19.5 + parent: 2 + - uid: 8454 components: - type: Transform - pos: 342.5,372.5 - parent: 1 - - uid: 7600 + rot: 3.141592653589793 rad + pos: -30.5,19.5 + parent: 2 + - uid: 8456 components: - type: Transform - pos: 343.5,372.5 - parent: 1 - - uid: 7601 + pos: -28.5,12.5 + parent: 2 + - uid: 8458 components: - type: Transform - pos: 335.5,372.5 - parent: 1 - - uid: 7602 + rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 2 + - uid: 8462 components: - type: Transform - pos: 338.5,373.5 - parent: 1 - - uid: 7603 + pos: -29.5,12.5 + parent: 2 + - uid: 8464 components: - type: Transform - pos: 338.5,374.5 - parent: 1 - - uid: 7604 + rot: 3.141592653589793 rad + pos: -28.5,19.5 + parent: 2 + - uid: 8526 components: - type: Transform - pos: 338.5,375.5 - parent: 1 - - uid: 7605 + rot: 1.5707963267948966 rad + pos: -16.5,8.5 + parent: 2 + - uid: 8566 components: - type: Transform - pos: 338.5,376.5 - parent: 1 - - uid: 7606 + pos: -10.5,-2.5 + parent: 2 + - uid: 9120 components: - type: Transform - pos: 338.5,371.5 - parent: 1 - - uid: 7607 + rot: 1.5707963267948966 rad + pos: -52.5,-58.5 + parent: 2 + - uid: 9121 components: - type: Transform - pos: 338.5,370.5 - parent: 1 - - uid: 7608 + rot: 1.5707963267948966 rad + pos: -52.5,-59.5 + parent: 2 + - uid: 9197 components: - type: Transform - pos: 337.5,368.5 - parent: 1 - - uid: 7609 + rot: 1.5707963267948966 rad + pos: -73.5,-27.5 + parent: 2 + - uid: 9198 components: - type: Transform - pos: 337.5,367.5 - parent: 1 - - uid: 7610 + rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 9299 components: - type: Transform - pos: 337.5,369.5 - parent: 1 - - uid: 7611 + pos: -31.5,17.5 + parent: 2 + - uid: 9331 components: - type: Transform - pos: 338.5,369.5 - parent: 1 - - uid: 7612 + pos: -30.5,17.5 + parent: 2 + - uid: 9443 components: - type: Transform - pos: 338.5,368.5 - parent: 1 - - uid: 7613 + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 2 + - uid: 9444 components: - type: Transform - pos: 338.5,367.5 - parent: 1 - - uid: 7614 + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 2 + - uid: 9445 components: - type: Transform - pos: 339.5,368.5 - parent: 1 - - uid: 7615 + rot: 3.141592653589793 rad + pos: -31.5,14.5 + parent: 2 + - uid: 9447 components: - type: Transform - pos: 339.5,367.5 - parent: 1 - - uid: 7616 + rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 2 + - uid: 9455 components: - type: Transform - pos: 339.5,369.5 - parent: 1 - - uid: 7617 + pos: -81.5,-38.5 + parent: 2 + - uid: 9722 components: - type: Transform - pos: 340.5,368.5 - parent: 1 - - uid: 7618 + rot: 1.5707963267948966 rad + pos: -116.5,20.5 + parent: 2 + - uid: 9742 components: - type: Transform - pos: 342.5,368.5 - parent: 1 - - uid: 7619 + pos: -119.5,30.5 + parent: 2 + - uid: 9974 components: - type: Transform - pos: 341.5,368.5 - parent: 1 - - uid: 7620 + rot: 3.141592653589793 rad + pos: -93.5,27.5 + parent: 2 + - uid: 10863 components: - type: Transform - pos: 343.5,368.5 - parent: 1 - - uid: 7621 + pos: -84.5,-38.5 + parent: 2 + - uid: 11010 components: - type: Transform - pos: 344.5,368.5 - parent: 1 - - uid: 7622 + pos: -28.5,17.5 + parent: 2 + - uid: 11012 components: - type: Transform - pos: 345.5,368.5 - parent: 1 - - uid: 7623 + pos: -29.5,17.5 + parent: 2 + - uid: 11020 components: - type: Transform - pos: 335.5,368.5 - parent: 1 - - uid: 7624 + pos: -27.5,17.5 + parent: 2 + - uid: 11031 components: - type: Transform - pos: 336.5,368.5 - parent: 1 - - uid: 7625 + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 2 + - uid: 11052 components: - type: Transform - pos: 334.5,368.5 - parent: 1 - - uid: 7626 + pos: -83.5,-38.5 + parent: 2 + - uid: 11632 components: - type: Transform - pos: 333.5,368.5 - parent: 1 - - uid: 7627 + rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 11633 components: - type: Transform - pos: 332.5,368.5 - parent: 1 - - uid: 7628 + rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - uid: 13250 components: - type: Transform - pos: 331.5,368.5 - parent: 1 - - uid: 7629 + pos: -137.5,22.5 + parent: 2 + - uid: 14280 components: - type: Transform - pos: 338.5,366.5 - parent: 1 - - uid: 7630 + rot: 1.5707963267948966 rad + pos: -53.5,-43.5 + parent: 2 + - uid: 14791 components: - type: Transform - pos: 338.5,365.5 - parent: 1 - - uid: 7631 + pos: -44.5,-46.5 + parent: 2 + - uid: 15013 components: - type: Transform - pos: 338.5,364.5 - parent: 1 - - uid: 7632 + rot: 1.5707963267948966 rad + pos: -71.5,-43.5 + parent: 2 + - uid: 15016 components: - type: Transform - pos: 338.5,363.5 - parent: 1 - - uid: 7633 + rot: 1.5707963267948966 rad + pos: -71.5,-44.5 + parent: 2 + - uid: 15333 components: - type: Transform - pos: 338.5,362.5 - parent: 1 - - uid: 7634 + rot: 1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - uid: 15334 components: - type: Transform - pos: 339.5,364.5 - parent: 1 - - uid: 7635 + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - uid: 15408 components: - type: Transform - pos: 340.5,364.5 - parent: 1 - - uid: 7636 + rot: -1.5707963267948966 rad + pos: -129.5,-58.5 + parent: 2 + - uid: 15847 components: - type: Transform - pos: 341.5,364.5 - parent: 1 - - uid: 7637 + rot: 1.5707963267948966 rad + pos: -60.5,-34.5 + parent: 2 + - uid: 16042 components: - type: Transform - pos: 342.5,364.5 - parent: 1 - - uid: 7638 + rot: 3.141592653589793 rad + pos: -83.5,-41.5 + parent: 2 + - uid: 16044 components: - type: Transform - pos: 343.5,364.5 - parent: 1 - - uid: 7639 + rot: 3.141592653589793 rad + pos: -81.5,-41.5 + parent: 2 + - uid: 16711 components: - type: Transform - pos: 337.5,364.5 - parent: 1 - - uid: 7640 + rot: 3.141592653589793 rad + pos: -65.5,-75.5 + parent: 2 + - uid: 16712 components: - type: Transform - pos: 335.5,364.5 - parent: 1 - - uid: 7641 + rot: 3.141592653589793 rad + pos: -68.5,-75.5 + parent: 2 + - uid: 16823 components: - type: Transform - pos: 334.5,364.5 - parent: 1 - - uid: 7642 + rot: 3.141592653589793 rad + pos: -66.5,-75.5 + parent: 2 + - uid: 16893 components: - type: Transform - pos: 333.5,364.5 - parent: 1 - - uid: 7643 + pos: -93.5,29.5 + parent: 2 + - uid: 16896 components: - type: Transform - pos: 336.5,364.5 - parent: 1 - - uid: 7737 + rot: 3.141592653589793 rad + pos: -92.5,27.5 + parent: 2 + - uid: 16948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,379.5 - parent: 1 - - uid: 7739 + rot: 3.141592653589793 rad + pos: -69.5,-75.5 + parent: 2 + - uid: 17057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,380.5 - parent: 1 - - uid: 7826 + pos: -92.5,29.5 + parent: 2 + - uid: 17313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,437.5 - parent: 1 - - uid: 7835 + rot: 1.5707963267948966 rad + pos: -131.5,-58.5 + parent: 2 + - uid: 17333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,432.5 - parent: 1 - - uid: 7836 + pos: -126.5,-44.5 + parent: 2 + - uid: 17431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,434.5 - parent: 1 - - uid: 7837 + rot: 1.5707963267948966 rad + pos: -128.5,-45.5 + parent: 2 + - uid: 17434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,435.5 - parent: 1 - - uid: 7838 + rot: 1.5707963267948966 rad + pos: -128.5,-46.5 + parent: 2 + - uid: 17437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,436.5 - parent: 1 - - uid: 7839 + pos: -126.5,-46.5 + parent: 2 + - uid: 17438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,437.5 - parent: 1 - - uid: 7840 + rot: 1.5707963267948966 rad + pos: -128.5,-44.5 + parent: 2 + - uid: 17439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,438.5 - parent: 1 - - uid: 7841 + pos: -126.5,-45.5 + parent: 2 + - uid: 17803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,439.5 - parent: 1 - - uid: 7842 + rot: 1.5707963267948966 rad + pos: -94.5,-31.5 + parent: 2 + - uid: 17804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,440.5 - parent: 1 - - uid: 7843 + rot: 1.5707963267948966 rad + pos: -94.5,-32.5 + parent: 2 + - uid: 17805 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,433.5 - parent: 1 - - uid: 7844 + pos: -92.5,-31.5 + parent: 2 + - uid: 17806 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,442.5 - parent: 1 - - uid: 7845 + pos: -92.5,-32.5 + parent: 2 + - uid: 17827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,441.5 - parent: 1 - - uid: 7846 + pos: -80.5,-38.5 + parent: 2 + - uid: 19776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,443.5 - parent: 1 - - uid: 7847 + rot: 1.5707963267948966 rad + pos: -99.5,-24.5 + parent: 2 + - uid: 19780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,441.5 - parent: 1 - - uid: 7848 + rot: 1.5707963267948966 rad + pos: -99.5,-32.5 + parent: 2 + - uid: 19861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,441.5 - parent: 1 - - uid: 7849 + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 2 + - uid: 19870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,441.5 - parent: 1 - - uid: 7850 + rot: 1.5707963267948966 rad + pos: -99.5,-28.5 + parent: 2 + - uid: 19880 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,441.5 - parent: 1 - - uid: 7851 + pos: -20.5,1.5 + parent: 2 + - uid: 20605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,441.5 - parent: 1 - - uid: 7852 + rot: 1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - uid: 20932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,441.5 - parent: 1 - - uid: 7853 + rot: 1.5707963267948966 rad + pos: -54.5,-40.5 + parent: 2 + - uid: 20933 components: - type: Transform rot: -1.5707963267948966 rad - pos: 425.5,441.5 - parent: 1 - - uid: 7854 + pos: -52.5,-40.5 + parent: 2 + - uid: 20954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,441.5 - parent: 1 - - uid: 7855 + rot: 3.141592653589793 rad + pos: -48.5,-38.5 + parent: 2 + - uid: 20955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,441.5 - parent: 1 - - uid: 7856 + pos: -48.5,-36.5 + parent: 2 + - uid: 21048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,441.5 - parent: 1 - - uid: 7857 + rot: 3.141592653589793 rad + pos: -73.5,-73.5 + parent: 2 + - uid: 21049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,437.5 - parent: 1 - - uid: 7858 + rot: 3.141592653589793 rad + pos: -72.5,-73.5 + parent: 2 + - uid: 21484 components: - type: Transform rot: -1.5707963267948966 rad - pos: 423.5,438.5 - parent: 1 - - uid: 7859 + pos: -120.5,36.5 + parent: 2 + - uid: 22387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,436.5 - parent: 1 - - uid: 7860 + pos: -14.5,-23.5 + parent: 2 + - uid: 22389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,436.5 - parent: 1 - - uid: 7861 + rot: 3.141592653589793 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 22390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,437.5 - parent: 1 - - uid: 7862 + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 22965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,438.5 - parent: 1 - - uid: 7863 + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 22970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,437.5 - parent: 1 - - uid: 7864 + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 22997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,437.5 - parent: 1 - - uid: 7865 + pos: -10.5,-35.5 + parent: 2 + - uid: 22999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,437.5 - parent: 1 - - uid: 7866 + pos: -9.5,-35.5 + parent: 2 + - uid: 23000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,437.5 - parent: 1 - - uid: 7867 + pos: -8.5,-35.5 + parent: 2 + - uid: 23121 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,437.5 - parent: 1 - - uid: 7869 + pos: -54.5,-69.5 + parent: 2 + - uid: 23373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,437.5 - parent: 1 - - uid: 7870 + rot: 1.5707963267948966 rad + pos: -71.5,-45.5 + parent: 2 + - uid: 23432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,437.5 - parent: 1 - - uid: 7871 + rot: 3.141592653589793 rad + pos: -134.5,-2.5 + parent: 2 + - uid: 23434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,437.5 - parent: 1 - - uid: 7872 + pos: -134.5,-0.5 + parent: 2 + - uid: 23458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,437.5 - parent: 1 - - uid: 7873 + rot: 3.141592653589793 rad + pos: -69.5,-76.5 + parent: 2 + - uid: 23459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,437.5 - parent: 1 - - uid: 7874 + rot: 3.141592653589793 rad + pos: -68.5,-76.5 + parent: 2 + - uid: 23460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,437.5 - parent: 1 - - uid: 7875 + rot: 3.141592653589793 rad + pos: -66.5,-76.5 + parent: 2 + - uid: 23461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,433.5 - parent: 1 - - uid: 7876 + rot: 3.141592653589793 rad + pos: -65.5,-76.5 + parent: 2 + - uid: 24452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,433.5 - parent: 1 - - uid: 7877 + rot: 1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - uid: 24649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,433.5 - parent: 1 - - uid: 7878 + pos: -8.5,-10.5 + parent: 2 + - uid: 24650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,433.5 - parent: 1 - - uid: 7879 + pos: -5.5,-10.5 + parent: 2 + - uid: 24651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,433.5 - parent: 1 - - uid: 7880 + pos: -6.5,-10.5 + parent: 2 + - uid: 24652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,433.5 - parent: 1 - - uid: 7881 + pos: -9.5,-10.5 + parent: 2 + - uid: 24653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,433.5 - parent: 1 - - uid: 7882 + pos: -7.5,-10.5 + parent: 2 + - uid: 24654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,433.5 - parent: 1 - - uid: 7883 + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 2 + - uid: 24655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,433.5 - parent: 1 - - uid: 7884 + rot: 3.141592653589793 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 24657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,433.5 - parent: 1 - - uid: 7885 + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 24658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,431.5 - parent: 1 - - uid: 7975 + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 24659 components: - type: Transform - pos: 400.5,349.5 - parent: 1 - - uid: 7976 + rot: 3.141592653589793 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 24660 components: - type: Transform - pos: 400.5,350.5 - parent: 1 - - uid: 7977 + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 24661 components: - type: Transform - pos: 395.5,351.5 - parent: 1 - - uid: 7978 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 24664 components: - type: Transform - pos: 397.5,351.5 - parent: 1 - - uid: 7979 + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 24723 components: - type: Transform - pos: 398.5,351.5 - parent: 1 - - uid: 7980 + rot: 1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - uid: 25523 components: - type: Transform - pos: 399.5,351.5 - parent: 1 - - uid: 7981 + rot: 1.5707963267948966 rad + pos: -129.5,-56.5 + parent: 2 + - uid: 26088 components: - type: Transform - pos: 400.5,351.5 - parent: 1 - - uid: 7982 + rot: 1.5707963267948966 rad + pos: -53.5,-47.5 + parent: 2 +- proto: ChairFolding + entities: + - uid: 26054 components: - type: Transform - pos: 401.5,351.5 - parent: 1 - - uid: 7983 + pos: -94.532234,-61.424862 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 865 components: - type: Transform - pos: 402.5,351.5 - parent: 1 - - uid: 7984 + rot: 3.141592653589793 rad + pos: -110.43836,-14.410664 + parent: 2 + - uid: 2597 components: - type: Transform - pos: 403.5,351.5 - parent: 1 - - uid: 7985 + pos: -81.5,-32.5 + parent: 2 + - uid: 2598 components: - type: Transform - pos: 404.5,351.5 - parent: 1 - - uid: 7986 + pos: -82.5,-32.5 + parent: 2 + - uid: 2735 components: - type: Transform - pos: 405.5,351.5 - parent: 1 - - uid: 7987 + rot: -1.5707963267948966 rad + pos: -59.5,-2.5 + parent: 2 + - uid: 2736 components: - type: Transform - pos: 396.5,351.5 - parent: 1 - - uid: 7988 + rot: -1.5707963267948966 rad + pos: -59.5,-3.5 + parent: 2 + - uid: 2738 components: - type: Transform - pos: 400.5,352.5 - parent: 1 - - uid: 7989 + rot: -1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - uid: 2740 components: - type: Transform - pos: 400.5,353.5 - parent: 1 - - uid: 7991 + rot: 1.5707963267948966 rad + pos: -63.5,-3.5 + parent: 2 + - uid: 2743 components: - type: Transform - pos: 399.5,354.5 - parent: 1 - - uid: 7992 + rot: 1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 2 + - uid: 2883 components: - type: Transform - pos: 399.5,356.5 - parent: 1 - - uid: 7993 + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 2884 components: - type: Transform - pos: 400.5,354.5 - parent: 1 - - uid: 7994 + rot: 3.141592653589793 rad + pos: -51.5,-0.5 + parent: 2 + - uid: 2917 components: - type: Transform - pos: 400.5,355.5 - parent: 1 - - uid: 7995 + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 + - uid: 2931 components: - type: Transform - pos: 400.5,356.5 - parent: 1 - - uid: 7996 + pos: -49.5,-7.5 + parent: 2 + - uid: 2994 components: - type: Transform - pos: 401.5,354.5 - parent: 1 - - uid: 7997 + pos: -52.49605,-6.624262 + parent: 2 + - uid: 3316 components: - type: Transform - pos: 401.5,355.5 - parent: 1 - - uid: 7998 + rot: -1.5707963267948966 rad + pos: -74.5,-43.5 + parent: 2 + - uid: 3983 components: - type: Transform - pos: 401.5,356.5 - parent: 1 - - uid: 7999 + pos: -26.5,-25.5 + parent: 2 + - uid: 4003 components: - type: Transform - pos: 399.5,355.5 - parent: 1 - - uid: 8000 + rot: -1.5707963267948966 rad + pos: -92.5,-18.5 + parent: 2 + - uid: 4037 components: - type: Transform - pos: 398.5,355.5 - parent: 1 - - uid: 8001 + pos: -91.5,-23.5 + parent: 2 + - uid: 4169 components: - type: Transform - pos: 396.5,355.5 - parent: 1 - - uid: 8002 + rot: -1.5707963267948966 rad + pos: -25.5,-53.5 + parent: 2 + - uid: 4720 components: - type: Transform - pos: 395.5,355.5 - parent: 1 - - uid: 8003 + rot: 3.141592653589793 rad + pos: -87.5,28.5 + parent: 2 + - uid: 4721 components: - type: Transform - pos: 394.5,355.5 - parent: 1 - - uid: 8004 + rot: 3.141592653589793 rad + pos: -86.5,28.5 + parent: 2 + - uid: 4722 components: - type: Transform - pos: 393.5,355.5 - parent: 1 - - uid: 8005 + rot: 3.141592653589793 rad + pos: -85.5,28.5 + parent: 2 + - uid: 5555 components: - type: Transform - pos: 397.5,355.5 - parent: 1 - - uid: 8006 + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 2 + - uid: 5736 components: - type: Transform - pos: 402.5,355.5 - parent: 1 - - uid: 8007 + pos: -114.5,-5.5 + parent: 2 + - uid: 5781 components: - type: Transform - pos: 404.5,355.5 - parent: 1 - - uid: 8008 + pos: -110.46961,-6.4645147 + parent: 2 + - uid: 6271 components: - type: Transform - pos: 405.5,355.5 - parent: 1 - - uid: 8009 + pos: -122.5,-15.5 + parent: 2 + - uid: 6292 components: - type: Transform - pos: 406.5,355.5 - parent: 1 - - uid: 8010 + rot: -1.5707963267948966 rad + pos: -130.48166,-17.435017 + parent: 2 + - uid: 6299 components: - type: Transform - pos: 403.5,355.5 - parent: 1 - - uid: 8011 + pos: -123.5,-15.5 + parent: 2 + - uid: 6696 components: - type: Transform - pos: 407.5,355.5 - parent: 1 - - uid: 8012 + rot: 3.141592653589793 rad + pos: -97.5,-40.5 + parent: 2 + - uid: 6754 components: - type: Transform - pos: 400.5,357.5 - parent: 1 - - uid: 8013 + pos: -87.5,-32.5 + parent: 2 + - uid: 7034 components: - type: Transform - pos: 400.5,358.5 - parent: 1 - - uid: 8014 + pos: -86.5,-32.5 + parent: 2 + - uid: 7073 components: - type: Transform - pos: 395.5,359.5 - parent: 1 - - uid: 8015 + pos: -114.5,-17.5 + parent: 2 + - uid: 7314 components: - type: Transform - pos: 396.5,359.5 - parent: 1 - - uid: 8016 + rot: 1.5707963267948966 rad + pos: -97.5,35.5 + parent: 2 + - uid: 7338 components: - type: Transform - pos: 397.5,359.5 - parent: 1 - - uid: 8017 + pos: -120.5,-41.5 + parent: 2 + - uid: 9064 components: - type: Transform - pos: 398.5,359.5 - parent: 1 - - uid: 8018 + rot: 3.141592653589793 rad + pos: -43.5,-67.5 + parent: 2 + - uid: 9213 components: - type: Transform - pos: 399.5,359.5 - parent: 1 - - uid: 8019 + rot: -1.5707963267948966 rad + pos: -77.5,-30.5 + parent: 2 + - uid: 9513 components: - type: Transform - pos: 400.5,359.5 - parent: 1 - - uid: 8020 + rot: 3.141592653589793 rad + pos: -96.5,-40.5 + parent: 2 + - uid: 9706 components: - type: Transform - pos: 401.5,359.5 - parent: 1 - - uid: 8021 + rot: 3.141592653589793 rad + pos: -115.5,28.5 + parent: 2 + - uid: 9707 components: - type: Transform - pos: 402.5,359.5 - parent: 1 - - uid: 8022 + rot: 3.141592653589793 rad + pos: -114.5,28.5 + parent: 2 + - uid: 9708 components: - type: Transform - pos: 403.5,359.5 - parent: 1 - - uid: 8023 + rot: 3.141592653589793 rad + pos: -113.5,28.5 + parent: 2 + - uid: 11631 components: - type: Transform - pos: 405.5,359.5 - parent: 1 - - uid: 8024 + rot: -1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - uid: 11841 components: - type: Transform - pos: 404.5,359.5 - parent: 1 - - uid: 8025 + rot: 1.5707963267948966 rad + pos: -99.5,-46.5 + parent: 2 + - uid: 11877 components: - type: Transform - pos: 406.5,359.5 - parent: 1 - - uid: 8026 + rot: 1.5707963267948966 rad + pos: -99.5,-47.5 + parent: 2 + - uid: 11884 components: - type: Transform - pos: 400.5,360.5 - parent: 1 - - uid: 8042 + rot: -1.5707963267948966 rad + pos: -97.5,-46.5 + parent: 2 + - uid: 12732 components: - type: Transform - pos: 500.5,384.5 - parent: 1 - - uid: 8045 + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - uid: 12733 components: - type: Transform - pos: 500.5,385.5 - parent: 1 - - uid: 8046 + rot: 3.141592653589793 rad + pos: -62.5,-5.5 + parent: 2 + - uid: 16009 components: - type: Transform - pos: 500.5,386.5 - parent: 1 - - uid: 8053 + rot: -1.5707963267948966 rad + pos: -110.5,-31.5 + parent: 2 + - uid: 16525 components: - type: Transform - pos: 503.5,390.5 - parent: 1 - - uid: 9063 + rot: 3.141592653589793 rad + pos: -61.5,-5.5 + parent: 2 + - uid: 16910 components: - type: Transform - pos: 503.5,389.5 - parent: 1 - - uid: 9064 + rot: 1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 + - uid: 16934 components: - type: Transform - pos: 504.5,389.5 - parent: 1 - - uid: 9065 + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 + - uid: 17131 components: - type: Transform - pos: 505.5,387.5 - parent: 1 - - uid: 9066 + rot: 1.5707963267948966 rad + pos: -38.5,-66.5 + parent: 2 + - uid: 18251 components: - type: Transform - pos: 505.5,386.5 - parent: 1 - - uid: 9067 + rot: 1.5707963267948966 rad + pos: -102.5,30.5 + parent: 2 + - uid: 19550 components: - type: Transform - pos: 506.5,386.5 - parent: 1 - - uid: 9069 + rot: 3.141592653589793 rad + pos: -90.5,24.5 + parent: 2 + - uid: 19909 components: - type: Transform - pos: 505.5,385.5 - parent: 1 - - uid: 9073 + pos: -98.5,21.5 + parent: 2 + - uid: 20460 components: - type: Transform - pos: 504.5,385.5 - parent: 1 - - uid: 9077 + rot: 3.141592653589793 rad + pos: -120.5,-49.5 + parent: 2 + - uid: 21749 components: - type: Transform - pos: 503.5,385.5 - parent: 1 - - uid: 9080 + rot: -1.5707963267948966 rad + pos: -140.5,-5.5 + parent: 2 + - uid: 22090 components: - type: Transform - pos: 503.5,384.5 - parent: 1 - - uid: 9084 + rot: -1.5707963267948966 rad + pos: -55.5,-22.5 + parent: 2 + - uid: 22250 components: - type: Transform - pos: 502.5,385.5 - parent: 1 - - uid: 9085 + rot: 3.141592653589793 rad + pos: -38.5,-17.5 + parent: 2 + - uid: 22251 components: - type: Transform - pos: 508.5,386.5 - parent: 1 - - uid: 9086 + pos: -38.5,-25.5 + parent: 2 + - uid: 22318 components: - type: Transform - pos: 509.5,386.5 - parent: 1 - - uid: 9087 + rot: 1.5707963267948966 rad + pos: -63.5,-4.5 + parent: 2 + - uid: 23016 components: - type: Transform - pos: 509.5,385.5 - parent: 1 - - uid: 10333 + rot: 3.141592653589793 rad + pos: -118.5,-77.5 + parent: 2 + - uid: 25552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,379.5 - parent: 1 - - uid: 10867 + pos: -100.5,13.5 + parent: 2 + - uid: 25612 components: - type: Transform - pos: 349.5,408.5 - parent: 1 - - uid: 10868 + rot: 3.141592653589793 rad + pos: -131.5,-3.5 + parent: 2 + - uid: 25629 components: - type: Transform - pos: 349.5,406.5 - parent: 1 - - uid: 10869 + rot: 1.5707963267948966 rad + pos: -32.5,-19.5 + parent: 2 + - uid: 25922 components: - type: Transform - pos: 350.5,408.5 - parent: 1 - - uid: 10871 + rot: 1.5707963267948966 rad + pos: -102.5,-65.5 + parent: 2 + - uid: 26053 components: - type: Transform - pos: 350.5,406.5 - parent: 1 - - uid: 10872 + rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 1560 components: - type: Transform - pos: 349.5,407.5 - parent: 1 - - uid: 10873 + pos: -113.5,-30.5 + parent: 2 + - uid: 6865 components: - type: Transform - pos: 351.5,406.5 - parent: 1 - - uid: 10874 + pos: -114.5,-30.5 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 1807 components: - type: Transform - pos: 351.5,407.5 - parent: 1 - - uid: 10875 + rot: 1.5707963267948966 rad + pos: -43.5,-73.5 + parent: 2 + - uid: 2703 components: - type: Transform - pos: 351.5,408.5 - parent: 1 - - uid: 12071 + rot: 3.141592653589793 rad + pos: -61.5,3.5 + parent: 2 + - uid: 2704 components: - type: Transform - pos: 509.5,387.5 - parent: 1 - - uid: 12129 + rot: 3.141592653589793 rad + pos: -61.5,7.5 + parent: 2 + - uid: 2705 components: - type: Transform - pos: 510.5,387.5 - parent: 1 - - uid: 12218 + rot: 3.141592653589793 rad + pos: -65.5,6.5 + parent: 2 + - uid: 2706 components: - type: Transform - pos: 509.5,388.5 - parent: 1 - - uid: 14633 + rot: 3.141592653589793 rad + pos: -57.5,6.5 + parent: 2 + - uid: 2707 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,381.5 - parent: 1 - - uid: 14634 + pos: -67.5,5.5 + parent: 2 + - uid: 2708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,379.5 - parent: 1 - - uid: 15403 + rot: 1.5707963267948966 rad + pos: -55.5,5.5 + parent: 2 + - uid: 2733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,387.5 - parent: 1 - - uid: 15932 + pos: -61.5,-0.5 + parent: 2 + - uid: 2864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,389.5 - parent: 1 - - uid: 15933 + pos: -50.5,1.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-73.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 8785 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,387.5 - parent: 1 - - uid: 15934 + pos: -9.5,-28.5 + parent: 2 + - uid: 8787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,389.5 - parent: 1 - - uid: 15935 + pos: -11.5,-27.5 + parent: 2 + - uid: 8788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,381.5 - parent: 1 - - uid: 16155 + pos: -10.5,-27.5 + parent: 2 + - uid: 8789 components: - type: Transform - pos: 0.5,5.5 - parent: 16114 - - uid: 17327 + rot: 1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 20949 components: - type: Transform rot: -1.5707963267948966 rad - pos: 300.5,387.5 - parent: 1 - - uid: 17353 + pos: -54.5,-37.5 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 4083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 298.5,387.5 - parent: 1 - - uid: 17478 + pos: -17.5,-39.5 + parent: 2 + - uid: 4084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 299.5,387.5 - parent: 1 - - uid: 18615 + pos: -17.5,-38.5 + parent: 2 + - uid: 5830 components: - type: Transform - pos: 341.5,437.5 - parent: 1 - - uid: 18618 + pos: -20.493301,-29.299633 + parent: 2 + - uid: 6259 components: - type: Transform - pos: 341.5,436.5 - parent: 1 - - uid: 18619 + pos: -19.508926,-29.284008 + parent: 2 + - uid: 8688 components: - type: Transform - pos: 353.5,437.5 - parent: 1 - - uid: 18620 + pos: -33.5,-25.5 + parent: 2 + - uid: 8927 components: - type: Transform - pos: 353.5,438.5 - parent: 1 - - uid: 18621 + pos: -34.5,-25.5 + parent: 2 + - uid: 8937 components: - type: Transform - pos: 354.5,438.5 - parent: 1 - - uid: 18622 + pos: -32.5,-25.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 3929 components: - type: Transform - pos: 358.5,431.5 - parent: 1 - - uid: 18623 + pos: -39.5,-17.5 + parent: 2 + - uid: 3944 components: - type: Transform - pos: 358.5,430.5 - parent: 1 - - uid: 18625 + pos: -39.5,-25.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 3949 components: - type: Transform - pos: 357.5,430.5 - parent: 1 - - uid: 18740 + pos: -36.5,-17.5 + parent: 2 + - uid: 19258 components: - type: Transform - pos: 419.5,385.5 - parent: 1 - - uid: 18741 + pos: -36.5,-25.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 3928 components: - type: Transform - pos: 418.5,385.5 - parent: 1 - - uid: 18742 + pos: -39.5,-18.5 + parent: 2 + - uid: 3943 components: - type: Transform - pos: 418.5,384.5 - parent: 1 - - uid: 18743 + pos: -39.5,-24.5 + parent: 2 + - uid: 4175 components: - type: Transform - pos: 418.5,382.5 - parent: 1 - - uid: 18744 + pos: -24.5,-52.5 + parent: 2 +- proto: ChurchBell + entities: + - uid: 15126 components: - type: Transform - pos: 418.5,383.5 - parent: 1 - - uid: 18745 + rot: -1.5707963267948966 rad + pos: -44.5,-43.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 14792 components: - type: Transform - pos: 418.5,379.5 - parent: 1 - - uid: 18746 + pos: -44.5,-47.5 + parent: 2 +- proto: Cigar + entities: + - uid: 22289 components: - type: Transform - pos: 418.5,378.5 - parent: 1 - - uid: 18747 + pos: -98.50663,-46.59518 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 2442 components: - type: Transform - pos: 419.5,378.5 - parent: 1 - - uid: 18748 + pos: -62.51284,-4.350784 + parent: 2 + - uid: 23445 components: - type: Transform - pos: 420.5,378.5 - parent: 1 - - uid: 18749 + pos: -134.43372,-1.2921429 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 4306 components: - type: Transform - pos: 422.5,385.5 - parent: 1 - - uid: 18750 + rot: 1.5707963267948966 rad + pos: -71.64852,-4.3971386 + parent: 2 +- proto: CigarGoldSpent + entities: + - uid: 21063 components: - type: Transform - pos: 423.5,385.5 - parent: 1 - - uid: 18751 + parent: 21062 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigPackBlack + entities: + - uid: 21461 components: - type: Transform - pos: 423.5,384.5 - parent: 1 - - uid: 18752 + pos: -121.7455,36.61736 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 5873 components: - type: Transform - pos: 423.5,383.5 - parent: 1 - - uid: 18753 + pos: -109.5,-16.5 + parent: 2 + - uid: 7550 components: - type: Transform - pos: 424.5,385.5 - parent: 1 - - uid: 18754 + pos: -120.5,-37.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 25668 components: - type: Transform - pos: 423.5,380.5 - parent: 1 - - uid: 18755 + pos: -19.5,-0.5 + parent: 2 +- proto: CleanerGrenade + entities: + - uid: 3324 components: - type: Transform - pos: 422.5,380.5 - parent: 1 - - uid: 18756 + pos: -17.590767,-4.781474 + parent: 2 + - uid: 3325 components: - type: Transform - pos: 422.5,379.5 - parent: 1 - - uid: 18757 + pos: -17.247017,-4.422099 + parent: 2 + - uid: 3335 components: - type: Transform - pos: 422.5,377.5 - parent: 1 - - uid: 18758 + pos: -17.418892,-4.640849 + parent: 2 +- proto: ClockworkGrilleBroken + entities: + - uid: 22118 components: - type: Transform - pos: 422.5,376.5 - parent: 1 - - uid: 18759 + pos: -94.5,-50.5 + parent: 2 + - uid: 22359 components: - type: Transform - pos: 422.5,378.5 - parent: 1 - - uid: 18760 + rot: 3.141592653589793 rad + pos: -94.5,-49.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 7261 components: - type: Transform - pos: 422.5,374.5 - parent: 1 - - uid: 18761 + pos: -80.5,-29.5 + parent: 2 + - uid: 7843 components: - type: Transform - pos: 422.5,373.5 - parent: 1 - - uid: 18762 + pos: -142.5,-38.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 3491 components: - type: Transform - pos: 422.5,372.5 - parent: 1 - - uid: 18763 + pos: -50.5,-26.5 + parent: 2 +- proto: ClosetEmergency + entities: + - uid: 20259 components: - type: Transform - pos: 422.5,370.5 - parent: 1 - - uid: 18764 + pos: -14.5,-5.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 939 components: - type: Transform - pos: 422.5,371.5 - parent: 1 - - uid: 18765 + pos: -104.5,24.5 + parent: 2 + - uid: 4318 components: - type: Transform - pos: 423.5,370.5 - parent: 1 - - uid: 18766 + pos: -127.5,-29.5 + parent: 2 + - uid: 4319 components: - type: Transform - pos: 423.5,368.5 - parent: 1 - - uid: 18767 + pos: -134.5,-58.5 + parent: 2 + - uid: 5120 components: - type: Transform - pos: 423.5,369.5 - parent: 1 - - uid: 18768 + pos: -126.5,-33.5 + parent: 2 + - uid: 6763 components: - type: Transform - pos: 423.5,366.5 - parent: 1 - - uid: 18769 + pos: -126.5,17.5 + parent: 2 + - uid: 7313 components: - type: Transform - pos: 423.5,365.5 - parent: 1 - - uid: 18770 + pos: -114.5,-8.5 + parent: 2 + - uid: 7887 components: - type: Transform - pos: 422.5,365.5 - parent: 1 - - uid: 18771 + pos: -139.5,-50.5 + parent: 2 + - uid: 8058 components: - type: Transform - pos: 420.5,365.5 - parent: 1 - - uid: 18772 + pos: -84.5,-9.5 + parent: 2 + - uid: 9006 components: - type: Transform - pos: 421.5,365.5 - parent: 1 - - uid: 18773 + pos: -71.5,-24.5 + parent: 2 + - uid: 9199 components: - type: Transform - pos: 411.5,365.5 - parent: 1 - - uid: 18774 + pos: -14.5,8.5 + parent: 2 + - uid: 9277 components: - type: Transform - pos: 409.5,365.5 - parent: 1 - - uid: 18775 + pos: -30.5,23.5 + parent: 2 + - uid: 9664 components: - type: Transform - pos: 408.5,365.5 - parent: 1 - - uid: 18776 + pos: -136.5,14.5 + parent: 2 + - uid: 10131 components: - type: Transform - pos: 410.5,365.5 - parent: 1 - - uid: 18777 + pos: -54.5,-58.5 + parent: 2 + - uid: 11235 components: - type: Transform - pos: 404.5,364.5 - parent: 1 - - uid: 18778 + pos: -58.5,2.5 + parent: 2 + - uid: 17069 components: - type: Transform - pos: 404.5,365.5 - parent: 1 - - uid: 18779 + pos: -36.5,-69.5 + parent: 2 + - uid: 20398 components: - type: Transform - pos: 403.5,365.5 - parent: 1 - - uid: 18780 + pos: -105.5,-63.5 + parent: 2 + - uid: 20940 components: - type: Transform - pos: 427.5,385.5 - parent: 1 - - uid: 18781 + pos: -42.5,-32.5 + parent: 2 + - uid: 22007 components: - type: Transform - pos: 427.5,384.5 - parent: 1 - - uid: 18782 + pos: -119.5,-33.5 + parent: 2 + - uid: 23334 components: - type: Transform - pos: 428.5,384.5 - parent: 1 - - uid: 18783 + pos: -66.5,-21.5 + parent: 2 + - uid: 23376 components: - type: Transform - pos: 427.5,383.5 - parent: 1 - - uid: 18784 + pos: -76.5,-9.5 + parent: 2 + - uid: 23395 components: - type: Transform - pos: 431.5,385.5 - parent: 1 - - uid: 18785 + pos: -97.5,4.5 + parent: 2 + - uid: 23919 components: - type: Transform - pos: 433.5,385.5 - parent: 1 - - uid: 18786 + pos: -19.5,0.5 + parent: 2 + - uid: 24104 components: - type: Transform - pos: 432.5,385.5 - parent: 1 - - uid: 18787 + pos: -7.5,-37.5 + parent: 2 + - uid: 26112 components: - type: Transform - pos: 433.5,386.5 - parent: 1 - - uid: 18788 + pos: -134.5,-17.5 + parent: 2 + - uid: 26161 components: - type: Transform - pos: 433.5,388.5 - parent: 1 - - uid: 18789 + pos: -84.5,7.5 + parent: 2 + - uid: 26162 components: - type: Transform - pos: 433.5,387.5 - parent: 1 - - uid: 18790 + pos: -101.5,24.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 4206 components: - type: Transform - pos: 434.5,385.5 - parent: 1 - - uid: 18791 + pos: -134.5,-18.5 + parent: 2 + - uid: 4661 components: - type: Transform - pos: 432.5,384.5 - parent: 1 - - uid: 18792 + pos: -128.5,-29.5 + parent: 2 + - uid: 11128 components: - type: Transform - pos: 433.5,392.5 - parent: 1 - - uid: 18793 + pos: -139.5,-51.5 + parent: 2 +- proto: ClosetFire + entities: + - uid: 16929 components: - type: Transform - pos: 433.5,394.5 - parent: 1 - - uid: 18794 + pos: -30.5,-68.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 2420 components: - type: Transform - pos: 433.5,393.5 - parent: 1 - - uid: 18795 + pos: -124.5,-33.5 + parent: 2 + - uid: 4113 components: - type: Transform - pos: 433.5,396.5 - parent: 1 - - uid: 18796 + pos: -139.5,-52.5 + parent: 2 + - uid: 4212 components: - type: Transform - pos: 433.5,397.5 - parent: 1 - - uid: 18797 + pos: -134.5,-19.5 + parent: 2 + - uid: 4662 components: - type: Transform - pos: 434.5,397.5 - parent: 1 - - uid: 18798 + pos: -129.5,-29.5 + parent: 2 + - uid: 5537 components: - type: Transform - pos: 434.5,399.5 - parent: 1 - - uid: 18799 + pos: -113.5,14.5 + parent: 2 + - uid: 5819 components: - type: Transform - pos: 434.5,398.5 - parent: 1 - - uid: 18800 + pos: -115.5,-8.5 + parent: 2 + - uid: 9325 components: - type: Transform - pos: 434.5,402.5 - parent: 1 - - uid: 18801 + pos: -28.5,23.5 + parent: 2 + - uid: 9968 components: - type: Transform - pos: 434.5,403.5 - parent: 1 - - uid: 18802 + pos: -54.5,-59.5 + parent: 2 + - uid: 11236 components: - type: Transform - pos: 434.5,405.5 - parent: 1 - - uid: 18803 + pos: -57.5,2.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 13666 components: - type: Transform - pos: 432.5,411.5 - parent: 1 - - uid: 18804 + pos: -135.5,-35.5 + parent: 2 + - uid: 15339 components: - type: Transform - pos: 432.5,412.5 - parent: 1 - - uid: 18805 + pos: -14.5,7.5 + parent: 2 + - uid: 17093 components: - type: Transform - pos: 432.5,414.5 - parent: 1 - - uid: 18806 + pos: -68.5,-64.5 + parent: 2 + - uid: 17101 components: - type: Transform - pos: 432.5,416.5 - parent: 1 - - uid: 18807 + pos: -74.5,-61.5 + parent: 2 + - uid: 18828 components: - type: Transform - pos: 432.5,415.5 - parent: 1 - - uid: 18808 + pos: -141.5,-11.5 + parent: 2 + - uid: 20261 components: - type: Transform - pos: 433.5,415.5 - parent: 1 - - uid: 18809 + pos: -14.5,-4.5 + parent: 2 + - uid: 20941 components: - type: Transform - pos: 430.5,418.5 - parent: 1 - - uid: 18810 + pos: -43.5,-32.5 + parent: 2 + - uid: 20943 components: - type: Transform - pos: 429.5,418.5 - parent: 1 - - uid: 18811 + pos: -41.5,-25.5 + parent: 2 + - uid: 23377 components: - type: Transform - pos: 429.5,419.5 - parent: 1 - - uid: 18812 + pos: -77.5,-9.5 + parent: 2 + - uid: 24615 components: - type: Transform - pos: 427.5,419.5 - parent: 1 - - uid: 18813 + pos: -32.5,4.5 + parent: 2 + - uid: 26119 components: - type: Transform - pos: 428.5,419.5 - parent: 1 - - uid: 18814 + pos: -104.5,25.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 3332 components: - type: Transform - pos: 425.5,419.5 - parent: 1 - - uid: 18815 + pos: -19.5,-6.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 22639 components: - type: Transform - pos: 424.5,419.5 - parent: 1 - - uid: 18816 + pos: -18.5,-6.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 5998 components: - type: Transform - pos: 424.5,418.5 - parent: 1 - - uid: 18817 + pos: -142.5,-39.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 6718 components: - type: Transform - pos: 423.5,418.5 - parent: 1 - - uid: 18818 + pos: -80.5,-28.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 4188 components: - type: Transform - pos: 420.5,418.5 - parent: 1 - - uid: 18819 + pos: -25.5,-50.5 + parent: 2 + - uid: 11558 components: - type: Transform - pos: 419.5,418.5 - parent: 1 - - uid: 18820 + pos: -25.5,-48.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1512 components: - type: Transform - pos: 419.5,419.5 - parent: 1 - - uid: 18821 + pos: -12.5,3.5 + parent: 2 + - uid: 1739 components: - type: Transform - pos: 419.5,421.5 - parent: 1 - - uid: 18822 + pos: -39.5,-62.5 + parent: 2 + - uid: 2290 components: - type: Transform - pos: 419.5,420.5 - parent: 1 - - uid: 18823 + pos: -138.5,22.5 + parent: 2 + - uid: 4219 components: - type: Transform - pos: 419.5,422.5 - parent: 1 - - uid: 18824 + pos: -139.5,-36.5 + parent: 2 + - uid: 4663 components: - type: Transform - pos: 419.5,423.5 - parent: 1 - - uid: 18825 + pos: -139.5,-54.5 + parent: 2 + - uid: 4820 components: - type: Transform - pos: 420.5,422.5 - parent: 1 - - uid: 18826 + pos: -67.5,-78.5 + parent: 2 + - uid: 8817 components: - type: Transform - pos: 415.5,424.5 - parent: 1 - - uid: 18827 + pos: -10.5,-40.5 + parent: 2 + - uid: 8842 components: - type: Transform - pos: 413.5,424.5 - parent: 1 - - uid: 18828 + pos: -73.5,-34.5 + parent: 2 + - uid: 9083 components: - type: Transform - pos: 412.5,424.5 - parent: 1 - - uid: 18829 + pos: -32.5,-54.5 + parent: 2 + - uid: 9192 components: - type: Transform - pos: 414.5,424.5 - parent: 1 - - uid: 18830 + pos: -16.5,4.5 + parent: 2 + - uid: 10082 components: - type: Transform - pos: 409.5,424.5 - parent: 1 - - uid: 18831 + pos: -32.5,-66.5 + parent: 2 + - uid: 10607 components: - type: Transform - pos: 407.5,424.5 - parent: 1 - - uid: 18832 + pos: -138.5,14.5 + parent: 2 + - uid: 16627 components: - type: Transform - pos: 408.5,424.5 - parent: 1 - - uid: 18833 + pos: -32.5,-67.5 + parent: 2 + - uid: 17597 components: - type: Transform - pos: 406.5,424.5 - parent: 1 - - uid: 18834 + pos: -14.5,-64.5 + parent: 2 + - uid: 19034 components: - type: Transform - pos: 405.5,424.5 - parent: 1 - - uid: 18835 + pos: -10.5,-39.5 + parent: 2 + - uid: 19902 components: - type: Transform - pos: 405.5,425.5 - parent: 1 - - uid: 18836 + pos: -51.5,-61.5 + parent: 2 + - uid: 20399 components: - type: Transform - pos: 402.5,424.5 - parent: 1 - - uid: 18837 + pos: -125.5,-58.5 + parent: 2 + - uid: 20645 components: - type: Transform - pos: 401.5,424.5 - parent: 1 - - uid: 18838 + pos: -39.5,-56.5 + parent: 2 + - uid: 23380 components: - type: Transform - pos: 399.5,424.5 - parent: 1 - - uid: 18839 + pos: -84.5,9.5 + parent: 2 + - uid: 24499 components: - type: Transform - pos: 397.5,424.5 - parent: 1 - - uid: 18840 + pos: -40.5,-9.5 + parent: 2 + - uid: 26120 components: - type: Transform - pos: 398.5,424.5 - parent: 1 - - uid: 18841 + pos: -122.5,24.5 + parent: 2 + - uid: 26175 components: - type: Transform - pos: 394.5,424.5 - parent: 1 - - uid: 18842 + pos: -14.5,2.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 7844 components: - type: Transform - pos: 393.5,424.5 - parent: 1 - - uid: 18843 + pos: -142.5,-40.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 4151 components: - type: Transform - pos: 393.5,423.5 - parent: 1 - - uid: 18844 + pos: -19.5,-48.5 + parent: 2 + - uid: 4153 components: - type: Transform - pos: 393.5,421.5 - parent: 1 - - uid: 18845 + pos: -19.5,-52.5 + parent: 2 + - uid: 9728 components: - type: Transform - pos: 393.5,422.5 - parent: 1 - - uid: 18846 + pos: -116.5,22.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9657 + - 9655 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 26157 components: - type: Transform - pos: 392.5,421.5 - parent: 1 - - uid: 18847 + pos: -104.5,19.5 + parent: 2 + - uid: 26158 components: - type: Transform - pos: 390.5,421.5 - parent: 1 - - uid: 18848 + pos: -87.5,4.5 + parent: 2 +- proto: ClosetTool + entities: + - uid: 13537 components: - type: Transform - pos: 391.5,421.5 - parent: 1 - - uid: 18849 + pos: -88.5,-17.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13538 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetToolFilled + entities: + - uid: 4977 components: - type: Transform - pos: 390.5,420.5 - parent: 1 - - uid: 18850 + pos: -138.5,10.5 + parent: 2 + - uid: 7381 components: - type: Transform - pos: 390.5,419.5 - parent: 1 - - uid: 18851 + pos: -150.5,-48.5 + parent: 2 + - uid: 7459 components: - type: Transform - pos: 390.5,416.5 - parent: 1 - - uid: 18852 + pos: -39.5,-42.5 + parent: 2 + - uid: 8472 components: - type: Transform - pos: 353.5,406.5 - parent: 1 - - uid: 18853 + pos: -14.5,4.5 + parent: 2 + - uid: 9775 components: - type: Transform - pos: 353.5,408.5 - parent: 1 - - uid: 18854 + pos: -41.5,-43.5 + parent: 2 + - uid: 14646 components: - type: Transform - pos: 353.5,407.5 - parent: 1 - - uid: 18855 + pos: -110.5,-48.5 + parent: 2 + - uid: 17599 components: - type: Transform - pos: 354.5,408.5 - parent: 1 - - uid: 18856 + pos: -19.5,-66.5 + parent: 2 + - uid: 20401 components: - type: Transform - pos: 354.5,409.5 - parent: 1 - - uid: 18857 + pos: -124.5,-58.5 + parent: 2 + - uid: 20734 components: - type: Transform - pos: 353.5,412.5 - parent: 1 - - uid: 18858 + pos: -70.5,-64.5 + parent: 2 + - uid: 22342 components: - type: Transform - pos: 353.5,413.5 - parent: 1 - - uid: 18859 + pos: -118.5,-28.5 + parent: 2 + - uid: 23254 components: - type: Transform - pos: 353.5,414.5 - parent: 1 - - uid: 18860 + pos: -10.5,-41.5 + parent: 2 + - uid: 23374 components: - type: Transform - pos: 353.5,416.5 - parent: 1 - - uid: 18861 + pos: -74.5,-8.5 + parent: 2 + - uid: 24500 components: - type: Transform - pos: 353.5,417.5 - parent: 1 - - uid: 18862 + pos: -39.5,-9.5 + parent: 2 + - uid: 26156 components: - type: Transform - pos: 355.5,417.5 - parent: 1 - - uid: 18863 + pos: -119.5,36.5 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 3894 components: - type: Transform - pos: 354.5,417.5 - parent: 1 - - uid: 18864 + pos: -41.47029,-38.43946 + parent: 2 + - uid: 4070 components: - type: Transform - pos: 355.5,418.5 - parent: 1 - - uid: 18865 + pos: -23.501163,-36.28371 + parent: 2 + - uid: 4071 components: - type: Transform - pos: 355.5,419.5 - parent: 1 - - uid: 18866 + pos: -23.485538,-38.330585 + parent: 2 + - uid: 8059 components: - type: Transform - pos: 356.5,417.5 - parent: 1 - - uid: 18867 + pos: -124.49293,-55.3451 + parent: 2 + - uid: 13573 components: - type: Transform - pos: 357.5,417.5 - parent: 1 - - uid: 18868 + pos: -34.523182,-37.31406 + parent: 2 +- proto: ClothingBackpackWaterTank + entities: + - uid: 3370 components: - type: Transform - pos: 359.5,414.5 - parent: 1 - - uid: 18869 + parent: 3368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 13538 components: - type: Transform - pos: 359.5,412.5 - parent: 1 - - uid: 18870 + parent: 13537 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18770 components: - type: Transform - pos: 359.5,413.5 - parent: 1 - - uid: 18871 + pos: -107.5,-15.5 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 24497 components: - type: Transform - pos: 359.5,409.5 - parent: 1 - - uid: 18872 + pos: -35.52224,-6.4022703 + parent: 2 +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 11158 components: - type: Transform - pos: 358.5,409.5 - parent: 1 - - uid: 18873 + pos: -97.522255,-43.642056 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 1706 components: - type: Transform - pos: 359.5,410.5 - parent: 1 - - uid: 18874 + pos: -57.5,-72.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 3965 components: - type: Transform - pos: 360.5,409.5 - parent: 1 - - uid: 18875 + pos: -60.5,-69.5 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 4381 components: - type: Transform - pos: 358.5,408.5 - parent: 1 - - uid: 18876 + pos: -26.49561,-5.6866364 + parent: 2 + - uid: 23452 components: - type: Transform - pos: 358.5,407.5 - parent: 1 - - uid: 18877 + pos: -67.5,-69.5 + parent: 2 +- proto: ClothingHeadFishCap + entities: + - uid: 3305 components: - type: Transform - pos: 361.5,417.5 - parent: 1 - - uid: 18878 + pos: -71.51768,-42.386246 + parent: 2 +- proto: ClothingHeadHatCone + entities: + - uid: 22975 components: - type: Transform - pos: 361.5,416.5 - parent: 1 - - uid: 18879 + pos: -119.74715,-37.22033 + parent: 2 + - uid: 22977 components: - type: Transform - pos: 360.5,416.5 - parent: 1 - - uid: 18880 + pos: -119.24715,-37.204704 + parent: 2 + - uid: 22978 components: - type: Transform - pos: 355.5,421.5 - parent: 1 - - uid: 18881 + pos: -121.53278,-28.690674 + parent: 2 + - uid: 22979 components: - type: Transform - pos: 355.5,422.5 - parent: 1 - - uid: 18882 + pos: -120.50319,-28.503174 + parent: 2 + - uid: 22980 components: - type: Transform - pos: 355.5,423.5 - parent: 1 - - uid: 18883 + pos: -119.643814,-28.300049 + parent: 2 + - uid: 22981 components: - type: Transform - pos: 355.5,424.5 - parent: 1 - - uid: 18884 + pos: -118.95027,-28.066614 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 24563 components: - type: Transform - pos: 356.5,423.5 - parent: 1 - - uid: 18885 + pos: -24.954203,-70.19411 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 11625 components: - type: Transform - pos: 358.5,423.5 - parent: 1 - - uid: 18886 + pos: -23.908735,4.571392 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 18813 components: - type: Transform - pos: 357.5,423.5 - parent: 1 - - uid: 18887 + pos: -116.44845,12.663849 + parent: 2 +- proto: ClothingNeckGoldAutismPin + entities: + - uid: 9590 components: - type: Transform - pos: 358.5,424.5 - parent: 1 - - uid: 18888 + parent: 21062 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckGoldmedal + entities: + - uid: 4302 components: - type: Transform - pos: 357.5,422.5 - parent: 1 - - uid: 18889 + pos: -74.52667,-0.5660391 + parent: 2 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 11850 components: - type: Transform - pos: 357.5,428.5 - parent: 1 - - uid: 18890 + pos: -97.616005,-43.298306 + parent: 2 +- proto: ClothingOuterCoatPirate + entities: + - uid: 24562 components: - type: Transform - pos: 357.5,427.5 - parent: 1 - - uid: 18891 + pos: -24.922953,-70.55348 + parent: 2 +- proto: ClothingOuterWinterEngi + entities: + - uid: 12180 components: - type: Transform - pos: 356.5,428.5 - parent: 1 - - uid: 18892 + pos: -86.49207,-7.485811 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 24375 components: - type: Transform - pos: 355.5,428.5 - parent: 1 - - uid: 18893 + pos: -37.427452,-4.375092 + parent: 2 + - uid: 24376 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - uid: 18894 + pos: -37.724327,-4.578217 + parent: 2 +- proto: ClothingShoesFlippers + entities: + - uid: 23877 components: - type: Transform - pos: 354.5,429.5 - parent: 1 - - uid: 18895 + pos: -66.47555,-40.507927 + parent: 2 +- proto: ClothingUnderSocksCoder + entities: + - uid: 9657 components: - type: Transform - pos: 354.5,430.5 - parent: 1 - - uid: 18896 + parent: 9728 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20344 components: - type: Transform - pos: 354.5,432.5 - parent: 1 - - uid: 18897 + pos: -115.44157,-60.670666 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 1859 components: - type: Transform - pos: 354.5,431.5 - parent: 1 - - uid: 18898 + pos: -15.489,17.553165 + parent: 2 + - uid: 9655 components: - type: Transform - pos: 354.5,433.5 - parent: 1 - - uid: 18899 + parent: 9728 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitJournalist + entities: + - uid: 16015 components: - type: Transform - pos: 354.5,434.5 - parent: 1 - - uid: 18900 + pos: -109.5954,-33.615555 + parent: 2 +- proto: ClothingUniformJumpsuitReporter + entities: + - uid: 16014 components: - type: Transform - pos: 355.5,427.5 - parent: 1 - - uid: 18901 + pos: -109.43915,-33.53743 + parent: 2 +- proto: ComfyChair + entities: + - uid: 1641 components: - type: Transform - pos: 349.5,435.5 - parent: 1 - - uid: 18902 + pos: -97.5,-38.5 + parent: 2 + - uid: 2550 components: - type: Transform - pos: 351.5,435.5 - parent: 1 - - uid: 18903 + rot: 3.141592653589793 rad + pos: -62.5,-24.5 + parent: 2 + - uid: 2551 components: - type: Transform - pos: 350.5,435.5 - parent: 1 - - uid: 18904 + rot: 1.5707963267948966 rad + pos: -63.5,-23.5 + parent: 2 + - uid: 2552 components: - type: Transform - pos: 349.5,436.5 - parent: 1 - - uid: 18905 + rot: 3.141592653589793 rad + pos: -61.5,-24.5 + parent: 2 + - uid: 2632 components: - type: Transform - pos: 349.5,437.5 - parent: 1 - - uid: 18906 + rot: 3.141592653589793 rad + pos: -82.5,-34.5 + parent: 2 + - uid: 4719 components: - type: Transform - pos: 348.5,437.5 - parent: 1 - - uid: 18907 + pos: -86.5,30.5 + parent: 2 + - uid: 6301 components: - type: Transform - pos: 346.5,437.5 - parent: 1 - - uid: 18908 + rot: 3.141592653589793 rad + pos: -123.5,-17.5 + parent: 2 + - uid: 7601 components: - type: Transform - pos: 347.5,437.5 - parent: 1 - - uid: 18909 + rot: 3.141592653589793 rad + pos: -133.5,-47.5 + parent: 2 + - uid: 8390 components: - type: Transform - pos: 344.5,436.5 - parent: 1 - - uid: 18910 + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 2 + - uid: 9148 components: - type: Transform - pos: 344.5,435.5 - parent: 1 - - uid: 18911 + pos: -18.5,-17.5 + parent: 2 + - uid: 9423 components: - type: Transform - pos: 343.5,435.5 - parent: 1 - - uid: 18912 + rot: -1.5707963267948966 rad + pos: -59.5,-23.5 + parent: 2 + - uid: 9705 components: - type: Transform - pos: 342.5,435.5 - parent: 1 - - uid: 18913 + pos: -114.5,30.5 + parent: 2 + - uid: 10724 components: - type: Transform - pos: 341.5,435.5 - parent: 1 - - uid: 18914 + rot: 3.141592653589793 rad + pos: -60.5,-24.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 24950 components: - type: Transform - pos: 339.5,435.5 - parent: 1 - - uid: 18915 + pos: -118.489746,-74.612564 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 2505 components: - type: Transform - pos: 340.5,435.5 - parent: 1 - - uid: 18916 + rot: 1.5707963267948966 rad + pos: -111.5,-6.5 + parent: 2 + - uid: 2689 components: - type: Transform - pos: 336.5,435.5 - parent: 1 - - uid: 18917 + pos: -62.5,8.5 + parent: 2 + - uid: 5890 components: - type: Transform - pos: 335.5,435.5 - parent: 1 - - uid: 18918 + rot: 3.141592653589793 rad + pos: -113.5,-18.5 + parent: 2 + - uid: 6283 components: - type: Transform - pos: 334.5,435.5 - parent: 1 - - uid: 18919 + rot: 3.141592653589793 rad + pos: -122.5,-18.5 + parent: 2 + - uid: 9004 components: - type: Transform - pos: 334.5,434.5 - parent: 1 - - uid: 18920 + rot: 3.141592653589793 rad + pos: -122.5,14.5 + parent: 2 + - uid: 18369 components: - type: Transform - pos: 332.5,434.5 - parent: 1 - - uid: 18921 + rot: -1.5707963267948966 rad + pos: -108.5,-42.5 + parent: 2 + - uid: 22543 components: - type: Transform - pos: 331.5,434.5 - parent: 1 - - uid: 18922 + pos: -123.5,-76.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 7205 components: - type: Transform - pos: 333.5,434.5 - parent: 1 - - uid: 18923 + rot: 3.141592653589793 rad + pos: -147.5,-47.5 + parent: 2 + - type: DeviceLinkSource + range: 7 + linkedPorts: + 14168: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + - uid: 7251 components: - type: Transform - pos: 330.5,434.5 - parent: 1 - - uid: 18924 + pos: -147.5,-43.5 + parent: 2 + - type: DeviceLinkSource + range: 7 + linkedPorts: + 15401: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 5571 components: - type: Transform - pos: 326.5,434.5 - parent: 1 - - uid: 18925 + pos: -61.5,8.5 + parent: 2 + - uid: 9003 components: - type: Transform - pos: 328.5,434.5 - parent: 1 - - uid: 18926 + rot: 3.141592653589793 rad + pos: -121.5,14.5 + parent: 2 + - uid: 13094 components: - type: Transform - pos: 327.5,434.5 - parent: 1 - - uid: 18927 + rot: 1.5707963267948966 rad + pos: -141.5,-4.5 + parent: 2 + - uid: 22484 components: - type: Transform - pos: 327.5,435.5 - parent: 1 - - uid: 18928 + rot: -1.5707963267948966 rad + pos: -109.5,-6.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 3700 components: - type: Transform - pos: 327.5,436.5 - parent: 1 - - uid: 18929 + rot: -1.5707963267948966 rad + pos: -124.5,-53.5 + parent: 2 + - uid: 3897 components: - type: Transform - pos: 324.5,432.5 - parent: 1 - - uid: 18930 + rot: 3.141592653589793 rad + pos: -39.5,-38.5 + parent: 2 + - uid: 4048 components: - type: Transform - pos: 323.5,432.5 - parent: 1 - - uid: 18931 + rot: 1.5707963267948966 rad + pos: -23.5,-34.5 + parent: 2 + - uid: 4049 components: - type: Transform - pos: 323.5,431.5 - parent: 1 - - uid: 18932 + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 2 + - uid: 8334 components: - type: Transform - pos: 323.5,429.5 - parent: 1 - - uid: 18933 + pos: -34.5,-35.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 9055 components: - type: Transform - pos: 323.5,430.5 - parent: 1 - - uid: 18934 + pos: -44.5,-66.5 + parent: 2 + - uid: 16479 components: - type: Transform - pos: 323.5,433.5 - parent: 1 - - uid: 18935 + rot: -1.5707963267948966 rad + pos: -37.5,-67.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 4728 components: - type: Transform - pos: 326.5,431.5 - parent: 1 - - uid: 19011 + pos: -84.5,31.5 + parent: 2 + - uid: 19545 components: - type: Transform - pos: 335.5,393.5 - parent: 1 - - uid: 19012 + pos: -89.5,25.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 4727 components: - type: Transform - pos: 335.5,392.5 - parent: 1 - - uid: 19013 + pos: -85.5,31.5 + parent: 2 + - uid: 5568 components: - type: Transform - pos: 334.5,392.5 - parent: 1 - - uid: 19014 + rot: 1.5707963267948966 rad + pos: -68.5,5.5 + parent: 2 + - uid: 9996 components: - type: Transform - pos: 332.5,392.5 - parent: 1 - - uid: 19015 + pos: -101.5,12.5 + parent: 2 + - uid: 17840 components: - type: Transform - pos: 331.5,392.5 - parent: 1 - - uid: 19016 + rot: -1.5707963267948966 rad + pos: -98.5,13.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 2690 components: - type: Transform - pos: 333.5,392.5 - parent: 1 - - uid: 19017 + pos: -61.5,4.5 + parent: 2 + - uid: 2874 components: - type: Transform - pos: 331.5,391.5 - parent: 1 - - uid: 19018 + rot: 1.5707963267948966 rad + pos: -53.5,1.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 2687 components: - type: Transform - pos: 333.5,391.5 - parent: 1 - - uid: 19019 + pos: -65.5,7.5 + parent: 2 + - uid: 2691 components: - type: Transform - pos: 333.5,390.5 - parent: 1 - - uid: 19020 + pos: -58.5,7.5 + parent: 2 + - uid: 2932 components: - type: Transform - pos: 335.5,389.5 - parent: 1 - - uid: 19021 + rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - uid: 3978 components: - type: Transform - pos: 335.5,387.5 - parent: 1 - - uid: 19022 + rot: 3.141592653589793 rad + pos: -26.5,-26.5 + parent: 2 + - uid: 4011 components: - type: Transform - pos: 335.5,388.5 - parent: 1 - - uid: 19023 + rot: -1.5707963267948966 rad + pos: -90.5,-23.5 + parent: 2 + - uid: 5526 components: - type: Transform - pos: 335.5,385.5 - parent: 1 - - uid: 19024 + pos: -32.5,-17.5 + parent: 2 + - uid: 6733 components: - type: Transform - pos: 335.5,386.5 - parent: 1 - - uid: 19025 + rot: 1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - uid: 7605 components: - type: Transform - pos: 334.5,385.5 - parent: 1 - - uid: 19026 + rot: 3.141592653589793 rad + pos: -132.5,-48.5 + parent: 2 + - uid: 16911 components: - type: Transform - pos: 336.5,387.5 - parent: 1 - - uid: 19027 + rot: 3.141592653589793 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 22519 components: - type: Transform - pos: 334.5,384.5 - parent: 1 - - uid: 19028 + pos: -122.5,-76.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 1623 components: - type: Transform - pos: 334.5,383.5 - parent: 1 - - uid: 19029 + rot: 3.141592653589793 rad + pos: -97.5,-47.5 + parent: 2 + - uid: 2681 components: - type: Transform - pos: 338.5,390.5 - parent: 1 - - uid: 19030 + pos: -64.5,7.5 + parent: 2 + - uid: 6674 components: - type: Transform - pos: 337.5,390.5 - parent: 1 - - uid: 19031 + rot: -1.5707963267948966 rad + pos: -90.5,-19.5 + parent: 2 + - uid: 6727 components: - type: Transform - pos: 337.5,389.5 - parent: 1 - - uid: 19032 + rot: -1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - uid: 8657 components: - type: Transform - pos: 336.5,382.5 - parent: 1 - - uid: 19033 + rot: 3.141592653589793 rad + pos: -26.5,5.5 + parent: 2 + - uid: 9542 components: - type: Transform - pos: 338.5,382.5 - parent: 1 - - uid: 19034 + pos: -98.5,-37.5 + parent: 2 + - uid: 9619 components: - type: Transform - pos: 339.5,382.5 - parent: 1 - - uid: 19035 + rot: -1.5707963267948966 rad + pos: -90.5,-25.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 1159 components: - type: Transform - pos: 340.5,382.5 - parent: 1 - - uid: 19036 + rot: 3.141592653589793 rad + pos: -29.5,-72.5 + parent: 2 + - uid: 1387 components: - type: Transform - pos: 337.5,382.5 - parent: 1 - - uid: 19037 + rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 2701 components: - type: Transform - pos: 340.5,383.5 - parent: 1 - - uid: 19038 + pos: -62.5,4.5 + parent: 2 + - uid: 2882 components: - type: Transform - pos: 338.5,383.5 - parent: 1 - - uid: 19039 + rot: 1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - uid: 2954 components: - type: Transform - pos: 442.5,392.5 - parent: 1 - - uid: 19040 + rot: -1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 15990 components: - type: Transform - pos: 347.5,385.5 - parent: 1 - - uid: 19041 + rot: 1.5707963267948966 rad + pos: -111.5,-31.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 2692 components: - type: Transform - pos: 346.5,385.5 - parent: 1 - - uid: 19042 + pos: -57.5,7.5 + parent: 2 + - uid: 8671 components: - type: Transform - pos: 345.5,385.5 - parent: 1 - - uid: 19043 + rot: -1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 2 + - uid: 16446 components: - type: Transform - pos: 345.5,384.5 - parent: 1 - - uid: 19044 + pos: -33.5,-17.5 + parent: 2 + - uid: 16496 components: - type: Transform - pos: 342.5,384.5 - parent: 1 - - uid: 20094 + rot: 3.141592653589793 rad + pos: -37.5,-42.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,442.5 - parent: 1 - - uid: 20095 + rot: 1.5707963267948966 rad + pos: -141.5,-5.5 + parent: 2 + - uid: 2694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,442.5 - parent: 1 - - uid: 20096 + pos: -60.5,8.5 + parent: 2 + - uid: 5570 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,439.5 - parent: 1 - - uid: 20097 + pos: -108.5,-49.5 + parent: 2 + - uid: 5883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,442.5 - parent: 1 - - uid: 20272 + rot: 3.141592653589793 rad + pos: -115.5,-18.5 + parent: 2 + - uid: 6243 components: - type: Transform - pos: 3.5,5.5 - parent: 20181 - - uid: 20273 + pos: -125.5,-20.5 + parent: 2 + - uid: 6274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 20181 - - uid: 20274 + rot: 3.141592653589793 rad + pos: -124.5,-18.5 + parent: 2 + - uid: 7807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 20181 - - uid: 20622 + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + - uid: 11160 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 20527 - - uid: 20623 + pos: -136.5,11.5 + parent: 2 + - uid: 13180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 20527 - - uid: 20624 + pos: -69.5,-8.5 + parent: 2 + - uid: 15443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 20527 - - uid: 20625 + pos: -18.5,-64.5 + parent: 2 + - uid: 17061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 20527 - - uid: 20626 + pos: -130.5,-2.5 + parent: 2 + - uid: 22037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 20527 - - uid: 20820 + pos: -121.5,-76.5 + parent: 2 + - uid: 24297 components: - type: Transform - pos: 369.5,423.5 - parent: 1 - - uid: 20824 + rot: 3.141592653589793 rad + pos: -25.5,-57.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 3302 components: - type: Transform - pos: 369.5,422.5 - parent: 1 - - uid: 21284 + pos: -93.5,35.5 + parent: 2 + - uid: 5569 components: - type: Transform - pos: 391.5,387.5 - parent: 1 - - uid: 21285 + rot: 1.5707963267948966 rad + pos: -68.5,6.5 + parent: 2 + - uid: 6272 components: - type: Transform - pos: 391.5,389.5 - parent: 1 - - uid: 21286 + rot: 3.141592653589793 rad + pos: -123.5,-18.5 + parent: 2 + - uid: 9054 components: - type: Transform - pos: 391.5,381.5 - parent: 1 - - uid: 21287 + pos: -43.5,-66.5 + parent: 2 + - uid: 19542 components: - type: Transform - pos: 391.5,379.5 - parent: 1 - - uid: 21288 + pos: -90.5,25.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 2680 components: - type: Transform - pos: 403.5,379.5 - parent: 1 - - uid: 21289 + rot: -1.5707963267948966 rad + pos: -54.5,6.5 + parent: 2 + - uid: 7337 components: - type: Transform - pos: 403.5,381.5 - parent: 1 - - uid: 21290 + rot: 1.5707963267948966 rad + pos: -122.5,-41.5 + parent: 2 + - uid: 7603 components: - type: Transform - pos: 403.5,387.5 - parent: 1 - - uid: 21291 + rot: 3.141592653589793 rad + pos: -134.5,-48.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 7394 components: - type: Transform - pos: 403.5,389.5 - parent: 1 - - uid: 21877 + rot: 3.141592653589793 rad + pos: -133.5,-48.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 2711 components: - type: Transform - pos: 16.5,20.5 - parent: 5072 - - uid: 21881 + rot: 1.5707963267948966 rad + pos: -68.5,4.5 + parent: 2 + - uid: 4746 components: - type: Transform - pos: 16.5,21.5 - parent: 5072 - - uid: 22098 + pos: -86.5,31.5 + parent: 2 + - uid: 19543 components: - type: Transform - pos: 301.5,387.5 - parent: 1 - - uid: 22099 + pos: -91.5,25.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 5889 components: - type: Transform - pos: 302.5,387.5 - parent: 1 -- proto: CellRechargerCircuitboard - entities: - - uid: 21981 + rot: 3.141592653589793 rad + pos: -114.5,-18.5 + parent: 2 + - uid: 11062 components: - type: Transform - pos: 313.5,382.5 - parent: 1 -- proto: Chainsaw - entities: - - uid: 6156 + rot: 1.5707963267948966 rad + pos: -138.5,11.5 + parent: 2 + - uid: 13706 components: - type: Transform - pos: 420.5,387.5 - parent: 1 -- proto: Chair - entities: - - uid: 520 + pos: -136.5,-26.5 + parent: 2 + - uid: 16596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,383.5 - parent: 1 - - uid: 1007 + pos: -10.5,7.5 + parent: 2 + - uid: 17056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,389.5 - parent: 1 - - uid: 1459 + pos: -131.5,-2.5 + parent: 2 + - uid: 17596 components: - type: Transform rot: 3.141592653589793 rad - pos: 391.5,391.5 - parent: 1 - - uid: 1460 + pos: -18.5,-66.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 2696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,391.5 - parent: 1 - - uid: 1464 + pos: -56.5,7.5 + parent: 2 + - uid: 6666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,387.5 - parent: 1 - - uid: 2140 + pos: -90.5,-18.5 + parent: 2 + - uid: 9531 components: - type: Transform - pos: 403.5,385.5 - parent: 1 - - uid: 2504 + pos: -97.5,-37.5 + parent: 2 + - uid: 12750 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,389.5 - parent: 1 - - uid: 2523 + pos: -53.5,-6.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2688 components: - type: Transform - pos: 395.5,375.5 - parent: 1 - - uid: 2524 + pos: -66.5,7.5 + parent: 2 + - uid: 3173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,388.5 - parent: 1 - - uid: 2554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,383.5 - parent: 1 - - uid: 3855 + pos: -92.5,-23.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 15991 components: - type: Transform - pos: 403.5,393.5 - parent: 1 - - uid: 4065 + rot: 1.5707963267948966 rad + pos: -111.5,-32.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 3681 components: - type: Transform - pos: 391.5,385.5 - parent: 1 - - uid: 4066 + rot: 3.141592653589793 rad + pos: -60.5,-53.5 + parent: 2 + - uid: 6799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,387.5 - parent: 1 - - uid: 4073 + rot: 3.141592653589793 rad + pos: -86.5,-47.5 + parent: 2 + - uid: 8171 components: - type: Transform - pos: 391.5,393.5 - parent: 1 - - uid: 4144 + rot: 3.141592653589793 rad + pos: -63.5,8.5 + parent: 2 + - uid: 11166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,388.5 - parent: 1 - - uid: 4864 + pos: -99.5,-43.5 + parent: 2 + - uid: 11873 components: - type: Transform rot: 3.141592653589793 rad - pos: 381.5,395.5 - parent: 1 - - uid: 4865 + pos: -96.5,12.5 + parent: 2 + - uid: 14587 components: - type: Transform rot: 3.141592653589793 rad - pos: 383.5,395.5 - parent: 1 - - uid: 4866 + pos: -50.5,-4.5 + parent: 2 + - uid: 22267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,395.5 - parent: 1 - - uid: 4867 + pos: -63.5,-7.5 + parent: 2 + - uid: 22897 components: - type: Transform rot: 3.141592653589793 rad - pos: 382.5,395.5 - parent: 1 - - uid: 4896 + pos: -136.5,-2.5 + parent: 2 + - uid: 25460 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,396.5 - parent: 1 - - uid: 5026 + pos: -70.5,-32.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 1576 components: - type: Transform rot: 3.141592653589793 rad - pos: 444.5,416.5 - parent: 1 - - uid: 5027 + pos: -98.5,36.5 + parent: 2 + - uid: 2600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,400.5 - parent: 1 - - uid: 5028 + rot: -1.5707963267948966 rad + pos: -100.5,16.5 + parent: 2 + - uid: 4367 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,400.5 - parent: 1 - - uid: 5029 + pos: -98.5,25.5 + parent: 2 + - uid: 4368 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,400.5 - parent: 1 - - uid: 5030 + pos: -98.5,28.5 + parent: 2 + - uid: 4369 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,400.5 - parent: 1 - - uid: 5167 + pos: -98.5,29.5 + parent: 2 + - uid: 4370 components: - type: Transform rot: 3.141592653589793 rad - pos: 413.5,408.5 - parent: 1 - - uid: 5168 + pos: -98.5,26.5 + parent: 2 + - uid: 4575 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,408.5 - parent: 1 - - uid: 5266 + pos: -98.5,32.5 + parent: 2 + - uid: 4582 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,401.5 - parent: 1 - - uid: 5302 + pos: -100.5,35.5 + parent: 2 + - uid: 5820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 446.5,414.5 - parent: 1 - - uid: 5303 + pos: -101.5,18.5 + parent: 2 + - uid: 5850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,414.5 - parent: 1 - - uid: 5309 + rot: -1.5707963267948966 rad + pos: -99.5,18.5 + parent: 2 + - uid: 6000 components: - type: Transform - pos: 463.5,407.5 - parent: 1 - - uid: 5310 + rot: -1.5707963267948966 rad + pos: -110.5,18.5 + parent: 2 + - uid: 6054 components: - type: Transform - pos: 462.5,407.5 - parent: 1 - - uid: 5311 + rot: -1.5707963267948966 rad + pos: -107.5,18.5 + parent: 2 + - uid: 6507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,408.5 - parent: 1 - - uid: 5435 + rot: -1.5707963267948966 rad + pos: -100.5,18.5 + parent: 2 + - uid: 6524 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,420.5 - parent: 1 - - uid: 5594 + pos: -104.5,18.5 + parent: 2 + - uid: 6525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,389.5 - parent: 1 - - uid: 5824 + pos: -105.5,18.5 + parent: 2 + - uid: 6577 components: - type: Transform - pos: 444.5,419.5 - parent: 1 - - uid: 6095 + rot: -1.5707963267948966 rad + pos: -103.5,18.5 + parent: 2 + - uid: 6587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,354.5 - parent: 1 - - uid: 6096 + rot: -1.5707963267948966 rad + pos: -106.5,18.5 + parent: 2 + - uid: 6610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,353.5 - parent: 1 - - uid: 6177 + rot: -1.5707963267948966 rad + pos: -97.5,16.5 + parent: 2 + - uid: 6612 components: - type: Transform - pos: 448.5,412.5 - parent: 1 - - uid: 6178 + rot: -1.5707963267948966 rad + pos: -96.5,16.5 + parent: 2 + - uid: 6679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 448.5,410.5 - parent: 1 - - uid: 8041 + rot: -1.5707963267948966 rad + pos: -112.5,18.5 + parent: 2 + - uid: 6743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,442.5 - parent: 1 - - uid: 10286 + rot: -1.5707963267948966 rad + pos: -111.5,18.5 + parent: 2 + - uid: 6790 components: - type: Transform - pos: 363.5,417.5 - parent: 1 - - uid: 10287 + rot: -1.5707963267948966 rad + pos: -108.5,18.5 + parent: 2 + - uid: 6794 components: - type: Transform - pos: 364.5,417.5 - parent: 1 - - uid: 16903 + rot: -1.5707963267948966 rad + pos: -109.5,18.5 + parent: 2 + - uid: 6813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,390.5 - parent: 1 - - uid: 16904 + rot: -1.5707963267948966 rad + pos: -96.5,20.5 + parent: 2 + - uid: 6815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,391.5 - parent: 1 - - uid: 16905 + rot: -1.5707963267948966 rad + pos: -102.5,20.5 + parent: 2 + - uid: 6926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,383.5 - parent: 1 - - uid: 16906 + pos: -102.5,11.5 + parent: 2 + - uid: 6964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,381.5 - parent: 1 - - uid: 16907 + rot: -1.5707963267948966 rad + pos: -98.5,20.5 + parent: 2 + - uid: 6968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,382.5 - parent: 1 - - uid: 17319 + rot: -1.5707963267948966 rad + pos: -100.5,20.5 + parent: 2 + - uid: 7077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,375.5 - parent: 1 - - uid: 17320 + rot: -1.5707963267948966 rad + pos: -81.5,17.5 + parent: 2 + - uid: 7080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,375.5 - parent: 1 - - uid: 17321 + rot: -1.5707963267948966 rad + pos: -102.5,18.5 + parent: 2 + - uid: 7262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,374.5 - parent: 1 - - uid: 17322 + rot: 3.141592653589793 rad + pos: -98.5,27.5 + parent: 2 + - uid: 7264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,373.5 - parent: 1 - - uid: 18261 + rot: -1.5707963267948966 rad + pos: -98.5,24.5 + parent: 2 + - uid: 7304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,423.5 - parent: 1 - - uid: 18277 + rot: -1.5707963267948966 rad + pos: -97.5,18.5 + parent: 2 + - uid: 7315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,426.5 - parent: 1 - - uid: 18283 + pos: -104.5,20.5 + parent: 2 + - uid: 7336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,425.5 - parent: 1 - - uid: 18284 + pos: -96.5,18.5 + parent: 2 + - uid: 7343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,426.5 - parent: 1 - - uid: 18285 + pos: -103.5,20.5 + parent: 2 + - uid: 7344 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,425.5 - parent: 1 - - uid: 18308 + pos: -85.5,21.5 + parent: 2 + - uid: 7418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,418.5 - parent: 1 - - uid: 18321 + rot: -1.5707963267948966 rad + pos: -85.5,17.5 + parent: 2 + - uid: 7539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 434.5,416.5 - parent: 1 - - uid: 18331 + rot: -1.5707963267948966 rad + pos: -82.5,17.5 + parent: 2 + - uid: 7548 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,404.5 - parent: 1 - - uid: 18332 + pos: -81.5,21.5 + parent: 2 + - uid: 7549 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,403.5 - parent: 1 - - uid: 18335 + pos: -98.5,18.5 + parent: 2 + - uid: 7553 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,401.5 - parent: 1 - - uid: 18336 + pos: -99.5,20.5 + parent: 2 + - uid: 7559 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,400.5 - parent: 1 - - uid: 18337 + pos: -101.5,20.5 + parent: 2 + - uid: 7579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,399.5 - parent: 1 - - uid: 18340 + pos: -84.5,21.5 + parent: 2 + - uid: 7582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,397.5 - parent: 1 - - uid: 18341 + pos: -82.5,21.5 + parent: 2 + - uid: 7583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,392.5 - parent: 1 - - uid: 18342 + pos: -83.5,21.5 + parent: 2 + - uid: 7584 components: - type: Transform rot: -1.5707963267948966 rad - pos: 433.5,393.5 - parent: 1 - - uid: 18351 + pos: -84.5,17.5 + parent: 2 + - uid: 7586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 434.5,393.5 - parent: 1 - - uid: 18352 + pos: -83.5,17.5 + parent: 2 + - uid: 8421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 434.5,392.5 - parent: 1 - - uid: 18353 + rot: 3.141592653589793 rad + pos: -98.5,34.5 + parent: 2 + - uid: 8422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,392.5 - parent: 1 - - uid: 18359 + rot: 3.141592653589793 rad + pos: -98.5,37.5 + parent: 2 + - uid: 8449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,387.5 - parent: 1 - - uid: 18360 + rot: 3.141592653589793 rad + pos: -98.5,38.5 + parent: 2 + - uid: 8476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,386.5 - parent: 1 - - uid: 18361 + rot: 3.141592653589793 rad + pos: -98.5,30.5 + parent: 2 + - uid: 10569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 432.5,387.5 - parent: 1 - - uid: 18362 + rot: 3.141592653589793 rad + pos: -100.5,33.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,26.5 + parent: 2 + - uid: 11064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 432.5,386.5 - parent: 1 - - uid: 18567 + pos: -97.5,20.5 + parent: 2 + - uid: 11082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,24.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,24.5 + parent: 2 + - uid: 11641 components: - type: Transform rot: 3.141592653589793 rad - pos: 357.5,416.5 - parent: 1 - - uid: 18568 + pos: -100.5,25.5 + parent: 2 + - uid: 11649 components: - type: Transform rot: 3.141592653589793 rad - pos: 358.5,416.5 - parent: 1 - - uid: 18606 + pos: -100.5,27.5 + parent: 2 + - uid: 11720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,434.5 - parent: 1 - - uid: 18732 + rot: 3.141592653589793 rad + pos: -100.5,38.5 + parent: 2 + - uid: 11723 components: - type: Transform - pos: 421.5,371.5 - parent: 1 - - uid: 20048 + rot: 3.141592653589793 rad + pos: -100.5,37.5 + parent: 2 + - uid: 11726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,440.5 - parent: 1 - - uid: 20049 + rot: 3.141592653589793 rad + pos: -100.5,36.5 + parent: 2 + - uid: 11739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,441.5 - parent: 1 - - uid: 20816 + rot: 3.141592653589793 rad + pos: -100.5,34.5 + parent: 2 + - uid: 11744 components: - type: Transform rot: 3.141592653589793 rad - pos: 418.5,401.5 - parent: 1 - - uid: 20817 + pos: -100.5,32.5 + parent: 2 + - uid: 11745 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,401.5 - parent: 1 - - uid: 20822 + pos: -100.5,31.5 + parent: 2 + - uid: 11757 components: - type: Transform rot: 3.141592653589793 rad - pos: 357.5,432.5 - parent: 1 - - uid: 20863 + pos: -100.5,29.5 + parent: 2 + - uid: 11764 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,401.5 - parent: 1 - - uid: 21044 + pos: -100.5,28.5 + parent: 2 + - uid: 11768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,369.5 - parent: 1 - - uid: 21045 + rot: 3.141592653589793 rad + pos: -100.5,30.5 + parent: 2 + - uid: 12463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,370.5 - parent: 1 - - uid: 21187 + rot: 3.141592653589793 rad + pos: -98.5,35.5 + parent: 2 + - uid: 14873 components: - type: Transform rot: 3.141592653589793 rad - pos: 506.5,384.5 - parent: 1 - - uid: 21341 + pos: -98.5,33.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,24.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,40.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,39.5 + parent: 2 + - uid: 19511 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 5072 - - uid: 21798 + pos: -98.5,16.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,31.5 + parent: 2 + - uid: 22196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,29.5 - parent: 5072 -- proto: ChairCarp - entities: - - uid: 3688 + pos: -115.5,24.5 + parent: 2 + - uid: 22197 components: - type: Transform - pos: 379.5,413.5 - parent: 1 -- proto: ChairFolding - entities: - - uid: 559 + rot: -1.5707963267948966 rad + pos: -114.5,24.5 + parent: 2 + - uid: 22198 components: - type: Transform - pos: 392.5,374.5 - parent: 1 - - uid: 560 + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 + - uid: 22199 components: - type: Transform - pos: 393.5,374.5 - parent: 1 - - uid: 730 + rot: -1.5707963267948966 rad + pos: -112.5,24.5 + parent: 2 + - uid: 22200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,403.5 - parent: 1 - - uid: 745 + rot: -1.5707963267948966 rad + pos: -111.5,24.5 + parent: 2 + - uid: 22201 components: - type: Transform - pos: 415.5,405.5 - parent: 1 - - uid: 1893 + rot: -1.5707963267948966 rad + pos: -110.5,24.5 + parent: 2 + - uid: 22202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,389.5 - parent: 1 - - uid: 2106 + rot: -1.5707963267948966 rad + pos: -108.5,24.5 + parent: 2 + - uid: 22203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,388.5 - parent: 1 - - uid: 2532 + rot: -1.5707963267948966 rad + pos: -109.5,24.5 + parent: 2 + - uid: 22205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,390.5 - parent: 1 - - uid: 4075 + pos: -100.5,23.5 + parent: 2 + - uid: 23417 components: - type: Transform - pos: 389.5,374.5 - parent: 1 - - uid: 4936 + rot: 3.141592653589793 rad + pos: -98.5,40.5 + parent: 2 + - uid: 23479 components: - type: Transform rot: 3.141592653589793 rad - pos: 407.5,392.5 - parent: 1 - - uid: 5188 + pos: -98.5,39.5 + parent: 2 + - uid: 24819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,411.5 - parent: 1 - - uid: 6025 + rot: 3.141592653589793 rad + pos: -100.5,41.5 + parent: 2 + - uid: 24821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,372.5 - parent: 1 - - uid: 7574 + rot: 3.141592653589793 rad + pos: -98.5,41.5 + parent: 2 + - uid: 25544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 358.5,397.5 - parent: 1 - - uid: 7575 + pos: -99.5,16.5 + parent: 2 + - uid: 25545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,396.5 - parent: 1 - - uid: 7576 + pos: -102.5,12.5 + parent: 2 + - uid: 25546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,396.5 - parent: 1 - - uid: 10177 + pos: -102.5,13.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 24940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,371.5 - parent: 1 - - uid: 10179 + pos: -118.4333,-70.38316 + parent: 2 +- proto: CottonBol + entities: + - uid: 9131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,370.5 - parent: 1 - - uid: 10289 + pos: -52.749928,-61.347958 + parent: 2 + - uid: 9132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,372.5 - parent: 1 - - uid: 10290 + pos: -52.624928,-61.332333 + parent: 2 + - uid: 9133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,371.5 - parent: 1 - - uid: 10291 + pos: -52.390553,-61.160458 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 5995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,370.5 - parent: 1 - - uid: 10292 + pos: -144.5,-42.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -144.5,-48.5 + parent: 2 +- proto: CrateCoffin + entities: + - uid: 26093 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 26094 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 26096 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26097 +- proto: CrateContrabandStorageSecure + entities: + - uid: 19262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,369.5 - parent: 1 - - uid: 10293 + pos: -80.5,-20.5 + parent: 2 +- proto: CrateEmergencyInternals + entities: + - uid: 1304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,369.5 - parent: 1 - - uid: 10294 + pos: -12.5,-18.5 + parent: 2 +- proto: CrateEmergencyInternalsLarge + entities: + - uid: 24485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,369.5 - parent: 1 - - uid: 10295 + pos: -36.5,-1.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 23378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,370.5 - parent: 1 - - uid: 16924 + pos: -84.5,12.5 + parent: 2 + - uid: 23379 components: - type: Transform - pos: 335.5,448.5 - parent: 1 - - uid: 16925 + pos: -84.5,10.5 + parent: 2 + - uid: 23381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,446.5 - parent: 1 - - uid: 16956 + pos: -84.5,11.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 1887 components: - type: Transform - pos: 339.5,449.5 - parent: 1 - - uid: 16957 + pos: -140.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1895 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,445.5 - parent: 1 - - uid: 16958 + pos: -141.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14676 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringCableBulk + entities: + - uid: 15433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,444.5 - parent: 1 - - uid: 18235 + pos: -17.5,-66.5 + parent: 2 + - uid: 26154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.33206,453.6754 - parent: 1 - - uid: 18236 + pos: -134.5,16.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 9653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.6032,453.45242 - parent: 1 - - uid: 18237 + pos: -16.5,5.5 + parent: 2 + - uid: 10576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.72906,453.74976 - parent: 1 - - uid: 18238 + pos: -136.5,10.5 + parent: 2 + - uid: 21389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.3538,453.5565 - parent: 1 - - uid: 18553 + pos: -11.5,7.5 + parent: 2 +- proto: CrateEngineeringShuttle + entities: + - uid: 1157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,411.5 - parent: 1 -- proto: ChairFoldingSpawnFolded + pos: -32.5,-69.5 + parent: 2 +- proto: CrateFilledSpawner entities: - - uid: 1994 + - uid: 609 components: - type: Transform - pos: 420.5,388.5 - parent: 1 - - uid: 2088 + pos: -90.5,12.5 + parent: 2 + - uid: 1856 components: - type: Transform - pos: 420.5,388.5 - parent: 1 - - uid: 4076 + pos: -21.5,-0.5 + parent: 2 + - uid: 4357 components: - type: Transform - pos: 390.5,376.5 - parent: 1 - - uid: 4077 + pos: -22.5,-0.5 + parent: 2 + - uid: 4648 components: - type: Transform - pos: 391.5,374.5 - parent: 1 - - uid: 5009 + pos: -90.5,11.5 + parent: 2 + - uid: 4649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,405.5 - parent: 1 - - uid: 5015 + pos: -87.5,11.5 + parent: 2 + - uid: 4652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,403.5 - parent: 1 - - uid: 5069 + pos: -87.5,8.5 + parent: 2 + - uid: 9589 components: - type: Transform - pos: 420.5,388.5 - parent: 1 - - uid: 18322 + pos: -87.5,12.5 + parent: 2 + - uid: 12908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,418.5 - parent: 1 - - uid: 18323 + pos: -116.5,-38.5 + parent: 2 + - uid: 15970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,418.5 - parent: 1 - - uid: 18324 + pos: -90.5,10.5 + parent: 2 + - uid: 15973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,418.5 - parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 2363 + pos: -87.5,7.5 + parent: 2 + - uid: 15974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,416.5 - parent: 1 - - uid: 3679 + pos: -87.5,9.5 + parent: 2 + - uid: 16473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,407.5 - parent: 1 - - uid: 3680 + pos: -33.5,-64.5 + parent: 2 + - uid: 16480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,407.5 - parent: 1 - - uid: 3681 + pos: -35.5,-63.5 + parent: 2 + - uid: 17114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,407.5 - parent: 1 - - uid: 3682 + pos: -33.5,-65.5 + parent: 2 + - uid: 17115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,409.5 - parent: 1 - - uid: 3683 + pos: -35.5,-66.5 + parent: 2 + - uid: 20473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,410.5 - parent: 1 - - uid: 3684 + pos: -112.5,-40.5 + parent: 2 + - uid: 20474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,411.5 - parent: 1 - - uid: 3685 + pos: -89.5,17.5 + parent: 2 + - uid: 20475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,409.5 - parent: 1 - - uid: 3686 + pos: -91.5,19.5 + parent: 2 + - uid: 20476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,410.5 - parent: 1 - - uid: 3687 + pos: -90.5,19.5 + parent: 2 + - uid: 20477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,411.5 - parent: 1 - - uid: 5014 + pos: -89.5,21.5 + parent: 2 + - uid: 20478 components: - type: Transform - pos: 421.5,404.5 - parent: 1 - - uid: 5016 + pos: -88.5,17.5 + parent: 2 + - uid: 20479 components: - type: Transform - pos: 420.5,404.5 - parent: 1 - - uid: 5124 + pos: -112.5,-41.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 1355 components: + - type: MetaData + desc: If it works, it works. + name: Mother-of-All Cryostasis Beds - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,387.5 - parent: 1 - - uid: 5125 + pos: -17.5,-46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.147 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,388.5 - parent: 1 - - uid: 5126 + pos: -48.5,-29.5 + parent: 2 + - uid: 20402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,387.5 - parent: 1 - - uid: 5134 + pos: -126.5,-58.5 + parent: 2 + - uid: 23466 components: - type: Transform - pos: 419.5,407.5 - parent: 1 - - uid: 5165 + pos: -71.5,-46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23495 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunToyBox + entities: + - uid: 9711 components: - type: Transform - pos: 412.5,410.5 - parent: 1 - - uid: 5166 + pos: -116.5,31.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 3368 components: - type: Transform - pos: 413.5,410.5 - parent: 1 - - uid: 5186 + pos: -17.5,-3.5 + parent: 2 + - 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: + - 7495 + - 6994 + - 3376 + - 3370 + - 8032 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,411.5 - parent: 1 - - uid: 5187 + pos: -124.5,-24.5 + parent: 2 + - uid: 8271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,412.5 - parent: 1 - - uid: 5558 + pos: -6.5,-20.5 + parent: 2 + - uid: 8272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,398.5 - parent: 1 - - uid: 5559 + pos: -5.5,-20.5 + parent: 2 + - uid: 8273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,397.5 - parent: 1 - - uid: 5563 + pos: -2.5,-20.5 + parent: 2 + - uid: 14662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,394.5 - parent: 1 - - uid: 5564 + pos: -64.5,-63.5 + parent: 2 + - uid: 14663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,394.5 - parent: 1 - - uid: 5627 + pos: -63.5,-63.5 + parent: 2 + - uid: 17089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,390.5 - parent: 1 - - uid: 5700 + pos: -95.5,32.5 + parent: 2 + - uid: 21255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,380.5 - parent: 1 - - uid: 5716 + pos: -95.5,33.5 + parent: 2 + - uid: 24495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,423.5 - parent: 1 - - uid: 5717 + pos: -35.5,-1.5 + parent: 2 + - uid: 26153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,423.5 - parent: 1 - - uid: 5718 + pos: -134.5,15.5 + parent: 2 +- proto: CrateMaterialGlass + entities: + - uid: 12923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,423.5 - parent: 1 - - uid: 5719 + pos: -116.5,-37.5 + parent: 2 +- proto: CrateMaterialPlasma + entities: + - uid: 12922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,418.5 - parent: 1 - - uid: 5720 + pos: -112.5,-37.5 + parent: 2 +- proto: CrateMaterialPlastic + entities: + - uid: 12920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,418.5 - parent: 1 - - uid: 5721 + pos: -116.5,-41.5 + parent: 2 +- proto: CrateMaterialRandom + entities: + - uid: 26144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,418.5 - parent: 1 - - uid: 5722 + pos: -102.5,28.5 + parent: 2 +- proto: CrateMaterialSteel + entities: + - uid: 1199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 382.5,422.5 - parent: 1 - - uid: 5723 + pos: -27.5,-70.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1201 + - 1202 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 12921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 383.5,422.5 - parent: 1 - - uid: 5724 + pos: -112.5,-39.5 + parent: 2 +- proto: CrateMaterialTextiles + entities: + - uid: 14585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 375.5,422.5 - parent: 1 - - uid: 5725 + pos: -46.5,-6.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 10908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,422.5 - parent: 1 - - uid: 5779 + pos: -17.5,-35.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 21013 + - 21371 + - 21372 + - 21373 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalSecure + entities: + - uid: 13261 components: - type: Transform - pos: 365.5,407.5 - parent: 1 - - uid: 5780 + pos: -32.5,-37.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 23308 components: - type: Transform - pos: 364.5,407.5 - parent: 1 - - uid: 5931 + pos: -62.5,2.5 + parent: 2 +- proto: CrateNPCMothroach + entities: + - uid: 9305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,353.5 - parent: 1 - - uid: 5932 + pos: -44.5,-58.5 + parent: 2 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 14658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,352.5 - parent: 1 - - uid: 5933 + pos: -80.5,-21.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 22361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,351.5 - parent: 1 - - uid: 5986 + pos: -14.5,-2.5 + parent: 2 +- proto: CrateSurgery + entities: + - uid: 1383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,407.5 - parent: 1 - - uid: 6005 + pos: -19.5,-42.5 + parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 20942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,392.5 - parent: 1 - - uid: 6072 + pos: -101.5,26.5 + parent: 2 + - uid: 20956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,373.5 - parent: 1 - - uid: 6083 + pos: -48.5,-33.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 12925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,369.5 - parent: 1 - - uid: 6084 + pos: -14.5,-0.5 + parent: 2 +- proto: CrateWoodenGrave + entities: + - uid: 26155 components: + - type: MetaData + desc: A grim reminder of the great mothroach genocide of 2565... + name: Mothroach Grave Marker - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,369.5 - parent: 1 - - uid: 6191 + pos: -129.5,18.5 + parent: 2 +- proto: Crematorium + entities: + - uid: 16532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 456.5,401.5 - parent: 1 - - uid: 6192 + pos: -46.5,-49.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 10499 components: - type: Transform - pos: 457.5,402.5 - parent: 1 - - uid: 6193 + pos: -86.5,1.5 + parent: 2 +- proto: Crowbar + entities: + - uid: 981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 458.5,403.5 - parent: 1 - - uid: 6194 + pos: -23.513216,-5.903213 + parent: 2 + - uid: 18810 components: - type: Transform - pos: 459.5,402.5 - parent: 1 - - uid: 6195 + pos: -115.5,12.5 + parent: 2 + - uid: 18815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 460.5,401.5 - parent: 1 - - uid: 9088 + pos: -139.52356,-7.667283 + parent: 2 + - uid: 25398 components: - type: Transform - pos: 341.5,406.5 - parent: 1 - - uid: 9089 + pos: -118.46083,-76.387024 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 23122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,399.5 - parent: 1 - - uid: 15860 + pos: -55.319935,-68.58057 + parent: 2 +- proto: CrowbarYellow + entities: + - uid: 7921 components: - type: Transform - pos: 422.5,404.5 - parent: 1 - - uid: 17050 + pos: -59.547356,8.32823 + parent: 2 + - uid: 22313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,416.5 - parent: 1 - - uid: 17501 + pos: -60.401566,-2.6883063 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 9714 components: - type: Transform - pos: 458.5,415.5 - parent: 1 - - uid: 17613 + rot: 1.5707963267948966 rad + pos: -92.5,-50.5 + parent: 2 + - uid: 19770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 509.5,387.5 - parent: 1 - - uid: 18650 + rot: 1.5707963267948966 rad + pos: -72.5,-22.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 23891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,436.5 - parent: 1 - - uid: 20627 + rot: 1.5707963267948966 rad + pos: -72.5,-20.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 20527 - - uid: 20628 + pos: -72.5,-18.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 4029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 20527 - - uid: 20629 + pos: -25.5,-28.5 + parent: 2 + - uid: 4030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 20527 - - uid: 20630 + pos: -23.5,-28.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 4208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 20527 - - uid: 20631 + pos: -26.557234,-28.476189 + parent: 2 + - uid: 4209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 20527 - - uid: 21678 + pos: -26.354109,-28.288689 + parent: 2 +- proto: CurtainsBlue + entities: + - uid: 22474 components: - type: Transform - pos: 7.5,20.5 - parent: 5072 - - uid: 21689 + pos: -64.5,0.5 + parent: 2 +- proto: CurtainsBlueOpen + entities: + - uid: 2846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,31.5 - parent: 5072 - - uid: 21706 + pos: -42.5,-1.5 + parent: 2 + - uid: 2888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,29.5 - parent: 5072 - - uid: 21707 + pos: -51.5,3.5 + parent: 2 + - uid: 2889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,31.5 - parent: 5072 - - uid: 21810 + rot: 1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + - uid: 2890 components: - type: Transform - rot: 1.5707963705062866 rad - pos: -2.5,25.5 - parent: 5072 - - uid: 21811 + rot: 1.5707963267948966 rad + pos: -49.5,3.5 + parent: 2 + - uid: 2891 components: - type: Transform - pos: -1.5,26.5 - parent: 5072 - - uid: 21813 + rot: 1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 2892 components: - type: Transform - rot: 1.5707963705062866 rad - pos: -2.5,24.5 - parent: 5072 - - uid: 21818 + rot: 1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 2893 components: - type: Transform - rot: 4.71238902409608 rad - pos: -0.5,25.5 - parent: 5072 - - uid: 21819 + rot: 1.5707963267948966 rad + pos: -43.5,3.5 + parent: 2 + - uid: 5039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,23.5 - parent: 5072 - - uid: 21820 + pos: -18.5,-16.5 + parent: 2 + - uid: 8179 components: - type: Transform - rot: 4.71238902409608 rad - pos: -0.5,24.5 - parent: 5072 -- proto: ChairOfficeLight - entities: - - uid: 5345 + pos: -33.5,-43.5 + parent: 2 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,410.5 - parent: 1 - - uid: 5355 + pos: -31.5,-40.5 + parent: 2 + - uid: 8188 components: - type: Transform - pos: 408.5,406.5 - parent: 1 - - uid: 5499 + pos: -31.5,-36.5 + parent: 2 + - uid: 8191 components: - type: Transform - pos: 397.5,415.5 - parent: 1 - - uid: 5500 + pos: -32.5,-34.5 + parent: 2 + - uid: 8349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,413.5 - parent: 1 - - uid: 5950 + pos: -36.5,-43.5 + parent: 2 + - uid: 8352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,353.5 - parent: 1 - - uid: 7497 + pos: -34.5,-34.5 + parent: 2 + - uid: 8897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,384.5 - parent: 1 - - uid: 7498 + pos: -19.5,-16.5 + parent: 2 + - uid: 8902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,384.5 - parent: 1 - - uid: 7499 + pos: -20.5,-16.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 4982 components: - type: Transform rot: -1.5707963267948966 rad - pos: 355.5,383.5 - parent: 1 - - uid: 7500 + pos: -67.5,-26.5 + parent: 2 +- proto: DefaultStationBeacon + entities: + - uid: 18947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,388.5 - parent: 1 - - uid: 7550 + pos: -138.5,-5.5 + parent: 2 + - type: NavMapBeacon + color: '#EFB34193' + text: TEG Control Room + - type: WarpPoint + location: TEG Control Room +- proto: DefaultStationBeaconAICore + entities: + - uid: 25376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,399.5 - parent: 1 - - uid: 7577 + pos: -120.5,-83.5 + parent: 2 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 25374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,400.5 - parent: 1 - - uid: 16305 + pos: -120.5,-67.5 + parent: 2 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 25375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,413.5 - parent: 1 - - uid: 16306 + pos: -120.5,-72.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 18944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,413.5 - parent: 1 - - uid: 20020 + pos: -138.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconAnchor + entities: + - uid: 17206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,424.5 - parent: 1 - - uid: 21041 + pos: -137.5,0.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 22146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,373.5 - parent: 1 -- proto: ChairPilotSeat + pos: -127.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconArmory entities: - - uid: 5233 + - uid: 22147 components: - type: Transform - pos: 443.5,396.5 - parent: 1 - - uid: 5234 + pos: -82.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 22148 components: - type: Transform - pos: 443.5,395.5 - parent: 1 - - uid: 5235 + pos: -29.5,15.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 25862 components: - type: Transform - pos: 443.5,394.5 - parent: 1 - - uid: 9072 + pos: -147.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 25885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 16114 - - uid: 16159 + pos: -119.5,6.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 16114 - - uid: 20275 + pos: -68.5,-31.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 22151 components: - type: Transform - pos: -2.5,2.5 - parent: 20181 - - uid: 20632 + pos: -52.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 22152 components: - type: Transform - pos: 4.5,1.5 - parent: 20527 - - uid: 21544 + pos: -61.5,3.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 22153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 5072 -- proto: ChairWeb + pos: -99.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters entities: - - uid: 18262 + - uid: 22155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,421.5 - parent: 1 -- proto: ChairWood + pos: -50.5,0.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay entities: - - uid: 4909 + - uid: 22157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,387.5 - parent: 1 - - uid: 16495 + pos: -90.5,19.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 22156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,448.5 - parent: 1 - - uid: 16497 + pos: -100.5,13.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 22154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,448.5 - parent: 1 - - uid: 16498 + pos: -124.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 22158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,447.5 - parent: 1 - - uid: 16783 + pos: -48.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 22159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,446.5 - parent: 1 - - uid: 16788 + pos: -38.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 24283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,447.5 - parent: 1 - - uid: 16816 + pos: -35.5,-41.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 22160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,446.5 - parent: 1 - - uid: 17095 + pos: -61.5,-3.5 + parent: 2 + - uid: 22241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,445.5 - parent: 1 - - uid: 21950 + pos: -61.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 22161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,352.5 - parent: 1 - - uid: 21951 + pos: -24.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 24676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,352.5 - parent: 1 - - uid: 22190 + pos: -70.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 22164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,354.5 - parent: 1 - - uid: 22191 + pos: -97.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 22166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,354.5 - parent: 1 -- proto: CheckerBoard + pos: -64.5,-55.5 + parent: 2 +- proto: DefaultStationBeaconEngineering entities: - - uid: 6196 + - uid: 3522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,401.5 - parent: 1 - - uid: 21047 + pos: -95.5,-2.5 + parent: 2 + - type: NavMapBeacon + text: 'Plasma Pit #045' + - type: WarpPoint + location: 'Plasma Pit #045' + - uid: 12927 components: - type: Transform - pos: 391.5,392.5 - parent: 1 - - uid: 21952 + pos: -112.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 4563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,352.5 - parent: 1 -- proto: ChemDispenser - entities: - - uid: 5347 + pos: -137.5,14.5 + parent: 2 + - uid: 7628 components: - type: Transform - pos: 409.5,406.5 - parent: 1 - - uid: 5352 + pos: -14.5,-65.5 + parent: 2 + - uid: 7816 components: - type: Transform - pos: 409.5,411.5 - parent: 1 - - uid: 7545 + pos: -134.5,-57.5 + parent: 2 + - uid: 18225 components: - type: Transform - pos: 359.5,400.5 - parent: 1 -- proto: ChemDispenserEmpty + pos: -107.5,-62.5 + parent: 2 +- proto: DefaultStationBeaconEvac entities: - - uid: 18396 + - uid: 22143 components: - type: Transform - pos: 360.5,425.5 - parent: 1 -- proto: ChemistryHotplate + pos: -3.5,-13.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage entities: - - uid: 5360 + - uid: 22167 components: - type: Transform - pos: 409.5,408.5 - parent: 1 - - uid: 7555 + pos: -34.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 18950 components: - type: Transform - pos: 357.5,395.5 - parent: 1 -- proto: ChemMaster + pos: -129.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice entities: - - uid: 4923 + - uid: 22174 components: - type: Transform - pos: 407.5,393.5 - parent: 1 - - uid: 4947 + pos: -49.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 22173 components: - type: Transform - pos: 410.5,381.5 - parent: 1 - - uid: 5348 + pos: -82.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 22175 components: - type: Transform - pos: 407.5,406.5 - parent: 1 - - uid: 5354 + pos: -18.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 22176 components: - type: Transform - pos: 409.5,409.5 - parent: 1 - - uid: 6775 + pos: -53.5,-29.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 22177 components: - type: Transform - pos: 359.5,398.5 - parent: 1 - - uid: 15888 + pos: -98.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 22178 components: - type: Transform - pos: 338.5,450.5 - parent: 1 -- proto: ChemMasterMachineCircuitboard + pos: -50.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconMedbay entities: - - uid: 16274 + - uid: 8594 components: - type: Transform - pos: 406.5,400.5 - parent: 1 -- proto: ChessBoard + pos: -36.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconMedical entities: - - uid: 5267 + - uid: 8592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 458.5,414.5 - parent: 1 - - uid: 5446 + pos: -22.5,-51.5 + parent: 2 + - type: NavMapBeacon + text: Virology + - type: WarpPoint + location: Virology + - uid: 8595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,420.5 - parent: 1 - - uid: 5934 + pos: -19.5,-19.5 + parent: 2 + - type: NavMapBeacon + text: Psychology + - type: WarpPoint + location: Psychology +- proto: DefaultStationBeaconMorgue + entities: + - uid: 22180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,353.5 - parent: 1 - - uid: 6120 + pos: -43.5,-36.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 22181 components: - type: Transform - pos: 431.5,399.5 - parent: 1 - - uid: 18355 + pos: -87.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 18948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,393.5 - parent: 1 - - uid: 19058 + pos: -127.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 22182 components: - type: Transform - pos: 335.5,450.5 - parent: 1 - - uid: 19059 + pos: -86.5,29.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 22183 components: - type: Transform - pos: 339.5,448.5 - parent: 1 - - uid: 19060 + pos: -133.5,-46.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 22185 components: - type: Transform - pos: 335.5,446.5 - parent: 1 - - uid: 19068 + pos: -120.5,-39.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 22186 components: - type: Transform - pos: 334.5,447.5 - parent: 1 - - uid: 21040 + pos: -120.5,-51.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 3407 components: - type: Transform - pos: 391.5,384.5 - parent: 1 - - uid: 21046 + pos: -94.5,33.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 22187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,384.5 - parent: 1 - - uid: 22192 + pos: -117.5,-45.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 22188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,354.5 - parent: 1 -- proto: ChurchBell + pos: -95.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint entities: - - uid: 20089 + - uid: 22189 components: - type: Transform - pos: 334.5,442.5 - parent: 1 -- proto: ChurchOrganInstrument + pos: -24.5,6.5 + parent: 2 +- proto: DefaultStationBeaconService entities: - - uid: 20090 + - uid: 8596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,442.5 - parent: 1 -- proto: CigaretteIron + pos: -110.5,-31.5 + parent: 2 + - type: NavMapBeacon + text: Newsroom + - type: WarpPoint + location: Newsroom +- proto: DefaultStationBeaconSolars entities: - - uid: 17373 + - uid: 1843 components: - type: Transform - pos: 505.5,388.5 - parent: 1 -- proto: CigarGold - entities: - - uid: 5591 + pos: -140.5,13.5 + parent: 2 + - uid: 24349 components: - type: Transform - pos: 372.5,398.5 - parent: 1 - - uid: 5848 + pos: -11.5,6.5 + parent: 2 + - uid: 25821 components: - type: Transform - pos: 382.5,406.5 - parent: 1 -- proto: CigarSpent + pos: -18.5,-65.5 + parent: 2 + - uid: 25864 + components: + - type: Transform + pos: -137.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconSurgery entities: - - uid: 5592 + - uid: 22233 components: - type: Transform - pos: 371.5,396.5 - parent: 1 -- proto: CigCartonMixed + pos: -19.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconTEG entities: - - uid: 1319 + - uid: 18946 components: - type: Transform - pos: 371.5,395.5 - parent: 1 -- proto: CircuitImprinter + pos: -147.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms entities: - - uid: 5862 + - uid: 4483 components: - type: Transform - pos: 311.5,384.5 - parent: 1 - - uid: 7528 + pos: -85.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 22234 components: - type: Transform - pos: 356.5,399.5 - parent: 1 -- proto: CleanerDispenser + pos: -59.5,-35.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom entities: - - uid: 5913 + - uid: 22236 components: - type: Transform - pos: 410.5,364.5 - parent: 1 -- proto: ClosetBombFilled + pos: -24.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconVault entities: - - uid: 7466 + - uid: 22235 components: - type: Transform - pos: 349.5,389.5 - parent: 1 -- proto: ClosetChefFilled + pos: -73.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice entities: - - uid: 4922 + - uid: 22237 components: - type: Transform - pos: 412.5,385.5 - parent: 1 - - uid: 5289 + pos: -91.5,-21.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4009 components: - type: Transform - pos: 452.5,418.5 - parent: 1 - - uid: 6163 + pos: -36.5,-26.5 + parent: 2 + - uid: 4027 components: - type: Transform - pos: 448.5,421.5 - parent: 1 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 3119 + rot: -1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 2 + - uid: 4028 components: - type: Transform - pos: 382.5,416.5 - parent: 1 - - uid: 4580 + rot: 1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 2 + - uid: 4078 components: - type: Transform - pos: 374.5,377.5 - parent: 1 - - uid: 4862 + pos: -21.5,-33.5 + parent: 2 + - uid: 4079 components: - type: Transform - pos: 386.5,395.5 - parent: 1 - - uid: 5608 + rot: 3.141592653589793 rad + pos: -21.5,-41.5 + parent: 2 + - uid: 9176 components: - type: Transform - pos: 366.5,391.5 - parent: 1 - - uid: 5624 + rot: -1.5707963267948966 rad + pos: -21.5,-32.5 + parent: 2 +- proto: DeployableBarrier + entities: + - uid: 1730 components: - type: Transform - pos: 360.5,388.5 - parent: 1 - - uid: 5631 + pos: -77.5,-27.5 + parent: 2 + - uid: 17791 components: - type: Transform - pos: 358.5,382.5 - parent: 1 - - uid: 5742 + pos: -92.5,-35.5 + parent: 2 + - uid: 17792 components: - type: Transform - pos: 371.5,420.5 - parent: 1 - - uid: 6045 + pos: -93.5,-35.5 + parent: 2 + - uid: 17793 components: - type: Transform - pos: 407.5,374.5 - parent: 1 - - uid: 6097 + pos: -94.5,-35.5 + parent: 2 + - uid: 20191 components: - type: Transform - pos: 397.5,370.5 - parent: 1 - - uid: 6366 + pos: -25.5,1.5 + parent: 2 + - uid: 20262 components: - type: Transform - pos: 328.5,421.5 - parent: 1 - - uid: 7402 + pos: -24.5,1.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 2942 components: - type: Transform - pos: 326.5,418.5 - parent: 1 - - uid: 7450 + pos: -48.519993,-9.44313 + parent: 2 + - uid: 6518 components: - type: Transform - pos: 346.5,400.5 - parent: 1 - - uid: 18326 + pos: -92.52145,-24.442335 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 4173 components: - type: Transform - pos: 424.5,419.5 - parent: 1 - - uid: 18609 + pos: -24.5,-54.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 500 components: - type: Transform - pos: 350.5,438.5 - parent: 1 - - uid: 21698 + rot: 1.5707963267948966 rad + pos: -32.5,-48.5 + parent: 2 + - uid: 1210 components: - type: Transform - pos: 7.5,28.5 - parent: 5072 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 2206 + rot: 3.141592653589793 rad + pos: -43.5,-69.5 + parent: 2 + - uid: 1341 components: - type: Transform - pos: 383.5,416.5 - parent: 1 - - uid: 4870 + pos: -109.5,31.5 + parent: 2 + - uid: 2471 components: - type: Transform - pos: 377.5,395.5 - parent: 1 - - uid: 5625 + rot: 1.5707963267948966 rad + pos: -141.5,-39.5 + parent: 2 + - uid: 2472 components: - type: Transform - pos: 361.5,388.5 - parent: 1 - - uid: 5883 + rot: -1.5707963267948966 rad + pos: -141.5,-45.5 + parent: 2 + - uid: 3815 components: - type: Transform - pos: 305.5,389.5 - parent: 1 - - uid: 6616 + rot: -1.5707963267948966 rad + pos: -69.5,-25.5 + parent: 2 + - uid: 4611 components: - type: Transform - pos: 313.5,409.5 - parent: 1 -- proto: ClosetFireFilled - entities: - - uid: 3933 + rot: -1.5707963267948966 rad + pos: -108.5,20.5 + parent: 2 + - uid: 5101 components: - type: Transform - pos: 375.5,377.5 - parent: 1 - - uid: 4863 + rot: 1.5707963267948966 rad + pos: -124.5,-46.5 + parent: 2 + - uid: 5438 components: - type: Transform - pos: 379.5,395.5 - parent: 1 - - uid: 5607 + rot: -1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 5439 components: - type: Transform - pos: 365.5,391.5 - parent: 1 - - uid: 5741 + rot: 1.5707963267948966 rad + pos: -133.5,22.5 + parent: 2 + - uid: 5445 components: - type: Transform - pos: 371.5,421.5 - parent: 1 - - uid: 5884 + rot: 3.141592653589793 rad + pos: -125.5,19.5 + parent: 2 + - uid: 5575 components: - type: Transform - pos: 306.5,389.5 - parent: 1 - - uid: 6098 + pos: -131.5,29.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,27.5 + parent: 2 + - uid: 5587 components: - type: Transform - pos: 397.5,369.5 - parent: 1 - - uid: 6367 + rot: 1.5707963267948966 rad + pos: -133.5,29.5 + parent: 2 + - uid: 6093 components: - type: Transform - pos: 328.5,420.5 - parent: 1 - - uid: 6617 + rot: -1.5707963267948966 rad + pos: -29.5,-48.5 + parent: 2 + - uid: 6331 components: - type: Transform - pos: 312.5,409.5 - parent: 1 - - uid: 7451 + rot: 1.5707963267948966 rad + pos: -119.5,-0.5 + parent: 2 + - uid: 6342 components: - type: Transform - pos: 346.5,399.5 - parent: 1 - - uid: 18610 + rot: 3.141592653589793 rad + pos: -120.5,-11.5 + parent: 2 + - uid: 6344 components: - type: Transform - pos: 350.5,437.5 - parent: 1 - - uid: 21700 + pos: -119.5,-11.5 + parent: 2 + - uid: 6355 components: - type: Transform - pos: 8.5,28.5 - parent: 5072 -- proto: ClosetJanitorFilled - entities: - - uid: 5908 + rot: -1.5707963267948966 rad + pos: -112.5,-16.5 + parent: 2 + - uid: 6363 components: - type: Transform - pos: 412.5,363.5 - parent: 1 -- proto: ClosetL3JanitorFilled - entities: - - uid: 3705 + rot: 3.141592653589793 rad + pos: -119.5,-22.5 + parent: 2 + - uid: 6369 components: - type: Transform - pos: 410.5,363.5 - parent: 1 -- proto: ClosetL3ScienceFilled - entities: - - uid: 7467 + rot: -1.5707963267948966 rad + pos: -113.5,-22.5 + parent: 2 + - uid: 6378 components: - type: Transform - pos: 350.5,389.5 - parent: 1 -- proto: ClosetL3VirologyFilled - entities: - - uid: 406 + pos: -109.5,-21.5 + parent: 2 + - uid: 6405 components: - type: Transform - pos: 411.5,416.5 - parent: 1 -- proto: ClosetLegalFilled - entities: - - uid: 5205 + pos: -137.5,-3.5 + parent: 2 + - uid: 6409 components: - type: Transform - pos: 435.5,410.5 - parent: 1 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 1133 + rot: 3.141592653589793 rad + pos: -141.5,-3.5 + parent: 2 + - uid: 6420 components: - type: Transform - pos: 326.5,441.5 - parent: 1 - - uid: 18265 + rot: 3.141592653589793 rad + pos: -147.5,-10.5 + parent: 2 + - uid: 6441 components: - type: Transform - pos: 392.5,424.5 - parent: 1 - - uid: 18266 + pos: -112.5,-4.5 + parent: 2 + - uid: 6448 components: - type: Transform - pos: 402.5,426.5 - parent: 1 - - uid: 18267 + pos: -100.5,-45.5 + parent: 2 + - uid: 6611 components: - type: Transform - pos: 413.5,426.5 - parent: 1 - - uid: 18327 + rot: -1.5707963267948966 rad + pos: -55.5,-27.5 + parent: 2 + - uid: 6871 components: - type: Transform - pos: 425.5,419.5 - parent: 1 - - uid: 18563 + rot: 1.5707963267948966 rad + pos: -96.5,-27.5 + parent: 2 + - uid: 7664 components: - type: Transform - pos: 361.5,418.5 - parent: 1 - - uid: 18564 + pos: -121.5,-40.5 + parent: 2 + - uid: 7674 components: - type: Transform - pos: 360.5,415.5 - parent: 1 - - uid: 18591 + pos: -101.5,13.5 + parent: 2 + - uid: 7873 components: - type: Transform - pos: 356.5,422.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18592 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18724 + rot: 3.141592653589793 rad + pos: -119.5,-50.5 + parent: 2 + - uid: 9617 components: - type: Transform - pos: 421.5,376.5 - parent: 1 - - uid: 18981 + pos: -86.5,-27.5 + parent: 2 + - uid: 9872 components: - type: Transform - pos: 336.5,385.5 - parent: 1 - - uid: 18994 + pos: -112.5,31.5 + parent: 2 + - uid: 9873 components: - type: Transform - pos: 330.5,390.5 - parent: 1 - - uid: 18995 + rot: 1.5707963267948966 rad + pos: -116.5,31.5 + parent: 2 + - uid: 9874 components: - type: Transform - pos: 330.5,391.5 - parent: 1 - - uid: 20084 + rot: 3.141592653589793 rad + pos: -116.5,27.5 + parent: 2 + - uid: 9875 components: - type: Transform - pos: 342.5,436.5 - parent: 1 - - uid: 21812 + rot: -1.5707963267948966 rad + pos: -113.5,27.5 + parent: 2 + - uid: 9876 components: - type: Transform - pos: -4.5,29.5 - parent: 5072 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 6402 + pos: -113.5,30.5 + parent: 2 + - uid: 9877 components: - type: Transform - pos: 349.5,412.5 - parent: 1 - - uid: 7419 + rot: 3.141592653589793 rad + pos: -118.5,30.5 + parent: 2 + - uid: 9878 components: - type: Transform - pos: 348.5,395.5 - parent: 1 - - uid: 7420 + pos: -118.5,31.5 + parent: 2 + - uid: 9879 components: - type: Transform - pos: 348.5,394.5 - parent: 1 - - uid: 7465 + rot: 1.5707963267948966 rad + pos: -120.5,31.5 + parent: 2 + - uid: 9901 components: - type: Transform - pos: 348.5,389.5 - parent: 1 -- proto: ClosetWallAtmospherics - entities: - - uid: 20201 + rot: 3.141592653589793 rad + pos: -120.5,25.5 + parent: 2 + - uid: 9902 components: - type: Transform - pos: -0.5,-3.5 - parent: 20181 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 20203 - - 20204 - - 20205 - - 20202 -- proto: ClosetWallOrange - entities: - - uid: 16160 + pos: -115.5,25.5 + parent: 2 + - uid: 9903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 16114 -- proto: ClothingBackpackDuffelBrigmedic - entities: - - uid: 6213 + pos: -115.5,19.5 + parent: 2 + - uid: 9905 components: - type: Transform - pos: 426.5,400.5 - parent: 1 -- proto: ClothingBackpackDuffelCaptain - entities: - - uid: 5784 + pos: -126.5,24.5 + parent: 2 + - uid: 9906 components: - type: Transform - pos: 363.5,406.5 - parent: 1 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackDuffelChemistry - entities: - - uid: 5353 + rot: 3.141592653589793 rad + pos: -131.5,24.5 + parent: 2 + - uid: 9913 components: - type: Transform - pos: 408.5,408.5 - parent: 1 -- proto: ClothingBackpackDuffelEngineering - entities: - - uid: 6690 + pos: -125.5,27.5 + parent: 2 + - uid: 10036 components: - type: Transform - pos: 308.5,388.5 - parent: 1 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 5371 + pos: -26.5,-2.5 + parent: 2 + - uid: 10111 components: - type: Transform - pos: 400.5,413.5 - parent: 1 - - uid: 7443 + pos: -127.5,-39.5 + parent: 2 + - uid: 10662 components: - type: Transform - pos: 338.5,396.5 - parent: 1 -- proto: ClothingBackpackDuffelSyndicateCostumeClown - entities: - - uid: 17309 + rot: 1.5707963267948966 rad + pos: -67.5,-4.5 + parent: 2 + - uid: 10681 components: - type: Transform - pos: 478.5,377.5 - parent: 1 -- proto: ClothingBackpackSalvage - entities: - - uid: 5646 + rot: 3.141592653589793 rad + pos: -56.5,-5.5 + parent: 2 + - uid: 10690 components: - type: Transform - pos: 359.5,381.5 - parent: 1 -- proto: ClothingBeltSecurity - entities: - - uid: 5089 + rot: 1.5707963267948966 rad + pos: -66.5,2.5 + parent: 2 + - uid: 10703 components: - type: Transform - pos: 426.5,411.5 - parent: 1 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 5088 + pos: -58.5,3.5 + parent: 2 + - uid: 10704 components: - type: Transform - pos: 428.5,410.5 - parent: 1 -- proto: ClothingBeltUtility - entities: - - uid: 5865 + pos: -56.5,2.5 + parent: 2 + - uid: 10705 components: - type: Transform - pos: 313.5,382.5 - parent: 1 - - uid: 21082 + rot: 3.141592653589793 rad + pos: -58.5,2.5 + parent: 2 + - uid: 10707 components: - type: Transform - pos: 407.5,368.5 - parent: 1 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 5863 + rot: 1.5707963267948966 rad + pos: -65.5,3.5 + parent: 2 + - uid: 10774 components: - type: Transform - pos: 312.5,384.5 - parent: 1 - - uid: 6618 + rot: -1.5707963267948966 rad + pos: -55.5,-19.5 + parent: 2 + - uid: 10791 components: - type: Transform - pos: 313.5,412.5 - parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 5696 + rot: 3.141592653589793 rad + pos: -58.5,-27.5 + parent: 2 + - uid: 10829 components: - type: Transform - pos: 368.5,391.5 - parent: 1 - - uid: 7455 + pos: -52.5,-53.5 + parent: 2 + - uid: 10830 components: - type: Transform - pos: 348.5,400.5 - parent: 1 - - uid: 16109 + rot: 1.5707963267948966 rad + pos: -54.5,-53.5 + parent: 2 + - uid: 10834 components: - type: Transform - pos: 403.5,367.5 - parent: 1 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 16237 + rot: -1.5707963267948966 rad + pos: -54.5,-56.5 + parent: 2 + - uid: 10864 components: - type: Transform - pos: 341.5,406.5 - parent: 1 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 16250 + rot: 3.141592653589793 rad + pos: -104.5,-56.5 + parent: 2 + - uid: 10875 components: - type: Transform - pos: 327.5,410.5 - parent: 1 -- proto: ClothingEyesHudMedOnion - entities: - - uid: 21039 + rot: 3.141592653589793 rad + pos: -67.5,-15.5 + parent: 2 + - uid: 10882 components: - - type: MetaData - desc: Сделаны из чистого лука. - name: медобаровые очки - type: Transform - pos: 416.5,389.5 - parent: 1 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 16235 + rot: -1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 10884 components: - type: Transform - pos: 394.5,372.5 - parent: 1 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 16231 + rot: 1.5707963267948966 rad + pos: -55.5,-13.5 + parent: 2 + - uid: 10938 components: - type: Transform - pos: 394.5,375.5 - parent: 1 - - uid: 16232 + rot: 3.141592653589793 rad + pos: -18.5,-34.5 + parent: 2 + - uid: 10955 components: - type: Transform - pos: 394.5,375.5 - parent: 1 - - uid: 16236 + pos: -18.5,-30.5 + parent: 2 + - uid: 10960 components: - type: Transform - pos: 391.5,369.5 - parent: 1 -- proto: ClothingHandsGlovesBoxingRigged - entities: - - uid: 18310 + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 10984 components: - type: Transform - pos: 434.5,418.5 - parent: 1 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 16233 + rot: 3.141592653589793 rad + pos: -36.5,-24.5 + parent: 2 + - uid: 10992 components: - type: Transform - pos: 394.5,375.5 - parent: 1 - - uid: 16234 + pos: -61.5,-4.5 + parent: 2 + - uid: 11127 components: - type: Transform - pos: 394.5,375.5 - parent: 1 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 6115 + rot: 1.5707963267948966 rad + pos: -129.5,-47.5 + parent: 2 + - uid: 11137 components: - type: Transform - pos: 424.5,393.5 - parent: 1 - - uid: 6116 + rot: 1.5707963267948966 rad + pos: -136.5,-45.5 + parent: 2 + - uid: 11140 components: - type: Transform - pos: 422.5,404.5 - parent: 1 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 6400 + pos: -128.5,-51.5 + parent: 2 + - uid: 11146 components: - type: Transform - pos: 340.5,410.5 - parent: 1 - - uid: 6401 + rot: 1.5707963267948966 rad + pos: -130.5,-51.5 + parent: 2 + - uid: 11300 components: - type: Transform - pos: 340.5,410.5 - parent: 1 -- proto: ClothingHandsGlovesConducting - entities: - - uid: 18206 + rot: -1.5707963267948966 rad + pos: -94.5,5.5 + parent: 2 + - uid: 12045 components: - type: Transform - pos: 403.5,367.5 - parent: 1 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 16290 + rot: 1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 + - uid: 12056 components: - type: Transform - pos: 399.5,410.5 - parent: 1 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 5379 + rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 2 + - uid: 12064 components: - type: Transform - pos: 416.5,416.5 - parent: 1 - - uid: 16325 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 12065 components: - type: Transform - pos: 416.5,416.5 - parent: 1 - - uid: 16327 + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - uid: 12070 components: - type: Transform - pos: 400.5,410.5 - parent: 1 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 18309 + rot: -1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 12091 components: - type: Transform - pos: 420.5,418.5 - parent: 1 -- proto: ClothingHeadHatBeretCmo - entities: - - uid: 5493 + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 12117 components: - type: Transform - pos: 396.5,413.5 - parent: 1 -- proto: ClothingHeadHatBeretEngineering - entities: - - uid: 6689 + rot: -1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 12130 components: - type: Transform - pos: 319.5,386.5 - parent: 1 -- proto: ClothingHeadHatBeretFrench - entities: - - uid: 6157 + pos: -21.5,-19.5 + parent: 2 + - uid: 14203 components: - type: Transform - pos: 420.5,387.5 - parent: 1 -- proto: ClothingHeadHatShrineMaidenWig - entities: - - uid: 20056 + rot: 1.5707963267948966 rad + pos: -104.5,-9.5 + parent: 2 + - uid: 14245 components: - type: Transform - pos: 333.5,442.5 - parent: 1 -- proto: ClothingHeadHatTacticalMaidHeadband - entities: - - uid: 14632 + rot: 3.141592653589793 rad + pos: -104.5,-15.5 + parent: 2 + - uid: 14274 components: - type: Transform - pos: 418.5,370.5 - parent: 1 -- proto: ClothingHeadHatUshanka - entities: - - uid: 18297 + pos: -98.5,-9.5 + parent: 2 + - uid: 14305 components: - type: Transform - pos: 420.5,419.5 - parent: 1 -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 18264 + rot: 1.5707963267948966 rad + pos: -108.5,-11.5 + parent: 2 + - uid: 14308 components: - type: Transform - pos: 392.5,423.5 - parent: 1 -- proto: ClothingHeadsetChameleon - entities: - - uid: 18642 + rot: 3.141592653589793 rad + pos: -108.5,-14.5 + parent: 2 + - uid: 14309 components: - type: Transform - pos: 336.5,434.5 - parent: 1 -- proto: ClothingHeadsetEngineering - entities: - - uid: 6692 + rot: -1.5707963267948966 rad + pos: -103.5,-44.5 + parent: 2 + - uid: 14361 components: - type: Transform - pos: 331.5,410.5 - parent: 1 -- proto: ClothingHeadsetMining - entities: - - uid: 17975 + rot: 3.141592653589793 rad + pos: -75.5,-25.5 + parent: 2 + - uid: 14375 components: - type: Transform - pos: 491.5,375.5 - parent: 1 -- proto: ClothingMaskClownSecurity - entities: - - uid: 16411 + rot: 1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 2 + - uid: 14386 components: - type: Transform - pos: 421.5,403.5 - parent: 1 -- proto: ClothingMaskGas - entities: - - uid: 18984 + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - uid: 14414 components: - type: Transform - pos: 333.5,387.5 - parent: 1 -- proto: ClothingMaskRat - entities: - - uid: 18263 + rot: 3.141592653589793 rad + pos: -48.5,-27.5 + parent: 2 + - uid: 14432 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,421.5 - parent: 1 -- proto: ClothingMaskSadMime - entities: - - uid: 6093 + pos: -40.5,-23.5 + parent: 2 + - uid: 14437 components: - type: Transform - pos: 397.5,410.5 - parent: 1 -- proto: ClothingNeckCloakAce - entities: - - uid: 5237 + pos: -43.5,-14.5 + parent: 2 + - uid: 14446 components: - type: Transform - pos: 441.5,396.5 - parent: 1 - - uid: 16161 + pos: -42.5,-12.5 + parent: 2 + - uid: 14458 components: - type: Transform - pos: -2.5293522,4.548873 - parent: 16114 -- proto: ClothingNeckCloakAdmin - entities: - - uid: 5515 + rot: 3.141592653589793 rad + pos: -66.5,-16.5 + parent: 2 + - uid: 14460 components: - type: Transform - pos: 389.5,410.5 - parent: 1 -- proto: ClothingNeckCloakCentcomBlack - entities: - - uid: 21094 + pos: -66.5,-12.5 + parent: 2 + - uid: 14484 components: - type: Transform - pos: 503.5,396.5 - parent: 1 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 21093 + rot: 3.141592653589793 rad + pos: -43.5,-28.5 + parent: 2 + - uid: 14505 components: - type: Transform - pos: 502.5,378.5 - parent: 1 -- proto: ClothingNeckCloakMiner - entities: - - uid: 17973 + pos: -87.5,-23.5 + parent: 2 + - uid: 14527 components: - type: Transform - pos: 494.5,378.5 - parent: 1 - - uid: 21091 + pos: -115.5,-40.5 + parent: 2 + - uid: 14528 components: - type: Transform - pos: 362.5,377.5 - parent: 1 -- proto: ClothingNeckCloakMoth - entities: - - uid: 21090 + rot: 3.141592653589793 rad + pos: -115.5,-44.5 + parent: 2 + - uid: 14577 components: - type: Transform - pos: 414.5,376.5 - parent: 1 -- proto: ClothingNeckCloakPirateCap - entities: - - uid: 21092 + rot: -1.5707963267948966 rad + pos: -53.5,-5.5 + parent: 2 + - uid: 14753 components: - type: Transform - pos: 347.5,383.5 - parent: 1 -- proto: ClothingNeckCloakVoid - entities: - - uid: 21049 + rot: 3.141592653589793 rad + pos: -98.5,-11.5 + parent: 2 + - uid: 14760 components: - type: Transform - pos: 399.5,366.5 - parent: 1 -- proto: ClothingNeckClownmedal - entities: - - uid: 17310 + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 + - uid: 14761 components: - type: Transform - pos: 478.5,377.5 - parent: 1 -- proto: ClothingNeckLawyerbadge - entities: - - uid: 5207 + pos: -76.5,-11.5 + parent: 2 + - uid: 14762 components: - type: Transform - pos: 436.5,413.5 - parent: 1 - - uid: 20633 + rot: 3.141592653589793 rad + pos: -76.5,-12.5 + parent: 2 + - uid: 14763 components: - type: Transform - pos: 6.5,2.5 - parent: 20527 -- proto: ClothingNeckMantle - entities: - - uid: 21095 + rot: 1.5707963267948966 rad + pos: -76.5,-14.5 + parent: 2 + - uid: 14874 components: - type: Transform - pos: 500.5,385.5 - parent: 1 -- proto: ClothingOuterArmorBasic - entities: - - uid: 5086 + rot: 1.5707963267948966 rad + pos: -104.5,26.5 + parent: 2 + - uid: 15281 components: - type: Transform - pos: 428.5,414.5 - parent: 1 -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 5085 + rot: 3.141592653589793 rad + pos: -94.5,-25.5 + parent: 2 + - uid: 15287 components: - type: Transform - pos: 428.5,412.5 - parent: 1 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 16386 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 + parent: 2 + - uid: 15300 components: - type: Transform - pos: 421.5,403.5 - parent: 1 -- proto: ClothingOuterArmorReflective - entities: - - uid: 5087 + rot: 3.141592653589793 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 15950 components: - type: Transform - pos: 428.5,414.5 - parent: 1 -- proto: ClothingOuterArmorRiot - entities: - - uid: 6146 + rot: 3.141592653589793 rad + pos: -111.5,20.5 + parent: 2 + - uid: 15955 components: - type: Transform - pos: 423.5,414.5 - parent: 1 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]60%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]60%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterCoatParamedicWB - entities: - - uid: 5410 + rot: 3.141592653589793 rad + pos: -112.5,25.5 + parent: 2 + - uid: 15961 components: - type: Transform - pos: 408.5,421.5 - parent: 1 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 16163 + pos: -111.5,25.5 + parent: 2 + - uid: 15962 components: - type: Transform - parent: 16162 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterVestArmorSec - entities: - - uid: 16385 + rot: -1.5707963267948966 rad + pos: -110.5,20.5 + parent: 2 + - uid: 15963 components: - type: Transform - pos: 427.5,408.5 - parent: 1 -- proto: ClothingOuterWinterCap - entities: - - uid: 21692 + rot: 3.141592653589793 rad + pos: -109.5,20.5 + parent: 2 + - uid: 16061 components: - type: Transform - pos: 10.618964,23.658073 - parent: 5072 -- proto: ClothingOuterWinterHoP - entities: - - uid: 21709 + rot: 3.141592653589793 rad + pos: -96.5,-41.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + pos: -107.5,31.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -110.5,31.5 + parent: 2 + - uid: 16260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.3903475,16.346748 - parent: 5072 -- proto: ClothingOuterWinterMed - entities: - - uid: 6046 + pos: -64.5,-29.5 + parent: 2 + - uid: 16762 components: - type: Transform - pos: 400.5,418.5 - parent: 1 -- proto: ClothingShoesBling - entities: - - uid: 18374 + rot: 3.141592653589793 rad + pos: -107.5,25.5 + parent: 2 + - uid: 16822 components: - type: Transform - pos: 431.5,389.5 - parent: 1 -- proto: ClothingShoesBootsMerc - entities: - - uid: 21909 + rot: 1.5707963267948966 rad + pos: -108.5,31.5 + parent: 2 + - uid: 20494 components: - type: Transform - pos: -6.4295473,32.285225 - parent: 5072 -- proto: ClothingShoesBootsWinterCargo - entities: - - uid: 5619 + rot: 3.141592653589793 rad + pos: -39.5,-49.5 + parent: 2 + - uid: 21383 components: - type: Transform - pos: 359.5,389.5 - parent: 1 -- proto: ClothingShoesBootsWinterSyndicate - entities: - - uid: 18413 + rot: 1.5707963267948966 rad + pos: -104.5,-26.5 + parent: 2 + - uid: 21753 components: - type: Transform - pos: 357.5,430.5 - parent: 1 -- proto: ClothingShoesColorOrange - entities: - - uid: 5220 + rot: -1.5707963267948966 rad + pos: -102.5,-27.5 + parent: 2 + - uid: 21827 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 5221 + rot: 3.141592653589793 rad + pos: -133.5,-27.5 + parent: 2 + - uid: 21986 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 5222 + rot: 3.141592653589793 rad + pos: -55.5,-63.5 + parent: 2 + - uid: 22002 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 5223 + rot: 1.5707963267948966 rad + pos: -42.5,-59.5 + parent: 2 + - uid: 22003 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 5224 + rot: -1.5707963267948966 rad + pos: -42.5,-63.5 + parent: 2 + - uid: 22803 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 5225 + rot: 1.5707963267948966 rad + pos: -76.5,-39.5 + parent: 2 + - uid: 23170 components: - type: Transform - pos: 442.5,406.5 - parent: 1 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 18428 + rot: -1.5707963267948966 rad + pos: -103.5,-26.5 + parent: 2 + - uid: 23321 components: - type: Transform - pos: 434.5,386.5 - parent: 1 -- proto: ClothingUniformJumpskirtCMOTurtle - entities: - - uid: 5486 + rot: -1.5707963267948966 rad + pos: -104.5,25.5 + parent: 2 + - uid: 23510 components: - type: Transform - pos: 393.5,415.5 - parent: 1 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 21711 + pos: -102.5,26.5 + parent: 2 + - uid: 25905 components: - type: Transform - pos: 14.57035,20.510712 - parent: 5072 -- proto: ClothingUniformJumpskirtJanimaidmini - entities: - - uid: 10328 + rot: 3.141592653589793 rad + pos: -76.5,-52.5 + parent: 2 + - uid: 25906 components: - type: Transform - pos: 418.5,370.5 - parent: 1 -- proto: ClothingUniformJumpskirtLawyerGood + rot: -1.5707963267948966 rad + pos: -75.5,-52.5 + parent: 2 +- proto: DisposalJunction entities: - - uid: 5208 + - uid: 3748 components: - type: Transform - pos: 439.5,410.5 - parent: 1 -- proto: ClothingUniformJumpskirtLawyerRed - entities: - - uid: 5206 + rot: -1.5707963267948966 rad + pos: -94.5,-13.5 + parent: 2 + - uid: 4549 components: - type: Transform - pos: 437.5,412.5 - parent: 1 -- proto: ClothingUniformJumpskirtMime - entities: - - uid: 18429 + pos: -94.5,14.5 + parent: 2 + - uid: 5102 components: - type: Transform - pos: 434.50848,386.79984 - parent: 1 -- proto: ClothingUniformJumpskirtOrangeStripedDress - entities: - - uid: 5071 + rot: 3.141592653589793 rad + pos: -104.5,-45.5 + parent: 2 + - uid: 6034 components: - type: Transform - pos: 427.5,400.5 - parent: 1 -- proto: ClothingUniformJumpskirtPrisoner - entities: - - uid: 5217 + rot: 1.5707963267948966 rad + pos: -119.5,-46.5 + parent: 2 + - uid: 6341 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 5218 + rot: 1.5707963267948966 rad + pos: -120.5,-10.5 + parent: 2 + - uid: 6343 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 5219 + rot: 3.141592653589793 rad + pos: -119.5,-16.5 + parent: 2 + - uid: 6415 components: - type: Transform - pos: 442.5,406.5 - parent: 1 -- proto: ClothingUniformJumpskirtPsychologist - entities: - - uid: 16312 + rot: 1.5707963267948966 rad + pos: -143.5,-10.5 + parent: 2 + - uid: 7714 components: - type: Transform - pos: 416.5,413.5 - parent: 1 -- proto: ClothingUniformJumpsuitColorGrey - entities: - - uid: 16286 + rot: 3.141592653589793 rad + pos: -103.5,-13.5 + parent: 2 + - uid: 9177 components: - type: Transform - pos: 407.5,413.5 - parent: 1 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 21710 + rot: 3.141592653589793 rad + pos: -29.5,-19.5 + parent: 2 + - uid: 10652 components: - type: Transform - pos: 14.460975,20.651337 - parent: 5072 -- proto: ClothingUniformJumpsuitOperative - entities: - - uid: 6054 + rot: -1.5707963267948966 rad + pos: -66.5,-4.5 + parent: 2 + - uid: 10682 components: - type: Transform - pos: 421.5,373.5 - parent: 1 -- proto: ClothingUniformJumpsuitParamedicNT - entities: - - uid: 5414 + rot: 3.141592653589793 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 10689 components: - type: Transform - pos: 408.5,422.5 - parent: 1 -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 6053 + rot: -1.5707963267948966 rad + pos: -65.5,2.5 + parent: 2 + - uid: 10761 components: - type: Transform - pos: 414.5,376.5 - parent: 1 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 5214 + rot: 1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 10923 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 5215 + rot: 3.141592653589793 rad + pos: -29.5,-42.5 + parent: 2 + - uid: 10951 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 5216 + rot: 3.141592653589793 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 11124 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 9083 + pos: -127.5,-45.5 + parent: 2 + - uid: 12089 components: - type: Transform - pos: -1.5,1.5 - parent: 16114 -- proto: ClothingUniformJumpsuitReporter - entities: - - uid: 6071 + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 14429 components: - type: Transform - pos: 398.5,372.5 - parent: 1 -- proto: Cobweb1 - entities: - - uid: 5526 + pos: -42.5,-15.5 + parent: 2 + - uid: 14494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,411.5 - parent: 1 -- proto: Cobweb2 - entities: - - uid: 5525 + pos: -87.5,-27.5 + parent: 2 + - uid: 15937 components: - type: Transform - pos: 389.5,412.5 - parent: 1 -- proto: CockroachTimedSpawner + rot: 1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 +- proto: DisposalJunctionFlipped entities: - - uid: 15905 + - uid: 3746 components: - type: Transform - pos: 421.5,371.5 - parent: 1 -- proto: CombatKnife - entities: - - uid: 18412 + rot: -1.5707963267948966 rad + pos: -95.5,-13.5 + parent: 2 + - uid: 4550 components: - type: Transform - parent: 18411 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ComfyChair - entities: - - uid: 5566 + pos: -94.5,12.5 + parent: 2 + - uid: 5100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,393.5 - parent: 1 - - uid: 5567 + rot: 3.141592653589793 rad + pos: -104.5,-46.5 + parent: 2 + - uid: 5669 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,394.5 - parent: 1 - - uid: 5585 + pos: -121.5,-46.5 + parent: 2 + - uid: 6089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,398.5 - parent: 1 - - uid: 5586 + rot: 3.141592653589793 rad + pos: -32.5,-49.5 + parent: 2 + - uid: 6112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,397.5 - parent: 1 - - uid: 5747 + pos: -29.5,-2.5 + parent: 2 + - uid: 6340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,407.5 - parent: 1 - - uid: 5748 + rot: 1.5707963267948966 rad + pos: -119.5,-10.5 + parent: 2 + - uid: 6370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,406.5 - parent: 1 - - uid: 5749 + pos: -113.5,-21.5 + parent: 2 + - uid: 6372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,407.5 - parent: 1 - - uid: 5750 + rot: -1.5707963267948966 rad + pos: -111.5,-21.5 + parent: 2 + - uid: 6390 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,406.5 - parent: 1 - - uid: 18707 + pos: -137.5,-10.5 + parent: 2 + - uid: 6446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,380.5 - parent: 1 - - uid: 18708 + pos: -119.5,-4.5 + parent: 2 + - uid: 6807 components: - type: Transform rot: -1.5707963267948966 rad - pos: 425.5,379.5 - parent: 1 - - uid: 21381 + pos: -90.5,-27.5 + parent: 2 + - uid: 7633 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 5072 - - uid: 21453 + pos: -124.5,-47.5 + parent: 2 + - uid: 7715 components: - type: Transform - pos: 7.5,25.5 - parent: 5072 - - type: Construction - edge: 0 - - uid: 21527 + rot: 3.141592653589793 rad + pos: -103.5,-10.5 + parent: 2 + - uid: 10663 components: - type: Transform - pos: 10.5,24.5 - parent: 5072 - - uid: 21550 + rot: -1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 + - uid: 10759 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 5072 -- proto: CommandmentCircuitBoard - entities: - - uid: 6653 + pos: -64.5,-22.5 + parent: 2 + - uid: 10779 components: - type: Transform - pos: 302.5,407.5 - parent: 1 -- proto: ComputerAlert - entities: - - uid: 5709 + rot: -1.5707963267948966 rad + pos: -58.5,-19.5 + parent: 2 + - uid: 10824 components: - type: Transform - pos: 375.5,423.5 - parent: 1 - - uid: 6285 + rot: -1.5707963267948966 rad + pos: -67.5,-56.5 + parent: 2 + - uid: 10876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,413.5 - parent: 1 - - uid: 21642 + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - uid: 10939 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,31.5 - parent: 5072 -- proto: ComputerAnalysisConsole - entities: - - uid: 20870 + pos: -20.5,-30.5 + parent: 2 + - uid: 10956 components: - type: Transform - rot: -4.71238898038469 rad - pos: 346.5,388.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 7456: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - - type: Pullable - prevFixedRotation: True -- proto: computerBodyScanner - entities: - - uid: 6086 + rot: 3.141592653589793 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 10966 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,412.5 - parent: 1 -- proto: ComputerBroken - entities: - - uid: 2207 + pos: -29.5,-24.5 + parent: 2 + - uid: 10969 components: - type: Transform rot: 3.141592653589793 rad - pos: 376.5,416.5 - parent: 1 - - uid: 21354 + pos: -29.5,-21.5 + parent: 2 + - uid: 11145 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,23.5 - parent: 5072 - - uid: 21640 + pos: -127.5,-47.5 + parent: 2 + - uid: 11149 components: - type: Transform - pos: 8.5,30.5 - parent: 5072 - - uid: 21834 + rot: 1.5707963267948966 rad + pos: -136.5,-39.5 + parent: 2 + - uid: 12044 components: - type: Transform - pos: 3.5,32.5 - parent: 5072 -- proto: ComputerCargoBounty - entities: - - uid: 5620 + rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 + - uid: 12090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,388.5 - parent: 1 - - uid: 5629 + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 12126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,386.5 - parent: 1 - - uid: 5712 + rot: -1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 + - uid: 14578 components: - type: Transform - pos: 383.5,423.5 - parent: 1 -- proto: ComputerCargoOrders - entities: - - uid: 5621 + rot: -1.5707963267948966 rad + pos: -55.5,-56.5 + parent: 2 + - uid: 22388 components: - type: Transform rot: 3.141592653589793 rad - pos: 358.5,388.5 - parent: 1 - - uid: 5628 + pos: -75.5,-39.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,385.5 - parent: 1 - - uid: 5711 + pos: -105.5,7.5 + parent: 2 + - uid: 460 components: - type: Transform - pos: 382.5,423.5 - parent: 1 -- proto: ComputerComms - entities: - - uid: 5707 + pos: -105.5,6.5 + parent: 2 + - uid: 499 components: - type: Transform - pos: 379.5,424.5 - parent: 1 - - uid: 5752 + rot: -1.5707963267948966 rad + pos: -103.5,-45.5 + parent: 2 + - uid: 502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,406.5 - parent: 1 -- proto: ComputerCrewMonitoring - entities: - - uid: 5715 + rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 2 + - uid: 519 components: - type: Transform - pos: 380.5,419.5 - parent: 1 - - uid: 6051 + rot: -1.5707963267948966 rad + pos: -42.5,-69.5 + parent: 2 + - uid: 936 components: - type: Transform rot: 3.141592653589793 rad - pos: 407.5,420.5 - parent: 1 - - uid: 8485 + pos: -109.5,23.5 + parent: 2 + - uid: 945 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,415.5 - parent: 1 - - uid: 21825 - components: - - type: Transform - pos: 0.5,32.5 - parent: 5072 -- proto: ComputerCriminalRecords - entities: - - uid: 5242 + pos: -111.5,23.5 + parent: 2 + - uid: 1090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,387.5 - parent: 1 - - uid: 5660 + rot: 3.141592653589793 rad + pos: -109.5,21.5 + parent: 2 + - uid: 1219 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,409.5 - parent: 1 - - uid: 5713 + pos: -41.5,-69.5 + parent: 2 + - uid: 1384 components: - type: Transform - pos: 378.5,419.5 - parent: 1 - - uid: 5973 + rot: 1.5707963267948966 rad + pos: -36.5,-49.5 + parent: 2 + - uid: 1633 components: - type: Transform - pos: 328.5,408.5 - parent: 1 - - uid: 5999 + rot: 3.141592653589793 rad + pos: -107.5,27.5 + parent: 2 + - uid: 2145 components: - type: Transform - pos: 354.5,393.5 - parent: 1 -- proto: ComputerFrame - entities: - - uid: 17398 + rot: 3.141592653589793 rad + pos: -94.5,-12.5 + parent: 2 + - uid: 2159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 508.5,387.5 - parent: 1 - - uid: 17515 + rot: 3.141592653589793 rad + pos: -94.5,-11.5 + parent: 2 + - uid: 2455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 508.5,388.5 - parent: 1 - - uid: 18646 + pos: -141.5,-40.5 + parent: 2 + - uid: 2457 components: - type: Transform - pos: 329.5,437.5 - parent: 1 - - uid: 18648 + rot: -1.5707963267948966 rad + pos: -139.5,-39.5 + parent: 2 + - uid: 2459 components: - type: Transform - pos: 328.5,437.5 - parent: 1 -- proto: ComputerId - entities: - - uid: 4829 + rot: -1.5707963267948966 rad + pos: -138.5,-39.5 + parent: 2 + - uid: 2460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,398.5 - parent: 1 - - uid: 5706 + rot: -1.5707963267948966 rad + pos: -140.5,-39.5 + parent: 2 + - uid: 2465 components: - type: Transform - pos: 378.5,424.5 - parent: 1 - - uid: 5753 + rot: 1.5707963267948966 rad + pos: -142.5,-45.5 + parent: 2 + - uid: 2475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,406.5 - parent: 1 - - uid: 21378 + pos: -141.5,-44.5 + parent: 2 + - uid: 2476 components: - type: Transform - pos: 7.5,21.5 - parent: 5072 - - uid: 21580 + pos: -141.5,-43.5 + parent: 2 + - uid: 2477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,31.5 - parent: 5072 -- proto: ComputerMassMedia - entities: - - uid: 6069 + pos: -141.5,-42.5 + parent: 2 + - uid: 2478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,373.5 - parent: 1 -- proto: ComputerPowerMonitoring - entities: - - uid: 407 + pos: -141.5,-41.5 + parent: 2 + - uid: 2547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,420.5 - parent: 1 - - uid: 5710 + rot: -1.5707963267948966 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 2663 components: - type: Transform - pos: 376.5,423.5 - parent: 1 - - uid: 6241 + rot: -1.5707963267948966 rad + pos: -101.5,-15.5 + parent: 2 + - uid: 2664 components: - type: Transform - pos: 300.5,390.5 - parent: 1 - - uid: 6371 + rot: -1.5707963267948966 rad + pos: -96.5,-15.5 + parent: 2 + - uid: 2665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,410.5 - parent: 1 -- proto: ComputerRadar - entities: - - uid: 5708 + rot: -1.5707963267948966 rad + pos: -98.5,-15.5 + parent: 2 + - uid: 3706 components: - type: Transform - pos: 380.5,424.5 - parent: 1 - - uid: 6372 + pos: -133.5,18.5 + parent: 2 + - uid: 4383 components: - type: Transform rot: 3.141592653589793 rad - pos: 341.5,410.5 - parent: 1 - - uid: 21200 + pos: -107.5,29.5 + parent: 2 + - uid: 4392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,381.5 - parent: 1 - - uid: 21844 + pos: -94.5,11.5 + parent: 2 + - uid: 4578 components: - type: Transform - pos: 6.5,32.5 - parent: 5072 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 3201 + rot: 3.141592653589793 rad + pos: -109.5,28.5 + parent: 2 + - uid: 4579 components: - type: Transform - pos: 354.5,389.5 - parent: 1 - - uid: 7486 + rot: 3.141592653589793 rad + pos: -109.5,27.5 + parent: 2 + - uid: 4580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,397.5 - parent: 1 - - uid: 7525 + rot: 3.141592653589793 rad + pos: -109.5,29.5 + parent: 2 + - uid: 4584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,400.5 - parent: 1 -- proto: ComputerRoboticsControl - entities: - - uid: 2209 + rot: 3.141592653589793 rad + pos: -107.5,28.5 + parent: 2 + - uid: 4585 components: - type: Transform rot: 3.141592653589793 rad - pos: 375.5,416.5 - parent: 1 - - uid: 7513 + pos: -107.5,30.5 + parent: 2 + - uid: 4614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,383.5 - parent: 1 -- proto: ComputerShuttle - entities: - - uid: 16164 + pos: -64.5,-28.5 + parent: 2 + - uid: 4653 components: - - type: MetaData - desc: Управляет шаттлом. - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 16114 - - uid: 20276 + pos: -95.5,14.5 + parent: 2 + - uid: 4684 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 20181 - - uid: 20634 + pos: -103.5,4.5 + parent: 2 + - uid: 4908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 20527 -- proto: ComputerShuttleCargo - entities: - - uid: 5663 + rot: 1.5707963267948966 rad + pos: -105.5,-46.5 + parent: 2 + - uid: 5043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,381.5 - parent: 1 -- proto: ComputerShuttleSalvage - entities: - - uid: 5651 + pos: -117.5,-46.5 + parent: 2 + - uid: 5046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,376.5 - parent: 1 -- proto: ComputerSolarControl - entities: - - uid: 6498 + pos: -26.5,-8.5 + parent: 2 + - uid: 5048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 321.5,428.5 - parent: 1 - - uid: 7740 + pos: -100.5,-46.5 + parent: 2 + - uid: 5136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,424.5 - parent: 1 - - uid: 7888 + pos: -118.5,-46.5 + parent: 2 + - uid: 5137 components: - type: Transform - pos: 399.5,367.5 - parent: 1 - - uid: 18712 + pos: -29.5,-8.5 + parent: 2 + - uid: 5226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,380.5 - parent: 1 -- proto: ComputerStationRecords - entities: - - uid: 21791 + pos: -114.5,-46.5 + parent: 2 + - uid: 5227 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,29.5 - parent: 5072 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 5024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,407.5 - parent: 1 - - uid: 5658 + pos: -115.5,-46.5 + parent: 2 + - uid: 5401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,408.5 - parent: 1 - - uid: 5714 + rot: 1.5707963267948966 rad + pos: -116.5,-46.5 + parent: 2 + - uid: 5405 components: - type: Transform - pos: 379.5,419.5 - parent: 1 - - uid: 5970 + rot: 1.5707963267948966 rad + pos: -118.5,-46.5 + parent: 2 + - uid: 5422 components: - type: Transform - pos: 327.5,408.5 - parent: 1 - - uid: 5997 + pos: -121.5,-45.5 + parent: 2 + - uid: 5440 components: - type: Transform - pos: 356.5,393.5 - parent: 1 - - uid: 21638 + rot: -1.5707963267948966 rad + pos: -128.5,22.5 + parent: 2 + - uid: 5441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,29.5 - parent: 5072 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 6068 + pos: -127.5,22.5 + parent: 2 + - uid: 5442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,374.5 - parent: 1 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 15430 + rot: 3.141592653589793 rad + pos: -131.5,27.5 + parent: 2 + - uid: 5446 components: - type: Transform - pos: 353.5,400.5 - parent: 1 -- proto: ComputerTelevision - entities: - - uid: 16494 + pos: -133.5,17.5 + parent: 2 + - uid: 5448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 340.5,445.5 - parent: 1 -- proto: ContainmentFieldGenerator - entities: - - uid: 8251 + pos: -129.5,22.5 + parent: 2 + - uid: 5449 components: - type: Transform - pos: 282.5,384.5 - parent: 1 - - uid: 15412 + rot: -1.5707963267948966 rad + pos: -130.5,22.5 + parent: 2 + - uid: 5451 components: - type: Transform - pos: 282.5,390.5 - parent: 1 - - uid: 15413 + rot: -1.5707963267948966 rad + pos: -132.5,22.5 + parent: 2 + - uid: 5483 components: - type: Transform - pos: 288.5,390.5 - parent: 1 - - uid: 15415 + rot: 1.5707963267948966 rad + pos: -123.5,-46.5 + parent: 2 + - uid: 5565 components: - type: Transform - pos: 300.5,384.5 - parent: 1 -- proto: ConveyorBelt - entities: - - uid: 1377 + rot: 1.5707963267948966 rad + pos: -120.5,-46.5 + parent: 2 + - uid: 5574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,384.5 - parent: 1 - - uid: 1416 + rot: 1.5707963267948966 rad + pos: -129.5,27.5 + parent: 2 + - uid: 5577 components: - type: Transform rot: -1.5707963267948966 rad - pos: 362.5,384.5 - parent: 1 - - uid: 1874 + pos: -132.5,29.5 + parent: 2 + - uid: 5578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,441.5 - parent: 1 - - uid: 3081 + rot: 1.5707963267948966 rad + pos: -132.5,27.5 + parent: 2 + - uid: 5579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,379.5 - parent: 1 - - uid: 3082 + rot: 1.5707963267948966 rad + pos: -130.5,27.5 + parent: 2 + - uid: 5580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,378.5 - parent: 1 - - uid: 3084 + rot: 1.5707963267948966 rad + pos: -128.5,27.5 + parent: 2 + - uid: 5588 components: - type: Transform rot: 3.141592653589793 rad - pos: 366.5,377.5 - parent: 1 - - uid: 3834 + pos: -131.5,28.5 + parent: 2 + - uid: 5589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,439.5 - parent: 1 - - uid: 4805 + pos: -133.5,28.5 + parent: 2 + - uid: 5590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,440.5 - parent: 1 - - uid: 4809 + rot: 1.5707963267948966 rad + pos: -131.5,27.5 + parent: 2 + - uid: 5671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,442.5 - parent: 1 - - uid: 5682 + rot: 1.5707963267948966 rad + pos: -112.5,-46.5 + parent: 2 + - uid: 5674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,384.5 - parent: 1 - - uid: 5684 + rot: 1.5707963267948966 rad + pos: -111.5,-46.5 + parent: 2 + - uid: 5677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,377.5 - parent: 1 - - uid: 5685 + rot: 1.5707963267948966 rad + pos: -113.5,-46.5 + parent: 2 + - uid: 5748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,378.5 - parent: 1 - - uid: 5686 + rot: 1.5707963267948966 rad + pos: -109.5,-46.5 + parent: 2 + - uid: 5796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,379.5 - parent: 1 - - uid: 18628 + rot: 1.5707963267948966 rad + pos: -110.5,-46.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-46.5 + parent: 2 + - uid: 5881 components: - type: Transform rot: 3.141592653589793 rad - pos: 335.5,436.5 - parent: 1 - - uid: 18629 + pos: -94.5,13.5 + parent: 2 + - uid: 5904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,437.5 - parent: 1 - - uid: 18630 + pos: -122.5,-46.5 + parent: 2 + - uid: 5908 components: - type: Transform - pos: 336.5,437.5 - parent: 1 - - uid: 18631 + rot: 1.5707963267948966 rad + pos: -106.5,-46.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,-46.5 + parent: 2 + - uid: 6104 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,436.5 - parent: 1 -- proto: CorporateCircuitBoard - entities: - - uid: 6656 + pos: -137.5,-39.5 + parent: 2 + - uid: 6178 components: - type: Transform - pos: 302.5,408.5 - parent: 1 -- proto: CottonBol - entities: - - uid: 18426 + pos: -143.5,-11.5 + parent: 2 + - uid: 6187 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CrateArtifactContainer - entities: - - uid: 7460 + pos: -26.5,-6.5 + parent: 2 + - uid: 6188 components: - type: Transform - pos: 348.5,392.5 - parent: 1 - - uid: 7461 + pos: -26.5,-7.5 + parent: 2 + - uid: 6325 components: - type: Transform - pos: 348.5,393.5 - parent: 1 - - uid: 13924 + rot: 3.141592653589793 rad + pos: -112.5,-5.5 + parent: 2 + - uid: 6327 components: - type: Transform - pos: 344.5,387.5 - parent: 1 -- proto: CrateCoffin - entities: - - uid: 20041 + rot: 1.5707963267948966 rad + pos: -144.5,-45.5 + parent: 2 + - uid: 6328 components: - type: Transform - pos: 331.5,437.5 - parent: 1 - - uid: 20042 + rot: -1.5707963267948966 rad + pos: -116.5,-0.5 + parent: 2 + - uid: 6329 components: - type: Transform - pos: 331.5,438.5 - parent: 1 -- proto: CrateEmptySpawner - entities: - - uid: 1455 + rot: -1.5707963267948966 rad + pos: -118.5,-0.5 + parent: 2 + - uid: 6330 components: - type: Transform - pos: 371.5,384.5 - parent: 1 - - uid: 5677 + rot: -1.5707963267948966 rad + pos: -117.5,-0.5 + parent: 2 + - uid: 6332 components: - type: Transform - pos: 369.5,383.5 - parent: 1 - - uid: 5680 + pos: -119.5,-1.5 + parent: 2 + - uid: 6333 components: - type: Transform - pos: 371.5,381.5 - parent: 1 - - uid: 18271 + pos: -119.5,-3.5 + parent: 2 + - uid: 6334 components: - type: Transform - pos: 409.5,425.5 - parent: 1 - - uid: 18986 + pos: -119.5,-2.5 + parent: 2 + - uid: 6335 components: - type: Transform - pos: 338.5,384.5 - parent: 1 - - uid: 18987 + pos: -119.5,-5.5 + parent: 2 + - uid: 6336 components: - type: Transform - pos: 339.5,384.5 - parent: 1 - - uid: 21217 + pos: -119.5,-7.5 + parent: 2 + - uid: 6337 components: - type: Transform - pos: 502.5,388.5 - parent: 1 -- proto: CrateEngineering - entities: - - uid: 4308 + pos: -119.5,-8.5 + parent: 2 + - uid: 6338 components: - type: Transform - pos: 333.5,406.5 - parent: 1 -- proto: CrateEngineeringAMEControl - entities: - - uid: 3469 + pos: -119.5,-9.5 + parent: 2 + - uid: 6339 components: - type: Transform - pos: 346.5,412.5 - parent: 1 -- proto: CrateEngineeringAMEJar - entities: - - uid: 5025 + pos: -119.5,-6.5 + parent: 2 + - uid: 6345 components: - type: Transform - pos: 344.5,409.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6236 + pos: -119.5,-12.5 + parent: 2 + - uid: 6346 components: - type: Transform - pos: 350.5,412.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 3470 + pos: -119.5,-14.5 + parent: 2 + - uid: 6347 components: - type: Transform - pos: 351.5,412.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringCableBulk - entities: - - uid: 3214 + pos: -119.5,-15.5 + parent: 2 + - uid: 6348 components: - type: Transform - pos: 420.5,382.5 - parent: 1 - - uid: 16238 + pos: -119.5,-13.5 + parent: 2 + - uid: 6349 components: - type: Transform - pos: 336.5,410.5 - parent: 1 -- proto: CrateEngineeringCableHV - entities: - - uid: 3173 + rot: -1.5707963267948966 rad + pos: -118.5,-16.5 + parent: 2 + - uid: 6350 components: - type: Transform - pos: 362.5,382.5 - parent: 1 - - uid: 3210 + rot: -1.5707963267948966 rad + pos: -117.5,-16.5 + parent: 2 + - uid: 6351 components: - type: Transform - pos: 422.5,428.5 - parent: 1 -- proto: CrateEngineeringCableLV - entities: - - uid: 3218 + rot: -1.5707963267948966 rad + pos: -116.5,-16.5 + parent: 2 + - uid: 6352 components: - type: Transform - pos: 392.5,419.5 - parent: 1 -- proto: CrateEngineeringTeslaCoil - entities: - - uid: 16271 + rot: -1.5707963267948966 rad + pos: -114.5,-16.5 + parent: 2 + - uid: 6353 components: - type: Transform - pos: 300.5,389.5 - parent: 1 - - uid: 16272 + rot: -1.5707963267948966 rad + pos: -113.5,-16.5 + parent: 2 + - uid: 6354 components: - type: Transform - pos: 303.5,385.5 - parent: 1 -- proto: CrateEngineeringTeslaGenerator - entities: - - uid: 3708 + rot: -1.5707963267948966 rad + pos: -115.5,-16.5 + parent: 2 + - uid: 6356 components: - type: Transform - pos: 293.5,382.5 - parent: 1 -- proto: CrateEngineeringTeslaGroundingRod - entities: - - uid: 16267 + rot: 3.141592653589793 rad + pos: -112.5,-15.5 + parent: 2 + - uid: 6358 components: - type: Transform - pos: 300.5,385.5 - parent: 1 - - uid: 16268 + pos: -119.5,-17.5 + parent: 2 + - uid: 6359 components: - type: Transform - pos: 299.5,385.5 - parent: 1 - - uid: 16269 + pos: -119.5,-18.5 + parent: 2 + - uid: 6360 components: - type: Transform - pos: 299.5,384.5 - parent: 1 -- proto: CrateFilledSpawner - entities: - - uid: 2181 + pos: -119.5,-20.5 + parent: 2 + - uid: 6361 components: - type: Transform - pos: 371.5,383.5 - parent: 1 - - uid: 5681 + pos: -119.5,-21.5 + parent: 2 + - uid: 6362 components: - type: Transform - pos: 371.5,380.5 - parent: 1 -- proto: CrateFreezer - entities: - - uid: 5119 + pos: -119.5,-19.5 + parent: 2 + - uid: 6364 components: - type: Transform - pos: 452.5,421.5 - parent: 1 -- proto: CrateFunToyBox - entities: - - uid: 6162 + rot: 1.5707963267948966 rad + pos: -118.5,-22.5 + parent: 2 + - uid: 6365 components: - type: Transform - pos: 451.5,412.5 - parent: 1 -- proto: CrateHydroponics - entities: - - uid: 3117 + rot: 1.5707963267948966 rad + pos: -117.5,-22.5 + parent: 2 + - uid: 6367 components: - type: Transform - pos: 397.5,406.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 5090 - - 5091 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18556 + rot: 1.5707963267948966 rad + pos: -114.5,-22.5 + parent: 2 + - uid: 6368 components: - type: Transform - pos: 357.5,414.5 - parent: 1 - - 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: - - 18559 - - 18558 - - 18557 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroponicsSeedsExotic - entities: - - uid: 9094 + rot: 1.5707963267948966 rad + pos: -116.5,-22.5 + parent: 2 + - uid: 6373 components: - type: Transform - pos: 372.5,381.5 - parent: 1 -- proto: CrateMaterialPlasteel - entities: - - uid: 17996 + rot: -1.5707963267948966 rad + pos: -112.5,-21.5 + parent: 2 + - uid: 6374 components: - type: Transform - pos: 481.5,369.5 - parent: 1 -- proto: CrateMaterialSteel - entities: - - uid: 17995 + rot: 3.141592653589793 rad + pos: -111.5,-22.5 + parent: 2 + - uid: 6375 components: - type: Transform - pos: 482.5,368.5 - parent: 1 - - uid: 18544 + rot: 3.141592653589793 rad + pos: -111.5,-23.5 + parent: 2 + - uid: 6376 components: - type: Transform - pos: 356.5,406.5 - parent: 1 -- proto: CrateMedicalSurgery - entities: - - uid: 5369 + rot: 3.141592653589793 rad + pos: -109.5,-23.5 + parent: 2 + - uid: 6377 components: - type: Transform - pos: 399.5,412.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1102 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateNPCChicken - entities: - - uid: 20019 + rot: 3.141592653589793 rad + pos: -109.5,-22.5 + parent: 2 + - uid: 6379 components: - type: Transform - pos: 415.5,384.5 - parent: 1 -- proto: CrateNPCCow - entities: - - uid: 16400 + rot: -1.5707963267948966 rad + pos: -110.5,-21.5 + parent: 2 + - uid: 6382 components: - type: Transform - pos: 367.5,378.5 - parent: 1 -- proto: CrateNPCHamlet - entities: - - uid: 5740 + rot: 1.5707963267948966 rad + pos: -130.5,-10.5 + parent: 2 + - uid: 6383 components: - type: Transform - pos: 382.5,420.5 - parent: 1 -- proto: CrateNPCKangaroo - entities: - - uid: 18282 + rot: 1.5707963267948966 rad + pos: -131.5,-10.5 + parent: 2 + - uid: 6384 components: - type: Transform - pos: 416.5,426.5 - parent: 1 -- proto: CratePlastic - entities: - - uid: 20836 + rot: 1.5707963267948966 rad + pos: -132.5,-10.5 + parent: 2 + - uid: 6385 components: - type: Transform - pos: 447.5,414.5 - parent: 1 -- proto: CrateRCDAmmo - entities: - - uid: 14635 + rot: 1.5707963267948966 rad + pos: -133.5,-10.5 + parent: 2 + - uid: 6386 components: - type: Transform - pos: 347.5,415.5 - parent: 1 -- proto: CrateRodentCage - entities: - - uid: 21675 + rot: 1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - uid: 6387 components: - type: Transform - pos: 0.5,29.5 - parent: 5072 -- proto: CrateSecgear - entities: - - uid: 5244 + rot: 1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - uid: 6388 components: - type: Transform - pos: 441.5,394.5 - parent: 1 -- proto: CrateServicePersonnel - entities: - - uid: 3985 + rot: 1.5707963267948966 rad + pos: -129.5,-10.5 + parent: 2 + - uid: 6389 components: - type: Transform - pos: 368.5,395.5 - parent: 1 -- proto: CrateSyndicate - entities: - - uid: 3808 + rot: 1.5707963267948966 rad + pos: -136.5,-10.5 + parent: 2 + - uid: 6391 components: - - type: MetaData - desc: Содердит случайное снаряжение Синдиката, общей стоимостью в 50 телекристаллов. Оно может быть как бесполезным хламом, так и реально крутым. - name: ящик припасов синдиката - type: Transform - pos: 392.46268,376.41345 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Pullable - prevFixedRotation: True -- proto: CrateVendingMachineRestockSalvageEquipmentFilled - entities: - - uid: 21216 + rot: 1.5707963267948966 rad + pos: -121.5,-10.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-10.5 + parent: 2 + - uid: 6393 components: - type: Transform - pos: 502.5,384.5 - parent: 1 -- proto: CrateVirologyBiosuit - entities: - - uid: 5470 + rot: 1.5707963267948966 rad + pos: -124.5,-10.5 + parent: 2 + - uid: 6394 components: - type: Transform - pos: 412.5,416.5 - parent: 1 -- proto: Crematorium - entities: - - uid: 20039 + rot: 1.5707963267948966 rad + pos: -125.5,-10.5 + parent: 2 + - uid: 6395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,437.5 - parent: 1 -- proto: CrewMonitoringServer - entities: - - uid: 5490 + rot: 1.5707963267948966 rad + pos: -126.5,-10.5 + parent: 2 + - uid: 6396 components: - type: Transform - pos: 396.5,412.5 - parent: 1 -- proto: Crowbar - entities: - - uid: 17326 + rot: 1.5707963267948966 rad + pos: -122.5,-10.5 + parent: 2 + - uid: 6397 components: - type: Transform - pos: 413.5,409.5 - parent: 1 - - uid: 17328 + rot: 1.5707963267948966 rad + pos: -127.5,-10.5 + parent: 2 + - uid: 6398 components: - type: Transform - pos: 430.5,399.5 - parent: 1 -- proto: CrowbarGreen - entities: - - uid: 5697 + rot: 1.5707963267948966 rad + pos: -128.5,-10.5 + parent: 2 + - uid: 6399 components: - type: Transform - pos: 369.5,391.5 - parent: 1 - - uid: 21058 + pos: -137.5,-9.5 + parent: 2 + - uid: 6400 components: - type: Transform - pos: 363.5,418.5 - parent: 1 - - uid: 21059 + pos: -137.5,-8.5 + parent: 2 + - uid: 6401 components: - type: Transform - pos: 388.5,417.5 - parent: 1 -- proto: CrowbarOrange - entities: - - uid: 21083 + pos: -137.5,-7.5 + parent: 2 + - uid: 6402 components: - type: Transform - pos: 407.5,370.5 - parent: 1 -- proto: CrowbarRed - entities: - - uid: 11771 + pos: -137.5,-5.5 + parent: 2 + - uid: 6403 components: - type: Transform - pos: 390.5,418.5 - parent: 1 - - uid: 21718 + pos: -137.5,-4.5 + parent: 2 + - uid: 6404 components: - type: Transform - pos: 8.498364,31.458696 - parent: 5072 -- proto: CrowbarYellow - entities: - - uid: 6126 + pos: -137.5,-6.5 + parent: 2 + - uid: 6406 components: - type: Transform - pos: 422.5,408.5 - parent: 1 -- proto: CryogenicSleepUnit - entities: - - uid: 5396 + rot: -1.5707963267948966 rad + pos: -138.5,-3.5 + parent: 2 + - uid: 6407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,415.5 - parent: 1 - - uid: 5397 + rot: -1.5707963267948966 rad + pos: -140.5,-3.5 + parent: 2 + - uid: 6408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,414.5 - parent: 1 - - uid: 16024 + rot: -1.5707963267948966 rad + pos: -139.5,-3.5 + parent: 2 + - uid: 6411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,376.5 - parent: 1 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 15938 + pos: -138.5,-10.5 + parent: 2 + - uid: 6412 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,376.5 - parent: 1 -- proto: CryoPod - entities: - - uid: 5398 + pos: -139.5,-10.5 + parent: 2 + - uid: 6413 components: - type: Transform - pos: 399.5,418.5 - parent: 1 - - uid: 5399 + rot: -1.5707963267948966 rad + pos: -141.5,-10.5 + parent: 2 + - uid: 6414 components: - type: Transform - pos: 401.5,418.5 - parent: 1 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 16324 + rot: -1.5707963267948966 rad + pos: -142.5,-10.5 + parent: 2 + - uid: 6416 components: - type: Transform - pos: 400.5,415.5 - parent: 1 -- proto: CrystalOrange - entities: - - uid: 17979 + rot: -1.5707963267948966 rad + pos: -144.5,-10.5 + parent: 2 + - uid: 6417 components: - type: Transform - pos: 480.5,371.5 - parent: 1 - - uid: 17980 + rot: -1.5707963267948966 rad + pos: -145.5,-10.5 + parent: 2 + - uid: 6418 components: - type: Transform - pos: 483.5,367.5 - parent: 1 - - uid: 17981 + rot: -1.5707963267948966 rad + pos: -146.5,-10.5 + parent: 2 + - uid: 6419 components: - type: Transform - pos: 489.5,376.5 - parent: 1 - - uid: 17982 + rot: -1.5707963267948966 rad + pos: -140.5,-10.5 + parent: 2 + - uid: 6421 components: - type: Transform - pos: 491.5,381.5 - parent: 1 - - uid: 17983 + rot: 3.141592653589793 rad + pos: -147.5,-0.5 + parent: 2 + - uid: 6422 components: - type: Transform - pos: 491.5,386.5 - parent: 1 - - uid: 17984 + rot: 3.141592653589793 rad + pos: -147.5,0.5 + parent: 2 + - uid: 6423 components: - type: Transform - pos: 492.5,391.5 - parent: 1 - - uid: 17985 + rot: 3.141592653589793 rad + pos: -147.5,-6.5 + parent: 2 + - uid: 6424 components: - type: Transform - pos: 494.5,394.5 - parent: 1 - - uid: 17986 + rot: 3.141592653589793 rad + pos: -147.5,-9.5 + parent: 2 + - uid: 6425 components: - type: Transform - pos: 502.5,397.5 - parent: 1 - - uid: 17987 + rot: 3.141592653589793 rad + pos: -147.5,-8.5 + parent: 2 + - uid: 6426 components: - type: Transform - pos: 506.5,396.5 - parent: 1 - - uid: 17988 + rot: 3.141592653589793 rad + pos: -147.5,-7.5 + parent: 2 + - uid: 6427 components: - type: Transform - pos: 506.5,392.5 - parent: 1 - - uid: 17989 + rot: 3.141592653589793 rad + pos: -147.5,-5.5 + parent: 2 + - uid: 6428 components: - type: Transform - pos: 496.5,376.5 - parent: 1 - - uid: 17990 + rot: 3.141592653589793 rad + pos: -147.5,-4.5 + parent: 2 + - uid: 6429 components: - type: Transform - pos: 490.5,367.5 - parent: 1 - - uid: 17991 + rot: 3.141592653589793 rad + pos: -147.5,-3.5 + parent: 2 + - uid: 6430 components: - type: Transform - pos: 482.5,360.5 - parent: 1 - - uid: 17992 + rot: 3.141592653589793 rad + pos: -147.5,-2.5 + parent: 2 + - uid: 6431 components: - type: Transform - pos: 474.5,365.5 - parent: 1 - - uid: 17993 + rot: 3.141592653589793 rad + pos: -147.5,-1.5 + parent: 2 + - uid: 6435 components: - type: Transform - pos: 473.5,376.5 - parent: 1 -- proto: CultAltarSpawner - entities: - - uid: 20050 + rot: 1.5707963267948966 rad + pos: -117.5,-4.5 + parent: 2 + - uid: 6437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,441.5 - parent: 1 -- proto: CurtainsBlackOpen - entities: - - uid: 4914 + rot: 1.5707963267948966 rad + pos: -118.5,-4.5 + parent: 2 + - uid: 6438 components: - type: Transform - pos: 419.5,389.5 - parent: 1 - - uid: 19662 + rot: 1.5707963267948966 rad + pos: -143.5,-45.5 + parent: 2 + - uid: 6442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,436.5 - parent: 1 -- proto: CurtainsOrangeOpen - entities: - - uid: 5142 + rot: 1.5707963267948966 rad + pos: -113.5,-4.5 + parent: 2 + - uid: 6443 components: - type: Transform - pos: 431.5,405.5 - parent: 1 - - uid: 5144 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 + parent: 2 + - uid: 6444 components: - type: Transform - pos: 431.5,397.5 - parent: 1 - - uid: 5249 + rot: 1.5707963267948966 rad + pos: -115.5,-4.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-4.5 + parent: 2 + - uid: 6595 components: - type: Transform rot: -1.5707963267948966 rad - pos: 456.5,414.5 - parent: 1 - - uid: 5250 + pos: -101.5,-45.5 + parent: 2 + - uid: 6625 components: - type: Transform rot: -1.5707963267948966 rad - pos: 453.5,416.5 - parent: 1 -- proto: CurtainsRedOpen - entities: - - uid: 5102 + pos: -102.5,-45.5 + parent: 2 + - uid: 6741 components: - type: Transform - pos: 424.5,408.5 - parent: 1 - - uid: 5159 + rot: 1.5707963267948966 rad + pos: -93.5,-27.5 + parent: 2 + - uid: 6747 components: - type: Transform - pos: 415.5,407.5 - parent: 1 - - uid: 5255 + pos: -87.5,-26.5 + parent: 2 + - uid: 6748 components: - type: Transform - pos: 460.5,416.5 - parent: 1 - - uid: 5256 + rot: 3.141592653589793 rad + pos: -96.5,-28.5 + parent: 2 + - uid: 6848 components: - type: Transform - pos: 458.5,416.5 - parent: 1 - - uid: 18027 + rot: 1.5707963267948966 rad + pos: -94.5,-27.5 + parent: 2 + - uid: 6849 components: - type: Transform - pos: 412.5,367.5 - parent: 1 - - uid: 18028 + rot: 1.5707963267948966 rad + pos: -92.5,-27.5 + parent: 2 + - uid: 6856 components: - type: Transform - pos: 412.5,370.5 - parent: 1 - - uid: 18029 + rot: 1.5707963267948966 rad + pos: -91.5,-27.5 + parent: 2 + - uid: 6942 components: - type: Transform - pos: 419.5,370.5 - parent: 1 - - uid: 18030 + rot: 3.141592653589793 rad + pos: -86.5,-28.5 + parent: 2 + - uid: 6970 components: - type: Transform - pos: 419.5,367.5 - parent: 1 -- proto: CutterMachine - entities: - - uid: 4305 + pos: -133.5,19.5 + parent: 2 + - uid: 7451 components: - type: Transform - pos: 333.5,407.5 - parent: 1 - - uid: 18735 + rot: -1.5707963267948966 rad + pos: -73.5,-25.5 + parent: 2 + - uid: 7566 components: - type: Transform - pos: 422.5,367.5 - parent: 1 -- proto: DefaultStationBeacon - entities: - - uid: 16487 + rot: 1.5707963267948966 rad + pos: -129.5,-45.5 + parent: 2 + - uid: 7637 components: - type: Transform - pos: 392.5,370.5 - parent: 1 -- proto: DefaultStationBeaconAICore - entities: - - uid: 16486 + rot: 1.5707963267948966 rad + pos: -133.5,-45.5 + parent: 2 + - uid: 7639 components: - type: Transform - pos: 307.5,411.5 - parent: 1 -- proto: DefaultStationBeaconAME - entities: - - uid: 5079 + rot: 1.5707963267948966 rad + pos: -135.5,-45.5 + parent: 2 + - uid: 7640 components: - type: Transform - pos: 346.5,407.5 - parent: 1 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 16252 + rot: 1.5707963267948966 rad + pos: -134.5,-45.5 + parent: 2 + - uid: 7641 components: - type: Transform - pos: 339.5,393.5 - parent: 1 -- proto: DefaultStationBeaconArmory - entities: - - uid: 5366 + rot: 1.5707963267948966 rad + pos: -132.5,-45.5 + parent: 2 + - uid: 7642 components: - type: Transform - pos: 425.5,413.5 - parent: 1 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 16230 + rot: 1.5707963267948966 rad + pos: -131.5,-45.5 + parent: 2 + - uid: 7643 components: - type: Transform - pos: 382.5,395.5 - parent: 1 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 16346 + rot: 1.5707963267948966 rad + pos: -130.5,-45.5 + parent: 2 + - uid: 7654 components: - type: Transform - pos: 347.5,388.5 - parent: 1 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 16258 + pos: -121.5,-44.5 + parent: 2 + - uid: 7655 components: - type: Transform - pos: 339.5,422.5 - parent: 1 - - uid: 20277 + pos: -121.5,-43.5 + parent: 2 + - uid: 7656 components: - type: Transform - pos: 3.5,1.5 - parent: 20181 -- proto: DefaultStationBeaconBar - entities: - - uid: 16395 + pos: -121.5,-41.5 + parent: 2 + - uid: 7657 components: - type: Transform - pos: 414.5,390.5 - parent: 1 -- proto: DefaultStationBeaconBotany - entities: - - uid: 16404 + pos: -121.5,-42.5 + parent: 2 + - uid: 7681 components: - type: Transform - pos: 409.5,380.5 - parent: 1 -- proto: DefaultStationBeaconBridge - entities: - - uid: 16428 + rot: 3.141592653589793 rad + pos: -104.5,-33.5 + parent: 2 + - uid: 7682 components: - type: Transform - pos: 379.5,421.5 - parent: 1 - - uid: 21501 + rot: 3.141592653589793 rad + pos: -104.5,-44.5 + parent: 2 + - uid: 7683 components: - type: Transform - pos: 3.5,30.5 - parent: 5072 -- proto: DefaultStationBeaconBrig - entities: - - uid: 16365 + rot: 3.141592653589793 rad + pos: -104.5,-42.5 + parent: 2 + - uid: 7684 components: - type: Transform - pos: 421.5,402.5 - parent: 1 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 16431 + rot: 3.141592653589793 rad + pos: -104.5,-41.5 + parent: 2 + - uid: 7685 components: - type: Transform - pos: 365.5,409.5 - parent: 1 - - uid: 21489 + rot: 3.141592653589793 rad + pos: -104.5,-40.5 + parent: 2 + - uid: 7686 components: - type: Transform - pos: 8.5,25.5 - parent: 5072 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 16418 + rot: 3.141592653589793 rad + pos: -104.5,-39.5 + parent: 2 + - uid: 7687 components: - type: Transform - pos: 361.5,390.5 - parent: 1 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 16257 + rot: 3.141592653589793 rad + pos: -104.5,-43.5 + parent: 2 + - uid: 7688 components: - type: Transform - pos: 348.5,415.5 - parent: 1 -- proto: DefaultStationBeaconChapel - entities: - - uid: 20088 + rot: 3.141592653589793 rad + pos: -104.5,-37.5 + parent: 2 + - uid: 7689 components: - type: Transform - pos: 338.5,441.5 - parent: 1 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 2719 + rot: 3.141592653589793 rad + pos: -104.5,-38.5 + parent: 2 + - uid: 7690 components: - type: Transform - pos: 408.5,409.5 - parent: 1 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 16294 + rot: 3.141592653589793 rad + pos: -104.5,-36.5 + parent: 2 + - uid: 7691 components: - type: Transform - pos: 396.5,413.5 - parent: 1 -- proto: DefaultStationBeaconCryonics - entities: - - uid: 16322 + rot: 3.141592653589793 rad + pos: -104.5,-35.5 + parent: 2 + - uid: 7692 components: - type: Transform - pos: 400.5,415.5 - parent: 1 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 1199 + rot: 3.141592653589793 rad + pos: -104.5,-34.5 + parent: 2 + - uid: 7693 components: - type: Transform - pos: 418.5,375.5 - parent: 1 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 16392 + rot: 3.141592653589793 rad + pos: -104.5,-32.5 + parent: 2 + - uid: 7694 components: - type: Transform - pos: 413.5,409.5 - parent: 1 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 16227 + rot: 3.141592653589793 rad + pos: -104.5,-31.5 + parent: 2 + - uid: 7695 components: - type: Transform - pos: 327.5,439.5 - parent: 1 -- proto: DefaultStationBeaconDorms - entities: - - uid: 4886 + rot: 3.141592653589793 rad + pos: -104.5,-29.5 + parent: 2 + - uid: 7696 components: - type: Transform - pos: 414.5,370.5 - parent: 1 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 16243 + rot: 3.141592653589793 rad + pos: -104.5,-30.5 + parent: 2 + - uid: 7697 components: - type: Transform - pos: 330.5,410.5 - parent: 1 -- proto: DefaultStationBeaconEvac - entities: - - uid: 16273 + rot: 3.141592653589793 rad + pos: -104.5,-28.5 + parent: 2 + - uid: 7698 components: - type: Transform - pos: 397.5,395.5 - parent: 1 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 16446 + rot: 3.141592653589793 rad + pos: -104.5,-27.5 + parent: 2 + - uid: 7704 components: - type: Transform - pos: 333.5,396.5 - parent: 1 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 16256 + pos: -103.5,-16.5 + parent: 2 + - uid: 7705 components: - type: Transform - pos: 367.5,422.5 - parent: 1 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 16435 + pos: -103.5,-17.5 + parent: 2 + - uid: 7706 components: - type: Transform - pos: 367.5,396.5 - parent: 1 - - uid: 21472 + pos: -103.5,-18.5 + parent: 2 + - uid: 7707 components: - type: Transform - pos: 8.5,19.5 - parent: 5072 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 16228 + pos: -103.5,-19.5 + parent: 2 + - uid: 7708 components: - type: Transform - pos: 411.5,362.5 - parent: 1 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 16399 + pos: -103.5,-21.5 + parent: 2 + - uid: 7709 components: - type: Transform - pos: 408.5,391.5 - parent: 1 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 16444 + pos: -103.5,-20.5 + parent: 2 + - uid: 7712 components: - type: Transform - pos: 441.5,411.5 - parent: 1 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 16113 + rot: 3.141592653589793 rad + pos: -103.5,-15.5 + parent: 2 + - uid: 7713 components: - type: Transform - pos: 416.5,357.5 - parent: 1 -- proto: DefaultStationBeaconMedbay - entities: - - uid: 16277 + rot: 3.141592653589793 rad + pos: -103.5,-14.5 + parent: 2 + - uid: 7716 components: - type: Transform - pos: 406.5,416.5 - parent: 1 -- proto: DefaultStationBeaconMorgue - entities: - - uid: 16297 + rot: 3.141592653589793 rad + pos: -103.5,-12.5 + parent: 2 + - uid: 7717 components: - type: Transform - pos: 396.5,419.5 - parent: 1 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 16390 + rot: 3.141592653589793 rad + pos: -103.5,-11.5 + parent: 2 + - uid: 7718 components: - type: Transform - pos: 453.5,407.5 - parent: 1 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 16253 + rot: 1.5707963267948966 rad + pos: -118.5,-10.5 + parent: 2 + - uid: 7719 components: - type: Transform - pos: 326.5,428.5 - parent: 1 - - uid: 16254 + rot: 1.5707963267948966 rad + pos: -117.5,-10.5 + parent: 2 + - uid: 7720 components: - type: Transform - pos: 330.5,406.5 - parent: 1 - - uid: 16255 + rot: 1.5707963267948966 rad + pos: -115.5,-10.5 + parent: 2 + - uid: 7721 components: - type: Transform - pos: 298.5,389.5 - parent: 1 -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 16424 + rot: 1.5707963267948966 rad + pos: -114.5,-10.5 + parent: 2 + - uid: 7722 components: - type: Transform - pos: 355.5,380.5 - parent: 1 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 16347 + rot: 1.5707963267948966 rad + pos: -113.5,-10.5 + parent: 2 + - uid: 7723 components: - type: Transform - pos: 356.5,384.5 - parent: 1 -- proto: DefaultStationBeaconRND - entities: - - uid: 16349 + rot: 1.5707963267948966 rad + pos: -112.5,-10.5 + parent: 2 + - uid: 7724 components: - type: Transform - pos: 356.5,398.5 - parent: 1 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 16345 + rot: 1.5707963267948966 rad + pos: -111.5,-10.5 + parent: 2 + - uid: 7725 components: - type: Transform - pos: 341.5,398.5 - parent: 1 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 16427 + rot: 1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 7726 components: - type: Transform - pos: 358.5,377.5 - parent: 1 -- proto: DefaultStationBeaconSecurityCheckpoint - entities: - - uid: 16480 + rot: 1.5707963267948966 rad + pos: -108.5,-10.5 + parent: 2 + - uid: 7727 components: - type: Transform - pos: 355.5,392.5 - parent: 1 - - uid: 16481 + rot: 1.5707963267948966 rad + pos: -110.5,-10.5 + parent: 2 + - uid: 7728 components: - type: Transform - pos: 327.5,403.5 - parent: 1 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 16348 + rot: 1.5707963267948966 rad + pos: -107.5,-10.5 + parent: 2 + - uid: 7729 components: - type: Transform - pos: 351.5,383.5 - parent: 1 -- proto: DefaultStationBeaconSingularity - entities: - - uid: 16482 + rot: 1.5707963267948966 rad + pos: -106.5,-10.5 + parent: 2 + - uid: 7730 components: - type: Transform - pos: 299.5,386.5 - parent: 1 -- proto: DefaultStationBeaconSolars - entities: - - uid: 16260 + rot: 1.5707963267948966 rad + pos: -105.5,-10.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -104.5,-10.5 + parent: 2 + - uid: 7732 components: - type: Transform - pos: 320.5,429.5 - parent: 1 - - uid: 16261 + rot: 1.5707963267948966 rad + pos: -109.5,-10.5 + parent: 2 + - uid: 7733 components: - type: Transform - pos: 422.5,425.5 - parent: 1 - - uid: 16262 + pos: -103.5,-9.5 + parent: 2 + - uid: 7734 components: - type: Transform - pos: 400.5,365.5 - parent: 1 - - uid: 16263 + pos: -103.5,-7.5 + parent: 2 + - uid: 7735 components: - type: Transform - pos: 335.5,379.5 - parent: 1 -- proto: DefaultStationBeaconSupply - entities: - - uid: 16421 + pos: -103.5,-6.5 + parent: 2 + - uid: 7736 components: - type: Transform - pos: 368.5,388.5 - parent: 1 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 3963 + pos: -103.5,-5.5 + parent: 2 + - uid: 7737 components: - type: Transform - pos: 400.5,413.5 - parent: 1 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 16266 + pos: -103.5,-4.5 + parent: 2 + - uid: 7738 components: - type: Transform - pos: 312.5,383.5 - parent: 1 -- proto: DefaultStationBeaconTEG - entities: - - uid: 16484 + pos: -103.5,-8.5 + parent: 2 + - uid: 7739 components: - type: Transform - pos: 322.5,421.5 - parent: 1 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 16259 + pos: -103.5,-3.5 + parent: 2 + - uid: 7740 components: - type: Transform - pos: 307.5,423.5 - parent: 1 -- proto: DefaultStationBeaconTheater - entities: - - uid: 16412 + pos: -103.5,-2.5 + parent: 2 + - uid: 7741 components: - type: Transform - pos: 393.5,408.5 - parent: 1 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 16110 + pos: -103.5,-1.5 + parent: 2 + - uid: 7742 components: - type: Transform - pos: 404.5,367.5 - parent: 1 -- proto: DefaultStationBeaconVault - entities: - - uid: 16445 + pos: -103.5,1.5 + parent: 2 + - uid: 7743 components: - type: Transform - pos: 327.5,397.5 - parent: 1 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 16370 + pos: -103.5,0.5 + parent: 2 + - uid: 7744 components: - type: Transform - pos: 419.5,410.5 - parent: 1 -- proto: Defibrillator - entities: - - uid: 12252 + pos: -103.5,2.5 + parent: 2 + - uid: 7745 components: - type: Transform - pos: 406.5,421.5 - parent: 1 - - uid: 21158 + pos: -103.5,3.5 + parent: 2 + - uid: 7752 components: - type: Transform - pos: 405.5,417.5 - parent: 1 - - uid: 22044 + pos: -103.5,-0.5 + parent: 2 + - uid: 7755 components: - type: Transform - pos: 407.5,418.5 - parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 6219 + rot: -1.5707963267948966 rad + pos: -102.5,13.5 + parent: 2 + - uid: 7782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,397.5 - parent: 1 - - uid: 13925 + rot: 3.141592653589793 rad + pos: -94.5,9.5 + parent: 2 + - uid: 7783 components: - type: Transform - pos: 407.5,419.5 - parent: 1 - - uid: 21401 + rot: 3.141592653589793 rad + pos: -94.5,8.5 + parent: 2 + - uid: 7784 components: - type: Transform - pos: 1.5,29.5 - parent: 5072 -- proto: DeployableBarrier - entities: - - uid: 16382 + rot: 3.141592653589793 rad + pos: -94.5,17.5 + parent: 2 + - uid: 7785 components: - type: Transform - pos: 428.5,413.5 - parent: 1 - - uid: 16383 + rot: 3.141592653589793 rad + pos: -94.5,15.5 + parent: 2 + - uid: 7786 components: - type: Transform - pos: 432.5,408.5 - parent: 1 - - uid: 16384 + rot: 3.141592653589793 rad + pos: -94.5,16.5 + parent: 2 + - uid: 7791 components: - type: Transform - pos: 433.5,408.5 - parent: 1 -- proto: DeskBell - entities: - - uid: 5665 + rot: 3.141592653589793 rad + pos: -94.5,10.5 + parent: 2 + - uid: 7792 components: - type: Transform - pos: 358.5,391.5 - parent: 1 - - uid: 18941 + rot: 3.141592653589793 rad + pos: -94.5,18.5 + parent: 2 + - uid: 7793 components: - type: Transform - pos: 355.5,401.5 - parent: 1 - - uid: 18942 + rot: 3.141592653589793 rad + pos: -94.5,26.5 + parent: 2 + - uid: 7794 components: - type: Transform - pos: 366.5,399.5 - parent: 1 - - uid: 18946 + rot: 3.141592653589793 rad + pos: -94.5,25.5 + parent: 2 + - uid: 7795 components: - type: Transform - pos: 421.5,396.5 - parent: 1 - - uid: 18947 + rot: 3.141592653589793 rad + pos: -94.5,23.5 + parent: 2 + - uid: 7796 components: - type: Transform - pos: 417.5,392.5 - parent: 1 -- proto: DiceBag - entities: - - uid: 5938 + rot: 3.141592653589793 rad + pos: -94.5,22.5 + parent: 2 + - uid: 7797 components: - type: Transform - pos: 421.5,357.5 - parent: 1 - - uid: 6197 + rot: 3.141592653589793 rad + pos: -94.5,21.5 + parent: 2 + - uid: 7798 components: - type: Transform - pos: 459.5,401.5 - parent: 1 -- proto: DiseaseDiagnoser - entities: - - uid: 5463 + rot: 3.141592653589793 rad + pos: -94.5,20.5 + parent: 2 + - uid: 7799 components: - type: Transform - pos: 412.5,422.5 - parent: 1 -- proto: DisposalBend - entities: - - uid: 1555 + rot: 3.141592653589793 rad + pos: -94.5,19.5 + parent: 2 + - uid: 7800 components: - type: Transform - pos: 425.5,361.5 - parent: 1 - - uid: 15897 + rot: 3.141592653589793 rad + pos: -94.5,24.5 + parent: 2 + - uid: 7867 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,375.5 - parent: 1 - - uid: 15904 + pos: -119.5,-49.5 + parent: 2 + - uid: 7872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,377.5 - parent: 1 - - uid: 16505 + rot: 3.141592653589793 rad + pos: -119.5,-47.5 + parent: 2 + - uid: 7875 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,374.5 - parent: 1 - - uid: 16527 + pos: -119.5,-48.5 + parent: 2 + - uid: 7982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,439.5 - parent: 1 - - uid: 16529 + rot: 1.5707963267948966 rad + pos: -102.5,-13.5 + parent: 2 + - uid: 7983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,439.5 - parent: 1 - - uid: 16534 + pos: -101.5,-13.5 + parent: 2 + - uid: 7984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,434.5 - parent: 1 - - uid: 16535 + rot: 1.5707963267948966 rad + pos: -100.5,-13.5 + parent: 2 + - uid: 7985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,434.5 - parent: 1 - - uid: 16536 + rot: 1.5707963267948966 rad + pos: -98.5,-13.5 + parent: 2 + - uid: 7986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,435.5 - parent: 1 - - uid: 16537 + pos: -97.5,-13.5 + parent: 2 + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,435.5 - parent: 1 - - uid: 16538 + rot: 1.5707963267948966 rad + pos: -96.5,-13.5 + parent: 2 + - uid: 7990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,437.5 - parent: 1 - - uid: 16539 + pos: -93.5,-13.5 + parent: 2 + - uid: 7991 components: - type: Transform - pos: 349.5,437.5 - parent: 1 - - uid: 16540 + rot: 1.5707963267948966 rad + pos: -92.5,-13.5 + parent: 2 + - uid: 7992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,435.5 - parent: 1 - - uid: 16541 + rot: 1.5707963267948966 rad + pos: -99.5,-13.5 + parent: 2 + - uid: 7993 components: - type: Transform - pos: 354.5,435.5 - parent: 1 - - uid: 16542 + rot: 1.5707963267948966 rad + pos: -89.5,-13.5 + parent: 2 + - uid: 7994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,429.5 - parent: 1 - - uid: 16543 + rot: 1.5707963267948966 rad + pos: -90.5,-13.5 + parent: 2 + - uid: 7995 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - uid: 16544 + rot: 1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 + - uid: 7996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,416.5 - parent: 1 - - uid: 16545 + rot: 1.5707963267948966 rad + pos: -88.5,-13.5 + parent: 2 + - uid: 7997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 353.5,416.5 - parent: 1 - - uid: 16590 + pos: -86.5,-13.5 + parent: 2 + - uid: 7998 components: - type: Transform - pos: 357.5,417.5 - parent: 1 - - uid: 16591 + rot: 1.5707963267948966 rad + pos: -85.5,-13.5 + parent: 2 + - uid: 7999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,416.5 - parent: 1 - - uid: 16616 + rot: 1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 + - uid: 8000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,417.5 - parent: 1 - - uid: 16630 + pos: -83.5,-13.5 + parent: 2 + - uid: 8001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,417.5 - parent: 1 - - uid: 16640 + rot: 1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 + - uid: 8002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,407.5 - parent: 1 - - uid: 16651 + rot: 1.5707963267948966 rad + pos: -80.5,-13.5 + parent: 2 + - uid: 8003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,413.5 - parent: 1 - - uid: 16677 + rot: 1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 + - uid: 8004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,410.5 - parent: 1 - - uid: 16678 + pos: -79.5,-13.5 + parent: 2 + - uid: 8005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,409.5 - parent: 1 - - uid: 16682 + rot: 1.5707963267948966 rad + pos: -87.5,-13.5 + parent: 2 + - uid: 8006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,411.5 - parent: 1 - - uid: 16694 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 8007 components: - type: Transform - pos: 359.5,420.5 - parent: 1 - - uid: 16723 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 8008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,407.5 - parent: 1 - - uid: 16724 + rot: 1.5707963267948966 rad + pos: -75.5,-13.5 + parent: 2 + - uid: 8009 components: - type: Transform - pos: 340.5,407.5 - parent: 1 - - uid: 16731 + rot: 1.5707963267948966 rad + pos: -74.5,-13.5 + parent: 2 + - uid: 8010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,411.5 - parent: 1 - - uid: 16749 + pos: -73.5,-13.5 + parent: 2 + - uid: 8011 components: - type: Transform - pos: 331.5,418.5 - parent: 1 - - uid: 16762 + rot: 1.5707963267948966 rad + pos: -72.5,-13.5 + parent: 2 + - uid: 8012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,416.5 - parent: 1 - - uid: 16764 + rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 2 + - uid: 8013 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,419.5 - parent: 1 - - uid: 16771 + pos: -70.5,-13.5 + parent: 2 + - uid: 8014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,417.5 - parent: 1 - - uid: 16775 + rot: 1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - uid: 8015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 323.5,420.5 - parent: 1 - - uid: 16817 + pos: -68.5,-13.5 + parent: 2 + - uid: 8016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 331.5,403.5 - parent: 1 - - uid: 16821 + pos: -76.5,-13.5 + parent: 2 + - uid: 8138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,400.5 - parent: 1 - - uid: 16838 + pos: -129.5,-48.5 + parent: 2 + - uid: 8140 components: - type: Transform - pos: 359.5,396.5 - parent: 1 - - uid: 16839 + pos: -129.5,-49.5 + parent: 2 + - uid: 8142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,396.5 - parent: 1 - - uid: 16840 + rot: -1.5707963267948966 rad + pos: -125.5,-47.5 + parent: 2 + - uid: 8143 components: - type: Transform - pos: 353.5,399.5 - parent: 1 - - uid: 16856 + rot: -1.5707963267948966 rad + pos: -126.5,-47.5 + parent: 2 + - uid: 8549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,383.5 - parent: 1 - - uid: 16869 + pos: -105.5,22.5 + parent: 2 + - uid: 8603 components: - type: Transform rot: 3.141592653589793 rad - pos: 347.5,391.5 - parent: 1 - - uid: 16870 + pos: -105.5,23.5 + parent: 2 + - uid: 9152 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,393.5 - parent: 1 - - uid: 16884 + pos: -38.5,-49.5 + parent: 2 + - uid: 9158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,393.5 - parent: 1 - - uid: 16888 + pos: -105.5,11.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: -125.5,22.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: -133.5,21.5 + parent: 2 + - uid: 9673 components: - type: Transform rot: 3.141592653589793 rad - pos: 359.5,389.5 - parent: 1 - - uid: 16901 + pos: -109.5,30.5 + parent: 2 + - uid: 9685 components: - type: Transform - pos: 368.5,389.5 - parent: 1 - - uid: 16915 + rot: 3.141592653589793 rad + pos: -109.5,26.5 + parent: 2 + - uid: 9696 components: - type: Transform - pos: 364.5,397.5 - parent: 1 - - uid: 16941 + pos: -29.5,10.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 9752 components: - type: Transform rot: 3.141592653589793 rad - pos: 374.5,396.5 - parent: 1 - - uid: 16993 + pos: -131.5,26.5 + parent: 2 + - uid: 9845 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,375.5 - parent: 1 - - uid: 17004 + pos: -110.5,26.5 + parent: 2 + - uid: 9846 components: - type: Transform - pos: 415.5,375.5 - parent: 1 - - uid: 17008 + rot: 3.141592653589793 rad + pos: -110.5,24.5 + parent: 2 + - uid: 9847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,372.5 - parent: 1 - - uid: 17022 + rot: 3.141592653589793 rad + pos: -110.5,29.5 + parent: 2 + - uid: 9848 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,362.5 - parent: 1 - - uid: 17052 + pos: -108.5,27.5 + parent: 2 + - uid: 9849 components: - type: Transform rot: 3.141592653589793 rad - pos: 416.5,351.5 - parent: 1 - - uid: 17072 + pos: -108.5,30.5 + parent: 2 + - uid: 9850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,392.5 - parent: 1 - - uid: 17077 + rot: 3.141592653589793 rad + pos: -107.5,26.5 + parent: 2 + - uid: 9851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,392.5 - parent: 1 - - uid: 17092 + rot: 3.141592653589793 rad + pos: -108.5,28.5 + parent: 2 + - uid: 9869 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,380.5 - parent: 1 - - uid: 17093 + pos: -112.5,29.5 + parent: 2 + - uid: 9870 components: - type: Transform - pos: 411.5,382.5 - parent: 1 - - uid: 17094 + rot: 3.141592653589793 rad + pos: -112.5,30.5 + parent: 2 + - uid: 9871 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,382.5 - parent: 1 - - uid: 17165 + pos: -112.5,28.5 + parent: 2 + - uid: 9880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,417.5 - parent: 1 - - uid: 17166 + pos: -119.5,31.5 + parent: 2 + - uid: 9881 components: - type: Transform - pos: 413.5,417.5 - parent: 1 - - uid: 17167 + rot: 1.5707963267948966 rad + pos: -117.5,30.5 + parent: 2 + - uid: 9882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,411.5 - parent: 1 - - uid: 17168 + rot: 1.5707963267948966 rad + pos: -116.5,30.5 + parent: 2 + - uid: 9883 components: - type: Transform - pos: 404.5,421.5 - parent: 1 - - uid: 17169 + rot: 1.5707963267948966 rad + pos: -114.5,30.5 + parent: 2 + - uid: 9884 components: - type: Transform rot: 1.5707963267948966 rad - pos: 397.5,421.5 - parent: 1 - - uid: 17173 + pos: -115.5,30.5 + parent: 2 + - uid: 9885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,403.5 - parent: 1 - - uid: 17174 + pos: -113.5,28.5 + parent: 2 + - uid: 9886 components: - type: Transform - pos: 412.5,407.5 - parent: 1 - - uid: 17175 + pos: -113.5,29.5 + parent: 2 + - uid: 9887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,407.5 - parent: 1 - - uid: 17201 + rot: -1.5707963267948966 rad + pos: -115.5,27.5 + parent: 2 + - uid: 9889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,393.5 - parent: 1 - - uid: 17207 + rot: 3.141592653589793 rad + pos: -116.5,28.5 + parent: 2 + - uid: 9890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,399.5 - parent: 1 - - uid: 17210 + rot: 3.141592653589793 rad + pos: -116.5,29.5 + parent: 2 + - uid: 9891 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,391.5 - parent: 1 - - uid: 17226 + pos: -116.5,30.5 + parent: 2 + - uid: 9892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,407.5 - parent: 1 - - uid: 17248 + pos: -115.5,31.5 + parent: 2 + - uid: 9893 components: - type: Transform - pos: 449.5,407.5 - parent: 1 - - uid: 17257 + rot: 1.5707963267948966 rad + pos: -114.5,31.5 + parent: 2 + - uid: 9894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,404.5 - parent: 1 - - uid: 17261 + pos: -113.5,31.5 + parent: 2 + - uid: 9895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,404.5 - parent: 1 - - uid: 17274 + pos: -120.5,30.5 + parent: 2 + - uid: 9896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,410.5 - parent: 1 - - uid: 17278 + pos: -120.5,29.5 + parent: 2 + - uid: 9897 components: - type: Transform - pos: 427.5,410.5 - parent: 1 - - uid: 17280 + pos: -120.5,27.5 + parent: 2 + - uid: 9898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,408.5 - parent: 1 - - uid: 17293 + pos: -120.5,26.5 + parent: 2 + - uid: 9899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,408.5 - parent: 1 - - uid: 17296 + pos: -120.5,28.5 + parent: 2 + - uid: 9916 components: - type: Transform rot: 1.5707963267948966 rad - pos: 440.5,410.5 - parent: 1 - - uid: 17297 + pos: -116.5,25.5 + parent: 2 + - uid: 9917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 446.5,410.5 - parent: 1 - - uid: 20278 + rot: 1.5707963267948966 rad + pos: -117.5,25.5 + parent: 2 + - uid: 9918 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 20181 - - uid: 20279 + pos: -118.5,25.5 + parent: 2 + - uid: 9919 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 20181 - - uid: 20280 + pos: -119.5,25.5 + parent: 2 + - uid: 9920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 20181 - - uid: 20281 + pos: -115.5,24.5 + parent: 2 + - uid: 9921 components: - type: Transform - pos: 6.5,1.5 - parent: 20181 - - uid: 20282 + pos: -115.5,22.5 + parent: 2 + - uid: 9922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 20181 - - uid: 20283 + pos: -115.5,21.5 + parent: 2 + - uid: 9923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 20181 - - uid: 21427 + pos: -115.5,20.5 + parent: 2 + - uid: 9924 components: - type: Transform - pos: 3.5,28.5 - parent: 5072 - - uid: 21549 + pos: -115.5,23.5 + parent: 2 + - uid: 9925 components: - type: Transform - pos: 8.5,17.5 - parent: 5072 -- proto: DisposalJunction - entities: - - uid: 989 + rot: -1.5707963267948966 rad + pos: -116.5,19.5 + parent: 2 + - uid: 9926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,361.5 - parent: 1 - - uid: 2034 + rot: -1.5707963267948966 rad + pos: -117.5,19.5 + parent: 2 + - uid: 9927 components: - type: Transform - pos: 419.5,399.5 - parent: 1 - - uid: 2129 + rot: -1.5707963267948966 rad + pos: -118.5,19.5 + parent: 2 + - uid: 9928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,395.5 - parent: 1 - - uid: 4835 + rot: -1.5707963267948966 rad + pos: -120.5,19.5 + parent: 2 + - uid: 9929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,396.5 - parent: 1 - - uid: 16586 + pos: -121.5,19.5 + parent: 2 + - uid: 9930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,417.5 - parent: 1 - - uid: 16604 + rot: -1.5707963267948966 rad + pos: -122.5,19.5 + parent: 2 + - uid: 9931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 371.5,416.5 - parent: 1 - - uid: 16660 + pos: -123.5,19.5 + parent: 2 + - uid: 9932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,414.5 - parent: 1 - - uid: 16661 + rot: -1.5707963267948966 rad + pos: -124.5,19.5 + parent: 2 + - uid: 9934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,411.5 - parent: 1 - - uid: 16662 + rot: -1.5707963267948966 rad + pos: -119.5,19.5 + parent: 2 + - uid: 9937 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,407.5 - parent: 1 - - uid: 16714 + pos: -126.5,23.5 + parent: 2 + - uid: 9939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,411.5 - parent: 1 - - uid: 16716 + pos: -127.5,24.5 + parent: 2 + - uid: 9940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,411.5 - parent: 1 - - uid: 16739 - components: - - type: Transform - pos: 331.5,417.5 - parent: 1 - - uid: 16785 + pos: -128.5,24.5 + parent: 2 + - uid: 9941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 362.5,403.5 - parent: 1 - - uid: 16801 + pos: -129.5,24.5 + parent: 2 + - uid: 9942 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,403.5 - parent: 1 - - uid: 16810 + pos: -130.5,24.5 + parent: 2 + - uid: 9943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,403.5 - parent: 1 - - uid: 16826 + pos: -131.5,25.5 + parent: 2 + - uid: 9948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,399.5 - parent: 1 - - uid: 16875 + rot: 1.5707963267948966 rad + pos: -127.5,27.5 + parent: 2 + - uid: 9949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,397.5 - parent: 1 - - uid: 16974 + rot: 1.5707963267948966 rad + pos: -126.5,27.5 + parent: 2 + - uid: 9950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,393.5 - parent: 1 - - uid: 17073 + pos: -125.5,25.5 + parent: 2 + - uid: 9951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,392.5 - parent: 1 - - uid: 17078 + pos: -125.5,26.5 + parent: 2 + - uid: 10005 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,391.5 - parent: 1 - - uid: 17116 + pos: -109.5,22.5 + parent: 2 + - uid: 10097 components: - type: Transform rot: -1.5707963267948966 rad - pos: 404.5,403.5 - parent: 1 - - uid: 17132 + pos: -70.5,-25.5 + parent: 2 + - uid: 10102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,411.5 - parent: 1 - - uid: 17162 + rot: 1.5707963267948966 rad + pos: -128.5,-45.5 + parent: 2 + - uid: 10104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,416.5 - parent: 1 - - uid: 17272 + rot: 1.5707963267948966 rad + pos: -134.5,-39.5 + parent: 2 + - uid: 10110 components: - type: Transform - pos: 423.5,407.5 - parent: 1 -- proto: DisposalJunctionFlipped - entities: - - uid: 2128 + rot: 1.5707963267948966 rad + pos: -133.5,-39.5 + parent: 2 + - uid: 10112 components: - type: Transform - pos: 412.5,404.5 - parent: 1 - - uid: 3865 + rot: 1.5707963267948966 rad + pos: -129.5,-39.5 + parent: 2 + - uid: 10113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,362.5 - parent: 1 - - uid: 5337 + rot: 1.5707963267948966 rad + pos: -128.5,-39.5 + parent: 2 + - uid: 10453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,354.5 - parent: 1 - - uid: 16621 + rot: -1.5707963267948966 rad + pos: -109.5,-44.5 + parent: 2 + - uid: 10542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,417.5 - parent: 1 - - uid: 16631 + pos: -105.5,16.5 + parent: 2 + - uid: 10555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,417.5 - parent: 1 - - uid: 16643 + pos: -105.5,17.5 + parent: 2 + - uid: 10654 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,414.5 - parent: 1 - - uid: 16644 + pos: -67.5,-12.5 + parent: 2 + - uid: 10655 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,411.5 - parent: 1 - - uid: 16663 + pos: -67.5,-11.5 + parent: 2 + - uid: 10656 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,410.5 - parent: 1 - - uid: 16717 + pos: -67.5,-9.5 + parent: 2 + - uid: 10657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,411.5 - parent: 1 - - uid: 16732 + rot: 3.141592653589793 rad + pos: -67.5,-8.5 + parent: 2 + - uid: 10658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,411.5 - parent: 1 - - uid: 16737 + rot: 3.141592653589793 rad + pos: -67.5,-7.5 + parent: 2 + - uid: 10659 components: - type: Transform - pos: 331.5,416.5 - parent: 1 - - uid: 16842 + rot: 3.141592653589793 rad + pos: -67.5,-6.5 + parent: 2 + - uid: 10660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,396.5 - parent: 1 - - uid: 16872 + rot: 3.141592653589793 rad + pos: -67.5,-5.5 + parent: 2 + - uid: 10661 components: - type: Transform rot: 3.141592653589793 rad - pos: 347.5,393.5 - parent: 1 - - uid: 16892 + pos: -67.5,-10.5 + parent: 2 + - uid: 10664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,389.5 - parent: 1 - - uid: 16943 + pos: -64.5,-6.5 + parent: 2 + - uid: 10665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,403.5 - parent: 1 - - uid: 16955 + pos: -64.5,-5.5 + parent: 2 + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,396.5 - parent: 1 - - uid: 16969 + pos: -65.5,-4.5 + parent: 2 + - uid: 10669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 404.5,396.5 - parent: 1 - - uid: 16992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,376.5 - parent: 1 - - uid: 17003 + pos: -28.5,-2.5 + parent: 2 + - uid: 10674 components: - type: Transform rot: -1.5707963267948966 rad - pos: 408.5,375.5 - parent: 1 - - uid: 17007 + pos: -54.5,-5.5 + parent: 2 + - uid: 10675 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,372.5 - parent: 1 - - uid: 17021 + pos: -52.5,1.5 + parent: 2 + - uid: 10676 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,363.5 - parent: 1 - - uid: 17023 + pos: -52.5,0.5 + parent: 2 + - uid: 10677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,362.5 - parent: 1 - - uid: 17063 + rot: 1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 + - uid: 10678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,396.5 - parent: 1 - - uid: 17161 + rot: 1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 + - uid: 10679 components: - type: Transform - pos: 404.5,416.5 - parent: 1 -- proto: DisposalMachineFrame - entities: - - uid: 18649 + rot: 1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 + - uid: 10680 components: - type: Transform - pos: 330.5,435.5 - parent: 1 -- proto: DisposalPipe - entities: - - uid: 655 + rot: 1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 + - uid: 10683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,351.5 - parent: 1 - - uid: 1178 + rot: 3.141592653589793 rad + pos: -56.5,-1.5 + parent: 2 + - uid: 10684 components: - type: Transform rot: 3.141592653589793 rad - pos: 353.5,414.5 - parent: 1 - - uid: 1179 + pos: -56.5,-2.5 + parent: 2 + - uid: 10685 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,394.5 - parent: 1 - - uid: 1548 + pos: -56.5,-4.5 + parent: 2 + - uid: 10686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,403.5 - parent: 1 - - uid: 1609 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 + - uid: 10687 components: - type: Transform - pos: 421.5,360.5 - parent: 1 - - uid: 1610 + rot: 3.141592653589793 rad + pos: -56.5,0.5 + parent: 2 + - uid: 10688 components: - type: Transform - pos: 425.5,360.5 - parent: 1 - - uid: 2030 + rot: 3.141592653589793 rad + pos: -56.5,1.5 + parent: 2 + - uid: 10691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,403.5 - parent: 1 - - uid: 2033 + pos: -66.5,1.5 + parent: 2 + - uid: 10692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,396.5 - parent: 1 - - uid: 3618 + pos: -66.5,0.5 + parent: 2 + - uid: 10693 components: - type: Transform - pos: 347.5,402.5 - parent: 1 - - uid: 3859 + pos: -66.5,-1.5 + parent: 2 + - uid: 10694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,361.5 - parent: 1 - - uid: 3861 + pos: -66.5,-2.5 + parent: 2 + - uid: 10695 components: - type: Transform - pos: 421.5,361.5 - parent: 1 - - uid: 4584 + pos: -66.5,-3.5 + parent: 2 + - uid: 10696 components: - type: Transform - pos: 416.5,356.5 - parent: 1 - - uid: 4626 + pos: -66.5,-0.5 + parent: 2 + - uid: 10697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,403.5 - parent: 1 - - uid: 4825 + pos: -64.5,3.5 + parent: 2 + - uid: 10698 components: - type: Transform rot: -1.5707963267948966 rad - pos: 381.5,403.5 - parent: 1 - - uid: 4826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,397.5 - parent: 1 - - uid: 4831 + pos: -63.5,3.5 + parent: 2 + - uid: 10699 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,396.5 - parent: 1 - - uid: 4839 + pos: -62.5,3.5 + parent: 2 + - uid: 10700 components: - type: Transform rot: -1.5707963267948966 rad - pos: 332.5,403.5 - parent: 1 - - uid: 4846 + pos: -61.5,3.5 + parent: 2 + - uid: 10701 components: - type: Transform rot: -1.5707963267948966 rad - pos: 383.5,403.5 - parent: 1 - - uid: 4847 + pos: -59.5,3.5 + parent: 2 + - uid: 10702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,403.5 - parent: 1 - - uid: 4848 + pos: -60.5,3.5 + parent: 2 + - uid: 10706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,396.5 - parent: 1 - - uid: 4849 + rot: 1.5707963267948966 rad + pos: -57.5,2.5 + parent: 2 + - uid: 10738 components: - type: Transform rot: 3.141592653589793 rad - pos: 392.5,398.5 - parent: 1 - - uid: 15894 + pos: -67.5,-14.5 + parent: 2 + - uid: 10739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,375.5 - parent: 1 - - uid: 15895 + rot: 1.5707963267948966 rad + pos: -66.5,-15.5 + parent: 2 + - uid: 10740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,375.5 - parent: 1 - - uid: 15896 + rot: 1.5707963267948966 rad + pos: -65.5,-15.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-15.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-15.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-15.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + pos: -94.5,6.5 + parent: 2 + - uid: 10760 components: - type: Transform rot: -1.5707963267948966 rad - pos: 425.5,375.5 - parent: 1 - - uid: 15898 + pos: -66.5,-19.5 + parent: 2 + - uid: 10763 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,376.5 - parent: 1 - - uid: 15899 + pos: -64.5,-21.5 + parent: 2 + - uid: 10764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,377.5 - parent: 1 - - uid: 15900 + rot: 3.141592653589793 rad + pos: -64.5,-20.5 + parent: 2 + - uid: 10765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,377.5 - parent: 1 - - uid: 15901 + rot: -1.5707963267948966 rad + pos: -102.5,5.5 + parent: 2 + - uid: 10766 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,377.5 - parent: 1 - - uid: 15902 + pos: -65.5,-19.5 + parent: 2 + - uid: 10767 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,377.5 - parent: 1 - - uid: 15903 + pos: -63.5,-19.5 + parent: 2 + - uid: 10768 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,377.5 - parent: 1 - - uid: 16485 + pos: -62.5,-19.5 + parent: 2 + - uid: 10769 components: - type: Transform - pos: 362.5,399.5 - parent: 1 - - uid: 16500 + pos: -61.5,-16.5 + parent: 2 + - uid: 10770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,374.5 - parent: 1 - - uid: 16501 + pos: -61.5,-17.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 10775 components: - type: Transform rot: -1.5707963267948966 rad - pos: 394.5,374.5 - parent: 1 - - uid: 16502 + pos: -56.5,-19.5 + parent: 2 + - uid: 10776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 393.5,374.5 - parent: 1 - - uid: 16503 + pos: -57.5,-19.5 + parent: 2 + - uid: 10777 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,374.5 - parent: 1 - - uid: 16504 + pos: -59.5,-19.5 + parent: 2 + - uid: 10778 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,374.5 - parent: 1 - - uid: 16506 + pos: -60.5,-19.5 + parent: 2 + - uid: 10780 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,375.5 - parent: 1 - - uid: 16507 + pos: -58.5,-20.5 + parent: 2 + - uid: 10781 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,377.5 - parent: 1 - - uid: 16508 + pos: -58.5,-21.5 + parent: 2 + - uid: 10782 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,378.5 - parent: 1 - - uid: 16509 + pos: -58.5,-22.5 + parent: 2 + - uid: 10783 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,379.5 - parent: 1 - - uid: 16510 + pos: -58.5,-23.5 + parent: 2 + - uid: 10789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,376.5 - parent: 1 - - uid: 16511 + rot: -1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 + - uid: 10790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,380.5 - parent: 1 - - uid: 16512 + rot: -1.5707963267948966 rad + pos: -57.5,-27.5 + parent: 2 + - uid: 10792 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,381.5 - parent: 1 - - uid: 16513 + pos: -64.5,-23.5 + parent: 2 + - uid: 10793 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,382.5 - parent: 1 - - uid: 16514 + pos: -64.5,-25.5 + parent: 2 + - uid: 10794 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,383.5 - parent: 1 - - uid: 16515 + pos: -64.5,-26.5 + parent: 2 + - uid: 10797 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,384.5 - parent: 1 - - uid: 16516 + pos: -64.5,-24.5 + parent: 2 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,386.5 - parent: 1 - - uid: 16517 + rot: -1.5707963267948966 rad + pos: -96.5,-56.5 + parent: 2 + - uid: 10802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,385.5 - parent: 1 - - uid: 16518 + rot: -1.5707963267948966 rad + pos: -88.5,-56.5 + parent: 2 + - uid: 10803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,387.5 - parent: 1 - - uid: 16519 + rot: -1.5707963267948966 rad + pos: -86.5,-56.5 + parent: 2 + - uid: 10804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,388.5 - parent: 1 - - uid: 16520 + rot: -1.5707963267948966 rad + pos: -89.5,-56.5 + parent: 2 + - uid: 10805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,390.5 - parent: 1 - - uid: 16521 + rot: -1.5707963267948966 rad + pos: -92.5,-56.5 + parent: 2 + - uid: 10807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,389.5 - parent: 1 - - uid: 16522 + rot: -1.5707963267948966 rad + pos: -91.5,-56.5 + parent: 2 + - uid: 10808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,392.5 - parent: 1 - - uid: 16523 + rot: -1.5707963267948966 rad + pos: -85.5,-56.5 + parent: 2 + - uid: 10809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,393.5 - parent: 1 - - uid: 16524 + rot: -1.5707963267948966 rad + pos: -103.5,-56.5 + parent: 2 + - uid: 10810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,394.5 - parent: 1 - - uid: 16525 + rot: -1.5707963267948966 rad + pos: -90.5,-56.5 + parent: 2 + - uid: 10811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,395.5 - parent: 1 - - uid: 16526 + rot: -1.5707963267948966 rad + pos: -94.5,-56.5 + parent: 2 + - uid: 10812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,391.5 - parent: 1 - - uid: 16528 + rot: -1.5707963267948966 rad + pos: -87.5,-56.5 + parent: 2 + - uid: 10813 components: - type: Transform rot: -1.5707963267948966 rad - pos: 328.5,439.5 - parent: 1 - - uid: 16530 + pos: -95.5,-56.5 + parent: 2 + - uid: 10814 components: - type: Transform - pos: 327.5,438.5 - parent: 1 - - uid: 16531 + rot: -1.5707963267948966 rad + pos: -97.5,-56.5 + parent: 2 + - uid: 10816 components: - type: Transform - pos: 327.5,436.5 - parent: 1 - - uid: 16532 + rot: -1.5707963267948966 rad + pos: -93.5,-56.5 + parent: 2 + - uid: 10817 components: - type: Transform - pos: 327.5,437.5 - parent: 1 - - uid: 16533 + rot: -1.5707963267948966 rad + pos: -98.5,-56.5 + parent: 2 + - uid: 10818 components: - type: Transform - pos: 327.5,435.5 - parent: 1 - - uid: 16546 + rot: -1.5707963267948966 rad + pos: -99.5,-56.5 + parent: 2 + - uid: 10819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,434.5 - parent: 1 - - uid: 16547 + rot: -1.5707963267948966 rad + pos: -101.5,-56.5 + parent: 2 + - uid: 10820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,434.5 - parent: 1 - - uid: 16548 + rot: -1.5707963267948966 rad + pos: -100.5,-56.5 + parent: 2 + - uid: 10821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,434.5 - parent: 1 - - uid: 16549 + rot: -1.5707963267948966 rad + pos: -102.5,-56.5 + parent: 2 + - uid: 10823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,434.5 - parent: 1 - - uid: 16550 + rot: 3.141592653589793 rad + pos: -67.5,-57.5 + parent: 2 + - uid: 10827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,434.5 - parent: 1 - - uid: 16551 + rot: 3.141592653589793 rad + pos: -52.5,-55.5 + parent: 2 + - uid: 10828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,434.5 - parent: 1 - - uid: 16552 + rot: 3.141592653589793 rad + pos: -52.5,-54.5 + parent: 2 + - uid: 10831 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,435.5 - parent: 1 - - uid: 16553 + pos: -53.5,-53.5 + parent: 2 + - uid: 10832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,435.5 - parent: 1 - - uid: 16554 + pos: -54.5,-54.5 + parent: 2 + - uid: 10833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,435.5 - parent: 1 - - uid: 16555 + pos: -54.5,-55.5 + parent: 2 + - uid: 10836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,435.5 - parent: 1 - - uid: 16556 + rot: -1.5707963267948966 rad + pos: -56.5,-56.5 + parent: 2 + - uid: 10837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,435.5 - parent: 1 - - uid: 16557 + rot: -1.5707963267948966 rad + pos: -57.5,-56.5 + parent: 2 + - uid: 10838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,435.5 - parent: 1 - - uid: 16558 + rot: -1.5707963267948966 rad + pos: -59.5,-56.5 + parent: 2 + - uid: 10839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,435.5 - parent: 1 - - uid: 16559 + rot: -1.5707963267948966 rad + pos: -60.5,-56.5 + parent: 2 + - uid: 10840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,435.5 - parent: 1 - - uid: 16560 + rot: -1.5707963267948966 rad + pos: -61.5,-56.5 + parent: 2 + - uid: 10841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,435.5 - parent: 1 - - uid: 16561 + rot: -1.5707963267948966 rad + pos: -62.5,-56.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-56.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-56.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-56.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 10846 components: - type: Transform - pos: 344.5,436.5 - parent: 1 - - uid: 16562 + rot: -1.5707963267948966 rad + pos: -65.5,-56.5 + parent: 2 + - uid: 10847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 345.5,437.5 - parent: 1 - - uid: 16563 + pos: -71.5,-56.5 + parent: 2 + - uid: 10849 components: - type: Transform rot: -1.5707963267948966 rad - pos: 346.5,437.5 - parent: 1 - - uid: 16564 + pos: -79.5,-56.5 + parent: 2 + - uid: 10850 components: - type: Transform rot: -1.5707963267948966 rad - pos: 347.5,437.5 - parent: 1 - - uid: 16565 + pos: -80.5,-56.5 + parent: 2 + - uid: 10851 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,437.5 - parent: 1 - - uid: 16566 + pos: -82.5,-56.5 + parent: 2 + - uid: 10852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,436.5 - parent: 1 - - uid: 16567 + rot: -1.5707963267948966 rad + pos: -81.5,-56.5 + parent: 2 + - uid: 10853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,435.5 - parent: 1 - - uid: 16568 + rot: -1.5707963267948966 rad + pos: -83.5,-56.5 + parent: 2 + - uid: 10854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,435.5 - parent: 1 - - uid: 16569 + rot: -1.5707963267948966 rad + pos: -84.5,-56.5 + parent: 2 + - uid: 10855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,435.5 - parent: 1 - - uid: 16570 + rot: -1.5707963267948966 rad + pos: -78.5,-56.5 + parent: 2 + - uid: 10856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,435.5 - parent: 1 - - uid: 16571 + rot: -1.5707963267948966 rad + pos: -68.5,-56.5 + parent: 2 + - uid: 10857 components: - type: Transform - pos: 354.5,434.5 - parent: 1 - - uid: 16572 + rot: -1.5707963267948966 rad + pos: -69.5,-56.5 + parent: 2 + - uid: 10858 components: - type: Transform - pos: 354.5,432.5 - parent: 1 - - uid: 16573 + rot: -1.5707963267948966 rad + pos: -70.5,-56.5 + parent: 2 + - uid: 10860 components: - type: Transform - pos: 354.5,431.5 - parent: 1 - - uid: 16574 + rot: -1.5707963267948966 rad + pos: -73.5,-56.5 + parent: 2 + - uid: 10861 components: - type: Transform - pos: 354.5,433.5 - parent: 1 - - uid: 16575 + rot: -1.5707963267948966 rad + pos: -74.5,-56.5 + parent: 2 + - uid: 10865 components: - type: Transform - pos: 354.5,430.5 - parent: 1 - - uid: 16576 + rot: 3.141592653589793 rad + pos: -104.5,-55.5 + parent: 2 + - uid: 10866 components: - type: Transform - pos: 355.5,428.5 - parent: 1 - - uid: 16577 + rot: 3.141592653589793 rad + pos: -104.5,-54.5 + parent: 2 + - uid: 10867 components: - type: Transform - pos: 355.5,426.5 - parent: 1 - - uid: 16578 + rot: 3.141592653589793 rad + pos: -104.5,-53.5 + parent: 2 + - uid: 10868 components: - type: Transform - pos: 355.5,425.5 - parent: 1 - - uid: 16579 + rot: 3.141592653589793 rad + pos: -104.5,-52.5 + parent: 2 + - uid: 10869 components: - type: Transform - pos: 355.5,424.5 - parent: 1 - - uid: 16580 + rot: 3.141592653589793 rad + pos: -104.5,-50.5 + parent: 2 + - uid: 10870 components: - type: Transform - pos: 355.5,423.5 - parent: 1 - - uid: 16581 + rot: 3.141592653589793 rad + pos: -104.5,-49.5 + parent: 2 + - uid: 10871 components: - type: Transform - pos: 355.5,422.5 - parent: 1 - - uid: 16582 + rot: 3.141592653589793 rad + pos: -104.5,-48.5 + parent: 2 + - uid: 10872 components: - type: Transform - pos: 355.5,421.5 - parent: 1 - - uid: 16583 + rot: 3.141592653589793 rad + pos: -104.5,-47.5 + parent: 2 + - uid: 10874 components: - type: Transform - pos: 355.5,420.5 - parent: 1 - - uid: 16584 + rot: 3.141592653589793 rad + pos: -104.5,-51.5 + parent: 2 + - uid: 10877 components: - type: Transform - pos: 355.5,419.5 - parent: 1 - - uid: 16585 + rot: -1.5707963267948966 rad + pos: -60.5,-15.5 + parent: 2 + - uid: 10878 components: - type: Transform - pos: 355.5,427.5 - parent: 1 - - uid: 16587 + rot: -1.5707963267948966 rad + pos: -59.5,-15.5 + parent: 2 + - uid: 10879 components: - type: Transform - pos: 355.5,418.5 - parent: 1 - - uid: 16588 + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - uid: 10880 components: - type: Transform rot: -1.5707963267948966 rad - pos: 354.5,416.5 - parent: 1 - - uid: 16589 + pos: -56.5,-15.5 + parent: 2 + - uid: 10881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,417.5 - parent: 1 - - uid: 16592 + rot: -1.5707963267948966 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 10883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,416.5 - parent: 1 - - uid: 16593 + rot: 3.141592653589793 rad + pos: -55.5,-14.5 + parent: 2 + - uid: 10885 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,416.5 - parent: 1 - - uid: 16594 + pos: -36.5,-13.5 + parent: 2 + - uid: 10886 components: - type: Transform rot: 1.5707963267948966 rad - pos: 361.5,416.5 - parent: 1 - - uid: 16595 + pos: -35.5,-13.5 + parent: 2 + - uid: 10887 components: - type: Transform rot: 1.5707963267948966 rad - pos: 362.5,416.5 - parent: 1 - - uid: 16596 + pos: -34.5,-13.5 + parent: 2 + - uid: 10888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,416.5 - parent: 1 - - uid: 16597 + pos: -54.5,-13.5 + parent: 2 + - uid: 10889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,416.5 - parent: 1 - - uid: 16598 + pos: -53.5,-13.5 + parent: 2 + - uid: 10890 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,416.5 - parent: 1 - - uid: 16599 + pos: -51.5,-13.5 + parent: 2 + - uid: 10891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,416.5 - parent: 1 - - uid: 16600 + pos: -50.5,-13.5 + parent: 2 + - uid: 10892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,416.5 - parent: 1 - - uid: 16601 + pos: -49.5,-13.5 + parent: 2 + - uid: 10893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 368.5,416.5 - parent: 1 - - uid: 16602 + pos: -48.5,-13.5 + parent: 2 + - uid: 10894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 369.5,416.5 - parent: 1 - - uid: 16603 + pos: -47.5,-13.5 + parent: 2 + - uid: 10895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,416.5 - parent: 1 - - uid: 16605 + pos: -46.5,-13.5 + parent: 2 + - uid: 10896 components: - type: Transform rot: 1.5707963267948966 rad - pos: 372.5,416.5 - parent: 1 - - uid: 16606 + pos: -45.5,-13.5 + parent: 2 + - uid: 10897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 370.5,416.5 - parent: 1 - - uid: 16615 + pos: -43.5,-13.5 + parent: 2 + - uid: 10898 components: - type: Transform - pos: 371.5,417.5 - parent: 1 - - uid: 16617 + rot: 1.5707963267948966 rad + pos: -52.5,-13.5 + parent: 2 + - uid: 10899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,417.5 - parent: 1 - - uid: 16618 + pos: -42.5,-13.5 + parent: 2 + - uid: 10900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,417.5 - parent: 1 - - uid: 16619 + pos: -41.5,-13.5 + parent: 2 + - uid: 10901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 377.5,417.5 - parent: 1 - - uid: 16620 + pos: -40.5,-13.5 + parent: 2 + - uid: 10902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,417.5 - parent: 1 - - uid: 16622 + pos: -39.5,-13.5 + parent: 2 + - uid: 10903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,417.5 - parent: 1 - - uid: 16623 + pos: -38.5,-13.5 + parent: 2 + - uid: 10904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,417.5 - parent: 1 - - uid: 16624 + pos: -44.5,-13.5 + parent: 2 + - uid: 10905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 381.5,417.5 - parent: 1 - - uid: 16625 + pos: -37.5,-13.5 + parent: 2 + - uid: 10918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,417.5 - parent: 1 - - uid: 16626 + rot: 3.141592653589793 rad + pos: -29.5,-47.5 + parent: 2 + - uid: 10919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,417.5 - parent: 1 - - uid: 16627 + rot: 3.141592653589793 rad + pos: -29.5,-45.5 + parent: 2 + - uid: 10920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,417.5 - parent: 1 - - uid: 16628 + rot: 3.141592653589793 rad + pos: -29.5,-44.5 + parent: 2 + - uid: 10921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,417.5 - parent: 1 - - uid: 16634 + rot: 3.141592653589793 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 10922 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,416.5 - parent: 1 - - uid: 16635 + pos: -29.5,-46.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-42.5 + parent: 2 + - uid: 10927 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,415.5 - parent: 1 - - uid: 16636 + pos: -29.5,-41.5 + parent: 2 + - uid: 10928 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,413.5 - parent: 1 - - uid: 16637 + pos: -29.5,-40.5 + parent: 2 + - uid: 10929 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,412.5 - parent: 1 - - uid: 16638 + pos: -29.5,-38.5 + parent: 2 + - uid: 10930 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,409.5 - parent: 1 - - uid: 16639 + pos: -29.5,-37.5 + parent: 2 + - uid: 10931 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,408.5 - parent: 1 - - uid: 16641 + pos: -29.5,-36.5 + parent: 2 + - uid: 10932 components: - type: Transform rot: 3.141592653589793 rad - pos: 353.5,412.5 - parent: 1 - - uid: 16642 + pos: -29.5,-35.5 + parent: 2 + - uid: 10933 components: - type: Transform rot: 3.141592653589793 rad - pos: 353.5,415.5 - parent: 1 - - uid: 16645 + pos: -29.5,-34.5 + parent: 2 + - uid: 10934 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,410.5 - parent: 1 - - uid: 16652 + pos: -29.5,-33.5 + parent: 2 + - uid: 10935 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,414.5 - parent: 1 - - uid: 16653 + pos: -29.5,-32.5 + parent: 2 + - uid: 10936 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,416.5 - parent: 1 - - uid: 16654 + pos: -29.5,-39.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 10941 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 10942 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,415.5 - parent: 1 - - uid: 16655 + pos: -20.5,-31.5 + parent: 2 + - uid: 10943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,413.5 - parent: 1 - - uid: 16656 + pos: -25.5,-30.5 + parent: 2 + - uid: 10944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 381.5,413.5 - parent: 1 - - uid: 16664 + pos: -26.5,-30.5 + parent: 2 + - uid: 10945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,409.5 - parent: 1 - - uid: 16665 + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 10949 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,408.5 - parent: 1 - - uid: 16666 + pos: -18.5,-31.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 10957 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,406.5 - parent: 1 - - uid: 16667 + pos: -32.5,-32.5 + parent: 2 + - uid: 10958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 10962 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,404.5 - parent: 1 - - uid: 16668 + pos: -29.5,-29.5 + parent: 2 + - uid: 10963 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,405.5 - parent: 1 - - uid: 16669 + pos: -29.5,-27.5 + parent: 2 + - uid: 10964 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,413.5 - parent: 1 - - uid: 16670 + pos: -29.5,-26.5 + parent: 2 + - uid: 10965 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,412.5 - parent: 1 - - uid: 16671 + pos: -29.5,-25.5 + parent: 2 + - uid: 10967 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,415.5 - parent: 1 - - uid: 16672 + pos: -29.5,-23.5 + parent: 2 + - uid: 10968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,410.5 - parent: 1 - - uid: 16673 + rot: 3.141592653589793 rad + pos: -29.5,-22.5 + parent: 2 + - uid: 10970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,410.5 - parent: 1 - - uid: 16674 + rot: 3.141592653589793 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 10971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,410.5 - parent: 1 - - uid: 16675 + rot: 3.141592653589793 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 10973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 368.5,410.5 - parent: 1 - - uid: 16676 + pos: -30.5,-21.5 + parent: 2 + - uid: 10974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 371.5,410.5 - parent: 1 - - uid: 16680 + pos: -31.5,-21.5 + parent: 2 + - uid: 10977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,413.5 - parent: 1 - - uid: 16692 + pos: -36.5,-23.5 + parent: 2 + - uid: 10978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,420.5 - parent: 1 - - uid: 16696 + rot: -1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + - uid: 10979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,411.5 - parent: 1 - - uid: 16697 + pos: -33.5,-24.5 + parent: 2 + - uid: 10980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 351.5,411.5 - parent: 1 - - uid: 16698 + pos: -32.5,-24.5 + parent: 2 + - uid: 10981 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,411.5 - parent: 1 - - uid: 16699 + pos: -31.5,-24.5 + parent: 2 + - uid: 10982 components: - type: Transform rot: -1.5707963267948966 rad - pos: 349.5,411.5 - parent: 1 - - uid: 16700 + pos: -34.5,-24.5 + parent: 2 + - uid: 10983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 347.5,411.5 - parent: 1 - - uid: 16701 + pos: -30.5,-24.5 + parent: 2 + - uid: 10990 components: - type: Transform rot: -1.5707963267948966 rad - pos: 346.5,411.5 - parent: 1 - - uid: 16702 + pos: -63.5,-4.5 + parent: 2 + - uid: 10991 components: - type: Transform rot: -1.5707963267948966 rad - pos: 345.5,411.5 - parent: 1 - - uid: 16703 + pos: -62.5,-4.5 + parent: 2 + - uid: 10993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,411.5 - parent: 1 - - uid: 16704 + pos: -61.5,-5.5 + parent: 2 + - uid: 10994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,411.5 - parent: 1 - - uid: 16705 + pos: -61.5,-6.5 + parent: 2 + - uid: 10995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,411.5 - parent: 1 - - uid: 16706 + pos: -61.5,-8.5 + parent: 2 + - uid: 10996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,411.5 - parent: 1 - - uid: 16707 + pos: -61.5,-9.5 + parent: 2 + - uid: 10997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,411.5 - parent: 1 - - uid: 16708 + pos: -61.5,-7.5 + parent: 2 + - uid: 11054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,411.5 - parent: 1 - - uid: 16709 + pos: -77.5,-56.5 + parent: 2 + - uid: 11126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,411.5 - parent: 1 - - uid: 16710 + rot: 3.141592653589793 rad + pos: -128.5,-53.5 + parent: 2 + - uid: 11129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,411.5 - parent: 1 - - uid: 16711 + rot: 1.5707963267948966 rad + pos: -135.5,-39.5 + parent: 2 + - uid: 11138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,411.5 - parent: 1 - - uid: 16712 + rot: 3.141592653589793 rad + pos: -127.5,-46.5 + parent: 2 + - uid: 11141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 333.5,411.5 - parent: 1 - - uid: 16713 + pos: -128.5,-47.5 + parent: 2 + - uid: 11147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,411.5 - parent: 1 - - uid: 16719 + rot: 3.141592653589793 rad + pos: -130.5,-52.5 + parent: 2 + - uid: 11148 components: - type: Transform - pos: 334.5,410.5 - parent: 1 - - uid: 16720 + rot: 3.141592653589793 rad + pos: -128.5,-52.5 + parent: 2 + - uid: 11150 components: - type: Transform - pos: 334.5,409.5 - parent: 1 - - uid: 16721 + rot: 3.141592653589793 rad + pos: -130.5,-53.5 + parent: 2 + - uid: 11152 components: - type: Transform - pos: 334.5,408.5 - parent: 1 - - uid: 16725 + pos: -129.5,-50.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + pos: -105.5,9.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,21.5 + parent: 2 + - uid: 11329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,407.5 - parent: 1 - - uid: 16726 + pos: -95.5,5.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -94.5,7.5 + parent: 2 + - uid: 11350 components: - type: Transform rot: -1.5707963267948966 rad - pos: 337.5,407.5 - parent: 1 - - uid: 16727 + pos: -97.5,5.5 + parent: 2 + - uid: 11351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,407.5 - parent: 1 - - uid: 16728 + pos: -98.5,5.5 + parent: 2 + - uid: 11360 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,407.5 - parent: 1 - - uid: 16729 + pos: -100.5,5.5 + parent: 2 + - uid: 11362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 339.5,407.5 - parent: 1 - - uid: 16733 + pos: -101.5,5.5 + parent: 2 + - uid: 11363 components: - type: Transform - pos: 331.5,412.5 - parent: 1 - - uid: 16734 + rot: -1.5707963267948966 rad + pos: -96.5,5.5 + parent: 2 + - uid: 11366 components: - type: Transform - pos: 331.5,413.5 - parent: 1 - - uid: 16735 + pos: -105.5,12.5 + parent: 2 + - uid: 11367 components: - type: Transform - pos: 331.5,414.5 - parent: 1 - - uid: 16736 + pos: -105.5,14.5 + parent: 2 + - uid: 11368 components: - type: Transform - pos: 331.5,415.5 - parent: 1 - - uid: 16740 + pos: -105.5,13.5 + parent: 2 + - uid: 11575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,418.5 - parent: 1 - - uid: 16741 + pos: -105.5,18.5 + parent: 2 + - uid: 11586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,418.5 - parent: 1 - - uid: 16742 + pos: -105.5,19.5 + parent: 2 + - uid: 11602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,417.5 - parent: 1 - - uid: 16743 + pos: -26.5,-5.5 + parent: 2 + - uid: 11603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,417.5 - parent: 1 - - uid: 16744 + pos: -26.5,-4.5 + parent: 2 + - uid: 11605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,417.5 - parent: 1 - - uid: 16745 + pos: -26.5,-3.5 + parent: 2 + - uid: 11634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,417.5 - parent: 1 - - uid: 16746 + pos: -105.5,15.5 + parent: 2 + - uid: 11635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,417.5 - parent: 1 - - uid: 16747 + pos: -105.5,20.5 + parent: 2 + - uid: 11682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,417.5 - parent: 1 - - uid: 16748 + pos: -105.5,21.5 + parent: 2 + - uid: 11874 components: - type: Transform rot: -1.5707963267948966 rad - pos: 328.5,417.5 - parent: 1 - - uid: 16750 + pos: -93.5,12.5 + parent: 2 + - uid: 12049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,416.5 - parent: 1 - - uid: 16751 + rot: 1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - uid: 12050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,416.5 - parent: 1 - - uid: 16752 + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 + - uid: 12051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,416.5 - parent: 1 - - uid: 16753 + rot: 1.5707963267948966 rad + pos: -28.5,11.5 + parent: 2 + - uid: 12053 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,416.5 - parent: 1 - - uid: 16754 + pos: -24.5,8.5 + parent: 2 + - uid: 12054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,416.5 - parent: 1 - - uid: 16755 + rot: 3.141592653589793 rad + pos: -25.5,9.5 + parent: 2 + - uid: 12055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,416.5 - parent: 1 - - uid: 16756 + rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 2 + - uid: 12058 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,416.5 - parent: 1 - - uid: 16757 + pos: -22.5,16.5 + parent: 2 + - uid: 12059 components: - type: Transform rot: -1.5707963267948966 rad - pos: 339.5,416.5 - parent: 1 - - uid: 16758 + pos: -24.5,11.5 + parent: 2 + - uid: 12060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,416.5 - parent: 1 - - uid: 16759 + rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 2 + - uid: 12061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,416.5 - parent: 1 - - uid: 16760 + rot: 3.141592653589793 rad + pos: -23.5,14.5 + parent: 2 + - uid: 12062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,416.5 - parent: 1 - - uid: 16761 + rot: 3.141592653589793 rad + pos: -23.5,15.5 + parent: 2 + - uid: 12063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,416.5 - parent: 1 - - uid: 16763 + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 2 + - uid: 12067 components: - type: Transform rot: 3.141592653589793 rad - pos: 344.5,417.5 - parent: 1 - - uid: 16765 + pos: -29.5,-6.5 + parent: 2 + - uid: 12068 components: - type: Transform - pos: 344.5,418.5 - parent: 1 - - uid: 16766 + rot: 3.141592653589793 rad + pos: -29.5,-10.5 + parent: 2 + - uid: 12069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,419.5 - parent: 1 - - uid: 16767 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 + parent: 2 + - uid: 12071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,419.5 - parent: 1 - - uid: 16768 + rot: 3.141592653589793 rad + pos: -29.5,-9.5 + parent: 2 + - uid: 12072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,419.5 - parent: 1 - - uid: 16769 + rot: 3.141592653589793 rad + pos: -29.5,9.5 + parent: 2 + - uid: 12073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,419.5 - parent: 1 - - uid: 16772 + rot: 3.141592653589793 rad + pos: -29.5,8.5 + parent: 2 + - uid: 12074 components: - type: Transform rot: 3.141592653589793 rad - pos: 323.5,418.5 - parent: 1 - - uid: 16773 + pos: -29.5,6.5 + parent: 2 + - uid: 12075 components: - type: Transform rot: 3.141592653589793 rad - pos: 323.5,419.5 - parent: 1 - - uid: 16776 + pos: -29.5,5.5 + parent: 2 + - uid: 12076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,403.5 - parent: 1 - - uid: 16777 + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - uid: 12077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,403.5 - parent: 1 - - uid: 16778 + rot: 3.141592653589793 rad + pos: -29.5,3.5 + parent: 2 + - uid: 12078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,403.5 - parent: 1 - - uid: 16779 + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 2 + - uid: 12079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,403.5 - parent: 1 - - uid: 16780 + rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 2 + - uid: 12080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,403.5 - parent: 1 - - uid: 16781 + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 2 + - uid: 12081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,403.5 - parent: 1 - - uid: 16782 + rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 12082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,403.5 - parent: 1 - - uid: 16784 + rot: 3.141592653589793 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 12083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,403.5 - parent: 1 - - uid: 16786 + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 2 + - uid: 12085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,403.5 - parent: 1 - - uid: 16787 + rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 12086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,403.5 - parent: 1 - - uid: 16789 + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - uid: 12087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,403.5 - parent: 1 - - uid: 16790 + rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 2 + - uid: 12088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,403.5 - parent: 1 - - uid: 16791 + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 12092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 355.5,403.5 - parent: 1 - - uid: 16792 + pos: -31.5,-13.5 + parent: 2 + - uid: 12093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,403.5 - parent: 1 - - uid: 16793 + pos: -32.5,-13.5 + parent: 2 + - uid: 12094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 354.5,403.5 - parent: 1 - - uid: 16794 + pos: -33.5,-13.5 + parent: 2 + - uid: 12095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,403.5 - parent: 1 - - uid: 16795 + pos: -29.5,-14.5 + parent: 2 + - uid: 12096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,403.5 - parent: 1 - - uid: 16796 + pos: -29.5,-15.5 + parent: 2 + - uid: 12097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,403.5 - parent: 1 - - uid: 16797 + pos: -29.5,-17.5 + parent: 2 + - uid: 12098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,403.5 - parent: 1 - - uid: 16798 + pos: -29.5,-18.5 + parent: 2 + - uid: 12099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,403.5 - parent: 1 - - uid: 16799 + pos: -29.5,-16.5 + parent: 2 + - uid: 12101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,403.5 - parent: 1 - - uid: 16800 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 12102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,403.5 - parent: 1 - - uid: 16802 + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - uid: 12103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,403.5 - parent: 1 - - uid: 16803 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 12104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,403.5 - parent: 1 - - uid: 16804 + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - uid: 12105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,403.5 - parent: 1 - - uid: 16805 + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 + - uid: 12106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,403.5 - parent: 1 - - uid: 16806 + rot: -1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + - uid: 12107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,403.5 - parent: 1 - - uid: 16807 + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 12108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,403.5 - parent: 1 - - uid: 16808 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 12109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,403.5 - parent: 1 - - uid: 16809 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 12110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,403.5 - parent: 1 - - uid: 16811 + rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 12111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,403.5 - parent: 1 - - uid: 16812 + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - uid: 12112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,403.5 - parent: 1 - - uid: 16813 + rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - uid: 12113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,403.5 - parent: 1 - - uid: 16814 + rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 12114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,403.5 - parent: 1 - - uid: 16815 + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 12115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,403.5 - parent: 1 - - uid: 16818 + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 12116 components: - type: Transform - pos: 331.5,401.5 - parent: 1 - - uid: 16819 + rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 12118 components: - type: Transform - pos: 331.5,402.5 - parent: 1 - - uid: 16822 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 2 + - uid: 12127 components: - type: Transform - pos: 337.5,402.5 - parent: 1 - - uid: 16824 + rot: 3.141592653589793 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 12128 components: - type: Transform - pos: 347.5,401.5 - parent: 1 - - uid: 16825 + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 2 + - uid: 12129 components: - type: Transform - pos: 347.5,400.5 - parent: 1 - - uid: 16827 + pos: -21.5,-20.5 + parent: 2 + - uid: 12133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 348.5,399.5 - parent: 1 - - uid: 16828 + pos: -28.5,-19.5 + parent: 2 + - uid: 12134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,399.5 - parent: 1 - - uid: 16829 + pos: -27.5,-19.5 + parent: 2 + - uid: 12135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 351.5,399.5 - parent: 1 - - uid: 16830 + pos: -26.5,-19.5 + parent: 2 + - uid: 12136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 352.5,399.5 - parent: 1 - - uid: 16831 + pos: -24.5,-19.5 + parent: 2 + - uid: 12137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 349.5,399.5 - parent: 1 - - uid: 16832 + pos: -25.5,-19.5 + parent: 2 + - uid: 12456 components: - type: Transform - pos: 353.5,398.5 - parent: 1 - - uid: 16833 + rot: -1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 + - uid: 12467 components: - type: Transform - pos: 353.5,397.5 - parent: 1 - - uid: 16834 + rot: 3.141592653589793 rad + pos: -110.5,30.5 + parent: 2 + - uid: 12939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,396.5 - parent: 1 - - uid: 16835 + pos: -125.5,24.5 + parent: 2 + - uid: 12950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,396.5 - parent: 1 - - uid: 16836 + pos: -43.5,-11.5 + parent: 2 + - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,396.5 - parent: 1 - - uid: 16837 + pos: -43.5,-10.5 + parent: 2 + - uid: 13259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,396.5 - parent: 1 - - uid: 16843 + pos: -97.5,-15.5 + parent: 2 + - uid: 13503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,395.5 - parent: 1 - - uid: 16844 + pos: -133.5,20.5 + parent: 2 + - uid: 13508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,393.5 - parent: 1 - - uid: 16845 + pos: -125.5,21.5 + parent: 2 + - uid: 13783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,392.5 - parent: 1 - - uid: 16846 + pos: -125.5,23.5 + parent: 2 + - uid: 14202 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,391.5 - parent: 1 - - uid: 16847 + pos: -104.5,-10.5 + parent: 2 + - uid: 14204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,390.5 - parent: 1 - - uid: 16848 + rot: 1.5707963267948966 rad + pos: -103.5,-9.5 + parent: 2 + - uid: 14205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,389.5 - parent: 1 - - uid: 16849 + rot: -1.5707963267948966 rad + pos: -102.5,-9.5 + parent: 2 + - uid: 14207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,388.5 - parent: 1 - - uid: 16850 + rot: 1.5707963267948966 rad + pos: -103.5,-15.5 + parent: 2 + - uid: 14208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,387.5 - parent: 1 - - uid: 16851 + pos: -104.5,-14.5 + parent: 2 + - uid: 14209 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,386.5 - parent: 1 - - uid: 16852 + pos: -104.5,-13.5 + parent: 2 + - uid: 14210 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,385.5 - parent: 1 - - uid: 16853 + pos: -104.5,-12.5 + parent: 2 + - uid: 14212 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,384.5 - parent: 1 - - uid: 16854 + pos: -115.5,-42.5 + parent: 2 + - uid: 14213 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,394.5 - parent: 1 - - uid: 16857 + pos: -115.5,-41.5 + parent: 2 + - uid: 14214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,398.5 - parent: 1 - - uid: 16858 + rot: -1.5707963267948966 rad + pos: -113.5,-44.5 + parent: 2 + - uid: 14215 components: - type: Transform rot: 3.141592653589793 rad - pos: 347.5,397.5 - parent: 1 - - uid: 16859 + pos: -115.5,-43.5 + parent: 2 + - uid: 14219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,395.5 - parent: 1 - - uid: 16860 + pos: -103.5,-43.5 + parent: 2 + - uid: 14220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,396.5 - parent: 1 - - uid: 16861 + pos: -103.5,-42.5 + parent: 2 + - uid: 14221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,394.5 - parent: 1 - - uid: 16862 + pos: -103.5,-40.5 + parent: 2 + - uid: 14222 components: - type: Transform - pos: 347.5,392.5 - parent: 1 - - uid: 16863 + pos: -103.5,-39.5 + parent: 2 + - uid: 14223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,393.5 - parent: 1 - - uid: 16864 + pos: -103.5,-38.5 + parent: 2 + - uid: 14224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,393.5 - parent: 1 - - uid: 16865 + pos: -103.5,-37.5 + parent: 2 + - uid: 14225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,393.5 - parent: 1 - - uid: 16866 + pos: -103.5,-41.5 + parent: 2 + - uid: 14226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,393.5 - parent: 1 - - uid: 16871 + pos: -103.5,-35.5 + parent: 2 + - uid: 14227 components: - type: Transform - pos: 362.5,400.5 - parent: 1 - - uid: 16873 + pos: -103.5,-36.5 + parent: 2 + - uid: 14228 components: - type: Transform - pos: 362.5,402.5 - parent: 1 - - uid: 16874 + pos: -103.5,-33.5 + parent: 2 + - uid: 14229 components: - type: Transform - pos: 362.5,398.5 - parent: 1 - - uid: 16876 + pos: -103.5,-34.5 + parent: 2 + - uid: 14230 components: - type: Transform - pos: 362.5,396.5 - parent: 1 - - uid: 16877 + pos: -103.5,-32.5 + parent: 2 + - uid: 14231 components: - type: Transform - pos: 362.5,395.5 - parent: 1 - - uid: 16878 + pos: -103.5,-30.5 + parent: 2 + - uid: 14232 components: - type: Transform - pos: 362.5,394.5 - parent: 1 - - uid: 16879 + pos: -103.5,-31.5 + parent: 2 + - uid: 14233 components: - type: Transform - pos: 362.5,401.5 - parent: 1 - - uid: 16882 + pos: -103.5,-29.5 + parent: 2 + - uid: 14234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,393.5 - parent: 1 - - uid: 16883 + pos: -103.5,-28.5 + parent: 2 + - uid: 14238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,393.5 - parent: 1 - - uid: 16885 + rot: 3.141592653589793 rad + pos: -102.5,-22.5 + parent: 2 + - uid: 14239 components: - type: Transform - pos: 359.5,392.5 - parent: 1 - - uid: 16886 + rot: 3.141592653589793 rad + pos: -102.5,-20.5 + parent: 2 + - uid: 14240 components: - type: Transform - pos: 359.5,390.5 - parent: 1 - - uid: 16887 + rot: 3.141592653589793 rad + pos: -102.5,-19.5 + parent: 2 + - uid: 14241 components: - type: Transform - pos: 359.5,391.5 - parent: 1 - - uid: 16889 + rot: 3.141592653589793 rad + pos: -102.5,-18.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-21.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-16.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-17.5 + parent: 2 + - uid: 14246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,389.5 - parent: 1 - - uid: 16890 + pos: -90.5,-11.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,9.5 + parent: 2 + - uid: 14248 components: - type: Transform rot: 1.5707963267948966 rad - pos: 361.5,389.5 - parent: 1 - - uid: 16891 + pos: -92.5,-11.5 + parent: 2 + - uid: 14250 components: - type: Transform rot: -1.5707963267948966 rad - pos: 362.5,389.5 - parent: 1 - - uid: 16894 + pos: -92.5,-15.5 + parent: 2 + - uid: 14251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,389.5 - parent: 1 - - uid: 16895 + rot: -1.5707963267948966 rad + pos: -100.5,-9.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,11.5 + parent: 2 + - uid: 14253 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,389.5 - parent: 1 - - uid: 16896 + pos: -89.5,-11.5 + parent: 2 + - uid: 14254 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,389.5 - parent: 1 - - uid: 16897 + pos: -88.5,-11.5 + parent: 2 + - uid: 14255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,389.5 - parent: 1 - - uid: 16899 + pos: -86.5,-11.5 + parent: 2 + - uid: 14256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,387.5 - parent: 1 - - uid: 16900 + pos: -98.5,-10.5 + parent: 2 + - uid: 14257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,388.5 - parent: 1 - - uid: 16912 + rot: 1.5707963267948966 rad + pos: -91.5,-11.5 + parent: 2 + - uid: 14258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,397.5 - parent: 1 - - uid: 16914 + pos: -94.5,-11.5 + parent: 2 + - uid: 14259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,396.5 - parent: 1 - - uid: 16916 + rot: 1.5707963267948966 rad + pos: -93.5,-11.5 + parent: 2 + - uid: 14260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,403.5 - parent: 1 - - uid: 16917 + rot: 1.5707963267948966 rad + pos: -96.5,-11.5 + parent: 2 + - uid: 14261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,403.5 - parent: 1 - - uid: 16918 + rot: 1.5707963267948966 rad + pos: -95.5,-11.5 + parent: 2 + - uid: 14262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,403.5 - parent: 1 - - uid: 16919 + rot: 1.5707963267948966 rad + pos: -97.5,-11.5 + parent: 2 + - uid: 14263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,403.5 - parent: 1 - - uid: 16920 + pos: -99.5,-9.5 + parent: 2 + - uid: 14270 components: - type: Transform rot: -1.5707963267948966 rad - pos: 378.5,403.5 - parent: 1 - - uid: 16921 + pos: -100.5,-15.5 + parent: 2 + - uid: 14271 components: - type: Transform rot: -1.5707963267948966 rad - pos: 379.5,403.5 - parent: 1 - - uid: 16922 + pos: -99.5,-15.5 + parent: 2 + - uid: 14302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 380.5,403.5 - parent: 1 - - uid: 16923 + pos: -105.5,-11.5 + parent: 2 + - uid: 14303 components: - type: Transform rot: -1.5707963267948966 rad - pos: 382.5,403.5 - parent: 1 - - uid: 16926 + pos: -106.5,-11.5 + parent: 2 + - uid: 14304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,402.5 - parent: 1 - - uid: 16927 + rot: -1.5707963267948966 rad + pos: -107.5,-11.5 + parent: 2 + - uid: 14306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,400.5 - parent: 1 - - uid: 16928 + pos: -108.5,-12.5 + parent: 2 + - uid: 14307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,399.5 - parent: 1 - - uid: 16929 + pos: -108.5,-13.5 + parent: 2 + - uid: 14310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,398.5 - parent: 1 - - uid: 16930 + rot: -1.5707963267948966 rad + pos: -114.5,-44.5 + parent: 2 + - uid: 14311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,397.5 - parent: 1 - - uid: 16931 + rot: 1.5707963267948966 rad + pos: -112.5,-44.5 + parent: 2 + - uid: 14312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,401.5 - parent: 1 - - uid: 16932 + rot: 1.5707963267948966 rad + pos: -106.5,-44.5 + parent: 2 + - uid: 14313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 383.5,396.5 - parent: 1 - - uid: 16933 + pos: -104.5,-44.5 + parent: 2 + - uid: 14314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 382.5,396.5 - parent: 1 - - uid: 16934 + pos: -105.5,-44.5 + parent: 2 + - uid: 14315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 381.5,396.5 - parent: 1 - - uid: 16935 + pos: -107.5,-44.5 + parent: 2 + - uid: 14316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,396.5 - parent: 1 - - uid: 16936 + pos: -108.5,-44.5 + parent: 2 + - uid: 14318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 379.5,396.5 - parent: 1 - - uid: 16937 + pos: -110.5,-44.5 + parent: 2 + - uid: 14319 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,396.5 - parent: 1 - - uid: 16938 + pos: -111.5,-44.5 + parent: 2 + - uid: 14321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 377.5,396.5 - parent: 1 - - uid: 16939 + pos: -77.5,-11.5 + parent: 2 + - uid: 14322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,396.5 - parent: 1 - - uid: 16940 + pos: -85.5,-15.5 + parent: 2 + - uid: 14323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,396.5 - parent: 1 - - uid: 16950 + pos: -88.5,-15.5 + parent: 2 + - uid: 14324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 385.5,396.5 - parent: 1 - - uid: 16951 + pos: -83.5,-15.5 + parent: 2 + - uid: 14325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 387.5,396.5 - parent: 1 - - uid: 16952 + pos: -84.5,-15.5 + parent: 2 + - uid: 14326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,396.5 - parent: 1 - - uid: 16953 + pos: -82.5,-15.5 + parent: 2 + - uid: 14327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,396.5 - parent: 1 - - uid: 16954 + pos: -87.5,-15.5 + parent: 2 + - uid: 14328 components: - type: Transform rot: 1.5707963267948966 rad - pos: 386.5,396.5 - parent: 1 - - uid: 16959 + pos: -79.5,-15.5 + parent: 2 + - uid: 14329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,396.5 - parent: 1 - - uid: 16960 + rot: 1.5707963267948966 rad + pos: -86.5,-15.5 + parent: 2 + - uid: 14330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,396.5 - parent: 1 - - uid: 16961 + rot: 1.5707963267948966 rad + pos: -78.5,-15.5 + parent: 2 + - uid: 14331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,396.5 - parent: 1 - - uid: 16962 + rot: 1.5707963267948966 rad + pos: -80.5,-15.5 + parent: 2 + - uid: 14332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,396.5 - parent: 1 - - uid: 16963 + rot: 1.5707963267948966 rad + pos: -77.5,-15.5 + parent: 2 + - uid: 14333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,396.5 - parent: 1 - - uid: 16964 + rot: 1.5707963267948966 rad + pos: -79.5,-11.5 + parent: 2 + - uid: 14334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,396.5 - parent: 1 - - uid: 16965 + rot: 1.5707963267948966 rad + pos: -81.5,-15.5 + parent: 2 + - uid: 14335 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,396.5 - parent: 1 - - uid: 16966 + pos: -95.5,-15.5 + parent: 2 + - uid: 14337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,396.5 - parent: 1 - - uid: 16967 + pos: -93.5,-15.5 + parent: 2 + - uid: 14338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 395.5,396.5 - parent: 1 - - uid: 16968 + pos: -91.5,-15.5 + parent: 2 + - uid: 14339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,396.5 - parent: 1 - - uid: 16970 + rot: 1.5707963267948966 rad + pos: -89.5,-15.5 + parent: 2 + - uid: 14340 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,395.5 - parent: 1 - - uid: 16971 + pos: -75.5,-24.5 + parent: 2 + - uid: 14341 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,394.5 - parent: 1 - - uid: 16975 + pos: -75.5,-17.5 + parent: 2 + - uid: 14342 components: - type: Transform - pos: 404.5,392.5 - parent: 1 - - uid: 16976 + rot: 3.141592653589793 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 14343 components: - type: Transform - pos: 404.5,390.5 - parent: 1 - - uid: 16977 + rot: 3.141592653589793 rad + pos: -75.5,-16.5 + parent: 2 + - uid: 14344 components: - type: Transform - pos: 404.5,391.5 - parent: 1 - - uid: 16978 + rot: 3.141592653589793 rad + pos: -75.5,-18.5 + parent: 2 + - uid: 14345 components: - type: Transform - pos: 404.5,389.5 - parent: 1 - - uid: 16979 + rot: 3.141592653589793 rad + pos: -75.5,-19.5 + parent: 2 + - uid: 14346 components: - type: Transform - pos: 404.5,388.5 - parent: 1 - - uid: 16980 + rot: 3.141592653589793 rad + pos: -75.5,-20.5 + parent: 2 + - uid: 14347 components: - type: Transform - pos: 404.5,387.5 - parent: 1 - - uid: 16981 + rot: 3.141592653589793 rad + pos: -75.5,-21.5 + parent: 2 + - uid: 14348 components: - type: Transform - pos: 404.5,386.5 - parent: 1 - - uid: 16982 + rot: 3.141592653589793 rad + pos: -75.5,-22.5 + parent: 2 + - uid: 14349 components: - type: Transform - pos: 404.5,385.5 - parent: 1 - - uid: 16983 + rot: 3.141592653589793 rad + pos: -75.5,-23.5 + parent: 2 + - uid: 14365 components: - type: Transform - pos: 404.5,384.5 - parent: 1 - - uid: 16984 + pos: -58.5,-26.5 + parent: 2 + - uid: 14366 components: - type: Transform - pos: 404.5,383.5 - parent: 1 - - uid: 16985 + pos: -58.5,-25.5 + parent: 2 + - uid: 14367 components: - type: Transform - pos: 404.5,382.5 - parent: 1 - - uid: 16986 + pos: -58.5,-24.5 + parent: 2 + - uid: 14368 components: - type: Transform - pos: 404.5,381.5 - parent: 1 - - uid: 16987 + rot: -1.5707963267948966 rad + pos: -74.5,-14.5 + parent: 2 + - uid: 14369 components: - type: Transform - pos: 404.5,380.5 - parent: 1 - - uid: 16988 + rot: -1.5707963267948966 rad + pos: -72.5,-14.5 + parent: 2 + - uid: 14370 components: - type: Transform - pos: 404.5,379.5 - parent: 1 - - uid: 16989 + rot: -1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 2 + - uid: 14371 components: - type: Transform - pos: 404.5,378.5 - parent: 1 - - uid: 16990 + rot: -1.5707963267948966 rad + pos: -70.5,-14.5 + parent: 2 + - uid: 14372 components: - type: Transform - pos: 404.5,377.5 - parent: 1 - - uid: 16994 + rot: -1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - uid: 14373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,375.5 - parent: 1 - - uid: 16995 + rot: -1.5707963267948966 rad + pos: -73.5,-14.5 + parent: 2 + - uid: 14374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,375.5 - parent: 1 - - uid: 16996 + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 + - uid: 14376 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,375.5 - parent: 1 - - uid: 16997 + pos: -78.5,-11.5 + parent: 2 + - uid: 14377 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,375.5 - parent: 1 - - uid: 16998 + pos: -80.5,-11.5 + parent: 2 + - uid: 14378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,375.5 - parent: 1 - - uid: 16999 + rot: -1.5707963267948966 rad + pos: -69.5,-12.5 + parent: 2 + - uid: 14379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 409.5,375.5 - parent: 1 - - uid: 17000 + pos: -85.5,-11.5 + parent: 2 + - uid: 14380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,375.5 - parent: 1 - - uid: 17001 + pos: -83.5,-11.5 + parent: 2 + - uid: 14381 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,375.5 - parent: 1 - - uid: 17002 + pos: -81.5,-11.5 + parent: 2 + - uid: 14382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 414.5,375.5 - parent: 1 - - uid: 17005 - components: - - type: Transform - pos: 415.5,374.5 - parent: 1 - - uid: 17006 - components: - - type: Transform - pos: 415.5,373.5 - parent: 1 - - uid: 17010 + pos: -87.5,-11.5 + parent: 2 + - uid: 14383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,373.5 - parent: 1 - - uid: 17011 + rot: 1.5707963267948966 rad + pos: -84.5,-11.5 + parent: 2 + - uid: 14384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,374.5 - parent: 1 - - uid: 17012 + rot: 1.5707963267948966 rad + pos: -82.5,-11.5 + parent: 2 + - uid: 14385 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,371.5 - parent: 1 - - uid: 17013 + pos: -56.5,-13.5 + parent: 2 + - uid: 14387 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,369.5 - parent: 1 - - uid: 17014 + rot: -1.5707963267948966 rad + pos: -70.5,-12.5 + parent: 2 + - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,368.5 - parent: 1 - - uid: 17015 + rot: -1.5707963267948966 rad + pos: -71.5,-12.5 + parent: 2 + - uid: 14389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,367.5 - parent: 1 - - uid: 17016 + rot: -1.5707963267948966 rad + pos: -72.5,-12.5 + parent: 2 + - uid: 14390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,366.5 - parent: 1 - - uid: 17017 + rot: -1.5707963267948966 rad + pos: -73.5,-12.5 + parent: 2 + - uid: 14391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,365.5 - parent: 1 - - uid: 17018 + rot: -1.5707963267948966 rad + pos: -74.5,-12.5 + parent: 2 + - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,370.5 - parent: 1 - - uid: 17019 + rot: -1.5707963267948966 rad + pos: -75.5,-12.5 + parent: 2 + - uid: 14393 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,364.5 - parent: 1 - - uid: 17024 + pos: -56.5,-14.5 + parent: 2 + - uid: 14394 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,362.5 - parent: 1 - - uid: 17025 + pos: -54.5,-14.5 + parent: 2 + - uid: 14395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,362.5 - parent: 1 - - uid: 17026 + rot: 1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - uid: 14396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,362.5 - parent: 1 - - uid: 17028 + rot: 1.5707963267948966 rad + pos: -64.5,-14.5 + parent: 2 + - uid: 14397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,362.5 - parent: 1 - - uid: 17029 + rot: 1.5707963267948966 rad + pos: -62.5,-14.5 + parent: 2 + - uid: 14398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,362.5 - parent: 1 - - uid: 17033 + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - uid: 14399 components: - type: Transform - pos: 416.5,361.5 - parent: 1 - - uid: 17034 + rot: 1.5707963267948966 rad + pos: -63.5,-14.5 + parent: 2 + - uid: 14400 components: - type: Transform - pos: 416.5,359.5 - parent: 1 - - uid: 17035 + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - uid: 14401 components: - type: Transform - pos: 416.5,358.5 - parent: 1 - - uid: 17036 + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - uid: 14402 components: - type: Transform - pos: 416.5,357.5 - parent: 1 - - uid: 17037 + rot: 1.5707963267948966 rad + pos: -65.5,-16.5 + parent: 2 + - uid: 14403 components: - type: Transform - pos: 416.5,360.5 - parent: 1 - - uid: 17038 + rot: 1.5707963267948966 rad + pos: -63.5,-16.5 + parent: 2 + - uid: 14404 components: - type: Transform - pos: 416.5,355.5 - parent: 1 - - uid: 17039 + rot: 1.5707963267948966 rad + pos: -62.5,-16.5 + parent: 2 + - uid: 14405 components: - type: Transform - pos: 416.5,353.5 - parent: 1 - - uid: 17040 + rot: 1.5707963267948966 rad + pos: -61.5,-16.5 + parent: 2 + - uid: 14406 components: - type: Transform - pos: 416.5,352.5 - parent: 1 - - uid: 17042 + rot: 1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - uid: 14407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,351.5 - parent: 1 - - uid: 17043 + rot: 1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - uid: 14408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,351.5 - parent: 1 - - uid: 17044 + rot: 1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - uid: 14409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,351.5 - parent: 1 - - uid: 17045 + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 14410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,351.5 - parent: 1 - - uid: 17046 + rot: 1.5707963267948966 rad + pos: -64.5,-16.5 + parent: 2 + - uid: 14411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,351.5 - parent: 1 - - uid: 17047 + pos: -55.5,-12.5 + parent: 2 + - uid: 14412 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,351.5 - parent: 1 - - uid: 17048 + pos: -55.5,-14.5 + parent: 2 + - uid: 14415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,351.5 - parent: 1 - - uid: 17053 + rot: 1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 2 + - uid: 14416 components: - type: Transform rot: 1.5707963267948966 rad - pos: 405.5,396.5 - parent: 1 - - uid: 17054 + pos: -45.5,-27.5 + parent: 2 + - uid: 14417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,396.5 - parent: 1 - - uid: 17055 + pos: -44.5,-27.5 + parent: 2 + - uid: 14418 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,396.5 - parent: 1 - - uid: 17056 + pos: -46.5,-27.5 + parent: 2 + - uid: 14420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,396.5 - parent: 1 - - uid: 17057 + rot: 3.141592653589793 rad + pos: -43.5,-26.5 + parent: 2 + - uid: 14421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,396.5 - parent: 1 - - uid: 17058 + rot: 3.141592653589793 rad + pos: -43.5,-24.5 + parent: 2 + - uid: 14423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,396.5 - parent: 1 - - uid: 17059 + rot: 3.141592653589793 rad + pos: -43.5,-22.5 + parent: 2 + - uid: 14424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,396.5 - parent: 1 - - uid: 17060 + rot: 3.141592653589793 rad + pos: -43.5,-21.5 + parent: 2 + - uid: 14425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,396.5 - parent: 1 - - uid: 17061 + rot: 3.141592653589793 rad + pos: -43.5,-25.5 + parent: 2 + - uid: 14426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,396.5 - parent: 1 - - uid: 17062 + rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 2 + - uid: 14427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,396.5 - parent: 1 - - uid: 17064 + rot: 3.141592653589793 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 14428 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,395.5 - parent: 1 - - uid: 17065 + pos: -43.5,-16.5 + parent: 2 + - uid: 14430 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,393.5 - parent: 1 - - uid: 17066 + pos: -43.5,-18.5 + parent: 2 + - uid: 14431 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,394.5 - parent: 1 - - uid: 17070 + pos: -43.5,-20.5 + parent: 2 + - uid: 14433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,392.5 - parent: 1 - - uid: 17075 + rot: 3.141592653589793 rad + pos: -42.5,-21.5 + parent: 2 + - uid: 14434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,392.5 - parent: 1 - - uid: 17076 + pos: -42.5,-14.5 + parent: 2 + - uid: 14435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,392.5 - parent: 1 - - uid: 17080 + pos: -42.5,-13.5 + parent: 2 + - uid: 14438 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,390.5 - parent: 1 - - uid: 17081 + pos: -42.5,-20.5 + parent: 2 + - uid: 14439 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,389.5 - parent: 1 - - uid: 17082 + pos: -38.5,-16.5 + parent: 2 + - uid: 14440 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,387.5 - parent: 1 - - uid: 17083 + pos: -42.5,-16.5 + parent: 2 + - uid: 14441 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,386.5 - parent: 1 - - uid: 17084 + pos: -42.5,-19.5 + parent: 2 + - uid: 14442 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,385.5 - parent: 1 - - uid: 17085 + pos: -42.5,-18.5 + parent: 2 + - uid: 14443 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,384.5 - parent: 1 - - uid: 17086 + pos: -42.5,-17.5 + parent: 2 + - uid: 14448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,383.5 - parent: 1 - - uid: 17087 + rot: -1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 14449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,388.5 - parent: 1 - - uid: 17089 + rot: -1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - uid: 14450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,381.5 - parent: 1 - - uid: 17090 + rot: 1.5707963267948966 rad + pos: -44.5,-14.5 + parent: 2 + - uid: 14451 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,382.5 - parent: 1 - - uid: 17091 + pos: -45.5,-14.5 + parent: 2 + - uid: 14452 components: - type: Transform rot: 1.5707963267948966 rad - pos: 409.5,382.5 - parent: 1 - - uid: 17097 + pos: -46.5,-14.5 + parent: 2 + - uid: 14453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 385.5,403.5 - parent: 1 - - uid: 17098 + pos: -48.5,-14.5 + parent: 2 + - uid: 14454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 387.5,403.5 - parent: 1 - - uid: 17099 + pos: -49.5,-14.5 + parent: 2 + - uid: 14455 components: - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,403.5 - parent: 1 - - uid: 17100 + pos: -50.5,-14.5 + parent: 2 + - uid: 14456 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,403.5 - parent: 1 - - uid: 17101 + pos: -51.5,-14.5 + parent: 2 + - uid: 14457 components: - type: Transform rot: 1.5707963267948966 rad - pos: 390.5,403.5 - parent: 1 - - uid: 17102 + pos: -47.5,-14.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-12.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-12.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - uid: 14463 components: - type: Transform rot: 1.5707963267948966 rad - pos: 391.5,403.5 - parent: 1 - - uid: 17103 + pos: -60.5,-14.5 + parent: 2 + - uid: 14464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,403.5 - parent: 1 - - uid: 17104 + pos: -59.5,-14.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-14.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-15.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-15.5 + parent: 2 + - uid: 14470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,403.5 - parent: 1 - - uid: 17105 + rot: 3.141592653589793 rad + pos: -66.5,-14.5 + parent: 2 + - uid: 14471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,403.5 - parent: 1 - - uid: 17106 + rot: 3.141592653589793 rad + pos: -66.5,-13.5 + parent: 2 + - uid: 14472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,403.5 - parent: 1 - - uid: 17107 + pos: -52.5,-12.5 + parent: 2 + - uid: 14473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 386.5,403.5 - parent: 1 - - uid: 17108 + pos: -51.5,-12.5 + parent: 2 + - uid: 14474 components: - type: Transform rot: 1.5707963267948966 rad - pos: 396.5,403.5 - parent: 1 - - uid: 17109 + pos: -50.5,-12.5 + parent: 2 + - uid: 14475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,403.5 - parent: 1 - - uid: 17110 + pos: -49.5,-12.5 + parent: 2 + - uid: 14476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 397.5,403.5 - parent: 1 - - uid: 17111 + pos: -48.5,-12.5 + parent: 2 + - uid: 14477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,403.5 - parent: 1 - - uid: 17112 + pos: -47.5,-12.5 + parent: 2 + - uid: 14478 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,403.5 - parent: 1 - - uid: 17113 + pos: -46.5,-12.5 + parent: 2 + - uid: 14479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 402.5,403.5 - parent: 1 - - uid: 17114 + pos: -45.5,-12.5 + parent: 2 + - uid: 14480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,403.5 - parent: 1 - - uid: 17118 + pos: -53.5,-12.5 + parent: 2 + - uid: 14481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,403.5 - parent: 1 - - uid: 17119 + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - uid: 14482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,403.5 - parent: 1 - - uid: 17120 + rot: 3.141592653589793 rad + pos: -42.5,-22.5 + parent: 2 + - uid: 14485 components: - type: Transform rot: -1.5707963267948966 rad - pos: 407.5,403.5 - parent: 1 - - uid: 17121 + pos: -41.5,-23.5 + parent: 2 + - uid: 14490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,403.5 - parent: 1 - - uid: 17122 + rot: 1.5707963267948966 rad + pos: -88.5,-27.5 + parent: 2 + - uid: 14493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,403.5 - parent: 1 - - uid: 17123 + rot: 1.5707963267948966 rad + pos: -89.5,-27.5 + parent: 2 + - uid: 14502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,403.5 - parent: 1 - - uid: 17124 + rot: 3.141592653589793 rad + pos: -87.5,-25.5 + parent: 2 + - uid: 14503 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,404.5 - parent: 1 - - uid: 17125 + pos: -87.5,-24.5 + parent: 2 + - uid: 14510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,406.5 - parent: 1 - - uid: 17126 + pos: -95.5,-18.5 + parent: 2 + - uid: 14511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,407.5 - parent: 1 - - uid: 17127 + pos: -95.5,-17.5 + parent: 2 + - uid: 14512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,408.5 - parent: 1 - - uid: 17128 + pos: -95.5,-16.5 + parent: 2 + - uid: 14514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,409.5 - parent: 1 - - uid: 17129 + pos: -95.5,-23.5 + parent: 2 + - uid: 14516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,410.5 - parent: 1 - - uid: 17130 + pos: -95.5,-26.5 + parent: 2 + - uid: 14517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,405.5 - parent: 1 - - uid: 17131 + pos: -95.5,-25.5 + parent: 2 + - uid: 14518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,412.5 - parent: 1 - - uid: 17134 + pos: -95.5,-24.5 + parent: 2 + - uid: 14519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,414.5 - parent: 1 - - uid: 17135 + pos: -95.5,-22.5 + parent: 2 + - uid: 14520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,415.5 - parent: 1 - - uid: 17136 + pos: -95.5,-21.5 + parent: 2 + - uid: 14521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,413.5 - parent: 1 - - uid: 17137 + pos: -95.5,-20.5 + parent: 2 + - uid: 14522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,417.5 - parent: 1 - - uid: 17138 + pos: -95.5,-19.5 + parent: 2 + - uid: 14523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,419.5 - parent: 1 - - uid: 17139 + pos: -95.5,-15.5 + parent: 2 + - uid: 14524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,420.5 - parent: 1 - - uid: 17140 + pos: -95.5,-14.5 + parent: 2 + - uid: 14575 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,418.5 - parent: 1 - - uid: 17141 + pos: -108.5,29.5 + parent: 2 + - uid: 14740 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,421.5 - parent: 1 - - uid: 17142 + pos: -66.5,-29.5 + parent: 2 + - uid: 14764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,421.5 - parent: 1 - - uid: 17143 + rot: 3.141592653589793 rad + pos: -101.5,10.5 + parent: 2 + - uid: 14765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,421.5 - parent: 1 - - uid: 17144 + rot: 3.141592653589793 rad + pos: -101.5,3.5 + parent: 2 + - uid: 14766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,421.5 - parent: 1 - - uid: 17145 + rot: 3.141592653589793 rad + pos: -101.5,-5.5 + parent: 2 + - uid: 14767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,421.5 - parent: 1 - - uid: 17146 + rot: 3.141592653589793 rad + pos: -101.5,1.5 + parent: 2 + - uid: 14768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,421.5 - parent: 1 - - uid: 17147 + rot: 3.141592653589793 rad + pos: -101.5,2.5 + parent: 2 + - uid: 14769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,416.5 - parent: 1 - - uid: 17148 + rot: 3.141592653589793 rad + pos: -101.5,4.5 + parent: 2 + - uid: 14770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,416.5 - parent: 1 - - uid: 17149 + rot: 3.141592653589793 rad + pos: -101.5,5.5 + parent: 2 + - uid: 14771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,417.5 - parent: 1 - - uid: 17150 + rot: 3.141592653589793 rad + pos: -101.5,6.5 + parent: 2 + - uid: 14772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,417.5 - parent: 1 - - uid: 17151 + rot: 3.141592653589793 rad + pos: -101.5,0.5 + parent: 2 + - uid: 14773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,417.5 - parent: 1 - - uid: 17152 + rot: 3.141592653589793 rad + pos: -101.5,7.5 + parent: 2 + - uid: 14774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,417.5 - parent: 1 - - uid: 17153 + rot: 3.141592653589793 rad + pos: -101.5,8.5 + parent: 2 + - uid: 14775 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,415.5 - parent: 1 - - uid: 17154 + pos: -101.5,-8.5 + parent: 2 + - uid: 14776 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,413.5 - parent: 1 - - uid: 17155 + pos: -101.5,-7.5 + parent: 2 + - uid: 14777 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,412.5 - parent: 1 - - uid: 17156 + pos: -101.5,-6.5 + parent: 2 + - uid: 14778 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,414.5 - parent: 1 - - uid: 17163 + pos: -101.5,-4.5 + parent: 2 + - uid: 14779 components: - type: Transform rot: 3.141592653589793 rad - pos: 406.5,417.5 - parent: 1 - - uid: 17177 + pos: -101.5,-3.5 + parent: 2 + - uid: 14780 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,406.5 - parent: 1 - - uid: 17178 + pos: -101.5,-2.5 + parent: 2 + - uid: 14781 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,405.5 - parent: 1 - - uid: 17179 + pos: -101.5,-1.5 + parent: 2 + - uid: 14782 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,408.5 - parent: 1 - - uid: 17180 + pos: -101.5,-0.5 + parent: 2 + - uid: 14783 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,410.5 - parent: 1 - - uid: 17181 + pos: -101.5,12.5 + parent: 2 + - uid: 14882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,409.5 - parent: 1 - - uid: 17183 + rot: 1.5707963267948966 rad + pos: -115.5,-22.5 + parent: 2 + - uid: 15007 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,396.5 - parent: 1 - - uid: 17184 + pos: -95.5,-41.5 + parent: 2 + - uid: 15070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,396.5 - parent: 1 - - uid: 17190 + pos: -99.5,5.5 + parent: 2 + - uid: 15086 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,397.5 - parent: 1 - - uid: 17191 + pos: -110.5,23.5 + parent: 2 + - uid: 15272 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,398.5 - parent: 1 - - uid: 17195 + pos: -94.5,-16.5 + parent: 2 + - uid: 15273 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,394.5 - parent: 1 - - uid: 17196 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,393.5 - parent: 1 - - uid: 17199 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,393.5 - parent: 1 - - uid: 17200 + pos: -94.5,-18.5 + parent: 2 + - uid: 15274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,393.5 - parent: 1 - - uid: 17202 + rot: 3.141592653589793 rad + pos: -94.5,-19.5 + parent: 2 + - uid: 15275 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,394.5 - parent: 1 - - uid: 17203 + pos: -94.5,-20.5 + parent: 2 + - uid: 15276 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,395.5 - parent: 1 - - uid: 17204 + pos: -94.5,-21.5 + parent: 2 + - uid: 15277 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,396.5 - parent: 1 - - uid: 17205 + pos: -94.5,-22.5 + parent: 2 + - uid: 15278 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,397.5 - parent: 1 - - uid: 17206 + pos: -94.5,-23.5 + parent: 2 + - uid: 15279 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,398.5 - parent: 1 - - uid: 17211 + pos: -94.5,-17.5 + parent: 2 + - uid: 15280 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,392.5 - parent: 1 - - uid: 17212 + pos: -94.5,-24.5 + parent: 2 + - uid: 15288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,395.5 - parent: 1 - - uid: 17213 + rot: -1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + - uid: 15289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,393.5 - parent: 1 - - uid: 17214 + rot: -1.5707963267948966 rad + pos: -38.5,-27.5 + parent: 2 + - uid: 15290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,396.5 - parent: 1 - - uid: 17215 + rot: -1.5707963267948966 rad + pos: -39.5,-27.5 + parent: 2 + - uid: 15291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,397.5 - parent: 1 - - uid: 17216 + rot: -1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - uid: 15292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,398.5 - parent: 1 - - uid: 17217 + rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - uid: 15294 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,399.5 - parent: 1 - - uid: 17219 + pos: -42.5,-26.5 + parent: 2 + - uid: 15295 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,400.5 - parent: 1 - - uid: 17220 + pos: -42.5,-24.5 + parent: 2 + - uid: 15296 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,401.5 - parent: 1 - - uid: 17221 + pos: -42.5,-25.5 + parent: 2 + - uid: 15299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,402.5 - parent: 1 - - uid: 17222 + pos: -45.5,-22.5 + parent: 2 + - uid: 15301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,403.5 - parent: 1 - - uid: 17223 + rot: 1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 2 + - uid: 15305 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,404.5 - parent: 1 - - uid: 17224 + pos: -108.5,22.5 + parent: 2 + - uid: 15306 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,406.5 - parent: 1 - - uid: 17225 + pos: -110.5,25.5 + parent: 2 + - uid: 15307 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,405.5 - parent: 1 - - uid: 17227 + pos: -110.5,22.5 + parent: 2 + - uid: 15622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,407.5 - parent: 1 - - uid: 17228 + pos: -105.5,8.5 + parent: 2 + - uid: 15626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,407.5 - parent: 1 - - uid: 17229 + pos: -105.5,10.5 + parent: 2 + - uid: 15889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,407.5 - parent: 1 - - uid: 17230 + rot: 3.141592653589793 rad + pos: -108.5,26.5 + parent: 2 + - uid: 15890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,407.5 - parent: 1 - - uid: 17231 + rot: 3.141592653589793 rad + pos: -108.5,25.5 + parent: 2 + - uid: 15931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 432.5,407.5 - parent: 1 - - uid: 17232 + rot: 3.141592653589793 rad + pos: -108.5,24.5 + parent: 2 + - uid: 15935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,407.5 - parent: 1 - - uid: 17233 + rot: 3.141592653589793 rad + pos: -110.5,21.5 + parent: 2 + - uid: 15936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,407.5 - parent: 1 - - uid: 17234 + rot: 3.141592653589793 rad + pos: -108.5,21.5 + parent: 2 + - uid: 15951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,407.5 - parent: 1 - - uid: 17235 + rot: 3.141592653589793 rad + pos: -111.5,24.5 + parent: 2 + - uid: 15952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,407.5 - parent: 1 - - uid: 17236 + rot: 3.141592653589793 rad + pos: -112.5,27.5 + parent: 2 + - uid: 15953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,407.5 - parent: 1 - - uid: 17237 + rot: 3.141592653589793 rad + pos: -112.5,26.5 + parent: 2 + - uid: 16047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,407.5 - parent: 1 - - uid: 17238 + pos: -96.5,-36.5 + parent: 2 + - uid: 16048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 439.5,407.5 - parent: 1 - - uid: 17239 + pos: -96.5,-37.5 + parent: 2 + - uid: 16049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,407.5 - parent: 1 - - uid: 17240 + pos: -96.5,-38.5 + parent: 2 + - uid: 16050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 441.5,407.5 - parent: 1 - - uid: 17241 + pos: -96.5,-30.5 + parent: 2 + - uid: 16051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 442.5,407.5 - parent: 1 - - uid: 17242 + pos: -96.5,-39.5 + parent: 2 + - uid: 16052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,407.5 - parent: 1 - - uid: 17243 + pos: -96.5,-40.5 + parent: 2 + - uid: 16055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,407.5 - parent: 1 - - uid: 17244 + pos: -96.5,-29.5 + parent: 2 + - uid: 16056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,407.5 - parent: 1 - - uid: 17245 + pos: -96.5,-31.5 + parent: 2 + - uid: 16057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,407.5 - parent: 1 - - uid: 17246 + pos: -96.5,-32.5 + parent: 2 + - uid: 16058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,407.5 - parent: 1 - - uid: 17247 + pos: -96.5,-33.5 + parent: 2 + - uid: 16059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 446.5,407.5 - parent: 1 - - uid: 17249 + pos: -96.5,-34.5 + parent: 2 + - uid: 16060 components: - type: Transform - pos: 449.5,406.5 - parent: 1 - - uid: 17250 + pos: -96.5,-35.5 + parent: 2 + - uid: 16128 components: - type: Transform - pos: 449.5,404.5 - parent: 1 - - uid: 17251 + rot: -1.5707963267948966 rad + pos: -131.5,22.5 + parent: 2 + - uid: 16151 components: - type: Transform - pos: 449.5,405.5 - parent: 1 - - uid: 17252 + pos: -75.5,-40.5 + parent: 2 + - uid: 16166 components: - type: Transform - pos: 449.5,403.5 - parent: 1 - - uid: 17253 + pos: -75.5,-43.5 + parent: 2 + - uid: 16187 components: - type: Transform - pos: 419.5,400.5 - parent: 1 - - uid: 17254 + pos: -75.5,-41.5 + parent: 2 + - uid: 16188 components: - type: Transform - pos: 419.5,401.5 - parent: 1 - - uid: 17255 + pos: -75.5,-42.5 + parent: 2 + - uid: 16263 components: - type: Transform - pos: 419.5,403.5 - parent: 1 - - uid: 17256 + pos: -64.5,-27.5 + parent: 2 + - uid: 16401 components: - type: Transform - pos: 419.5,402.5 - parent: 1 - - uid: 17258 + rot: -1.5707963267948966 rad + pos: -76.5,-56.5 + parent: 2 + - uid: 16402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,404.5 - parent: 1 - - uid: 17259 + rot: -1.5707963267948966 rad + pos: -75.5,-56.5 + parent: 2 + - uid: 16406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,404.5 - parent: 1 - - uid: 17260 + rot: 3.141592653589793 rad + pos: -108.5,23.5 + parent: 2 + - uid: 16470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,404.5 - parent: 1 - - uid: 17262 + pos: -72.5,-56.5 + parent: 2 + - uid: 17244 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,405.5 - parent: 1 - - uid: 17263 + pos: -110.5,28.5 + parent: 2 + - uid: 17320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,406.5 - parent: 1 - - uid: 17264 + pos: -127.5,-43.5 + parent: 2 + - uid: 17321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,408.5 - parent: 1 - - uid: 17265 + pos: -127.5,-44.5 + parent: 2 + - uid: 17322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,409.5 - parent: 1 - - uid: 17266 + pos: -127.5,-42.5 + parent: 2 + - uid: 17323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,410.5 - parent: 1 - - uid: 17267 + pos: -127.5,-41.5 + parent: 2 + - uid: 17324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,410.5 - parent: 1 - - uid: 17268 + pos: -127.5,-40.5 + parent: 2 + - uid: 17348 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,410.5 - parent: 1 - - uid: 17269 + pos: -131.5,-39.5 + parent: 2 + - uid: 17349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,410.5 - parent: 1 - - uid: 17275 + pos: -132.5,-39.5 + parent: 2 + - uid: 17350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,410.5 - parent: 1 - - uid: 17276 + pos: -130.5,-39.5 + parent: 2 + - uid: 17353 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,410.5 - parent: 1 - - uid: 17277 + pos: -65.5,-29.5 + parent: 2 + - uid: 17368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,410.5 - parent: 1 - - uid: 17279 + rot: -1.5707963267948966 rad + pos: -74.5,-25.5 + parent: 2 + - uid: 18124 components: - type: Transform - pos: 427.5,409.5 - parent: 1 - - uid: 17281 + rot: 3.141592653589793 rad + pos: -133.5,-3.5 + parent: 2 + - uid: 18173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,408.5 - parent: 1 - - uid: 17282 + pos: -106.5,25.5 + parent: 2 + - uid: 19473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,408.5 - parent: 1 - - uid: 17283 + rot: 3.141592653589793 rad + pos: -111.5,22.5 + parent: 2 + - uid: 19573 components: - type: Transform rot: 1.5707963267948966 rad - pos: 430.5,408.5 - parent: 1 - - uid: 17284 + pos: -34.5,-49.5 + parent: 2 + - uid: 19618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,408.5 - parent: 1 - - uid: 17285 + rot: 3.141592653589793 rad + pos: -109.5,25.5 + parent: 2 + - uid: 19622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 432.5,408.5 - parent: 1 - - uid: 17286 + pos: -104.5,5.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -110.5,27.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: -105.5,24.5 + parent: 2 + - uid: 20183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 433.5,408.5 - parent: 1 - - uid: 17287 + pos: -31.5,-48.5 + parent: 2 + - uid: 20215 components: - type: Transform rot: 1.5707963267948966 rad - pos: 434.5,408.5 - parent: 1 - - uid: 17288 + pos: -33.5,-49.5 + parent: 2 + - uid: 20999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 435.5,408.5 - parent: 1 - - uid: 17289 + pos: -65.5,-22.5 + parent: 2 + - uid: 21378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,408.5 - parent: 1 - - uid: 17290 + pos: -102.5,-24.5 + parent: 2 + - uid: 21379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,408.5 - parent: 1 - - uid: 17291 + pos: -102.5,-23.5 + parent: 2 + - uid: 21783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,408.5 - parent: 1 - - uid: 17292 + pos: -133.5,-9.5 + parent: 2 + - uid: 21784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 439.5,408.5 - parent: 1 - - uid: 17294 + pos: -133.5,-11.5 + parent: 2 + - uid: 21785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,409.5 - parent: 1 - - uid: 17298 + pos: -133.5,-12.5 + parent: 2 + - uid: 21786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 441.5,410.5 - parent: 1 - - uid: 17299 + pos: -133.5,-10.5 + parent: 2 + - uid: 21787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,410.5 - parent: 1 - - uid: 17300 + pos: -133.5,-13.5 + parent: 2 + - uid: 21788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,410.5 - parent: 1 - - uid: 17301 + pos: -133.5,-16.5 + parent: 2 + - uid: 21789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,410.5 - parent: 1 - - uid: 17302 + pos: -133.5,-17.5 + parent: 2 + - uid: 21790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,410.5 - parent: 1 - - uid: 17303 + pos: -133.5,-15.5 + parent: 2 + - uid: 21791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,411.5 - parent: 1 - - uid: 20284 + pos: -133.5,-19.5 + parent: 2 + - uid: 21792 components: - type: Transform - pos: 6.5,-1.5 - parent: 20181 - - uid: 20285 + pos: -133.5,-20.5 + parent: 2 + - uid: 21793 components: - type: Transform - pos: 6.5,0.5 - parent: 20181 - - uid: 20286 + pos: -133.5,-21.5 + parent: 2 + - uid: 21794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,1.5 - parent: 20181 - - uid: 20287 + pos: -133.5,-22.5 + parent: 2 + - uid: 21795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 20181 - - uid: 20288 + pos: -133.5,-18.5 + parent: 2 + - uid: 21796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 20181 - - uid: 20289 + pos: -133.5,-24.5 + parent: 2 + - uid: 21797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 20181 - - uid: 20290 + pos: -133.5,-23.5 + parent: 2 + - uid: 21798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 20181 - - uid: 20291 + pos: -133.5,-14.5 + parent: 2 + - uid: 21799 components: - type: Transform - pos: 6.5,-0.5 - parent: 20181 - - uid: 20292 + pos: -133.5,-25.5 + parent: 2 + - uid: 21800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 20181 - - uid: 20293 + pos: -133.5,-26.5 + parent: 2 + - uid: 21801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 20181 - - uid: 20635 + pos: -133.5,4.5 + parent: 2 + - uid: 21802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 20527 - - uid: 20636 + pos: -133.5,-2.5 + parent: 2 + - uid: 21804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 20527 - - uid: 20815 + pos: -133.5,-5.5 + parent: 2 + - uid: 21805 components: - type: Transform - pos: 423.5,360.5 - parent: 1 - - uid: 21301 + pos: -133.5,-6.5 + parent: 2 + - uid: 21806 components: - type: Transform - pos: 3.5,22.5 - parent: 5072 - - uid: 21315 + pos: -133.5,-7.5 + parent: 2 + - uid: 21807 components: - type: Transform - pos: 3.5,23.5 - parent: 5072 - - uid: 21327 + pos: -133.5,-8.5 + parent: 2 + - uid: 21808 components: - type: Transform - pos: 3.5,24.5 - parent: 5072 - - uid: 21343 + pos: -133.5,0.5 + parent: 2 + - uid: 21809 components: - type: Transform - pos: 3.5,25.5 - parent: 5072 - - uid: 21350 + pos: -133.5,-4.5 + parent: 2 + - uid: 21810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,28.5 - parent: 5072 - - uid: 21362 + pos: -133.5,8.5 + parent: 2 + - uid: 21811 components: - type: Transform - pos: 3.5,26.5 - parent: 5072 - - uid: 21369 + pos: -133.5,6.5 + parent: 2 + - uid: 21812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,28.5 - parent: 5072 - - uid: 21395 + pos: -133.5,5.5 + parent: 2 + - uid: 21813 components: - type: Transform - pos: 3.5,27.5 - parent: 5072 - - uid: 21398 + pos: -133.5,3.5 + parent: 2 + - uid: 21814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 - parent: 5072 - - uid: 21464 + pos: -133.5,2.5 + parent: 2 + - uid: 21815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,17.5 - parent: 5072 - - uid: 21507 + pos: -133.5,9.5 + parent: 2 + - uid: 21816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 - parent: 5072 - - uid: 21790 + pos: -133.5,1.5 + parent: 2 + - uid: 21817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,28.5 - parent: 5072 - - uid: 21797 + pos: -133.5,-0.5 + parent: 2 + - uid: 21818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,28.5 - parent: 5072 -- proto: DisposalTrunk - entities: - - uid: 591 + pos: -133.5,-1.5 + parent: 2 + - uid: 21819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,359.5 - parent: 1 - - uid: 672 + pos: -133.5,16.5 + parent: 2 + - uid: 21820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,351.5 - parent: 1 - - uid: 1554 + pos: -133.5,14.5 + parent: 2 + - uid: 21821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,359.5 - parent: 1 - - uid: 2134 + pos: -133.5,15.5 + parent: 2 + - uid: 21822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,404.5 - parent: 1 - - uid: 2135 + pos: -133.5,13.5 + parent: 2 + - uid: 21823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,395.5 - parent: 1 - - uid: 3860 + pos: -133.5,11.5 + parent: 2 + - uid: 21824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,359.5 - parent: 1 - - uid: 4827 + pos: -133.5,10.5 + parent: 2 + - uid: 21825 components: - type: Transform - pos: 392.5,399.5 - parent: 1 - - uid: 5400 + pos: -133.5,12.5 + parent: 2 + - uid: 21826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,354.5 - parent: 1 - - uid: 5421 + pos: -133.5,7.5 + parent: 2 + - uid: 21828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,380.5 - parent: 1 - - uid: 15893 + rot: 1.5707963267948966 rad + pos: -110.5,-27.5 + parent: 2 + - uid: 21829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,375.5 - parent: 1 - - uid: 16489 + rot: 1.5707963267948966 rad + pos: -132.5,-27.5 + parent: 2 + - uid: 21830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,401.5 - parent: 1 - - uid: 16496 + rot: 1.5707963267948966 rad + pos: -131.5,-27.5 + parent: 2 + - uid: 21831 components: - type: Transform - pos: 374.5,397.5 - parent: 1 - - uid: 16499 + rot: 1.5707963267948966 rad + pos: -129.5,-27.5 + parent: 2 + - uid: 21832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,374.5 - parent: 1 - - uid: 16614 + rot: 1.5707963267948966 rad + pos: -128.5,-27.5 + parent: 2 + - uid: 21833 components: - type: Transform - pos: 371.5,418.5 - parent: 1 - - uid: 16629 + rot: 1.5707963267948966 rad + pos: -127.5,-27.5 + parent: 2 + - uid: 21834 components: - type: Transform - pos: 387.5,418.5 - parent: 1 - - uid: 16647 + rot: 1.5707963267948966 rad + pos: -130.5,-27.5 + parent: 2 + - uid: 21835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 384.5,411.5 - parent: 1 - - uid: 16648 + pos: -126.5,-27.5 + parent: 2 + - uid: 21836 components: - type: Transform rot: 1.5707963267948966 rad - pos: 384.5,414.5 - parent: 1 - - uid: 16649 + pos: -125.5,-27.5 + parent: 2 + - uid: 21837 components: - type: Transform rot: 1.5707963267948966 rad - pos: 384.5,407.5 - parent: 1 - - uid: 16650 + pos: -114.5,-27.5 + parent: 2 + - uid: 21838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,413.5 - parent: 1 - - uid: 16657 + rot: 1.5707963267948966 rad + pos: -122.5,-27.5 + parent: 2 + - uid: 21839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,414.5 - parent: 1 - - uid: 16658 + rot: 1.5707963267948966 rad + pos: -112.5,-27.5 + parent: 2 + - uid: 21840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,411.5 - parent: 1 - - uid: 16659 + rot: 1.5707963267948966 rad + pos: -109.5,-27.5 + parent: 2 + - uid: 21841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,407.5 - parent: 1 - - uid: 16679 + rot: 1.5707963267948966 rad + pos: -111.5,-27.5 + parent: 2 + - uid: 21842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,409.5 - parent: 1 - - uid: 16691 + rot: 1.5707963267948966 rad + pos: -108.5,-27.5 + parent: 2 + - uid: 21843 components: - type: Transform rot: 1.5707963267948966 rad - pos: 357.5,420.5 - parent: 1 - - uid: 16693 + pos: -107.5,-27.5 + parent: 2 + - uid: 21844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,419.5 - parent: 1 - - uid: 16715 + rot: 1.5707963267948966 rad + pos: -106.5,-27.5 + parent: 2 + - uid: 21845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,410.5 - parent: 1 - - uid: 16718 + rot: 1.5707963267948966 rad + pos: -113.5,-27.5 + parent: 2 + - uid: 21846 components: - type: Transform - pos: 348.5,412.5 - parent: 1 - - uid: 16722 + rot: 1.5707963267948966 rad + pos: -124.5,-27.5 + parent: 2 + - uid: 21847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,406.5 - parent: 1 - - uid: 16730 + rot: 1.5707963267948966 rad + pos: -123.5,-27.5 + parent: 2 + - uid: 21848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,410.5 - parent: 1 - - uid: 16738 + rot: 1.5707963267948966 rad + pos: -121.5,-27.5 + parent: 2 + - uid: 21849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 328.5,418.5 - parent: 1 - - uid: 16770 + pos: -120.5,-27.5 + parent: 2 + - uid: 21850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,419.5 - parent: 1 - - uid: 16774 + rot: 1.5707963267948966 rad + pos: -119.5,-27.5 + parent: 2 + - uid: 21851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,420.5 - parent: 1 - - uid: 16820 + rot: 1.5707963267948966 rad + pos: -118.5,-27.5 + parent: 2 + - uid: 21852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,400.5 - parent: 1 - - uid: 16841 + rot: 1.5707963267948966 rad + pos: -117.5,-27.5 + parent: 2 + - uid: 21853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,395.5 - parent: 1 - - uid: 16855 + rot: 1.5707963267948966 rad + pos: -116.5,-27.5 + parent: 2 + - uid: 21854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,383.5 - parent: 1 - - uid: 16867 + rot: 1.5707963267948966 rad + pos: -115.5,-27.5 + parent: 2 + - uid: 21855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,392.5 - parent: 1 - - uid: 16868 + rot: 1.5707963267948966 rad + pos: -105.5,-27.5 + parent: 2 + - uid: 21856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,391.5 - parent: 1 - - uid: 16881 + rot: 1.5707963267948966 rad + pos: -104.5,-27.5 + parent: 2 + - uid: 21871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,393.5 - parent: 1 - - uid: 16893 + rot: 1.5707963267948966 rad + pos: -37.5,-49.5 + parent: 2 + - uid: 21893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,388.5 - parent: 1 - - uid: 16898 + pos: -15.5,-38.5 + parent: 2 + - uid: 21894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,386.5 - parent: 1 - - uid: 16913 + pos: -15.5,-50.5 + parent: 2 + - uid: 21895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,395.5 - parent: 1 - - uid: 16973 + pos: -15.5,-52.5 + parent: 2 + - uid: 21896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,393.5 - parent: 1 - - uid: 16991 + pos: -15.5,-51.5 + parent: 2 + - uid: 21897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,376.5 - parent: 1 - - uid: 17009 + pos: -15.5,0.5 + parent: 2 + - uid: 21898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,372.5 - parent: 1 - - uid: 17020 + pos: -15.5,-0.5 + parent: 2 + - uid: 21899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,363.5 - parent: 1 - - uid: 17030 + pos: -15.5,-2.5 + parent: 2 + - uid: 21900 components: - type: Transform - pos: 423.5,363.5 - parent: 1 - - uid: 17071 + pos: -15.5,-3.5 + parent: 2 + - uid: 21901 components: - type: Transform - pos: 414.5,393.5 - parent: 1 - - uid: 17074 + pos: -15.5,-4.5 + parent: 2 + - uid: 21902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,391.5 - parent: 1 - - uid: 17079 + pos: -15.5,-5.5 + parent: 2 + - uid: 21903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,391.5 - parent: 1 - - uid: 17133 + pos: -15.5,-6.5 + parent: 2 + - uid: 21904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,411.5 - parent: 1 - - uid: 17157 + pos: -15.5,-7.5 + parent: 2 + - uid: 21905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,411.5 - parent: 1 - - uid: 17158 + pos: -15.5,-1.5 + parent: 2 + - uid: 21906 components: - type: Transform - pos: 406.5,418.5 - parent: 1 - - uid: 17159 + pos: -15.5,-9.5 + parent: 2 + - uid: 21907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,420.5 - parent: 1 - - uid: 17160 + pos: -15.5,-10.5 + parent: 2 + - uid: 21908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,416.5 - parent: 1 - - uid: 17182 + pos: -15.5,-11.5 + parent: 2 + - uid: 21909 components: - type: Transform - pos: 411.5,411.5 - parent: 1 - - uid: 17188 + pos: -15.5,-12.5 + parent: 2 + - uid: 21910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,372.5 - parent: 1 - - uid: 17192 + pos: -15.5,-13.5 + parent: 2 + - uid: 21911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,399.5 - parent: 1 - - uid: 17197 + pos: -15.5,-14.5 + parent: 2 + - uid: 21912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,393.5 - parent: 1 - - uid: 17208 + pos: -15.5,-15.5 + parent: 2 + - uid: 21913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,399.5 - parent: 1 - - uid: 17218 + pos: -15.5,-16.5 + parent: 2 + - uid: 21914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,391.5 - parent: 1 - - uid: 17270 + pos: -15.5,-47.5 + parent: 2 + - uid: 21915 components: - type: Transform - pos: 418.5,411.5 - parent: 1 - - uid: 17271 + pos: -15.5,-46.5 + parent: 2 + - uid: 21916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,407.5 - parent: 1 - - uid: 17304 + pos: -15.5,-48.5 + parent: 2 + - uid: 21917 components: - type: Transform - pos: 446.5,412.5 - parent: 1 - - uid: 20294 + pos: -15.5,-45.5 + parent: 2 + - uid: 21918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 20181 - - uid: 20637 + pos: -15.5,-49.5 + parent: 2 + - uid: 21919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 - parent: 20527 - - uid: 21583 + pos: -15.5,-32.5 + parent: 2 + - uid: 21920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 5072 - - uid: 21775 + pos: -15.5,-55.5 + parent: 2 + - uid: 21921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,28.5 - parent: 5072 -- proto: DisposalUnit - entities: - - uid: 741 + pos: -15.5,-54.5 + parent: 2 + - uid: 21922 components: - type: Transform - pos: 425.5,351.5 - parent: 1 - - uid: 759 + pos: -15.5,-53.5 + parent: 2 + - uid: 21923 components: - type: Transform - pos: 359.5,395.5 - parent: 1 - - uid: 1181 + pos: -15.5,-26.5 + parent: 2 + - uid: 21924 components: - type: Transform - pos: 396.5,374.5 - parent: 1 - - uid: 1216 + pos: -15.5,-29.5 + parent: 2 + - uid: 21925 components: - type: Transform - pos: 397.5,420.5 - parent: 1 - - uid: 2278 + pos: -15.5,-19.5 + parent: 2 + - uid: 21926 components: - type: Transform - pos: 415.5,354.5 - parent: 1 - - uid: 2364 + pos: -15.5,-28.5 + parent: 2 + - uid: 21927 components: - type: Transform - pos: 412.5,380.5 - parent: 1 - - uid: 2815 + pos: -15.5,-31.5 + parent: 2 + - uid: 21928 components: - type: Transform - pos: 418.5,411.5 - parent: 1 - - uid: 3627 + pos: -15.5,-25.5 + parent: 2 + - uid: 21929 components: - type: Transform - pos: 374.5,397.5 - parent: 1 - - uid: 3635 + pos: -15.5,-33.5 + parent: 2 + - uid: 21930 components: - type: Transform - pos: 420.5,395.5 - parent: 1 - - uid: 3722 + pos: -15.5,-34.5 + parent: 2 + - uid: 21931 components: - type: Transform - pos: 428.5,375.5 - parent: 1 - - uid: 3979 + pos: -15.5,-36.5 + parent: 2 + - uid: 21932 components: - type: Transform - pos: 413.5,404.5 - parent: 1 - - uid: 4064 + pos: -15.5,-17.5 + parent: 2 + - uid: 21933 components: - type: Transform - pos: 368.5,409.5 - parent: 1 - - uid: 4895 + pos: -15.5,-18.5 + parent: 2 + - uid: 21934 components: - type: Transform - pos: 392.5,401.5 - parent: 1 - - uid: 4908 + pos: -15.5,-8.5 + parent: 2 + - uid: 21935 components: - type: Transform - pos: 414.5,393.5 - parent: 1 - - uid: 4944 + pos: -15.5,-20.5 + parent: 2 + - uid: 21936 components: - type: Transform - pos: 409.5,391.5 - parent: 1 - - uid: 4963 + pos: -15.5,-22.5 + parent: 2 + - uid: 21937 components: - type: Transform - pos: 382.5,413.5 - parent: 1 - - uid: 5320 + pos: -15.5,-23.5 + parent: 2 + - uid: 21938 components: - type: Transform - pos: 405.5,411.5 - parent: 1 - - uid: 5416 + pos: -15.5,-21.5 + parent: 2 + - uid: 21939 components: - type: Transform - pos: 406.5,418.5 - parent: 1 - - uid: 5451 + pos: -15.5,-24.5 + parent: 2 + - uid: 21940 components: - type: Transform - pos: 413.5,416.5 - parent: 1 - - uid: 5569 + pos: -15.5,-27.5 + parent: 2 + - uid: 21941 components: - type: Transform - pos: 364.5,395.5 - parent: 1 - - uid: 5606 + pos: -15.5,-44.5 + parent: 2 + - uid: 21942 components: - type: Transform - pos: 368.5,386.5 - parent: 1 - - uid: 5615 + pos: -15.5,-42.5 + parent: 2 + - uid: 21943 components: - type: Transform - pos: 363.5,388.5 - parent: 1 - - uid: 5861 + pos: -15.5,-43.5 + parent: 2 + - uid: 21944 components: - type: Transform - pos: 314.5,382.5 - parent: 1 - - uid: 5911 + pos: -15.5,-41.5 + parent: 2 + - uid: 21945 components: - type: Transform - pos: 414.5,363.5 - parent: 1 - - uid: 6128 + pos: -15.5,-40.5 + parent: 2 + - uid: 21946 components: - type: Transform - pos: 422.5,407.5 - parent: 1 - - uid: 6252 + pos: -15.5,-39.5 + parent: 2 + - uid: 21947 components: - type: Transform - pos: 392.5,399.5 - parent: 1 - - uid: 7430 + pos: -15.5,-37.5 + parent: 2 + - uid: 21948 components: - type: Transform - pos: 348.5,391.5 - parent: 1 - - uid: 7508 + pos: -15.5,-35.5 + parent: 2 + - uid: 21949 components: - type: Transform - pos: 356.5,383.5 - parent: 1 - - uid: 8481 + pos: -15.5,-30.5 + parent: 2 + - uid: 21958 components: - type: Transform - pos: 342.5,392.5 - parent: 1 - - uid: 9091 + rot: -1.5707963267948966 rad + pos: -31.5,-59.5 + parent: 2 + - uid: 21959 components: - type: Transform - pos: 363.5,393.5 - parent: 1 - - uid: 16607 + rot: -1.5707963267948966 rad + pos: -38.5,-59.5 + parent: 2 + - uid: 21960 components: - type: Transform - pos: 374.5,407.5 - parent: 1 - - uid: 16608 + rot: -1.5707963267948966 rad + pos: -39.5,-59.5 + parent: 2 + - uid: 21961 components: - type: Transform - pos: 384.5,407.5 - parent: 1 - - uid: 16609 + rot: -1.5707963267948966 rad + pos: -41.5,-59.5 + parent: 2 + - uid: 21962 components: - type: Transform - pos: 384.5,411.5 - parent: 1 - - uid: 16610 + rot: -1.5707963267948966 rad + pos: -40.5,-59.5 + parent: 2 + - uid: 21963 components: - type: Transform - pos: 374.5,411.5 - parent: 1 - - uid: 16611 + rot: -1.5707963267948966 rad + pos: -20.5,-59.5 + parent: 2 + - uid: 21964 components: - type: Transform - pos: 371.5,418.5 - parent: 1 - - uid: 16612 + rot: -1.5707963267948966 rad + pos: -21.5,-59.5 + parent: 2 + - uid: 21965 components: - type: Transform - pos: 387.5,418.5 - parent: 1 - - uid: 16632 + rot: -1.5707963267948966 rad + pos: -23.5,-59.5 + parent: 2 + - uid: 21966 components: - type: Transform - pos: 384.5,414.5 - parent: 1 - - uid: 16633 + rot: -1.5707963267948966 rad + pos: -24.5,-59.5 + parent: 2 + - uid: 21967 components: - type: Transform - pos: 374.5,414.5 - parent: 1 - - uid: 16683 + rot: -1.5707963267948966 rad + pos: -25.5,-59.5 + parent: 2 + - uid: 21968 components: - type: Transform - pos: 330.5,410.5 - parent: 1 - - uid: 16684 + rot: -1.5707963267948966 rad + pos: -26.5,-59.5 + parent: 2 + - uid: 21969 components: - type: Transform - pos: 328.5,418.5 - parent: 1 - - uid: 16685 + rot: -1.5707963267948966 rad + pos: -27.5,-59.5 + parent: 2 + - uid: 21970 components: - type: Transform - pos: 324.5,420.5 - parent: 1 - - uid: 16686 + rot: -1.5707963267948966 rad + pos: -28.5,-59.5 + parent: 2 + - uid: 21971 components: - type: Transform - pos: 349.5,419.5 - parent: 1 - - uid: 16687 + rot: -1.5707963267948966 rad + pos: -22.5,-59.5 + parent: 2 + - uid: 21972 components: - type: Transform - pos: 348.5,412.5 - parent: 1 - - uid: 16688 + rot: -1.5707963267948966 rad + pos: -29.5,-59.5 + parent: 2 + - uid: 21973 components: - type: Transform - pos: 340.5,406.5 - parent: 1 - - uid: 16689 + rot: -1.5707963267948966 rad + pos: -32.5,-59.5 + parent: 2 + - uid: 21974 components: - type: Transform - pos: 335.5,410.5 - parent: 1 - - uid: 16690 + rot: -1.5707963267948966 rad + pos: -33.5,-59.5 + parent: 2 + - uid: 21975 components: - type: Transform - pos: 357.5,420.5 - parent: 1 - - uid: 16695 + rot: -1.5707963267948966 rad + pos: -34.5,-59.5 + parent: 2 + - uid: 21976 components: - type: Transform - pos: 332.5,400.5 - parent: 1 - - uid: 16823 + rot: -1.5707963267948966 rad + pos: -30.5,-59.5 + parent: 2 + - uid: 21977 components: - type: Transform - pos: 337.5,401.5 - parent: 1 - - uid: 16908 + rot: -1.5707963267948966 rad + pos: -35.5,-59.5 + parent: 2 + - uid: 21978 components: - type: Transform - pos: 403.5,376.5 - parent: 1 - - uid: 16909 + rot: -1.5707963267948966 rad + pos: -36.5,-59.5 + parent: 2 + - uid: 21979 components: - type: Transform - pos: 407.5,372.5 - parent: 1 - - uid: 16910 + rot: -1.5707963267948966 rad + pos: -37.5,-59.5 + parent: 2 + - uid: 21980 components: - type: Transform - pos: 414.5,372.5 - parent: 1 - - uid: 16911 + rot: 3.141592653589793 rad + pos: -55.5,-57.5 + parent: 2 + - uid: 21981 components: - type: Transform - pos: 423.5,363.5 - parent: 1 - - uid: 16972 + rot: 3.141592653589793 rad + pos: -55.5,-59.5 + parent: 2 + - uid: 21982 components: - type: Transform - pos: 405.5,393.5 - parent: 1 - - uid: 17067 + rot: 3.141592653589793 rad + pos: -55.5,-60.5 + parent: 2 + - uid: 21983 components: - type: Transform - pos: 411.5,391.5 - parent: 1 - - uid: 17170 + rot: 3.141592653589793 rad + pos: -55.5,-61.5 + parent: 2 + - uid: 21984 components: - type: Transform - pos: 411.5,411.5 - parent: 1 - - uid: 17186 + rot: 3.141592653589793 rad + pos: -55.5,-62.5 + parent: 2 + - uid: 21985 components: - type: Transform - pos: 418.5,399.5 - parent: 1 - - uid: 17187 + rot: 3.141592653589793 rad + pos: -55.5,-58.5 + parent: 2 + - uid: 21987 components: - type: Transform - pos: 424.5,399.5 - parent: 1 - - uid: 17189 + rot: 1.5707963267948966 rad + pos: -54.5,-63.5 + parent: 2 + - uid: 21988 components: - type: Transform - pos: 428.5,391.5 - parent: 1 - - uid: 17295 + rot: 1.5707963267948966 rad + pos: -53.5,-63.5 + parent: 2 + - uid: 21989 components: - type: Transform - pos: 446.5,412.5 - parent: 1 - - uid: 17305 + rot: 1.5707963267948966 rad + pos: -51.5,-63.5 + parent: 2 + - uid: 21990 components: - type: Transform - pos: 418.5,393.5 - parent: 1 - - uid: 20295 + rot: 1.5707963267948966 rad + pos: -50.5,-63.5 + parent: 2 + - uid: 21991 components: - type: Transform - pos: 7.5,-2.5 - parent: 20181 - - uid: 20638 + rot: 1.5707963267948966 rad + pos: -49.5,-63.5 + parent: 2 + - uid: 21992 components: - type: Transform - pos: 0.5,5.5 - parent: 20527 - - uid: 21582 + rot: 1.5707963267948966 rad + pos: -48.5,-63.5 + parent: 2 + - uid: 21993 components: - type: Transform - pos: 8.5,16.5 - parent: 5072 - - uid: 21774 + rot: 1.5707963267948966 rad + pos: -47.5,-63.5 + parent: 2 + - uid: 21994 components: - type: Transform - pos: -2.5,28.5 - parent: 5072 -- proto: DisposalYJunction - entities: - - uid: 3515 + rot: 1.5707963267948966 rad + pos: -46.5,-63.5 + parent: 2 + - uid: 21995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,416.5 - parent: 1 - - uid: 3864 + rot: 1.5707963267948966 rad + pos: -52.5,-63.5 + parent: 2 + - uid: 21996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,362.5 - parent: 1 - - uid: 16681 + rot: 1.5707963267948966 rad + pos: -43.5,-63.5 + parent: 2 + - uid: 21997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,403.5 - parent: 1 - - uid: 16880 + rot: 1.5707963267948966 rad + pos: -44.5,-63.5 + parent: 2 + - uid: 21998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,393.5 - parent: 1 - - uid: 16942 + rot: 1.5707963267948966 rad + pos: -45.5,-63.5 + parent: 2 + - uid: 21999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,396.5 - parent: 1 - - uid: 17069 + pos: -42.5,-62.5 + parent: 2 + - uid: 22000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,392.5 - parent: 1 - - uid: 17164 + pos: -42.5,-61.5 + parent: 2 + - uid: 22001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,416.5 - parent: 1 - - uid: 17185 + pos: -42.5,-60.5 + parent: 2 + - uid: 22238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,396.5 - parent: 1 - - uid: 17198 + pos: -102.5,-26.5 + parent: 2 + - uid: 22324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,393.5 - parent: 1 - - uid: 17273 + pos: -102.5,-25.5 + parent: 2 + - uid: 22802 components: - type: Transform - pos: 423.5,410.5 - parent: 1 -- proto: DogBed - entities: - - uid: 5560 + pos: -75.5,-50.5 + parent: 2 + - uid: 22804 components: - type: Transform - pos: 368.5,398.5 - parent: 1 - - uid: 5947 + pos: -75.5,-49.5 + parent: 2 + - uid: 23244 components: - type: Transform - pos: 424.5,357.5 - parent: 1 - - uid: 6129 + rot: 1.5707963267948966 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 23318 components: - type: Transform - pos: 420.5,411.5 - parent: 1 - - uid: 6251 + rot: 3.141592653589793 rad + pos: -109.5,24.5 + parent: 2 + - uid: 23511 components: - type: Transform - pos: 346.5,415.5 - parent: 1 - - uid: 21515 + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - uid: 23612 components: - type: Transform - pos: 10.5,20.5 - parent: 5072 - - uid: 21536 + pos: -102.5,25.5 + parent: 2 + - uid: 23942 components: - type: Transform - pos: 8.5,26.5 - parent: 5072 - - uid: 22166 + rot: 3.141592653589793 rad + pos: -103.5,-25.5 + parent: 2 + - uid: 24162 components: - type: Transform - pos: 363.5,411.5 - parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 7571 + rot: 3.141592653589793 rad + pos: -103.5,-24.5 + parent: 2 + - uid: 24163 components: - type: Transform - pos: 356.5,397.5 - parent: 1 -- proto: DoubleEmergencyOxygenTank - entities: - - uid: 18666 + rot: 3.141592653589793 rad + pos: -103.5,-23.5 + parent: 2 + - uid: 24164 components: - type: Transform - pos: 322.5,432.5 - parent: 1 -- proto: DoubleEmergencyOxygenTankFilled - entities: - - uid: 7405 + rot: 3.141592653589793 rad + pos: -103.5,-22.5 + parent: 2 + - uid: 25461 components: - type: Transform - pos: 326.5,416.5 - parent: 1 -- proto: Dresser - entities: - - uid: 5758 + rot: 1.5707963267948966 rad + pos: -71.5,-25.5 + parent: 2 + - uid: 25462 components: - type: Transform - pos: 369.5,414.5 - parent: 1 -- proto: DresserCaptainFilled - entities: - - uid: 5759 + rot: 1.5707963267948966 rad + pos: -72.5,-25.5 + parent: 2 + - uid: 25863 components: - type: Transform - pos: 365.5,411.5 - parent: 1 - - uid: 21524 + pos: -75.5,-44.5 + parent: 2 + - uid: 25869 components: - type: Transform - pos: 11.5,23.5 - parent: 5072 -- proto: DresserChiefEngineerFilled - entities: - - uid: 6246 + pos: -75.5,-51.5 + parent: 2 + - uid: 25889 components: - type: Transform - pos: 346.5,414.5 - parent: 1 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 5482 + pos: -75.5,-45.5 + parent: 2 + - uid: 25890 components: - type: Transform - pos: 393.5,416.5 - parent: 1 - - type: Storage - storedItems: - 5332: - position: 0,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 5332 -- proto: DresserFilled - entities: - - uid: 5156 + pos: -75.5,-46.5 + parent: 2 + - uid: 25891 components: - type: Transform - pos: 416.5,407.5 - parent: 1 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 1317 + pos: -75.5,-47.5 + parent: 2 + - uid: 25892 components: - type: Transform - pos: 371.5,391.5 - parent: 1 - - uid: 21546 + pos: -75.5,-48.5 + parent: 2 + - uid: 25893 components: - type: Transform - pos: 7.5,16.5 - parent: 5072 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 5122 + pos: -76.5,-51.5 + parent: 2 + - uid: 25894 components: - type: Transform - pos: 422.5,389.5 - parent: 1 -- proto: DresserQuarterMasterFilled - entities: - - uid: 5656 + pos: -76.5,-50.5 + parent: 2 + - uid: 25895 components: - type: Transform - pos: 352.5,381.5 - parent: 1 -- proto: DresserResearchDirectorFilled - entities: - - uid: 7490 + pos: -76.5,-49.5 + parent: 2 + - uid: 25896 components: - type: Transform - pos: 350.5,385.5 - parent: 1 -- proto: DresserWardenFilled - entities: - - uid: 5098 + pos: -76.5,-47.5 + parent: 2 + - uid: 25897 components: - type: Transform - pos: 424.5,409.5 - parent: 1 -- proto: DrinkBottleCognac - entities: - - uid: 6158 + pos: -76.5,-46.5 + parent: 2 + - uid: 25898 components: - type: Transform - pos: 420.5,388.5 - parent: 1 - - uid: 20909 + pos: -76.5,-45.5 + parent: 2 + - uid: 25899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,406.5 - parent: 1 - - uid: 20910 + pos: -76.5,-44.5 + parent: 2 + - uid: 25900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,411.5 - parent: 1 - - uid: 20911 + pos: -76.5,-48.5 + parent: 2 + - uid: 25901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,409.5 - parent: 1 - - uid: 20912 + pos: -76.5,-41.5 + parent: 2 + - uid: 25902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,408.5 - parent: 1 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 6089 + pos: -76.5,-43.5 + parent: 2 + - uid: 25903 components: - type: Transform - pos: 395.5,409.5 - parent: 1 -- proto: DrinkCognacBottleFull - entities: - - uid: 20908 + pos: -76.5,-40.5 + parent: 2 + - uid: 25904 components: - type: Transform - pos: 411.5,409.5 - parent: 1 -- proto: DrinkDriestMartiniGlass + pos: -76.5,-42.5 + parent: 2 +- proto: DisposalPipeBroken entities: - - uid: 6108 + - uid: 1175 components: - type: Transform - pos: 421.5,396.5 - parent: 1 -- proto: DrinkFlask + pos: -43.5,-68.5 + parent: 2 +- proto: DisposalRouter entities: - - uid: 5773 + - uid: 14444 components: - type: Transform - pos: 367.5,413.5 - parent: 1 -- proto: DrinkGoldenCup - entities: - - uid: 4295 + rot: 3.141592653589793 rad + pos: -43.5,-15.5 + parent: 2 + - type: DisposalRouter + tags: + - Kitchen + - Botany + - Chemistry + - Medical + - uid: 21381 components: - type: Transform - pos: 326.5,398.5 - parent: 1 -- proto: DrinkHotCoffee + rot: 1.5707963267948966 rad + pos: -103.5,-27.5 + parent: 2 + - type: DisposalRouter + tags: + - Science +- proto: DisposalRouterFlipped entities: - - uid: 20826 + - uid: 7751 components: - type: Transform - pos: 411.5,419.5 - parent: 1 - - uid: 20832 + rot: 3.141592653589793 rad + pos: -104.5,-11.5 + parent: 2 + - type: DisposalRouter + tags: + - Engineering + - uid: 14206 components: - type: Transform - pos: 409.5,415.5 - parent: 1 - - uid: 21025 + rot: -1.5707963267948966 rad + pos: -102.5,-15.5 + parent: 2 + - type: DisposalRouter + tags: + - Science + - uid: 14272 components: - type: Transform - pos: 509.5,390.5 - parent: 1 - - uid: 21086 + rot: 1.5707963267948966 rad + pos: -101.5,-9.5 + parent: 2 + - type: DisposalRouter + tags: + - Cargo + - uid: 14320 components: - type: Transform - pos: 405.404,376.6791 - parent: 1 - - uid: 21087 + rot: -1.5707963267948966 rad + pos: -75.5,-14.5 + parent: 2 + - type: DisposalRouter + tags: + - Bar + - uid: 14336 components: - type: Transform - pos: 405.41888,376.47098 - parent: 1 - - uid: 21088 + rot: -1.5707963267948966 rad + pos: -94.5,-15.5 + parent: 2 + - type: DisposalRouter + tags: + - Security + - uid: 14419 components: - type: Transform - pos: 405.77588,376.64935 - parent: 1 - - uid: 21089 + rot: 3.141592653589793 rad + pos: -43.5,-27.5 + parent: 2 + - type: DisposalRouter + tags: + - Kitchen + - uid: 14422 components: - type: Transform - pos: 405.79074,376.4115 - parent: 1 - - uid: 21969 + rot: 3.141592653589793 rad + pos: -43.5,-23.5 + parent: 2 + - type: DisposalRouter + tags: + - Botany + - uid: 14436 components: - type: Transform - pos: 308.5,416.5 - parent: 1 -- proto: DrinkMugGreen - entities: - - uid: 21084 + pos: -42.5,-27.5 + parent: 2 + - type: DisposalRouter + tags: + - Medical + - uid: 14483 components: - type: Transform - pos: 407.5,369.5 - parent: 1 -- proto: DrinkMugMetal - entities: - - uid: 4812 + pos: -42.5,-23.5 + parent: 2 + - type: DisposalRouter + tags: + - Chemistry + - uid: 14582 components: - type: Transform - pos: 364.4782,398.6071 - parent: 1 -- proto: DrinkShotGlass + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: DisposalRouter + tags: + - Nerd +- proto: DisposalTagger entities: - - uid: 5128 - components: - - type: Transform - pos: 422.84177,388.20914 - parent: 1 - - uid: 5129 + - uid: 11775 components: - type: Transform - pos: 422.70203,388.02295 - parent: 1 - - uid: 6091 + rot: 1.5707963267948966 rad + pos: -114.5,27.5 + parent: 2 + - type: DisposalTagger + tag: Nerd +- proto: DisposalTrunk + entities: + - uid: 4552 components: - type: Transform - pos: 395.82687,409.73206 - parent: 1 - - uid: 6092 + rot: 1.5707963267948966 rad + pos: -96.5,14.5 + parent: 2 + - uid: 4619 components: - type: Transform - pos: 395.78226,409.40497 - parent: 1 -- proto: DrinkVodkaBottleFull - entities: - - uid: 18603 + rot: 1.5707963267948966 rad + pos: -103.5,13.5 + parent: 2 + - uid: 5763 components: - type: Transform - pos: 353.5,432.5 - parent: 1 -- proto: DrinkWaterBottleFull - entities: - - uid: 769 + rot: 3.141592653589793 rad + pos: -112.5,-6.5 + parent: 2 + - uid: 6324 components: - type: Transform - pos: 336.47144,442.5865 - parent: 1 - - uid: 5442 + rot: -1.5707963267948966 rad + pos: -115.5,-0.5 + parent: 2 + - uid: 6357 components: - type: Transform - pos: 402.5,420.5 - parent: 1 - - uid: 6027 + pos: -112.5,-14.5 + parent: 2 + - uid: 6371 components: - type: Transform - pos: 395.5,375.5 - parent: 1 - - uid: 18604 + pos: -113.5,-20.5 + parent: 2 + - uid: 6380 components: - type: Transform - pos: 353.5,432.5 - parent: 1 - - uid: 19679 + rot: 3.141592653589793 rad + pos: -111.5,-24.5 + parent: 2 + - uid: 6381 components: - type: Transform - pos: 336.33755,442.7054 - parent: 1 - - uid: 20639 + rot: 3.141592653589793 rad + pos: -109.5,-24.5 + parent: 2 + - uid: 6410 components: - - type: MetaData - desc: Переключает гермозатворы переговорной. - type: Transform - pos: 7.5,3.5 - parent: 20527 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 5127 + pos: -141.5,-2.5 + parent: 2 + - uid: 6432 components: - type: Transform - pos: 422.5,388.5 - parent: 1 -- proto: EggBoxBroken - entities: - - uid: 21080 + pos: -147.5,1.5 + parent: 2 + - uid: 6433 components: - type: Transform - pos: 407.5,370.5 - parent: 1 -- proto: EmergencyLight - entities: - - uid: 2 + rot: 3.141592653589793 rad + pos: -143.5,-12.5 + parent: 2 + - uid: 6830 components: - type: Transform - pos: 406.5,397.5 - parent: 1 - - uid: 3908 + rot: 3.141592653589793 rad + pos: -86.5,-29.5 + parent: 2 + - uid: 6864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,395.5 - parent: 1 - - uid: 15711 + rot: -1.5707963267948966 rad + pos: -93.5,-25.5 + parent: 2 + - uid: 6916 components: - type: Transform rot: 3.141592653589793 rad - pos: 357.5,402.5 - parent: 1 - - uid: 15712 + pos: -90.5,-28.5 + parent: 2 + - uid: 7178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,402.5 - parent: 1 - - uid: 15713 + rot: 1.5707963267948966 rad + pos: -145.5,-45.5 + parent: 2 + - uid: 7340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,402.5 - parent: 1 - - uid: 15714 + rot: -1.5707963267948966 rad + pos: -118.5,-50.5 + parent: 2 + - uid: 7658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,402.5 - parent: 1 - - uid: 15715 + rot: 1.5707963267948966 rad + pos: -122.5,-40.5 + parent: 2 + - uid: 7836 components: - type: Transform rot: 3.141592653589793 rad - pos: 342.5,402.5 - parent: 1 - - uid: 15716 + pos: -136.5,-46.5 + parent: 2 + - uid: 7838 components: - type: Transform rot: 3.141592653589793 rad - pos: 332.5,402.5 - parent: 1 - - uid: 15717 + pos: -128.5,-54.5 + parent: 2 + - uid: 7869 components: - type: Transform rot: 3.141592653589793 rad - pos: 374.5,402.5 - parent: 1 - - uid: 15718 + pos: -130.5,-54.5 + parent: 2 + - uid: 8131 components: - type: Transform rot: 3.141592653589793 rad - pos: 387.5,402.5 - parent: 1 - - uid: 15719 + pos: -124.5,-48.5 + parent: 2 + - uid: 9550 components: - type: Transform - pos: 398.5,404.5 - parent: 1 - - uid: 15720 + rot: -1.5707963267948966 rad + pos: -92.5,12.5 + parent: 2 + - uid: 10667 components: - type: Transform - pos: 388.5,404.5 - parent: 1 - - uid: 15721 + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 10668 components: - type: Transform - pos: 403.5,404.5 - parent: 1 - - uid: 15722 + pos: -52.5,2.5 + parent: 2 + - uid: 10708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,403.5 - parent: 1 - - uid: 15725 + pos: -64.5,2.5 + parent: 2 + - uid: 10773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,391.5 - parent: 1 - - uid: 15726 + pos: -55.5,-18.5 + parent: 2 + - uid: 10788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,384.5 - parent: 1 - - uid: 15727 + pos: -55.5,-26.5 + parent: 2 + - uid: 10822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,379.5 - parent: 1 - - uid: 15728 + rot: 3.141592653589793 rad + pos: -67.5,-58.5 + parent: 2 + - uid: 10826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,374.5 - parent: 1 - - uid: 15729 + rot: 3.141592653589793 rad + pos: -52.5,-56.5 + parent: 2 + - uid: 10924 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,369.5 - parent: 1 - - uid: 15730 + pos: -26.5,-42.5 + parent: 2 + - uid: 10937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 408.5,370.5 - parent: 1 - - uid: 15731 + pos: -17.5,-34.5 + parent: 2 + - uid: 10948 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,370.5 - parent: 1 - - uid: 15732 + pos: -20.5,-32.5 + parent: 2 + - uid: 10961 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,367.5 - parent: 1 - - uid: 15733 + pos: -32.5,-33.5 + parent: 2 + - uid: 10975 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,367.5 - parent: 1 - - uid: 15734 + rot: 1.5707963267948966 rad + pos: -32.5,-21.5 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 10998 components: - type: Transform rot: 3.141592653589793 rad - pos: 418.5,370.5 - parent: 1 - - uid: 15735 + pos: -61.5,-10.5 + parent: 2 + - uid: 12052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,369.5 - parent: 1 - - uid: 15736 + rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 12057 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,374.5 - parent: 1 - - uid: 15737 + pos: -23.5,8.5 + parent: 2 + - uid: 12119 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 12123 components: - type: Transform rot: 3.141592653589793 rad - pos: 413.5,374.5 - parent: 1 - - uid: 15738 + pos: -26.5,-9.5 + parent: 2 + - uid: 12131 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,374.5 - parent: 1 - - uid: 15739 + pos: -21.5,-21.5 + parent: 2 + - uid: 12132 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,372.5 - parent: 1 - - uid: 15740 + pos: -23.5,-21.5 + parent: 2 + - uid: 14211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,370.5 - parent: 1 - - uid: 15741 + pos: -116.5,-40.5 + parent: 2 + - uid: 14413 components: - type: Transform - pos: 391.5,374.5 - parent: 1 - - uid: 15742 + pos: -48.5,-26.5 + parent: 2 + - uid: 14447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,371.5 - parent: 1 - - uid: 15743 + pos: -40.5,-22.5 + parent: 2 + - uid: 14504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,386.5 - parent: 1 - - uid: 15744 + rot: 1.5707963267948966 rad + pos: -88.5,-23.5 + parent: 2 + - uid: 14525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,378.5 - parent: 1 - - uid: 15745 + pos: -107.5,-14.5 + parent: 2 + - uid: 14542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,393.5 - parent: 1 - - uid: 15746 + pos: -53.5,-4.5 + parent: 2 + - uid: 14670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,399.5 - parent: 1 - - uid: 15747 + rot: 1.5707963267948966 rad + pos: -67.5,-29.5 + parent: 2 + - uid: 15014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,393.5 - parent: 1 - - uid: 15748 + pos: -94.5,-41.5 + parent: 2 + - uid: 15293 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,387.5 - parent: 1 - - uid: 15749 + pos: -36.5,-27.5 + parent: 2 + - uid: 15298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,378.5 - parent: 1 - - uid: 15750 + pos: -45.5,-21.5 + parent: 2 + - uid: 16033 components: - type: Transform rot: 3.141592653589793 rad - pos: 368.5,380.5 - parent: 1 - - uid: 15751 + pos: -100.5,-47.5 + parent: 2 + - uid: 16575 components: - type: Transform rot: -1.5707963267948966 rad - pos: 367.5,385.5 - parent: 1 - - uid: 15752 + pos: -40.5,-69.5 + parent: 2 + - uid: 19731 components: - type: Transform - pos: 363.5,386.5 - parent: 1 - - uid: 15753 + rot: 3.141592653589793 rad + pos: -102.5,24.5 + parent: 2 + - uid: 19882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,387.5 - parent: 1 - - uid: 15754 + pos: -66.5,-22.5 + parent: 2 + - uid: 20030 components: - type: Transform - pos: 371.5,389.5 - parent: 1 - - uid: 15755 + pos: -39.5,-48.5 + parent: 2 + - uid: 20356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,390.5 - parent: 1 - - uid: 15756 + pos: -136.5,-38.5 + parent: 2 + - uid: 21090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,380.5 - parent: 1 - - uid: 15757 + pos: -69.5,-24.5 + parent: 2 + - uid: 21385 components: - type: Transform rot: 3.141592653589793 rad - pos: 356.5,379.5 - parent: 1 - - uid: 15758 + pos: -32.5,-50.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,380.5 - parent: 1 - - uid: 15759 + pos: -113.5,-20.5 + parent: 2 + - uid: 2208 components: - type: Transform - pos: 351.5,385.5 - parent: 1 - - uid: 15760 + pos: -112.5,-6.5 + parent: 2 + - uid: 2643 components: - type: Transform - pos: 354.5,385.5 - parent: 1 - - uid: 15761 + pos: -17.5,-34.5 + parent: 2 + - uid: 2870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,387.5 - parent: 1 - - uid: 15762 + pos: -52.5,2.5 + parent: 2 + - uid: 3783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,387.5 - parent: 1 - - uid: 15763 + pos: -67.5,-58.5 + parent: 2 + - uid: 3942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,389.5 - parent: 1 - - uid: 15764 + pos: -36.5,-22.5 + parent: 2 + - uid: 4359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,392.5 - parent: 1 - - uid: 15765 + pos: -96.5,14.5 + parent: 2 + - uid: 5764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,397.5 - parent: 1 - - uid: 15766 + pos: -143.5,-12.5 + parent: 2 + - uid: 5766 components: - type: Transform - pos: 348.5,400.5 - parent: 1 - - uid: 15767 + pos: -141.5,-2.5 + parent: 2 + - uid: 6321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,399.5 - parent: 1 - - uid: 15768 + pos: -115.5,-0.5 + parent: 2 + - uid: 6580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,397.5 - parent: 1 - - uid: 15769 + pos: -55.5,-18.5 + parent: 2 + - uid: 6602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,398.5 - parent: 1 - - uid: 15770 + pos: -26.5,-42.5 + parent: 2 + - uid: 6689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,409.5 - parent: 1 - - uid: 15771 + pos: -55.5,-26.5 + parent: 2 + - uid: 7074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,409.5 - parent: 1 - - uid: 15772 + pos: -145.5,-45.5 + parent: 2 + - uid: 7629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,413.5 - parent: 1 - - uid: 15773 + pos: -122.5,-40.5 + parent: 2 + - uid: 7631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,411.5 - parent: 1 - - uid: 15774 + pos: -136.5,-46.5 + parent: 2 + - uid: 7632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,410.5 - parent: 1 - - uid: 15775 + pos: -124.5,-48.5 + parent: 2 + - uid: 7930 components: - type: Transform - pos: 329.5,411.5 - parent: 1 - - uid: 15776 + pos: -118.5,-50.5 + parent: 2 + - uid: 9057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,410.5 - parent: 1 - - uid: 15777 + pos: -102.5,24.5 + parent: 2 + - uid: 9224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,414.5 - parent: 1 - - uid: 15778 + pos: -26.5,-9.5 + parent: 2 + - uid: 9505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,416.5 - parent: 1 - - uid: 15779 + pos: -92.5,12.5 + parent: 2 + - uid: 9543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,416.5 - parent: 1 - - uid: 15780 + pos: -100.5,-47.5 + parent: 2 + - uid: 9618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,414.5 - parent: 1 - - uid: 15781 + pos: -86.5,-29.5 + parent: 2 + - uid: 10095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,414.5 - parent: 1 - - uid: 15782 + pos: -111.5,-14.5 + parent: 2 + - uid: 10650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,418.5 - parent: 1 - - uid: 15783 + pos: -64.5,-7.5 + parent: 2 + - uid: 10651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,420.5 - parent: 1 - - uid: 15784 + pos: -64.5,2.5 + parent: 2 + - uid: 10825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,420.5 - parent: 1 - - uid: 15785 + pos: -52.5,-56.5 + parent: 2 + - uid: 10907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,416.5 - parent: 1 - - uid: 15786 + pos: -32.5,-33.5 + parent: 2 + - uid: 10909 components: - type: Transform - pos: 321.5,426.5 - parent: 1 - - uid: 15787 + pos: -20.5,-32.5 + parent: 2 + - uid: 10911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,406.5 - parent: 1 - - uid: 15788 + pos: -32.5,-50.5 + parent: 2 + - uid: 12037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,414.5 - parent: 1 - - uid: 15789 + pos: -23.5,8.5 + parent: 2 + - uid: 12040 components: - type: Transform - pos: 371.5,411.5 - parent: 1 - - uid: 15790 + pos: -21.5,16.5 + parent: 2 + - uid: 12100 components: - type: Transform - pos: 371.5,414.5 - parent: 1 - - uid: 15791 + pos: -12.5,-11.5 + parent: 2 + - uid: 12124 components: - type: Transform - pos: 371.5,407.5 - parent: 1 - - uid: 15792 + pos: -23.5,-21.5 + parent: 2 + - uid: 12125 components: - type: Transform - pos: 384.5,407.5 - parent: 1 - - uid: 15793 + pos: -21.5,-21.5 + parent: 2 + - uid: 14155 components: - type: Transform - pos: 384.5,411.5 - parent: 1 - - uid: 15794 + pos: -90.5,-28.5 + parent: 2 + - uid: 14486 components: - type: Transform - pos: 384.5,414.5 - parent: 1 - - uid: 15795 + pos: -88.5,-23.5 + parent: 2 + - uid: 14736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,409.5 - parent: 1 - - uid: 15796 + pos: -67.5,-29.5 + parent: 2 + - uid: 16995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,409.5 - parent: 1 - - uid: 15797 + pos: -40.5,-69.5 + parent: 2 + - uid: 20308 components: - type: Transform - pos: 381.5,418.5 - parent: 1 - - uid: 15798 + pos: -136.5,-38.5 + parent: 2 + - uid: 22269 components: - type: Transform - pos: 377.5,418.5 - parent: 1 - - uid: 15799 + pos: -53.5,-4.5 + parent: 2 + - uid: 23367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,421.5 - parent: 1 - - uid: 15800 + pos: -66.5,-22.5 + parent: 2 + - uid: 24435 components: - type: Transform - pos: 367.5,423.5 - parent: 1 - - uid: 15801 + pos: -94.5,-41.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 6861 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,417.5 - parent: 1 - - uid: 15802 + pos: -95.5,-27.5 + parent: 2 + - uid: 7878 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,412.5 - parent: 1 - - uid: 15803 + pos: -129.5,-51.5 + parent: 2 + - uid: 10653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,415.5 - parent: 1 - - uid: 15804 + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 + parent: 2 + - uid: 10772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,415.5 - parent: 1 - - uid: 15805 + rot: 3.141592653589793 rad + pos: -61.5,-19.5 + parent: 2 +- proto: DogBed + entities: + - uid: 2904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,420.5 - parent: 1 - - uid: 15806 + pos: -46.5,-9.5 + parent: 2 + - type: HealOnBuckle + sleepAction: 2905 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 2905 + - uid: 2953 components: - type: Transform - pos: 395.5,422.5 - parent: 1 - - uid: 15807 + pos: -53.5,-1.5 + parent: 2 + - uid: 4259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,419.5 - parent: 1 - - uid: 15808 + pos: -37.5,-50.5 + parent: 2 + - uid: 12765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,419.5 - parent: 1 - - uid: 15809 + pos: -88.5,33.5 + parent: 2 + - uid: 13260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,409.5 - parent: 1 - - uid: 15810 + pos: -32.5,-42.5 + parent: 2 + - uid: 17786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,400.5 - parent: 1 - - uid: 15811 + pos: -80.5,-35.5 + parent: 2 + - uid: 22081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,394.5 - parent: 1 - - uid: 15812 + pos: -92.5,-20.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 7627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,389.5 - parent: 1 - - uid: 15813 + pos: -126.5,-42.5 + parent: 2 + - uid: 9150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,391.5 - parent: 1 - - uid: 15814 + pos: -34.5,-50.5 + parent: 2 + - uid: 18986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,402.5 - parent: 1 - - uid: 15815 + pos: -115.5,-24.5 + parent: 2 + - uid: 23715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,407.5 - parent: 1 - - uid: 15816 + pos: -119.5,34.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 6300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,407.5 - parent: 1 - - uid: 15817 + pos: -127.723854,-15.459171 + parent: 2 + - uid: 6302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,407.5 - parent: 1 - - uid: 15818 + pos: -127.411354,-15.209171 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 24486 components: - type: Transform - pos: 451.5,407.5 - parent: 1 - - uid: 15819 + pos: -37.364952,-7.570945 + parent: 2 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 24487 components: - type: Transform - pos: 455.5,407.5 - parent: 1 - - uid: 15820 + pos: -37.568077,-7.33657 + parent: 2 +- proto: Dresser + entities: + - uid: 9676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,410.5 - parent: 1 - - uid: 15821 + pos: -51.5,-38.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 2900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,410.5 - parent: 1 - - uid: 15822 + pos: -45.5,2.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 6289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,419.5 - parent: 1 - - uid: 15823 + pos: -131.5,-15.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 8440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,414.5 - parent: 1 - - uid: 15824 + pos: -37.5,-35.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 10158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,418.5 - parent: 1 - - uid: 15825 + pos: -57.5,-60.5 + parent: 2 + - uid: 14613 components: - type: Transform - pos: 452.5,422.5 - parent: 1 - - uid: 15826 + pos: -71.5,-52.5 + parent: 2 + - uid: 14614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,421.5 - parent: 1 - - uid: 15827 + pos: -57.5,-52.5 + parent: 2 + - uid: 19470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,410.5 - parent: 1 - - uid: 15828 + pos: -71.5,-60.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 2957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,411.5 - parent: 1 - - uid: 21656 + pos: -42.5,-6.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 6802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 5072 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21833 + pos: -76.5,-29.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 1150 components: - type: Transform - pos: 3.5,32.5 - parent: 5072 -- proto: EmergencyOxygenTankFilled + pos: -86.5,35.5 + parent: 2 +- proto: DresserResearchDirectorFilled entities: - - uid: 20022 + - uid: 7377 components: - type: Transform - pos: 399.5,413.5 - parent: 1 -- proto: EmergencyRollerBed + pos: -136.5,-52.5 + parent: 2 +- proto: DrinkBahamaMama entities: - - uid: 15534 + - uid: 19095 components: - type: Transform - pos: 409.5,422.5 - parent: 1 -- proto: EmergencyRollerBedSpawnFolded + pos: -70.27978,-37.364647 + parent: 2 +- proto: DrinkBeerCan entities: - - uid: 15535 + - uid: 26056 components: - type: Transform - pos: 408.5,418.5 - parent: 1 - - uid: 15536 + pos: -93.52491,-61.357502 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 23495 components: - type: Transform - pos: 408.5,418.5 - parent: 1 -- proto: Emitter + parent: 23466 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGoldenCup entities: - - uid: 7362 + - uid: 4305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 282.5,379.5 - parent: 1 - - uid: 7363 + pos: -75.4454,-4.4283886 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 22221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 288.5,379.5 - parent: 1 - - uid: 7364 + pos: -57.4729,-77.48193 + parent: 2 +- proto: DrinkMilkshake + entities: + - uid: 559 components: - type: Transform - pos: 288.5,395.5 - parent: 1 - - uid: 7365 + pos: -66.51616,-32.096615 + parent: 2 +- proto: DrinkPwrGameCan + entities: + - uid: 9727 components: - type: Transform - pos: 282.5,395.5 - parent: 1 - - uid: 7366 + pos: -115.59577,19.654985 + parent: 2 +- proto: DrinkRootBeerCan + entities: + - uid: 21483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 293.5,390.5 - parent: 1 - - uid: 11768 + pos: -121.35487,36.507984 + parent: 2 +- proto: DrinkScrewdriverCocktailGlass + entities: + - uid: 24463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 293.5,384.5 - parent: 1 -- proto: ExosuitFabricator + pos: -70.65478,-37.520897 + parent: 2 +- proto: DrinkShaker entities: - - uid: 7439 + - uid: 6599 components: - type: Transform - pos: 343.5,397.5 - parent: 1 -- proto: ExtinguisherCabinetFilled + pos: -69.73934,-27.398573 + parent: 2 + - uid: 15706 + components: + - type: Transform + pos: -69.31747,-27.507948 + parent: 2 +- proto: DrinkVodkaBottleFull entities: - - uid: 15646 + - uid: 8871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,401.5 - parent: 1 - - uid: 15647 + pos: -36.475346,-54.142155 + parent: 2 +- proto: Dropper + entities: + - uid: 3954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,401.5 - parent: 1 - - uid: 15648 + pos: -36.59973,-20.635387 + parent: 2 + - uid: 4186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 377.5,401.5 - parent: 1 - - uid: 15649 + pos: -26.469004,-53.28738 + parent: 2 +- proto: EdgeDetector + entities: + - uid: 25870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,401.5 - parent: 1 - - uid: 15650 + anchored: True + pos: -153.5,-6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 22440: + - OutputHigh: On + - OutputLow: Off + - type: Physics + canCollide: False + bodyType: Static +- proto: EmergencyLight + entities: + - uid: 8156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,401.5 - parent: 1 - - uid: 15651 + pos: -63.5,8.5 + parent: 2 + - uid: 8157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,401.5 - parent: 1 - - uid: 15652 + pos: -59.5,8.5 + parent: 2 + - uid: 10624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,400.5 - parent: 1 - - uid: 15653 + pos: -30.5,-6.5 + parent: 2 + - uid: 10625 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,387.5 - parent: 1 - - uid: 15654 + pos: -30.5,-4.5 + parent: 2 + - uid: 10627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,386.5 - parent: 1 - - uid: 15655 + pos: -36.5,-12.5 + parent: 2 + - uid: 10635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,379.5 - parent: 1 - - uid: 15656 + pos: -49.5,-4.5 + parent: 2 + - uid: 10641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,391.5 - parent: 1 - - uid: 15657 + rot: 3.141592653589793 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 10642 components: - type: Transform rot: 3.141592653589793 rad - pos: 391.5,390.5 - parent: 1 - - uid: 15658 + pos: -45.5,0.5 + parent: 2 + - uid: 10643 components: - type: Transform - pos: 391.5,386.5 - parent: 1 - - uid: 15659 + rot: 3.141592653589793 rad + pos: -50.5,-1.5 + parent: 2 + - uid: 10646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,378.5 - parent: 1 - - uid: 15660 + pos: -55.5,-3.5 + parent: 2 + - uid: 10647 components: - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,374.5 - parent: 1 - - uid: 15661 + pos: -67.5,-3.5 + parent: 2 + - uid: 10648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,374.5 - parent: 1 - - uid: 15662 + pos: -63.5,0.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 13579 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,373.5 - parent: 1 - - uid: 15663 + pos: -81.5,-23.5 + parent: 2 + - uid: 13581 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5,367.5 - parent: 1 - - uid: 15664 + pos: -96.5,-29.5 + parent: 2 + - uid: 13582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 402.5,368.5 - parent: 1 - - uid: 15665 + pos: -92.5,-20.5 + parent: 2 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 15985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,372.5 - parent: 1 - - uid: 15666 + pos: -111.60682,-7.454895 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 15984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,379.5 - parent: 1 - - uid: 15667 + pos: -111.372444,-7.65802 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 3977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,388.5 - parent: 1 - - uid: 15668 + pos: -23.5,-23.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 +- proto: Emitter + entities: + - uid: 295 components: - type: Transform rot: 3.141592653589793 rad - pos: 407.5,394.5 - parent: 1 - - uid: 15669 + pos: -112.5,34.5 + parent: 2 +- proto: EpinephrineChemistryBottle + entities: + - uid: 2612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,399.5 - parent: 1 - - uid: 15670 + pos: -60.347107,-3.8663821 + parent: 2 + - uid: 6479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,393.5 - parent: 1 - - uid: 15671 + pos: -36.623154,-30.40255 + parent: 2 + - uid: 6480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,398.5 - parent: 1 - - uid: 15672 + pos: -36.404404,-30.261925 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 20469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,407.5 - parent: 1 - - uid: 15673 + pos: -121.5,-52.5 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 19504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,417.5 - parent: 1 - - uid: 15674 + pos: -107.5,-7.5 + parent: 2 + - uid: 19505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,418.5 - parent: 1 - - uid: 21337 - components: - - type: Transform - pos: 5.5,23.5 - parent: 5072 - - uid: 21542 + pos: -114.5,5.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 3936 components: - type: Transform - pos: 5.5,29.5 - parent: 5072 - - uid: 21629 + pos: -36.5,-16.5 + parent: 2 + - uid: 11237 components: - type: Transform - pos: 11.5,17.5 - parent: 5072 - - uid: 22118 + rot: -1.5707963267948966 rad + pos: -54.5,-7.5 + parent: 2 + - uid: 11238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,388.5 - parent: 1 - - uid: 22120 + pos: -68.5,-7.5 + parent: 2 + - uid: 15346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,380.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 2 - proto: FaxMachineBase entities: - - uid: 444 - components: - - type: Transform - pos: 420.5,389.5 - parent: 1 - - type: FaxMachine - name: Бармен - - uid: 5130 + - uid: 3 components: - - type: Transform - pos: 422.5,397.5 - parent: 1 - - type: FaxMachine - name: Гардеробная СБ - - uid: 5132 + - type: MetaData + name: long range fax machine (Chief Medical Officer) + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - type: Label + currentLabel: Chief Medical Officer + - type: NameModifier + baseName: long range fax machine + - uid: 3012 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 427.5,387.5 - parent: 1 + pos: -53.5,-7.5 + parent: 2 - type: FaxMachine - name: Каюта ГСБ - - uid: 5133 + name: Head of Personel + - type: Label + - uid: 4761 components: - type: Transform - pos: 422.5,411.5 - parent: 1 - - type: FaxMachine - name: Каюта смотрителя - - uid: 5157 + pos: -40.5,-20.5 + parent: 2 + - uid: 5738 components: + - type: MetaData + name: long range fax machine (Atmospherics) - type: Transform - pos: 418.5,407.5 - parent: 1 + pos: -115.5,-6.5 + parent: 2 - type: FaxMachine - name: Стойка смотрителя - - uid: 5203 + name: Atmospherics + - type: Label + currentLabel: Atmospherics + - type: NameModifier + baseName: long range fax machine + - uid: 6701 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 439.5,413.5 - parent: 1 + pos: -100.5,-37.5 + parent: 2 - type: FaxMachine - name: Кабинет АВД - - uid: 5213 + name: Detective + - type: Label + - uid: 6829 components: + - type: MetaData + name: long range fax machine (Bridge) - type: Transform - pos: 437.5,410.5 - parent: 1 + pos: -68.5,7.5 + parent: 2 - type: FaxMachine - name: Спальня АВД - - uid: 5441 + name: Bridge + - type: Label + currentLabel: Bridge + - type: NameModifier + baseName: long range fax machine + - uid: 10175 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 399.5,420.5 - parent: 1 + pos: -90.5,-17.5 + parent: 2 - type: FaxMachine - name: Курильня медиков - - uid: 5501 + name: Warden + - type: Label + - uid: 13583 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 397.5,412.5 - parent: 1 + pos: -97.5,-45.5 + parent: 2 - type: FaxMachine - name: Главный Врач - - uid: 5506 + name: Lawyer + - type: Label + - uid: 16028 components: - type: Transform - pos: 403.5,406.5 - parent: 1 - - type: FaxMachine - name: Вход меда - - uid: 5554 + pos: -109.5,-29.5 + parent: 2 + - uid: 17656 components: - type: Transform - pos: 369.5,398.5 - parent: 1 - - type: FaxMachine - name: Стойка ГП - - uid: 5626 + pos: -134.5,-46.5 + parent: 2 + - uid: 17807 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 360.5,390.5 - parent: 1 + pos: -90.5,-32.5 + parent: 2 - type: FaxMachine - name: Стойка карго - - uid: 5701 + name: Security + - type: Label + - uid: 18776 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 356.5,380.5 - parent: 1 + pos: -116.5,-18.5 + parent: 2 - type: FaxMachine - name: КМ - - uid: 5763 + name: Engineering + - type: Label + - uid: 19887 components: - type: Transform - pos: 367.5,411.5 - parent: 1 + pos: -34.5,-17.5 + parent: 2 - type: FaxMachine - name: Капитан 2 - - uid: 5814 + name: Medical + - uid: 21752 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 371.5,393.5 - parent: 1 + pos: -141.5,-7.5 + parent: 2 - type: FaxMachine - name: Спальня ГП - - uid: 5842 + name: TEG + - type: Label + - uid: 22303 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 379.5,410.5 - parent: 1 + pos: -45.5,-24.5 + parent: 2 - type: FaxMachine - name: Переговорная 2 - - uid: 5843 + name: Botany + - type: Label + - uid: 22304 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 382.5,414.5 - parent: 1 + pos: -51.5,-33.5 + parent: 2 - type: FaxMachine - name: Переговорная - - uid: 5945 + name: Kitchen + - type: Label + - uid: 22339 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 420.5,357.5 - parent: 1 + pos: -118.5,-40.5 + parent: 2 - type: FaxMachine - name: Библиотека - - uid: 6055 + name: Science + - type: Label + - uid: 22340 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 416.5,376.5 - parent: 1 + pos: -122.5,-49.5 + parent: 2 - type: FaxMachine - name: Гардероб & криосон - - uid: 6078 + name: Robotics + - type: Label + - uid: 22831 components: + - type: MetaData + name: long range fax machine (Arrivals Checkpoint) - type: Transform - pos: 401.5,374.5 - parent: 1 - - type: FaxMachine - name: Репортёр - - uid: 6113 + pos: -24.5,8.5 + parent: 2 + - type: Label + currentLabel: Arrivals Checkpoint + - type: NameModifier + baseName: long range fax machine + - uid: 23251 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 422.5,403.5 - parent: 1 + pos: -17.5,-18.5 + parent: 2 - type: FaxMachine - name: Брифрум - - uid: 6207 + name: Psychology + - type: Label + - uid: 23404 components: - type: Transform - pos: 413.5,406.5 - parent: 1 + pos: -117.5,-76.5 + parent: 2 - type: FaxMachine - name: Детектив - - uid: 6638 + name: AI + - uid: 23948 components: + - type: MetaData + name: long range fax machine - type: Transform - pos: 311.5,414.5 - parent: 1 + pos: -98.5,14.5 + parent: 2 - type: FaxMachine - name: ИИ - - uid: 6687 + name: Cargo + - type: Label + - uid: 24381 components: - type: Transform - pos: 317.5,388.5 - parent: 1 + pos: -52.5,-54.5 + parent: 2 - type: FaxMachine - name: Инженерный док - - uid: 7512 + name: Library + - uid: 25842 components: - type: Transform - pos: 356.5,384.5 - parent: 1 + pos: -67.5,-33.5 + parent: 2 - type: FaxMachine - name: Научный Руководитель - - uid: 7536 + name: Bar +- proto: FaxMachineCaptain + entities: + - uid: 2865 components: + - type: MetaData + name: captain long range fax machine (Captain) - type: Transform - pos: 354.5,399.5 - parent: 1 + pos: -48.5,2.5 + parent: 2 - type: FaxMachine - name: Стойка РНД - - uid: 8991 + name: Captain + - type: Label + currentLabel: Captain + - type: NameModifier + baseName: captain long range fax machine + - uid: 22305 components: + - type: MetaData + name: captain long range fax machine - type: Transform - pos: 366.5,419.5 - parent: 1 + pos: -62.5,-1.5 + parent: 2 - type: FaxMachine - name: Генератор гравитации - - uid: 10275 + name: Boardroom + - type: Label +- proto: filingCabinetDrawerRandom + entities: + - uid: 3001 components: - type: Transform - pos: 381.5,424.5 - parent: 1 - - type: FaxMachine - name: Мостик - - uid: 16308 + pos: -49.5,-2.5 + parent: 2 + - uid: 6297 components: - type: Transform - pos: 415.5,413.5 - parent: 1 - - type: FaxMachine - name: Психолог - - uid: 18652 + pos: -125.5,-18.5 + parent: 2 + - uid: 7612 components: - type: Transform - pos: 328.5,435.5 - parent: 1 - - type: FaxMachine - name: Смотритель мусора - - uid: 18949 + pos: -136.5,-47.5 + parent: 2 + - uid: 8990 components: - type: Transform - pos: 338.5,406.5 - parent: 1 - - type: FaxMachine - name: Инженерия - - uid: 18950 + pos: -68.5,3.5 + parent: 2 + - uid: 11852 components: - type: Transform - pos: 348.5,415.5 - parent: 1 - - type: FaxMachine - name: Старший Инженер - - uid: 18978 + pos: -96.5,-47.5 + parent: 2 + - uid: 13124 components: - type: Transform - pos: 455.5,416.5 - parent: 1 - - type: FaxMachine - name: Обдералово Банк - - uid: 20640 + pos: -17.5,-21.5 + parent: 2 + - uid: 23350 components: - type: Transform - pos: 7.5,2.5 - parent: 20527 - - type: FaxMachine - name: Шаттл адвоката - - uid: 21053 + pos: -80.5,-31.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 776 components: - type: Transform - pos: 389.5,395.5 - parent: 1 - - type: FaxMachine - name: Прибытие - - uid: 21827 + pos: -102.5,-66.5 + parent: 2 + - uid: 3009 components: - type: Transform - pos: 1.5,32.5 - parent: 5072 - - type: FaxMachine - name: bridge - destinationAddress: bridge -- proto: FaxMachineCaptain - entities: - - uid: 5785 + pos: -50.5,-6.5 + parent: 2 + - uid: 4087 components: - type: Transform - pos: 364.5,408.5 - parent: 1 - - type: FaxMachine - name: Капитан - - uid: 21418 + pos: -92.5,-17.5 + parent: 2 + - uid: 4718 components: - type: Transform - pos: 7.5,24.5 - parent: 5072 - - type: FaxMachine - name: captain's office -- proto: FaxMachineSyndie - entities: - - uid: 18407 + pos: -88.5,31.5 + parent: 2 + - uid: 5737 components: - type: Transform - pos: 357.5,426.5 - parent: 1 -- proto: FenceMetalBroken - entities: - - uid: 2701 + pos: -115.5,-5.5 + parent: 2 + - uid: 8350 components: - type: Transform - pos: 428.5,384.5 - parent: 1 - - uid: 18002 + pos: -101.5,13.5 + parent: 2 + - uid: 9042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 488.5,379.5 - parent: 1 -- proto: FigureSpawner - entities: - - uid: 5329 + pos: -45.5,-68.5 + parent: 2 + - uid: 16809 components: - type: Transform - pos: 425.5,352.5 - parent: 1 -- proto: filingCabinetDrawer - entities: - - uid: 5170 + pos: -37.5,-40.5 + parent: 2 + - uid: 19547 components: - type: Transform - pos: 411.5,406.5 - parent: 1 -- proto: filingCabinetDrawerRandom - entities: - - uid: 21696 + pos: -88.5,25.5 + parent: 2 + - uid: 21751 components: - type: Transform - pos: 9.5,18.5 - parent: 5072 -- proto: filingCabinetRandom - entities: - - uid: 17352 + pos: -138.5,-7.5 + parent: 2 + - uid: 22288 components: - type: Transform - pos: 510.5,390.5 - parent: 1 - - uid: 21688 + pos: -99.5,-41.5 + parent: 2 + - uid: 24718 components: - type: Transform - pos: 6.5,26.5 - parent: 5072 + pos: -74.5,-42.5 + parent: 2 - proto: filingCabinetTallRandom entities: - - uid: 21824 + - uid: 6294 components: - type: Transform - pos: -0.5,31.5 - parent: 5072 + pos: -130.5,-18.5 + parent: 2 - proto: FireAlarm entities: - - uid: 4813 - components: - - type: Transform - pos: 406.5,398.5 - parent: 1 - - uid: 15543 + - uid: 1213 components: - type: Transform - pos: 342.5,417.5 - parent: 1 + pos: -27.5,-61.5 + parent: 2 - type: DeviceList devices: - - 15045 - - 15044 - - 15056 - - 15053 - - uid: 15544 + - 1208 + - 1122 + - uid: 1814 components: - type: Transform - pos: 346.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -31.5,9.5 + parent: 2 - type: DeviceList devices: - - 15028 - - 15030 - - 15029 - - 15214 - - 15215 - - 15216 - - 15217 - - 15026 - - 15027 - - 15025 - - 15213 - - uid: 15545 + - 8608 + - 8651 + - 8687 + - 11727 + - 9723 + - 10263 + - 11724 + - 24032 + - 14938 + - 14937 + - 14936 + - 14360 + - 11805 + - 24025 + - uid: 3288 components: + - type: MetaData + name: Boardroom Fire Alarm - type: Transform - pos: 359.5,405.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 - type: DeviceList devices: - - 15025 - - 15027 - - 15026 - - 15082 - - 15023 - - 15022 - - 15081 - - 15142 - - uid: 15546 + - 10273 + - 10251 + - 10038 + - 2981 + - 2982 + - 2974 + - 2973 + - 22877 + - 14978 + - 14979 + - 14288 + - 14996 + - 2969 + - 2970 + - 2971 + - 2968 + - 11246 + - 2979 + - 2980 + - 2987 + - 6938 + - uid: 8155 components: + - type: MetaData + name: Chemistry Fire Alarm - type: Transform - pos: 367.5,405.5 - parent: 1 + pos: -40.5,-18.5 + parent: 2 - type: DeviceList devices: - - 15144 - - 15091 - - 15090 - - uid: 15547 + - 9135 + - 5739 + - 6601 + - 8333 + - uid: 9164 components: + - type: MetaData + name: Atmospherics Entrance Air Alarm - type: Transform - pos: 387.5,405.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -116.5,-3.5 + parent: 2 - type: DeviceList devices: - - 14979 - - 14980 - - 14981 - - 15110 - - 15111 - - 15102 - - 15101 - - uid: 15548 + - 18985 + - 14592 + - 14752 + - 14590 + - 13444 + - 13445 + - uid: 12768 components: - type: Transform - pos: 399.5,405.5 - parent: 1 + pos: -25.5,-10.5 + parent: 2 - type: DeviceList devices: - - 15111 - - 15110 - - 15102 - - 15101 - - 14979 - - 14980 - - 14981 - - uid: 15549 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,400.5 - parent: 1 - - uid: 15551 + - 11346 + - 18910 + - 10012 + - 10013 + - 143 + - 11794 + - 13448 + - 13442 + - 13439 + - 14628 + - 14635 + - 14627 + - 8328 + - 8331 + - 8327 + - 13443 + - 13441 + - 13440 + - 7894 + - 7864 + - 7805 + - 13467 + - 12928 + - 12903 + - 14507 + - 14508 + - 14500 + - 14955 + - 24779 + - 24782 + - 24783 + - uid: 12769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,389.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-17.5 + parent: 2 - type: DeviceList devices: - - 15532 - - 15531 - - 15533 - - uid: 15552 + - 442 + - 13488 + - 13514 + - 12948 + - 14979 + - 14978 + - 1667 + - 9674 + - 11251 + - 14288 + - 14996 + - 14627 + - 14635 + - 14628 + - 23678 + - 23677 + - 16293 + - 23680 + - 15676 + - 23679 + - uid: 13490 components: + - type: MetaData + name: TEG Control Fire Alarm - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,383.5 - parent: 1 + pos: -135.5,-5.5 + parent: 2 - type: DeviceList devices: - - 15532 - - 15531 - - 14961 - - 14962 - - uid: 15553 - components: - - type: Transform - pos: 403.5,377.5 - parent: 1 - - uid: 15554 + - 19610 + - uid: 13492 components: + - type: MetaData + name: TEG Entrance Fire Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,371.5 - parent: 1 + pos: -136.5,-8.5 + parent: 2 - type: DeviceList devices: - - 14967 - - 14965 - - 14964 - - 14962 - - 14963 - - uid: 15555 + - 8961 + - 8955 + - 13485 + - 19610 + - 8950 + - uid: 13736 components: - type: Transform rot: -1.5707963267948966 rad - pos: 409.5,367.5 - parent: 1 + pos: -143.5,-44.5 + parent: 2 - type: DeviceList devices: - - 14968 - - 14969 - - 14970 - - 14965 - - 14966 - - uid: 15556 + - 13788 + - 13847 + - 17424 + - 17422 + - 17421 + - uid: 14953 components: + - type: MetaData + name: Botany Fire Alarm - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,369.5 - parent: 1 - - type: DeviceList - devices: - - 14971 - - 14972 - - 15504 - - 14973 - - uid: 15557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,373.5 - parent: 1 + pos: -56.5,-18.5 + parent: 2 - type: DeviceList devices: - - 14971 - - 14972 - - 15504 - - 14973 - - 14976 - - 14963 - - 14966 - - uid: 15558 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,388.5 - parent: 1 - - uid: 15559 + - 5747 + - 14952 + - 14951 + - 14950 + - 19471 + - 19613 + - 14948 + - 14354 + - 13438 + - uid: 14954 components: + - type: MetaData + name: Botany Fire Alarm - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,393.5 - parent: 1 + pos: -44.5,-21.5 + parent: 2 - type: DeviceList devices: - - 15492 - - 14987 - - 6708 - - uid: 15560 + - 5747 + - 14952 + - 14951 + - 14950 + - 19471 + - 14948 + - 14354 + - uid: 15026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,381.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -23.5,-33.5 + parent: 2 - type: DeviceList devices: - - 7389 - - 14988 - - 14977 - - 14978 - - uid: 15561 + - 8332 + - 8330 + - 8329 + - 8882 + - 8849 + - 8856 + - 11105 + - 11108 + - 9134 + - 15358 + - uid: 15347 components: + - type: MetaData + name: Evac Fire Alarm - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,376.5 - parent: 1 - - uid: 15562 - components: - - type: Transform - pos: 396.5,375.5 - parent: 1 + pos: -13.5,-11.5 + parent: 2 - type: DeviceList devices: - - 14978 - - 14977 - - uid: 15563 + - 11810 + - 14500 + - 14508 + - 14507 + - 11817 + - 11816 + - 11804 + - 11809 + - 23126 + - 11802 + - uid: 17419 components: - type: Transform - pos: 379.5,398.5 - parent: 1 + pos: -139.5,-37.5 + parent: 2 - type: DeviceList devices: - - 14982 - - 14983 - - 14985 - - 6698 - - 14981 - - 14980 - - 14979 - - uid: 15564 + - 13788 + - 11936 + - 17427 + - 17432 + - uid: 17420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 376.5,393.5 - parent: 1 + pos: -123.5,-37.5 + parent: 2 - type: DeviceList devices: - - 14990 - - 14991 - - 14995 - - 14996 - - 14998 - - 6696 - - uid: 15565 + - 12585 + - 11743 + - 11936 + - 17436 + - uid: 17850 components: - type: Transform rot: 3.141592653589793 rad - pos: 376.5,394.5 - parent: 1 + pos: -31.5,-26.5 + parent: 2 - type: DeviceList devices: - - 14983 - - 14982 - - 14998 - - 6696 - - 15220 - - uid: 15566 + - 25636 + - 25635 + - 25634 + - 8320 + - 8316 + - 8163 + - 8333 + - 25643 + - 25642 + - 15354 + - uid: 18317 components: + - type: MetaData + name: Atmospherics Fire Alarm - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,380.5 - parent: 1 + pos: -121.5,18.5 + parent: 2 - type: DeviceList devices: - - 14990 - - 14991 - - 14992 - - uid: 15567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,379.5 - parent: 1 - - uid: 15568 + - 19517 + - 25564 + - 25565 + - 14590 + - uid: 18819 components: + - type: MetaData + name: TEG Fire Alarm - type: Transform rot: -1.5707963267948966 rad - pos: 368.5,385.5 - parent: 1 - - type: DeviceList - devices: - - 5605 - - 5604 - - 5603 - - 5601 - - 5602 - - 5600 - - 15007 - - 14999 - - uid: 15569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,386.5 - parent: 1 - - type: DeviceList - devices: - - 15013 - - 15075 - - 15074 - - 15072 - - 15073 - - 15071 - - uid: 15570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,395.5 - parent: 1 - - uid: 15571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,409.5 - parent: 1 + pos: -142.5,-11.5 + parent: 2 - type: DeviceList devices: - - 15040 - - 15041 - - 15043 - - 15042 - - 15038 - - uid: 15572 + - 13489 + - uid: 19506 components: + - type: MetaData + name: Atmospherics Fire Alarm - type: Transform rot: 3.141592653589793 rad - pos: 336.5,409.5 - parent: 1 + pos: -117.5,-1.5 + parent: 2 - type: DeviceList devices: - - 15040 - - 15041 - - 15039 - - 15046 - - uid: 15573 + - 14590 + - 25565 + - 25564 + - 19517 + - uid: 19526 components: + - type: MetaData + name: Engineering Entrance Fire Alarm - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,410.5 - parent: 1 + pos: -112.5,-7.5 + parent: 2 - type: DeviceList devices: - - 15047 - - 15051 - - 15049 - - 15050 - - uid: 15574 + - 14573 + - 14739 + - 13586 + - 14509 + - 14513 + - 13446 + - 13447 + - 13445 + - 13444 + - uid: 19747 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,414.5 - parent: 1 + pos: -31.5,-32.5 + parent: 2 - type: DeviceList devices: - - 15052 - - 15051 - - uid: 15575 + - 11070 + - 7862 + - 8348 + - 9135 + - 25638 + - 24046 + - uid: 22327 components: + - type: MetaData + name: Bridge Fire Alarm - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -57.5,1.5 + parent: 2 - type: DeviceList devices: - - 15052 - - uid: 15576 + - 2985 + - 2986 + - 2988 + - 2984 + - 2983 + - 6939 + - uid: 23991 components: + - type: MetaData + name: Showroom Fire Alarm - type: Transform - pos: 323.5,427.5 - parent: 1 + pos: -60.5,-8.5 + parent: 2 - type: DeviceList devices: - - 15053 - - 15054 - - 15057 - - 15058 - - uid: 15577 - components: - - type: Transform - pos: 328.5,419.5 - parent: 1 - - uid: 15578 + - 23990 + - 7351 + - 11230 + - 11231 + - 14980 + - uid: 24784 components: - type: Transform - pos: 309.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 - type: DeviceList devices: - - 15202 - - 15201 - - 15200 - - 15203 - - uid: 15579 + - 13437 + - 12949 + - 12942 + - 22713 + - 22172 + - 23895 + - 7808 + - 7345 + - uid: 24785 components: - type: Transform - pos: 305.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 - type: DeviceList devices: - - 15204 - - 15206 - - 15205 - - uid: 15580 + - 14935 + - 14877 + - 11265 + - 22171 + - uid: 25562 components: + - type: MetaData + name: Canister Storage Fire Alarm - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,402.5 - parent: 1 + pos: -110.5,19.5 + parent: 2 - type: DeviceList devices: - - 15032 - - 15036 - - uid: 15581 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,399.5 - parent: 1 - - uid: 15582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,385.5 - parent: 1 - - uid: 15583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,385.5 - parent: 1 - - uid: 15584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,385.5 - parent: 1 - - uid: 15585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,385.5 - parent: 1 - - uid: 15586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,383.5 - parent: 1 - - uid: 15587 + - 25563 + - 19520 + - uid: 25598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 - type: DeviceList devices: - - 15096 - - 15095 - - 15209 - - 15099 - - 15108 - - 15107 - - 15109 - - uid: 15588 + - 25597 + - 8935 + - uid: 25599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,412.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -135.5,-14.5 + parent: 2 - type: DeviceList devices: - - 15093 - - 15094 - - 15095 - - 15096 - - uid: 15589 + - 8955 + - uid: 25600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,408.5 - parent: 1 + pos: -123.5,-19.5 + parent: 2 - type: DeviceList devices: - - 15092 - - 15086 - - 15094 - - 15093 - - 15089 - - 15088 - - uid: 15590 + - 7540 + - 8996 + - uid: 25603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,405.5 - parent: 1 + pos: -121.5,-7.5 + parent: 2 - type: DeviceList devices: - - 15091 - - 15090 - - 15088 - - 15089 - - uid: 15591 + - 14752 + - 14573 + - 13620 + - 13618 + - 13765 + - 13484 + - 25597 + - 8935 + - uid: 25604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -121.5,-19.5 + parent: 2 - type: DeviceList devices: - - 15103 - - 15104 - - 15100 - - 15105 - - 15106 - - uid: 15592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,412.5 - parent: 1 + - 7410 + - 25605 + - 14596 + - 13909 + - 7540 + - 13620 + - 13618 + - 13765 + - uid: 25607 + components: + - type: Transform + pos: -115.5,-13.5 + parent: 2 - type: DeviceList devices: - - 15108 - - 15107 - - 15105 - - 15106 - - uid: 15593 + - 14596 + - 13447 + - 13446 + - uid: 25640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,416.5 - parent: 1 + pos: -26.5,-16.5 + parent: 2 - type: DeviceList devices: - - 15096 - - 15095 - - 15209 - - 15099 - - 15108 - - 15107 - - 15109 - - uid: 15594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,412.5 - parent: 1 - - uid: 15595 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,422.5 - parent: 1 - - uid: 15596 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,395.5 - parent: 1 + - 8327 + - 8331 + - 8328 + - 24708 + - 8316 + - 8320 + - 24039 + - 8989 + - 8976 + - 9069 + - uid: 25641 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 - type: DeviceList devices: - - 15021 - - 15218 - - 15219 - - 15221 - - 15220 - - 13418 - - uid: 15597 + - 25643 + - 25642 + - 8989 + - 8976 + - 9069 + - 15039 + - uid: 25645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,395.5 - parent: 1 + pos: -20.5,-37.5 + parent: 2 - type: DeviceList devices: - - 15023 - - 15022 - - 15407 - - 15020 - - 15021 - - 15019 - - uid: 15598 + - 7804 + - 8346 + - 5742 + - 11105 + - 15357 + - uid: 25647 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,396.5 - parent: 1 - - type: DeviceList - devices: - - 15020 - - 15407 - - 15018 - - 15016 - - 15081 - - 15082 - - 15080 - - uid: 15605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,399.5 - parent: 1 + pos: -27.5,-47.5 + parent: 2 - type: DeviceList devices: - - 14944 - - 14946 - - 15154 - - 15156 - - 15159 - - 15160 - - 15157 - - uid: 15606 + - 6465 + - 5843 + - 5827 + - 5038 + - 8558 + - 8387 + - 859 + - 24049 + - 8846 + - 8778 + - 8777 + - 15355 + - uid: 25648 components: - type: Transform - pos: 424.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,-51.5 + parent: 2 - type: DeviceList devices: - - 14947 - - 14946 - - 14945 - - 14948 - - 15382 - - 15384 - - uid: 15607 + - 6465 + - 5843 + - 5827 + - 15360 + - uid: 25649 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,395.5 - parent: 1 + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-28.5 + parent: 2 - type: DeviceList devices: - - 14949 - - 15153 - - 15152 + - 25650 + - 14945 + - 14944 + - 14943 + - 14942 + - 14946 + - 13438 + - 19613 - 14947 - - 15150 - - 15154 - - 15151 - - 15155 - - uid: 21456 + - 25653 + - uid: 26109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,27.5 - parent: 5072 + pos: -27.5,-33.5 + parent: 2 - type: DeviceList devices: - - 21496 - - 21368 - - 21430 - - 21459 - - 21499 - - 21361 + - 8846 + - 8778 + - 8777 + - 8329 + - 8330 + - 8332 + - 7862 + - 8348 + - 25636 + - 25635 + - 25634 + - 15353 - proto: FireAxeCabinetFilled entities: - - uid: 5736 + - uid: 7884 components: - type: Transform - pos: 381.5,419.5 - parent: 1 - - uid: 6666 + rot: 3.141592653589793 rad + pos: -62.5,1.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 9441 components: - type: Transform - pos: 336.5,417.5 - parent: 1 - - uid: 21910 + pos: -91.51041,32.55159 + parent: 2 + - uid: 12737 components: - type: Transform - pos: -1.5,32.5 - parent: 5072 -- proto: Firelock - entities: - - uid: 15320 + pos: -91.66666,32.442215 + parent: 2 + - uid: 19589 components: - type: Transform - pos: 327.5,438.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15319 - - uid: 21376 + pos: -91.41666,32.660965 + parent: 2 + - uid: 22357 components: - type: Transform - pos: 6.5,20.5 - parent: 5072 -- proto: FirelockEdge + pos: -91.24478,32.754715 + parent: 2 + - uid: 22433 + components: + - type: Transform + pos: -110.51412,-40.4255 + parent: 2 +- proto: Firelock entities: - - uid: 13418 + - uid: 481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15307 - - 15309 - - 15596 - - uid: 15389 + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 859 components: - type: Transform - pos: 416.5,421.5 - parent: 1 + pos: -31.5,-44.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15387 -- proto: FirelockGlass - entities: - - uid: 1738 + - 25647 + - uid: 893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 - - 15306 - - uid: 2761 + rot: -1.5707963267948966 rad + pos: -75.5,-59.5 + parent: 2 + - uid: 1122 components: - type: Transform - pos: 409.5,402.5 - parent: 1 + pos: -25.5,-61.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15295 - - uid: 3643 + - 1213 + - uid: 1208 components: - type: Transform - pos: 409.5,404.5 - parent: 1 + pos: -31.5,-63.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15295 - - uid: 3960 + - 1213 + - uid: 1599 components: - type: Transform - pos: 409.5,395.5 - parent: 1 + pos: -50.5,-35.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15297 - - 15295 - - uid: 3980 + - 15364 + - uid: 1729 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 - - 15306 - - uid: 3981 + pos: -134.5,-13.5 + parent: 2 + - uid: 2287 components: - type: Transform - pos: 409.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 - - 15295 - - uid: 4802 + rot: 1.5707963267948966 rad + pos: -135.5,-27.5 + parent: 2 + - uid: 2436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -43.5,-16.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-21.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.5,-21.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15306 - - uid: 4804 + - 3287 + - 11242 + - 3288 + - uid: 2969 components: - type: Transform - pos: 409.5,403.5 - parent: 1 + pos: -57.5,-4.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15295 - - uid: 4818 + - 3287 + - 3288 + - uid: 2970 components: - type: Transform - pos: 409.5,397.5 - parent: 1 + pos: -57.5,-3.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15297 - - 15295 - - uid: 5299 + - 3287 + - 3288 + - uid: 2971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,401.5 - parent: 1 + pos: -57.5,-2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15306 - - uid: 5600 + - 3287 + - 3288 + - uid: 2973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,389.5 - parent: 1 + pos: -65.5,-3.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15568 - - uid: 5601 + - 3287 + - 3288 + - uid: 2974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,387.5 - parent: 1 + pos: -65.5,-4.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15568 - - uid: 5602 + - 3287 + - 3288 + - uid: 2976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,388.5 - parent: 1 + pos: -47.5,-5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15568 - - uid: 5603 + - 11242 + - 11243 + - uid: 3319 + components: + - type: Transform + pos: -137.5,25.5 + parent: 2 + - uid: 3345 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 - - 15568 - - uid: 5604 + pos: -75.5,-16.5 + parent: 2 + - uid: 3364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 - - 15568 - - uid: 5605 + pos: -75.5,-10.5 + parent: 2 + - uid: 3494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,386.5 - parent: 1 + pos: -16.5,-2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15313 - - 15568 - - uid: 6696 + - 7346 + - uid: 3628 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15304 - - 15564 - - 15565 - - uid: 6698 + pos: -105.5,-36.5 + parent: 2 + - uid: 3644 components: - type: Transform - pos: 387.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15291 - - 15563 - - 15297 - - uid: 6708 + rot: 3.141592653589793 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 4471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15299 - - 15559 - - uid: 7389 + rot: 1.5707963267948966 rad + pos: -110.5,-57.5 + parent: 2 + - uid: 5038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,382.5 - parent: 1 + pos: -29.5,-51.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15300 - - 15560 - - uid: 14936 + - 25647 + - uid: 5742 components: - type: Transform - pos: 410.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15376 - - 15368 - - uid: 14937 + - 8941 + - 25645 + - uid: 5744 components: - type: Transform - pos: 412.5,394.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -45.5,-39.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15376 - - 15295 - - uid: 14938 + - 8934 + - uid: 5746 components: - type: Transform - pos: 413.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -27.5,-37.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15375 - - 15376 - - uid: 14942 + - 8954 + - uid: 5747 components: - type: Transform - pos: 415.5,394.5 - parent: 1 + pos: -48.5,-23.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15375 - - 15295 - - uid: 14944 + - 14954 + - 14953 + - 5898 + - 9430 + - uid: 5827 components: - type: Transform - pos: 419.5,398.5 - parent: 1 + pos: -26.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15338 - - 13123 - - 15605 - - 15295 - - uid: 14945 + - 25647 + - 25648 + - uid: 5843 components: - type: Transform - pos: 419.5,394.5 - parent: 1 + pos: -26.5,-49.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15344 - - 13123 - - 15606 - - 15295 - - uid: 14946 + - 25647 + - 25648 + - uid: 6465 components: - type: Transform - pos: 423.5,398.5 - parent: 1 + pos: -26.5,-50.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15338 - - 15344 - - 15605 - - 15606 - - uid: 14947 + - 25647 + - 25648 + - uid: 6515 components: - type: Transform - pos: 425.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 - - 15344 - - 15606 - - 15607 - - uid: 14948 + pos: -126.5,23.5 + parent: 2 + - uid: 6594 components: - type: Transform - pos: 423.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -68.5,-28.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15367 - - 15344 - - 15606 - - uid: 14949 + - 9253 + - uid: 6601 components: - type: Transform - pos: 427.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -41.5,-23.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15349 - - 15367 - - 15607 - - uid: 14950 + - 8155 + - uid: 6603 components: - type: Transform - pos: 428.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15367 - - 15366 - - uid: 14951 + rot: -1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - uid: 7046 components: - type: Transform - pos: 423.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15367 - - uid: 14952 + - 12151 + - 9253 + - uid: 7345 components: - type: Transform - pos: 417.5,388.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15374 - - 15375 - - uid: 14953 + - 11893 + - 24784 + - uid: 7351 components: - type: Transform - pos: 419.5,386.5 - parent: 1 + pos: -61.5,-8.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15374 - - uid: 14954 + - 23991 + - 11244 + - uid: 7410 components: - type: Transform - pos: 417.5,382.5 - parent: 1 + pos: -119.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15373 - - uid: 14955 + - 25604 + - uid: 7411 components: - type: Transform - pos: 417.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15372 - - 15373 - - uid: 14956 + pos: -128.5,-17.5 + parent: 2 + - uid: 7412 components: - type: Transform - pos: 413.5,382.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15373 - - 15371 - - uid: 14957 + pos: -123.5,-13.5 + parent: 2 + - uid: 7458 components: - type: Transform - pos: 408.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15369 - - 15368 - - uid: 14958 + pos: -135.5,13.5 + parent: 2 + - uid: 7540 components: - type: Transform - pos: 408.5,383.5 - parent: 1 + pos: -121.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15369 - - uid: 14959 + - 25600 + - 25604 + - uid: 7808 components: - type: Transform - pos: 415.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15372 - - 15373 - - uid: 14961 + - 11893 + - 7346 + - 24784 + - uid: 7883 components: - type: Transform - pos: 406.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15524 - - 15371 - - 15552 - - uid: 14962 + rot: -1.5707963267948966 rad + pos: -68.5,-9.5 + parent: 2 + - uid: 9134 components: - type: Transform - pos: 404.5,377.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15496 - - 15524 - - 15554 - - 15494 - - 15552 - - uid: 14963 + - 15359 + - 15026 + - uid: 9244 components: - type: Transform - pos: 406.5,375.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -70.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15503 - - 15496 - - 15554 - - 15494 - - 15557 - - uid: 14964 + - 12151 + - 9253 + - uid: 9265 components: - type: Transform - pos: 402.5,373.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15496 - - 15554 - - 15494 - - uid: 14965 + rot: -1.5707963267948966 rad + pos: -99.5,5.5 + parent: 2 + - uid: 9356 components: - type: Transform - pos: 406.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15497 - - 15496 - - 15554 - - 15494 - - 15555 - - uid: 14966 + rot: -1.5707963267948966 rad + pos: -94.5,6.5 + parent: 2 + - uid: 9579 components: - type: Transform - pos: 408.5,373.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15503 - - 15497 - - 15557 - - 15555 - - uid: 14967 + rot: 3.141592653589793 rad + pos: -141.5,-49.5 + parent: 2 + - uid: 9580 components: - type: Transform - pos: 404.5,366.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15496 - - 15554 - - 15494 - - uid: 14968 + pos: -134.5,2.5 + parent: 2 + - uid: 10089 components: - type: Transform - pos: 407.5,366.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15497 - - 15555 - - uid: 14969 + rot: 1.5707963267948966 rad + pos: -99.5,-36.5 + parent: 2 + - uid: 10796 components: - type: Transform - pos: 409.5,368.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15498 - - 15497 - - 15555 - - uid: 14970 + rot: 1.5707963267948966 rad + pos: -101.5,-45.5 + parent: 2 + - uid: 11070 components: - type: Transform - pos: 409.5,371.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15499 - - 15497 - - 15555 - - uid: 14971 + - 4214 + - 8934 + - 19747 + - uid: 11072 components: - type: Transform - pos: 415.5,373.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15503 - - 15502 - - 15556 - - 15557 - - uid: 14972 + - 8934 + - uid: 11100 components: - type: Transform - pos: 416.5,371.5 - parent: 1 + pos: -20.5,-44.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15502 - - 15500 - - 15556 - - 15557 - - uid: 14973 + - 9146 + - uid: 11105 components: - type: Transform - pos: 415.5,366.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15506 - - 15556 - - 15557 - - uid: 14976 + - 8941 + - 15359 + - 25645 + - 15026 + - uid: 11108 components: - type: Transform - pos: 420.5,375.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15503 - - 15557 - - uid: 14977 + - 15359 + - 15026 + - uid: 11246 components: - type: Transform - pos: 389.5,377.5 - parent: 1 + pos: -54.5,-0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15300 - - 15493 - - 15560 - - 15562 - - uid: 14978 + - 3287 + - 3074 + - 3288 + - uid: 11249 components: - type: Transform - pos: 390.5,377.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -45.5,-7.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15300 - - 15493 - - 15560 - - 15562 - - uid: 14979 + - 11243 + - uid: 11250 components: - type: Transform - pos: 383.5,401.5 - parent: 1 + pos: -41.5,-2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15291 - - 15563 - - 15547 - - 15548 - - 15306 - - uid: 14980 + - 3073 + - uid: 11252 components: - type: Transform - pos: 384.5,401.5 - parent: 1 + pos: -43.5,-7.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15291 - - 15563 - - 15547 - - 15548 - - 15306 - - uid: 14981 + - 11243 + - uid: 11253 components: - type: Transform - pos: 385.5,401.5 - parent: 1 + pos: -44.5,-0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15291 - - 15563 - - 15547 - - 15548 - - 15306 - - uid: 14982 + - 3073 + - uid: 11254 components: - type: Transform - pos: 378.5,397.5 - parent: 1 + pos: -47.5,1.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15291 - - 15304 - - 15565 - - 15563 - - uid: 14983 + - 3073 + - 3074 + - uid: 11265 components: - type: Transform - pos: 378.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15291 - - 15304 - - 15565 - - 15563 - - uid: 14985 + - 24785 + - 22168 + - uid: 11727 components: - type: Transform - pos: 387.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,9.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15291 - - 15563 - - 15297 - - uid: 14987 + - 1814 + - uid: 11728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,390.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15299 - - 15559 - - uid: 14988 + - 11722 + - uid: 11767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,382.5 - parent: 1 + pos: -25.5,3.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15300 - - 15560 - - uid: 14990 + - 11298 + - uid: 12894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,385.5 - parent: 1 + pos: -73.5,-19.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: -135.5,24.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,-13.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,-7.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15301 - - 15566 - - 15564 - - uid: 14991 + - 25603 + - uid: 13485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,385.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -135.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15301 - - 15566 - - 15564 - - uid: 14992 + - 13492 + - uid: 13489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,384.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -152.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15301 - - 15566 - - uid: 14993 + - 18819 + - uid: 13629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 371.5,386.5 - parent: 1 - - uid: 14994 + pos: -79.5,-26.5 + parent: 2 + - uid: 13634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 370.5,382.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15314 - - uid: 14995 + pos: -74.5,-10.5 + parent: 2 + - uid: 13635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15564 - - uid: 14996 + pos: -74.5,-16.5 + parent: 2 + - uid: 13636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15564 - - uid: 14998 + pos: -76.5,-36.5 + parent: 2 + - uid: 13642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15304 - - 15564 - - 15565 - - uid: 14999 + pos: -76.5,-26.5 + parent: 2 + - uid: 13657 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 - - 15568 - - uid: 15000 + pos: -74.5,-37.5 + parent: 2 + - uid: 13659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 362.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 - - 15405 - - uid: 15001 + pos: -75.5,-23.5 + parent: 2 + - uid: 13660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 - - 12120 - - uid: 15002 + pos: -74.5,-38.5 + parent: 2 + - uid: 13856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 358.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 - - 12120 - - uid: 15003 + pos: -101.5,-40.5 + parent: 2 + - uid: 14084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 - - 15406 - - uid: 15004 + rot: -1.5707963267948966 rad + pos: -16.5,-65.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-63.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: -135.5,-49.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: -129.5,-49.5 + parent: 2 + - uid: 14354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,383.5 - parent: 1 + pos: -44.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15313 - - uid: 15005 + - 14953 + - 14954 + - uid: 14946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,383.5 - parent: 1 + pos: -56.5,-27.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15313 - - uid: 15006 + - 12151 + - 25649 + - uid: 14947 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,380.5 - parent: 1 + pos: -51.5,-27.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15314 - - uid: 15007 + - 25649 + - uid: 14948 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,382.5 - parent: 1 + pos: -49.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15314 - - 15568 - - uid: 15008 + - 14954 + - 14953 + - 5898 + - 9430 + - uid: 14949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 354.5,381.5 - parent: 1 - - uid: 15009 + pos: -44.5,-27.5 + parent: 2 + - uid: 15885 components: - type: Transform rot: 1.5707963267948966 rad - pos: 357.5,381.5 - parent: 1 - - uid: 15010 + pos: -104.5,-36.5 + parent: 2 + - uid: 15886 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,379.5 - parent: 1 - - uid: 15011 + pos: -103.5,-36.5 + parent: 2 + - uid: 16411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 - - 15236 - - uid: 15012 + rot: -1.5707963267948966 rad + pos: -77.5,-55.5 + parent: 2 + - uid: 16412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15236 - - 15237 - - uid: 15013 + rot: -1.5707963267948966 rad + pos: -77.5,-56.5 + parent: 2 + - uid: 16413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 - - 15230 - - 15569 - - uid: 15014 + rot: -1.5707963267948966 rad + pos: -77.5,-57.5 + parent: 2 + - uid: 16414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 - - 15228 - - uid: 15015 + rot: -1.5707963267948966 rad + pos: -74.5,-57.5 + parent: 2 + - uid: 16415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15228 - - 12120 - - uid: 15016 + rot: -1.5707963267948966 rad + pos: -74.5,-55.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + pos: -134.5,-7.5 + parent: 2 + - uid: 17427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,394.5 - parent: 1 + pos: -138.5,-41.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15228 - - 15234 - - 15598 - - uid: 15017 + - 17419 + - uid: 17432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,392.5 - parent: 1 + pos: -138.5,-37.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15229 - - 15228 - - uid: 15018 + - 17419 + - uid: 17436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -125.5,-34.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 12120 - - 15598 - - uid: 15019 + - 17420 + - uid: 19517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,394.5 - parent: 1 + pos: -119.5,18.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15226 - - 12120 - - 15597 - - uid: 15020 + - 19506 + - 18317 + - uid: 19520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,397.5 - parent: 1 + pos: -114.5,16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15234 - - 15226 - - 15597 - - 15598 - - uid: 15021 + - 25562 + - uid: 19761 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15307 - - 15226 - - 15597 - - 15596 - - uid: 15022 + pos: -41.5,-55.5 + parent: 2 + - uid: 19781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15226 - - 15306 - - 15597 - - 15545 - - uid: 15023 + rot: 3.141592653589793 rad + pos: -89.5,13.5 + parent: 2 + - uid: 19782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15226 - - 15306 - - 15597 - - 15545 - - uid: 15025 + rot: 3.141592653589793 rad + pos: -88.5,13.5 + parent: 2 + - uid: 19783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 - - 15306 - - 15544 - - 15545 - - uid: 15026 + rot: 3.141592653589793 rad + pos: -85.5,13.5 + parent: 2 + - uid: 19784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 - - 15306 - - 15544 - - 15545 - - uid: 15027 + rot: 3.141592653589793 rad + pos: -86.5,10.5 + parent: 2 + - uid: 19785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 - - 15306 - - 15544 - - 15545 - - uid: 15028 + rot: 3.141592653589793 rad + pos: -83.5,20.5 + parent: 2 + - uid: 19786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 - - 15222 - - 15544 - - uid: 15029 + rot: 3.141592653589793 rad + pos: -83.5,18.5 + parent: 2 + - uid: 19787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 - - 15222 - - 15544 - - uid: 15030 + rot: 3.141592653589793 rad + pos: -86.5,26.5 + parent: 2 + - uid: 19788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 - - 15222 - - 15544 - - uid: 15031 + rot: 3.141592653589793 rad + pos: -87.5,32.5 + parent: 2 + - uid: 20434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15409 - - uid: 15032 + rot: -1.5707963267948966 rad + pos: -55.5,-62.5 + parent: 2 + - uid: 20435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15255 - - 12032 - - 15580 - - uid: 15033 + pos: -75.5,-53.5 + parent: 2 + - uid: 21464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15409 - - 15254 - - uid: 15034 + rot: 3.141592653589793 rad + pos: -119.5,-36.5 + parent: 2 + - uid: 21466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,394.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -115.5,-42.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15409 - - uid: 15035 + - 20316 + - uid: 21467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -113.5,-42.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15256 - - 12032 - - uid: 15036 + - 20316 + - uid: 21468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -114.5,-42.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15256 - - 15255 - - 15580 - - uid: 15037 + - 20316 + - uid: 21469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -113.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15256 - - 11580 - - uid: 15038 + - 20316 + - uid: 21470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -114.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15257 - - 15256 - - 15571 - - uid: 15039 + - 20316 + - uid: 21471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -115.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15259 - - 11580 - - 15572 - - uid: 15040 + - 20316 + - uid: 21866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 333.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 - - 15257 - - 15572 - - 15571 - - uid: 15041 + pos: -32.5,2.5 + parent: 2 + - uid: 22365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 - - 15257 - - 15572 - - 15571 - - uid: 15042 + pos: -29.5,-69.5 + parent: 2 + - uid: 22573 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15257 - - 15258 - - 15571 - - uid: 15043 + pos: -81.5,-8.5 + parent: 2 + - uid: 22574 components: - type: Transform rot: 1.5707963267948966 rad - pos: 331.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15257 - - 15258 - - 15571 - - uid: 15044 + pos: -85.5,-10.5 + parent: 2 + - uid: 22768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 - - 15258 - - 15543 - - uid: 15045 + pos: -135.5,22.5 + parent: 2 + - uid: 22877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -65.5,-2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15264 - - 15258 - - 15543 - - uid: 15046 + - 3288 + - 3287 + - uid: 23130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 - - 15572 - - uid: 15047 + rot: -1.5707963267948966 rad + pos: -76.5,-53.5 + parent: 2 + - uid: 23411 components: - type: Transform rot: 1.5707963267948966 rad - pos: 345.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15573 - - uid: 15049 + pos: -89.5,-33.5 + parent: 2 + - uid: 23425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15262 - - 15573 - - uid: 15050 + pos: -95.5,-36.5 + parent: 2 + - uid: 23444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15573 - - uid: 15051 + pos: -125.5,23.5 + parent: 2 + - uid: 24032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,413.5 - parent: 1 + pos: -22.5,20.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - 15261 - - 15573 - - 15574 - - uid: 15052 + - 24026 + - 1814 + - uid: 24039 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,415.5 - parent: 1 + pos: -22.5,-19.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15261 - - 15263 - - 15575 - - 15574 - - uid: 15053 + - 25640 + - uid: 24045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,424.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15264 - - 15265 - - 15543 - - 15576 - - uid: 15054 + - 4214 + - 17569 + - uid: 24048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 323.5,419.5 - parent: 1 + pos: -33.5,-38.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15266 - - 15265 - - 15576 - - uid: 15055 + - 17569 + - 20948 + - uid: 24049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 325.5,417.5 - parent: 1 + pos: -31.5,-41.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15266 - - uid: 15056 + - 20948 + - 25647 + - uid: 24050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,417.5 - parent: 1 + pos: -36.5,-38.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15264 - - 15543 - - uid: 15057 + - 20948 + - uid: 24123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,427.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -56.5,-35.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15265 - - 15576 - - uid: 15058 + - 12151 + - 15364 + - uid: 24124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,430.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -50.5,-49.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15265 - - 15576 - - uid: 15059 + - 15411 + - 15140 + - uid: 24125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,389.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15238 - - uid: 15060 + - 15411 + - uid: 24126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -45.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15238 - - 15253 - - uid: 15061 + - 15411 + - 15412 + - uid: 24127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -54.5,-55.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15238 - - 15253 - - uid: 15062 + - 15140 + - uid: 24128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-55.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15253 - - 15252 - - uid: 15063 + - 15140 + - 15413 + - uid: 24130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -56.5,-41.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15253 - - 15252 - - uid: 15064 + - 24742 + - uid: 24131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 318.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15252 - - 15250 - - uid: 15065 + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 24148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 - - 15249 - - uid: 15066 + rot: -1.5707963267948966 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 24149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 - - 15249 - - uid: 15067 + rot: -1.5707963267948966 rad + pos: -56.5,-56.5 + parent: 2 + - uid: 24150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 - - 15249 - - uid: 15068 + rot: -1.5707963267948966 rad + pos: -64.5,-58.5 + parent: 2 + - uid: 24152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 - - 15251 - - uid: 15069 + rot: -1.5707963267948966 rad + pos: -76.5,-59.5 + parent: 2 + - uid: 24444 components: - type: Transform rot: 1.5707963267948966 rad - pos: 304.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 - - 15251 - - uid: 15070 + pos: -79.5,-32.5 + parent: 2 + - uid: 24698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 - - 15251 - - uid: 15071 + rot: -1.5707963267948966 rad + pos: -108.5,-27.5 + parent: 2 + - uid: 24699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - 15569 - - uid: 15072 + rot: -1.5707963267948966 rad + pos: -108.5,-31.5 + parent: 2 + - uid: 24700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - 15569 - - uid: 15073 + rot: -1.5707963267948966 rad + pos: -110.5,-28.5 + parent: 2 + - uid: 25511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 343.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - 15569 - - uid: 15074 + pos: -123.5,-57.5 + parent: 2 + - uid: 25528 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - 15232 - - 15569 - - uid: 15075 + pos: -132.5,-55.5 + parent: 2 + - uid: 25529 components: - type: Transform rot: 1.5707963267948966 rad - pos: 351.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 - - 15229 - - 15569 - - uid: 15076 + pos: -138.5,-53.5 + parent: 2 + - uid: 25530 components: - type: Transform rot: 1.5707963267948966 rad - pos: 343.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1858 - - 15231 - - uid: 15077 + pos: -138.5,-41.5 + parent: 2 + - uid: 25531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 346.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15232 - - 1858 - - uid: 15078 + pos: -138.5,-37.5 + parent: 2 + - uid: 25532 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15232 - - 15233 - - uid: 15079 + pos: -134.5,-34.5 + parent: 2 + - uid: 25533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 345.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15235 - - 15233 - - uid: 15080 + pos: -123.5,-32.5 + parent: 2 + - uid: 25556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15233 - - 15234 - - 15598 - - uid: 15081 + rot: -1.5707963267948966 rad + pos: -104.5,15.5 + parent: 2 + - uid: 25563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,401.5 - parent: 1 + pos: -106.5,18.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15234 - - 15598 - - 15545 - - uid: 15082 + - 25562 + - uid: 25584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 - - 15306 - - 15598 - - 15545 - - uid: 15083 + rot: 3.141592653589793 rad + pos: -131.5,-45.5 + parent: 2 + - uid: 25586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,409.5 - parent: 1 - - uid: 15084 + rot: 3.141592653589793 rad + pos: -120.5,-64.5 + parent: 2 + - uid: 25587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,412.5 - parent: 1 - - uid: 15085 + rot: 3.141592653589793 rad + pos: -120.5,-69.5 + parent: 2 + - uid: 25590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,410.5 - parent: 1 - - uid: 15086 + rot: 3.141592653589793 rad + pos: -104.5,-60.5 + parent: 2 + - uid: 25592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15589 - - uid: 15087 + rot: 3.141592653589793 rad + pos: -104.5,-64.5 + parent: 2 + - uid: 25593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,413.5 - parent: 1 - - uid: 15088 + rot: 3.141592653589793 rad + pos: -109.5,-47.5 + parent: 2 + - uid: 25594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15590 - - 15589 - - uid: 15089 + rot: 3.141592653589793 rad + pos: -109.5,-43.5 + parent: 2 + - uid: 25595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15590 - - 15589 - - uid: 15090 + rot: 3.141592653589793 rad + pos: -135.5,0.5 + parent: 2 + - uid: 25596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 - - 15546 - - 15590 - - uid: 15091 + rot: 3.141592653589793 rad + pos: -133.5,2.5 + parent: 2 + - uid: 25650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,405.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -50.5,-32.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15306 - - 15546 - - 15590 - - uid: 15092 + - 25649 + - uid: 25699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15589 - - 22141 - - uid: 15093 + rot: -1.5707963267948966 rad + pos: -54.5,-62.5 + parent: 2 + - uid: 25871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15589 - - 15588 - - uid: 15094 + rot: -1.5707963267948966 rad + pos: -48.5,-66.5 + parent: 2 + - uid: 25872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15589 - - 15588 - - uid: 15095 + pos: -46.5,-64.5 + parent: 2 + - uid: 25873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15588 - - 15587 - - 15593 - - uid: 15096 + pos: -46.5,-63.5 + parent: 2 + - uid: 25874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15588 - - 15587 - - 15593 - - uid: 15097 + rot: -1.5707963267948966 rad + pos: -38.5,-61.5 + parent: 2 + - uid: 25875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,418.5 - parent: 1 - - uid: 15098 + rot: -1.5707963267948966 rad + pos: -35.5,-61.5 + parent: 2 + - uid: 25876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,421.5 - parent: 1 - - uid: 15099 + rot: -1.5707963267948966 rad + pos: -34.5,-61.5 + parent: 2 + - uid: 25877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 379.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15587 - - 15593 - - 22141 - - uid: 15100 + rot: -1.5707963267948966 rad + pos: -33.5,-61.5 + parent: 2 + - uid: 25878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15591 - - 22141 - - uid: 15101 + rot: -1.5707963267948966 rad + pos: -33.5,-68.5 + parent: 2 + - uid: 25879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15547 - - 15548 - - uid: 15102 + rot: -1.5707963267948966 rad + pos: -34.5,-68.5 + parent: 2 + - uid: 25927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15547 - - 15548 - - uid: 15103 + rot: -1.5707963267948966 rad + pos: -35.5,-68.5 + parent: 2 + - uid: 25928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15591 - - uid: 15104 + rot: -1.5707963267948966 rad + pos: -40.5,-63.5 + parent: 2 + - uid: 25929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15591 - - uid: 15105 + rot: -1.5707963267948966 rad + pos: -40.5,-67.5 + parent: 2 + - uid: 25930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15592 - - 15591 - - uid: 15106 + rot: -1.5707963267948966 rad + pos: -38.5,-68.5 + parent: 2 + - uid: 25931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15592 - - 15591 - - uid: 15107 + rot: -1.5707963267948966 rad + pos: -23.5,-59.5 + parent: 2 + - uid: 25932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15592 - - 15587 - - 15593 - - uid: 15108 + rot: -1.5707963267948966 rad + pos: -23.5,-60.5 + parent: 2 + - uid: 25934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15592 - - 15587 - - 15593 - - uid: 15109 + rot: -1.5707963267948966 rad + pos: -15.5,-67.5 + parent: 2 + - uid: 25935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15587 - - 15593 - - uid: 15110 + rot: -1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 2 + - uid: 25936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15547 - - 15548 - - 15292 - - uid: 15111 + rot: -1.5707963267948966 rad + pos: -14.5,-44.5 + parent: 2 + - uid: 25937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15547 - - 15548 - - 15292 - - uid: 15112 + rot: -1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - uid: 25939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15392 - - uid: 15113 + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 25940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15390 - - uid: 15114 + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 25941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15391 - - uid: 15115 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 25942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15391 - - uid: 15116 + rot: -1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - uid: 25944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-10.5 + parent: 2 + - uid: 25945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 2 + - uid: 25946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 25947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,1.5 + parent: 2 + - uid: 26027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15334 - - 15335 - - uid: 15117 + rot: 3.141592653589793 rad + pos: -42.5,-16.5 + parent: 2 + - uid: 26028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15325 - - 15334 - - uid: 15118 + rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 2 + - uid: 26163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15324 - - 5375 - - uid: 15119 + rot: -1.5707963267948966 rad + pos: -81.5,5.5 + parent: 2 + - uid: 26164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15325 - - 5375 - - uid: 15120 + rot: -1.5707963267948966 rad + pos: -81.5,4.5 + parent: 2 + - uid: 26165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15385 - - 15323 - - uid: 15121 + rot: -1.5707963267948966 rad + pos: -73.5,-9.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 1782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,-37.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15385 - - 5375 - - uid: 15122 + - 9253 + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15322 - - 5375 - - uid: 15123 + - 3287 + - 3288 + - uid: 2980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15322 - - uid: 15124 + - 3287 + - 3288 + - uid: 2981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,417.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15327 - - 5375 - - uid: 15125 + - 3287 + - 3288 + - uid: 2982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,418.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15327 - - 15328 - - uid: 15126 + - 3287 + - 3288 + - uid: 2983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,420.5 - parent: 1 + pos: -67.5,2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15327 - - 15328 - - uid: 15128 + - 22327 + - 2136 + - uid: 2984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,421.5 - parent: 1 + pos: -66.5,2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15330 - - 3703 - - uid: 15129 + - 22327 + - 2136 + - uid: 2985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,421.5 - parent: 1 + pos: -56.5,2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - - 15330 - - uid: 15130 + - 22327 + - 2136 + - uid: 2986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,419.5 - parent: 1 + pos: -55.5,2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15330 - - 5375 - - uid: 15131 + - 22327 + - 2136 + - uid: 2987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,421.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -61.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15333 - - 15332 - - uid: 15132 + - 3287 + - 3288 + - uid: 2988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,423.5 - parent: 1 + pos: -61.5,2.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15333 - - uid: 15133 + - 22327 + - 2136 + - uid: 5739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,423.5 - parent: 1 + pos: -38.5,-16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - - uid: 15134 + - 8155 + - uid: 9135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,423.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 3703 - - uid: 15135 + - 8155 + - 4214 + - 19747 + - uid: 11251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,419.5 - parent: 1 + pos: -49.5,-8.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15328 - - uid: 15142 + - 11242 + - 23681 + - 12769 + - uid: 12746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,405.5 - parent: 1 + pos: -120.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15306 - - 15545 - - uid: 15143 + - 20316 + - uid: 13444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -110.5,-7.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15306 - - uid: 15144 + - 9164 + - 19526 + - uid: 13445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,401.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -108.5,-7.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15306 - - 15546 - - uid: 15147 + - 9164 + - 19526 + - uid: 13446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,405.5 - parent: 1 + pos: -108.5,-13.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15292 - - 15385 - - uid: 15149 + - 19526 + - 25607 + - uid: 13447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,405.5 - parent: 1 + pos: -110.5,-13.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15321 - - 15294 - - 15295 - - uid: 15150 + - 19526 + - 25607 + - uid: 13539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 - - 15346 - - 15607 - - uid: 15151 + rot: 3.141592653589793 rad + pos: -91.5,-24.5 + parent: 2 + - uid: 14353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -69.5,-37.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15349 - - 15345 - - 15607 - - uid: 15152 + - 9253 + - uid: 14356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -68.5,-37.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15349 - - 15347 - - 15607 - - uid: 15153 + - 9253 + - uid: 14936 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,392.5 - parent: 1 + pos: -22.5,16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15349 - - 15348 - - 15607 - - uid: 15154 + - 24026 + - 1814 + - uid: 14937 components: - type: Transform rot: 1.5707963267948966 rad - pos: 425.5,403.5 - parent: 1 + pos: -22.5,17.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15338 - - 15349 - - 15605 - - 15607 - - uid: 15155 + - 24026 + - 1814 + - uid: 14938 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,406.5 - parent: 1 + pos: -22.5,18.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15349 - - 15607 - - uid: 15156 + - 24026 + - 1814 + - uid: 14942 components: - type: Transform rot: 1.5707963267948966 rad - pos: 423.5,406.5 - parent: 1 + pos: -56.5,-29.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15340 - - 15338 - - 15605 - - uid: 15157 + - 12151 + - 25649 + - uid: 14943 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,404.5 - parent: 1 + pos: -56.5,-30.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15337 - - 15338 - - 15605 - - uid: 15158 + - 12151 + - 25649 + - uid: 14944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,410.5 - parent: 1 + pos: -56.5,-31.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15340 - - 15339 - - uid: 15159 + - 12151 + - 25649 + - uid: 14945 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,406.5 - parent: 1 + pos: -56.5,-32.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15339 - - 15338 - - 15605 - - uid: 15160 + - 12151 + - 25649 + - uid: 14950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,406.5 - parent: 1 + pos: -56.5,-21.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15339 - - 15338 - - 15605 - - uid: 15161 + - 14953 + - 14954 + - 5898 + - 9430 + - 12151 + - uid: 14951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 425.5,410.5 - parent: 1 + pos: -56.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15341 - - 15340 - - uid: 15162 + - 14953 + - 14954 + - 5898 + - 9430 + - 12151 + - uid: 14952 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,409.5 - parent: 1 + pos: -56.5,-23.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15341 - - uid: 15163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 432.5,409.5 - parent: 1 - - uid: 15164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,409.5 - parent: 1 - - uid: 15165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,406.5 - parent: 1 - - uid: 15166 + - 14953 + - 14954 + - 5898 + - 9430 + - 12151 + - uid: 15032 components: - type: Transform rot: 1.5707963267948966 rad - pos: 434.5,406.5 - parent: 1 - - uid: 15167 + pos: -93.5,-18.5 + parent: 2 + - uid: 15848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-29.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15350 - - uid: 15168 + - 12151 + - 9253 + - uid: 16404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-31.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15350 - - uid: 15169 + - 12151 + - 9253 + - uid: 16965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-30.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15351 - - 15350 - - uid: 15170 + - 12151 + - 9253 + - uid: 19777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15351 - - 15350 - - uid: 15171 + rot: 3.141592653589793 rad + pos: -100.5,12.5 + parent: 2 + - uid: 19778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 6311 - - 15351 - - uid: 15172 + rot: 3.141592653589793 rad + pos: -102.5,12.5 + parent: 2 + - uid: 21045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 6311 - - 13307 - - uid: 15173 + rot: -1.5707963267948966 rad + pos: -80.5,-76.5 + parent: 2 + - uid: 21463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-42.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15351 - - 15353 - - uid: 15174 + - 20316 + - uid: 22713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 447.5,407.5 - parent: 1 + pos: -20.5,-4.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15351 - - uid: 15175 + - 7346 + - 11893 + - 24784 + - uid: 23246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 442.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15351 - - 15352 - - uid: 15177 + rot: 3.141592653589793 rad + pos: -76.5,-69.5 + parent: 2 + - uid: 23865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15336 - - 15321 - - uid: 15178 + - 12151 + - 9253 + - uid: 23895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,404.5 - parent: 1 + pos: -20.5,-5.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15353 - - 15354 - - uid: 15179 + - 7346 + - 11893 + - 24784 + - uid: 24031 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,413.5 - parent: 1 + pos: -27.5,6.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15360 - - 15353 - - uid: 15180 + - 11298 + - uid: 24035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 450.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15360 - - 15353 - - uid: 15181 + rot: 3.141592653589793 rad + pos: -70.5,-37.5 + parent: 2 + - uid: 24645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 452.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15359 - - 15353 - - uid: 15182 + - 11722 + - uid: 24646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 455.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -20.5,11.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15358 - - 15353 - - uid: 15183 + - 11722 + - uid: 24647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 459.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -19.5,11.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15357 - - 15353 - - uid: 15184 + - 11722 + - uid: 24708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 461.5,408.5 - parent: 1 + pos: -31.5,-19.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15353 - - 15356 - - uid: 15185 + - 25640 + - uid: 25558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 451.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 - - 15354 - - uid: 15186 + rot: -1.5707963267948966 rad + pos: -97.5,16.5 + parent: 2 + - uid: 25605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 455.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15353 - - uid: 15187 + - 25604 + - uid: 25638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 446.5,418.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-26.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15360 - - uid: 15188 + - 19747 + - uid: 25643 components: - type: Transform rot: 1.5707963267948966 rad - pos: 451.5,420.5 - parent: 1 + pos: -27.5,-25.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15360 - - 15361 - - uid: 15189 + - 17850 + - 25641 +- proto: FirelockGlass + entities: + - uid: 442 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,422.5 - parent: 1 + pos: -68.5,-17.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15361 - - 15364 - - uid: 15190 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,374.5 - parent: 1 - - uid: 15191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,424.5 - parent: 1 - - uid: 15192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,424.5 - parent: 1 - - uid: 15193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,419.5 - parent: 1 - - uid: 15194 + - 23681 + - 12769 + - uid: 511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,426.5 - parent: 1 - - uid: 15195 + pos: -94.5,31.5 + parent: 2 + - uid: 640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,426.5 - parent: 1 - - uid: 15196 + rot: -1.5707963267948966 rad + pos: -95.5,-55.5 + parent: 2 + - uid: 1658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 307.5,417.5 - parent: 1 - - uid: 15197 + pos: -66.5,-19.5 + parent: 2 + - uid: 1667 components: - type: Transform rot: 1.5707963267948966 rad - pos: 307.5,415.5 - parent: 1 - - uid: 15198 + pos: -62.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - 23681 + - 12769 + - uid: 3308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,413.5 - parent: 1 - - uid: 15199 + rot: 3.141592653589793 rad + pos: -68.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9253 + - uid: 4433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,413.5 - parent: 1 - - uid: 15200 + pos: -97.5,31.5 + parent: 2 + - uid: 7804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 310.5,412.5 - parent: 1 + pos: -20.5,-35.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15578 - - uid: 15201 + - 25645 + - uid: 7805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15578 - - uid: 15202 + - 19910 + - 12768 + - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,409.5 - parent: 1 + pos: -31.5,-31.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15578 - - uid: 15203 + - 19747 + - 26109 + - uid: 7864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15578 - - uid: 15204 + - 19910 + - 12768 + - uid: 7894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15579 - - uid: 15205 + - 19910 + - 12768 + - uid: 8163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,412.5 - parent: 1 + pos: -33.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15579 - - uid: 15206 + - 17850 + - uid: 8316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,409.5 - parent: 1 + pos: -30.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15579 - - uid: 15207 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,407.5 - parent: 1 - - uid: 15208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,407.5 - parent: 1 - - uid: 15209 + - 25640 + - 17850 + - uid: 8320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,416.5 - parent: 1 + pos: -28.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15587 - - 15593 - - uid: 15213 + - 25640 + - 17850 + - uid: 8327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,405.5 - parent: 1 + pos: -28.5,-16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 11580 - - 15222 - - 15544 - - uid: 15214 + - 19910 + - 25640 + - 12768 + - uid: 8328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,400.5 - parent: 1 + pos: -30.5,-16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15235 - - 15222 - - 15544 - - uid: 15215 + - 19910 + - 25640 + - 12768 + - uid: 8329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,400.5 - parent: 1 + pos: -27.5,-31.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15235 - - 15222 - - 15544 - - uid: 15216 + - 15026 + - 26109 + - uid: 8330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,400.5 - parent: 1 + pos: -27.5,-30.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15235 - - 15222 - - 15544 - - uid: 15217 + - 15026 + - 26109 + - uid: 8331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,401.5 - parent: 1 + pos: -29.5,-16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15233 - - 15222 - - 15544 - - uid: 15218 + - 19910 + - 25640 + - 12768 + - uid: 8332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,399.5 - parent: 1 + pos: -27.5,-29.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15307 - - 15596 - - uid: 15219 + - 15026 + - 26109 + - uid: 8333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,396.5 - parent: 1 + pos: -35.5,-24.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15311 - - 15307 - - 15596 - - uid: 15220 + - 17850 + - 8155 + - uid: 8346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15311 - - 15596 - - 15565 - - uid: 15221 + - 25645 + - uid: 8348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,394.5 - parent: 1 + pos: -31.5,-29.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15311 - - 15310 - - 15596 - - uid: 15245 + - 19747 + - 26109 + - uid: 8387 components: - type: Transform - pos: 308.5,383.5 - parent: 1 + pos: -27.5,-44.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15249 - - 15247 - - uid: 15246 + - 25647 + - uid: 8558 components: - type: Transform - pos: 315.5,383.5 - parent: 1 + pos: -31.5,-48.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15247 - - 15248 - - uid: 15308 + - 25647 + - uid: 8608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,391.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 12120 - - uid: 15377 + - 1814 + - uid: 8651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 410.5,388.5 - parent: 1 + pos: -29.5,8.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15376 - - 15368 - - uid: 15378 + - 1814 + - uid: 8687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 410.5,389.5 - parent: 1 + pos: -28.5,8.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15376 - - 15368 - - uid: 15379 + - 1814 + - uid: 8689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 - - 15376 - - uid: 15380 + pos: -28.5,4.5 + parent: 2 + - uid: 8690 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 - - 15376 - - uid: 15381 + pos: -29.5,4.5 + parent: 2 + - uid: 8727 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 - - 15376 - - uid: 15382 + pos: -30.5,4.5 + parent: 2 + - uid: 8777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,392.5 - parent: 1 + pos: -28.5,-39.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15375 - - 15344 - - 15606 - - uid: 15383 + - 26109 + - 25647 + - uid: 8778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,409.5 - parent: 1 + pos: -29.5,-39.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15322 - - 15385 - - uid: 15384 + - 26109 + - 25647 + - uid: 8846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,396.5 - parent: 1 + pos: -30.5,-39.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15344 - - 13123 - - 15606 - - 15295 - - uid: 15404 + - 26109 + - 25647 + - uid: 8849 components: - type: Transform - pos: 361.5,391.5 - parent: 1 + pos: -21.5,-30.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15405 - - 12120 - - uid: 15407 + - 15026 + - uid: 8856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,399.5 - parent: 1 + pos: -21.5,-29.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15234 - - 15226 - - 15597 - - 15598 - - uid: 15492 + - 15026 + - uid: 8882 components: - type: Transform - pos: 390.5,394.5 - parent: 1 + pos: -21.5,-31.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15299 - - 15559 - - 15297 - - uid: 15504 + - 15026 + - uid: 8935 components: - type: Transform - pos: 416.5,368.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -123.5,-7.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15502 - - 15501 - - 15556 - - 15557 - - uid: 15513 + - 25598 + - 25603 + - uid: 8950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,361.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -142.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15511 - - 15506 - - uid: 15514 + - 13492 + - uid: 8955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,362.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -137.5,-12.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15506 - - uid: 15515 + - 13492 + - 25599 + - uid: 8961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,362.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -139.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 16102 - - uid: 15516 + - 13492 + - uid: 8976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,361.5 - parent: 1 + pos: -25.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 16102 - - uid: 15517 + - 25641 + - 25640 + - uid: 8989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,361.5 - parent: 1 + pos: -24.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15509 - - 16102 - - uid: 15518 + - 25641 + - 25640 + - uid: 8996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,361.5 - parent: 1 + pos: -126.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 16102 - - uid: 15519 + - 25600 + - uid: 9069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,364.5 - parent: 1 + pos: -26.5,-22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 16102 - - uid: 15520 + - 25641 + - 25640 + - uid: 9095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,351.5 - parent: 1 - - uid: 15521 + rot: 3.141592653589793 rad + pos: -106.5,-44.5 + parent: 2 + - uid: 9109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,355.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15512 - - 15529 - - uid: 15522 + rot: 3.141592653589793 rad + pos: -106.5,-46.5 + parent: 2 + - uid: 9117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,353.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 - - 15512 - - uid: 15523 + rot: 3.141592653589793 rad + pos: -111.5,-44.5 + parent: 2 + - uid: 9129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,354.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 - - 15512 - - uid: 15525 + rot: 3.141592653589793 rad + pos: -111.5,-46.5 + parent: 2 + - uid: 9166 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,365.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15506 - - uid: 15526 + pos: -94.5,13.5 + parent: 2 + - uid: 9303 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,365.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15506 - - uid: 15527 + pos: -97.5,7.5 + parent: 2 + - uid: 9419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,364.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15505 - - uid: 15528 + rot: 3.141592653589793 rad + pos: -117.5,-39.5 + parent: 2 + - uid: 9422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,362.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15505 - - 15506 - - uid: 15531 + rot: 3.141592653589793 rad + pos: -120.5,-54.5 + parent: 2 + - uid: 9497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15530 - - 15524 - - 15552 - - 15551 - - uid: 15532 + pos: -137.5,12.5 + parent: 2 + - uid: 9674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,386.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -60.5,-17.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15530 - - 15524 - - 15552 - - 15551 - - uid: 15533 + - 12151 + - 23681 + - 12769 + - uid: 9723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,394.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -36.5,12.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15530 - - 15551 - - 15295 - - 15297 - - uid: 15599 + - 1814 + - uid: 10164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15494 - - 15495 - - uid: 15600 + pos: -94.5,36.5 + parent: 2 + - uid: 10263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 15369 - - uid: 20296 + - 1814 + - uid: 11724 components: - type: Transform - pos: -1.5,2.5 - parent: 20181 + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20183 - - 20182 - - uid: 20297 + - 1814 + - uid: 11743 components: - type: Transform - pos: 3.5,3.5 - parent: 20181 + pos: -127.5,-41.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20182 - - 20184 - - uid: 20298 + - 17420 + - uid: 11802 components: - type: Transform - pos: 5.5,1.5 - parent: 20181 + pos: -4.5,-9.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20182 - - 20185 - - uid: 20299 + - 11837 + - 15347 + - uid: 11804 components: - type: Transform - pos: 6.5,0.5 - parent: 20181 + pos: -1.5,-16.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20185 - - uid: 20641 + - 11837 + - 15347 + - uid: 11805 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 20527 + pos: -25.5,9.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20528 - - uid: 20642 + - 11298 + - 1814 + - uid: 11809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 20527 + pos: -1.5,-10.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20528 - - 20529 - - uid: 20643 + - 11837 + - 15347 + - uid: 11810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 20527 + pos: -1.5,-18.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 20528 - - 20530 - - uid: 21361 - components: - - type: Transform - pos: 3.5,26.5 - parent: 5072 - - uid: 21368 - components: - - type: Transform - pos: 1.5,28.5 - parent: 5072 - - uid: 21430 + - 11837 + - 15347 + - uid: 11814 components: - type: Transform - pos: 2.5,29.5 - parent: 5072 - - uid: 21459 + pos: -1.5,-8.5 + parent: 2 + - uid: 11816 components: - type: Transform - pos: 3.5,29.5 - parent: 5072 - - uid: 21496 + pos: -4.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - 15347 + - uid: 11817 components: - type: Transform - pos: 5.5,28.5 - parent: 5072 - - uid: 21499 + pos: -10.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - 15347 + - uid: 11846 components: - type: Transform - pos: 4.5,29.5 - parent: 5072 -- proto: Fireplace - entities: - - uid: 21493 + pos: -7.5,-7.5 + parent: 2 + - uid: 11936 components: - type: Transform - pos: 7.5,26.5 - parent: 5072 -- proto: Flash - entities: - - uid: 21719 + rot: 3.141592653589793 rad + pos: -137.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17419 + - 17420 + - uid: 12585 components: - type: Transform - pos: 8.497082,31.408243 - parent: 5072 -- proto: FlashlightLantern - entities: - - uid: 21822 + pos: -123.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17420 + - uid: 12903 components: - type: Transform - pos: -2.4670525,30.482414 - parent: 5072 -- proto: FloodlightBroken - entities: - - uid: 18004 + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 12928 components: - type: Transform - pos: 502.5,395.5 - parent: 1 -- proto: FloorDrain - entities: - - uid: 5896 + rot: 3.141592653589793 rad + pos: -16.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 12942 components: - type: Transform - pos: 412.5,384.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 5914 + rot: 3.141592653589793 rad + pos: -27.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - 24784 + - uid: 12943 components: - type: Transform - pos: 411.5,362.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 21156 + rot: 3.141592653589793 rad + pos: -76.5,-13.5 + parent: 2 + - uid: 12944 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,409.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 21160 + pos: -76.5,-14.5 + parent: 2 + - uid: 12947 components: - type: Transform - pos: 396.5,418.5 - parent: 1 - - type: Fixtures - fixtures: {} - - uid: 21650 + rot: 3.141592653589793 rad + pos: -76.5,-12.5 + parent: 2 + - uid: 12948 components: - type: Transform - pos: 12.5,27.5 - parent: 5072 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemDarkMono - entities: - - uid: 19093 + rot: 3.141592653589793 rad + pos: -73.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - uid: 12949 components: - type: Transform - pos: 333.5,452.5 - parent: 1 - - uid: 19094 + rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - 24784 + - uid: 13437 components: - type: Transform - pos: 335.5,453.5 - parent: 1 - - uid: 19127 + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - 24784 + - uid: 13438 components: - type: Transform - pos: 337.5,448.5 - parent: 1 - - uid: 19128 + rot: 1.5707963267948966 rad + pos: -54.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14953 + - 9430 + - 25649 + - uid: 13439 components: - type: Transform - pos: 339.5,446.5 - parent: 1 - - uid: 19129 + rot: 3.141592653589793 rad + pos: -41.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13440 components: - type: Transform - pos: 337.5,445.5 - parent: 1 - - uid: 19675 + rot: 3.141592653589793 rad + pos: -29.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13441 components: - type: Transform - pos: 341.5,447.5 - parent: 1 - - uid: 19949 + rot: 3.141592653589793 rad + pos: -30.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13442 components: - type: Transform - pos: 333.5,448.5 - parent: 1 - - uid: 20035 + rot: 3.141592653589793 rad + pos: -41.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13443 components: - type: Transform - pos: 335.5,449.5 - parent: 1 - - uid: 20071 + rot: 3.141592653589793 rad + pos: -28.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13448 components: - type: Transform - pos: 337.5,444.5 - parent: 1 -- proto: FloorTileItemGratingMaint - entities: - - uid: 20975 + rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13467 components: - type: Transform - pos: 407.5,417.5 - parent: 1 -- proto: FloorTileItemMime - entities: - - uid: 5539 + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - uid: 13488 components: - type: Transform - pos: 396.5,409.5 - parent: 1 -- proto: FoodBakedMuffinBanana - entities: - - uid: 6105 + rot: 3.141592653589793 rad + pos: -73.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - uid: 13514 components: - type: Transform - pos: 425.5,387.5 - parent: 1 -- proto: FoodBakedMuffinBerry - entities: - - uid: 4961 + rot: 3.141592653589793 rad + pos: -73.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - uid: 13586 components: - type: Transform - parent: 2074 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBakedMuffinCherry - entities: - - uid: 4960 + pos: -106.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19526 + - uid: 13605 components: - type: Transform - pos: 407.5,391.5 - parent: 1 -- proto: FoodBoxDonut - entities: - - uid: 21814 + rot: 1.5707963267948966 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 13606 components: - type: Transform - pos: -1.5376439,25.04381 - parent: 5072 -- proto: FoodBreadButteredToast - entities: - - uid: 18006 + rot: 1.5707963267948966 rad + pos: -89.5,-27.5 + parent: 2 + - uid: 13618 components: - type: Transform - pos: 508.5,389.5 - parent: 1 -- proto: FoodBreadCotton - entities: - - uid: 18287 + pos: -119.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25603 + - 25604 + - uid: 13620 components: - type: Transform - parent: 2074 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBreadCottonSlice - entities: - - uid: 18424 + pos: -118.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25603 + - 25604 + - uid: 13628 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCartHot - entities: - - uid: 5898 + rot: 1.5707963267948966 rad + pos: -87.5,-24.5 + parent: 2 + - uid: 13765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,389.5 - parent: 1 -- proto: FoodDoughCottonFlat - entities: - - uid: 18425 + pos: -120.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25603 + - 25604 + - uid: 13788 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodDoughFlat - entities: - - uid: 5280 + rot: 3.141592653589793 rad + pos: -141.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13736 + - 17419 + - uid: 13831 components: - type: Transform - pos: 448.5,419.5 - parent: 1 -- proto: FoodDoughSlice - entities: - - uid: 4959 + rot: 1.5707963267948966 rad + pos: -94.5,-20.5 + parent: 2 + - uid: 13833 components: - type: Transform - pos: 407.5,390.5 - parent: 1 -- proto: FoodGlasstle - entities: - - uid: 21099 + rot: 1.5707963267948966 rad + pos: -96.5,-16.5 + parent: 2 + - uid: 13847 components: - type: Transform - pos: 439.5,401.5 - parent: 1 -- proto: FoodHolymelon - entities: - - uid: 20057 + rot: 3.141592653589793 rad + pos: -143.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13736 + - uid: 13854 components: - type: Transform - pos: 332.5,437.5 - parent: 1 -- proto: FoodNoodlesSpesslaw - entities: - - uid: 5202 + rot: 1.5707963267948966 rad + pos: -94.5,-16.5 + parent: 2 + - uid: 13909 components: - type: Transform - pos: 444.5,411.5 - parent: 1 -- proto: FoodPieBananaCream - entities: - - uid: 5544 + pos: -117.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25604 + - uid: 14288 components: - type: Transform - pos: 396.5,406.5 - parent: 1 - - uid: 5545 + rot: 3.141592653589793 rad + pos: -55.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3288 + - 3287 + - 23681 + - 12769 + - uid: 14360 components: - type: Transform - pos: 396.5,409.5 - parent: 1 -- proto: FoodPizzaCotton - entities: - - uid: 18289 + rot: 3.141592653589793 rad + pos: -22.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11722 + - 1814 + - uid: 14500 components: - type: Transform - pos: 415.5,421.5 - parent: 1 - - uid: 18427 + rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 11837 + - 15347 + - uid: 14507 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPizzaCottonSlice - entities: - - uid: 18286 + rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 11837 + - 15347 + - uid: 14508 components: - type: Transform - parent: 2074 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18288 + rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 11837 + - 15347 + - uid: 14509 components: - type: Transform - parent: 2074 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 18422 + pos: -106.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19526 + - uid: 14513 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPotato - entities: - - uid: 21081 + pos: -106.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19526 + - uid: 14573 components: - type: Transform - pos: 407.5,368.5 - parent: 1 -- proto: FoodSnackChips - entities: - - uid: 17474 + pos: -116.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19526 + - 25603 + - uid: 14590 components: - type: Transform - pos: 510.5,384.5 - parent: 1 -- proto: FoodSnackPopcorn - entities: - - uid: 18333 + pos: -119.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - 19506 + - 9164 + - uid: 14592 components: - type: Transform - pos: 433.5,403.5 - parent: 1 - - uid: 18334 + pos: -116.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9164 + - uid: 14596 components: - type: Transform - pos: 433.5,404.5 - parent: 1 - - uid: 18339 + pos: -117.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25604 + - 25607 + - uid: 14597 components: - type: Transform - pos: 433.5,399.5 - parent: 1 -- proto: FuelDispenser - entities: - - uid: 6397 + rot: -1.5707963267948966 rad + pos: -55.5,-45.5 + parent: 2 + - uid: 14598 components: - type: Transform - pos: 340.5,408.5 - parent: 1 - - uid: 14407 + rot: -1.5707963267948966 rad + pos: -55.5,-46.5 + parent: 2 + - uid: 14599 components: - type: Transform rot: -1.5707963267948966 rad - pos: 410.5,410.5 - parent: 1 - - uid: 20300 + pos: -63.5,-50.5 + parent: 2 + - uid: 14606 components: - type: Transform - pos: 1.5,3.5 - parent: 20181 -- proto: GameMasterCircuitBoard - entities: - - uid: 6655 + rot: -1.5707963267948966 rad + pos: -65.5,-50.5 + parent: 2 + - uid: 14627 components: - type: Transform - pos: 302.5,407.5 - parent: 1 -- proto: GasAnalyzer - entities: - - uid: 18641 + rot: 3.141592653589793 rad + pos: -44.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 23681 + - 12769 + - uid: 14628 components: - type: Transform - pos: 339.5,434.5 - parent: 1 -- proto: GasFilterFlipped - entities: - - uid: 20301 + rot: 3.141592653589793 rad + pos: -44.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 23681 + - 12769 + - uid: 14635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 20181 - - uid: 20302 + rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - 23681 + - 12769 + - uid: 14636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 20181 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20303 + pos: -58.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 14637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 20181 -- proto: GasMinerCarbonDioxide - entities: - - uid: 6260 + pos: -57.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 14638 components: - type: Transform - pos: 341.5,430.5 - parent: 1 -- proto: GasMinerNitrogen - entities: - - uid: 20304 + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 14640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 20181 -- proto: GasMinerNitrogenStation - entities: - - uid: 6257 + rot: 1.5707963267948966 rad + pos: -65.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 14739 components: - type: Transform - pos: 332.5,430.5 - parent: 1 -- proto: GasMinerOxygen - entities: - - uid: 20305 + pos: -113.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19526 + - uid: 14746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 20181 -- proto: GasMinerOxygenStation - entities: - - uid: 6258 + pos: -104.5,-0.5 + parent: 2 + - uid: 14751 components: - type: Transform - pos: 329.5,430.5 - parent: 1 -- proto: GasMinerPlasma - entities: - - uid: 6256 + pos: -103.5,-0.5 + parent: 2 + - uid: 14752 components: - type: Transform - pos: 335.5,430.5 - parent: 1 - - type: GasMiner - spawnAmount: 25 -- proto: GasMinerWaterVapor - entities: - - uid: 6259 + pos: -119.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9164 + - 25603 + - uid: 14877 components: - type: Transform - pos: 338.5,430.5 - parent: 1 - - uid: 20306 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - 24785 + - uid: 14935 components: - type: Transform - pos: 3.5,-1.5 - parent: 20181 -- proto: GasMixer - entities: - - uid: 20307 + rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - 24785 + - uid: 14978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 20181 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasOutletInjector - entities: - - uid: 6286 + rot: 3.141592653589793 rad + pos: -66.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3288 + - 3287 + - 23681 + - 12769 + - uid: 14979 components: - type: Transform - pos: 330.5,429.5 - parent: 1 - - uid: 6287 + rot: 3.141592653589793 rad + pos: -67.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3288 + - 3287 + - 23681 + - 12769 + - uid: 14980 components: - type: Transform - pos: 333.5,429.5 - parent: 1 - - uid: 6288 + rot: 3.141592653589793 rad + pos: -61.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11244 + - 23991 + - uid: 14996 components: - type: Transform - pos: 336.5,429.5 - parent: 1 - - uid: 6289 + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3288 + - 3287 + - 23681 + - 12769 + - uid: 15709 components: - type: Transform - pos: 339.5,429.5 - parent: 1 - - uid: 6290 + rot: -1.5707963267948966 rad + pos: -63.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 15855 components: - type: Transform - pos: 342.5,429.5 - parent: 1 - - uid: 6291 + rot: -1.5707963267948966 rad + pos: -65.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - uid: 16189 components: - type: Transform - pos: 345.5,429.5 - parent: 1 - - uid: 12828 + rot: -1.5707963267948966 rad + pos: -95.5,-56.5 + parent: 2 + - uid: 16552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,389.5 - parent: 1 - - uid: 20308 + pos: -139.5,13.5 + parent: 2 + - uid: 17421 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 20181 - - uid: 20309 + pos: -147.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13736 + - uid: 17422 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 20181 - - uid: 20310 + pos: -151.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13736 + - uid: 17424 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 20181 -- proto: GasPassiveVent - entities: - - uid: 2720 + pos: -147.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13736 + - uid: 19471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 317.5,421.5 - parent: 1 - - uid: 5163 + pos: -56.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14953 + - 14954 + - uid: 19610 components: - type: Transform - pos: 348.5,429.5 - parent: 1 - - uid: 6293 + rot: 1.5707963267948966 rad + pos: -137.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13492 + - 13490 + - uid: 19613 components: - type: Transform - pos: 344.5,429.5 - parent: 1 - - uid: 6294 + rot: 1.5707963267948966 rad + pos: -53.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14953 + - 9430 + - 25649 + - uid: 23399 components: - type: Transform - pos: 341.5,429.5 - parent: 1 - - uid: 6295 + rot: 1.5707963267948966 rad + pos: -91.5,-36.5 + parent: 2 + - uid: 23428 components: - type: Transform - pos: 338.5,429.5 - parent: 1 - - uid: 6296 + rot: 1.5707963267948966 rad + pos: -82.5,-30.5 + parent: 2 + - uid: 24801 components: - type: Transform - pos: 335.5,429.5 - parent: 1 - - uid: 6297 + pos: -102.5,-0.5 + parent: 2 + - uid: 25557 components: - type: Transform - pos: 332.5,429.5 - parent: 1 - - uid: 6298 + rot: -1.5707963267948966 rad + pos: -97.5,15.5 + parent: 2 + - uid: 25564 components: - type: Transform - pos: 329.5,429.5 - parent: 1 - - uid: 12830 + pos: -124.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - 19506 + - uid: 25565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,388.5 - parent: 1 - - uid: 14711 + pos: -114.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - 19506 + - uid: 25580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,418.5 - parent: 1 - - uid: 20311 + rot: 3.141592653589793 rad + pos: -123.5,-45.5 + parent: 2 + - uid: 25581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 20181 - - uid: 20312 + rot: 3.141592653589793 rad + pos: -125.5,-49.5 + parent: 2 + - uid: 25582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 20181 - - uid: 20313 + rot: 3.141592653589793 rad + pos: -123.5,-51.5 + parent: 2 + - uid: 25583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 20181 - - uid: 20314 + rot: 3.141592653589793 rad + pos: -117.5,-51.5 + parent: 2 + - uid: 25585 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 20181 - - uid: 20644 + pos: -120.5,-58.5 + parent: 2 + - uid: 25588 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 20527 -- proto: GasPipeBend - entities: - - uid: 3137 + pos: -120.5,-78.5 + parent: 2 + - uid: 25589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4971 + rot: 3.141592653589793 rad + pos: -116.5,-68.5 + parent: 2 + - uid: 25591 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5402 + pos: -106.5,-62.5 + parent: 2 + - uid: 25597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,419.5 - parent: 1 - - uid: 5404 + rot: 3.141592653589793 rad + pos: -130.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25598 + - 25603 + - uid: 25634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,417.5 - parent: 1 - - uid: 5418 + pos: -28.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17850 + - 26109 + - uid: 25635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6094 + pos: -29.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17850 + - 26109 + - uid: 25636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,375.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7462 + pos: -30.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17850 + - 26109 + - uid: 25642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,417.5 - parent: 1 - - uid: 11889 + pos: -27.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17850 + - 25641 + - uid: 25881 components: - type: Transform - pos: 383.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11928 + rot: -1.5707963267948966 rad + pos: -95.5,-57.5 + parent: 2 + - uid: 25938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11939 + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - uid: 26166 components: - type: Transform rot: -1.5707963267948966 rad - pos: 344.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11943 + pos: -80.5,6.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 8655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11945 + pos: -21.5,-17.5 + parent: 2 +- proto: Flash + entities: + - uid: 22312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11946 + pos: -62.63784,-3.7257838 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 8686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11951 + pos: -55.423786,-68.43352 + parent: 2 + - uid: 19502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11954 + pos: -109.39066,-13.270811 + parent: 2 + - uid: 19503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 323.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11965 + pos: -109.56254,-13.536436 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 17810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11970 + pos: -93.54334,-31.573391 + parent: 2 + - type: HandheldLight + toggleActionEntity: 17811 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 17811 + - type: ActionsContainer +- proto: FleshBlocker + entities: + - uid: 23372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11982 + pos: -20.5,-24.5 + parent: 2 + - uid: 23409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11983 + pos: -17.5,-25.5 + parent: 2 + - uid: 23410 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 478 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3435 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3790 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11992 + pos: -60.5,-61.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,419.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11993 + pos: -40.5,-38.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,419.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12000 + pos: -90.5,-50.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 17148 components: - type: Transform rot: 3.141592653589793 rad - pos: 334.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12003 + pos: -38.5,-24.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 17364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12005 + rot: 1.5707963267948966 rad + pos: -124.5,-54.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 25454 components: - type: Transform - pos: 350.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12051 + rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 25620 components: - type: Transform - pos: 364.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12052 + pos: -38.5,-18.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorLiquidPlasmaEntity + entities: + - uid: 3604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12068 + pos: -95.5,-3.5 + parent: 2 + - uid: 3727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12069 + pos: -96.5,-3.5 + parent: 2 + - uid: 3728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12089 + pos: -95.5,-4.5 + parent: 2 + - uid: 3744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12090 + pos: -96.5,-4.5 + parent: 2 + - uid: 3752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12094 + pos: -94.5,-3.5 + parent: 2 + - uid: 3753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12109 + pos: -96.5,-2.5 + parent: 2 + - uid: 3757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12110 + pos: -94.5,-2.5 + parent: 2 + - uid: 3758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12112 + pos: -94.5,-1.5 + parent: 2 + - uid: 3760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12116 + pos: -96.5,-1.5 + parent: 2 + - uid: 3761 components: - type: Transform - pos: 379.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12118 + pos: -95.5,-1.5 + parent: 2 + - uid: 3764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12119 + pos: -95.5,-2.5 + parent: 2 + - uid: 4012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12137 + pos: -90.5,-65.5 + parent: 2 + - uid: 4038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,380.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12168 + pos: -90.5,-66.5 + parent: 2 + - uid: 4097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12169 + pos: -89.5,-64.5 + parent: 2 + - uid: 4112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12170 + pos: -89.5,-66.5 + parent: 2 + - uid: 4272 components: - type: Transform - pos: 393.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12171 + pos: -90.5,-64.5 + parent: 2 + - uid: 4273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12180 + pos: -92.5,-64.5 + parent: 2 + - uid: 4274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12181 + pos: -93.5,-66.5 + parent: 2 + - uid: 4326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12187 + pos: -91.5,-66.5 + parent: 2 + - uid: 4498 components: - type: Transform - pos: 407.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12188 + pos: -95.5,-64.5 + parent: 2 + - uid: 4533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12190 + pos: -92.5,-65.5 + parent: 2 + - uid: 4558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12191 + pos: -92.5,-66.5 + parent: 2 + - uid: 4561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12212 + pos: -94.5,-64.5 + parent: 2 + - uid: 4562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,376.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12217 + pos: -94.5,-65.5 + parent: 2 + - uid: 14659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,370.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12220 + pos: -93.5,-1.5 + parent: 2 + - uid: 14660 components: - type: Transform - pos: 407.5,375.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12221 + pos: -91.5,-64.5 + parent: 2 + - uid: 15035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,374.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12229 + rot: 1.5707963267948966 rad + pos: -94.5,-2.5 + parent: 2 + - uid: 15042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,370.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12233 + rot: 1.5707963267948966 rad + pos: -95.5,0.5 + parent: 2 + - uid: 15060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,372.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12263 + pos: -93.5,0.5 + parent: 2 + - uid: 15067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,362.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12286 + pos: -90.5,-67.5 + parent: 2 + - uid: 15068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,351.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12287 + pos: -91.5,-67.5 + parent: 2 + - uid: 15250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,351.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12292 + pos: -92.5,-67.5 + parent: 2 + - uid: 15261 components: - type: Transform - pos: 425.5,356.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12300 + pos: -93.5,-67.5 + parent: 2 + - uid: 15263 components: - type: Transform - pos: 425.5,362.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12313 + pos: -95.5,-66.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: -94.5,-0.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + pos: -91.5,-65.5 + parent: 2 + - uid: 15785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12314 + pos: -93.5,-2.5 + parent: 2 + - uid: 15797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,391.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12315 + pos: -95.5,-65.5 + parent: 2 + - uid: 16182 components: - type: Transform - pos: 423.5,391.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12316 + pos: -95.5,-0.5 + parent: 2 + - uid: 17466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12323 + pos: -93.5,-64.5 + parent: 2 + - uid: 17472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 409.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12329 + pos: -94.5,-1.5 + parent: 2 + - uid: 17473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12330 + rot: 1.5707963267948966 rad + pos: -93.5,-1.5 + parent: 2 + - uid: 17475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12333 + pos: -93.5,-0.5 + parent: 2 + - uid: 17479 components: - type: Transform - pos: 409.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12334 + rot: 1.5707963267948966 rad + pos: -92.5,-3.5 + parent: 2 + - uid: 18114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,384.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12336 + pos: -93.5,-63.5 + parent: 2 + - uid: 18349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,384.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12343 + rot: 1.5707963267948966 rad + pos: -93.5,-1.5 + parent: 2 + - uid: 18358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12357 + rot: 1.5707963267948966 rad + pos: -94.5,-0.5 + parent: 2 + - uid: 18777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,378.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12359 + rot: 1.5707963267948966 rad + pos: -93.5,-4.5 + parent: 2 + - uid: 18778 components: - type: Transform - pos: 414.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12363 + rot: 1.5707963267948966 rad + pos: -93.5,-3.5 + parent: 2 + - uid: 18779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12368 + rot: 1.5707963267948966 rad + pos: -94.5,-1.5 + parent: 2 + - uid: 18782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12380 + pos: -94.5,-67.5 + parent: 2 + - uid: 18785 components: - type: Transform - pos: 419.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12381 + pos: -94.5,-63.5 + parent: 2 + - uid: 18786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12391 + pos: -91.5,-63.5 + parent: 2 + - uid: 20785 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,404.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12393 + pos: -93.5,-0.5 + parent: 2 + - uid: 20803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,404.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12394 + rot: 1.5707963267948966 rad + pos: -94.5,-0.5 + parent: 2 + - uid: 20804 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12395 + pos: -94.5,-3.5 + parent: 2 + - uid: 20945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12400 + pos: -92.5,-63.5 + parent: 2 + - uid: 21006 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12412 + pos: -92.5,-1.5 + parent: 2 + - uid: 21043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 442.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12444 + pos: -93.5,-2.5 + parent: 2 + - uid: 21390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12447 + rot: 1.5707963267948966 rad + pos: -94.5,-4.5 + parent: 2 + - uid: 21418 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12455 + pos: -92.5,-4.5 + parent: 2 + - uid: 21420 components: - type: Transform - pos: 427.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12456 + rot: 1.5707963267948966 rad + pos: -94.5,0.5 + parent: 2 + - uid: 21496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12465 + rot: 1.5707963267948966 rad + pos: -95.5,-0.5 + parent: 2 + - uid: 22410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12490 + pos: -89.5,-65.5 + parent: 2 + - uid: 22442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,405.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12491 + pos: -93.5,-65.5 + parent: 2 + - uid: 22463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,405.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12521 + pos: -94.5,-66.5 + parent: 2 + - uid: 23429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12532 + rot: 1.5707963267948966 rad + pos: -95.5,-1.5 + parent: 2 + - uid: 23930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12551 + rot: 1.5707963267948966 rad + pos: -94.5,-5.5 + parent: 2 + - uid: 24003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,401.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12576 + rot: 1.5707963267948966 rad + pos: -92.5,-0.5 + parent: 2 + - uid: 24004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 455.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12577 + pos: -92.5,-2.5 + parent: 2 + - uid: 24005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 452.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12584 + pos: -93.5,-5.5 + parent: 2 +- proto: FloorWaterEntity + entities: + - uid: 1728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 459.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12597 + pos: -59.5,-46.5 + parent: 2 + - uid: 1866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12599 + pos: -106.5,29.5 + parent: 2 + - uid: 2516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12601 + pos: -69.5,-45.5 + parent: 2 + - uid: 2522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12602 + pos: -65.5,-41.5 + parent: 2 + - uid: 2523 components: - type: Transform - pos: 451.5,422.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12610 + pos: -69.5,-43.5 + parent: 2 + - uid: 2539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12614 + pos: -68.5,-42.5 + parent: 2 + - uid: 3419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 404.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12623 + pos: -49.5,-18.5 + parent: 2 + - uid: 3420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 401.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12627 + pos: -50.5,-18.5 + parent: 2 + - uid: 3510 components: - type: Transform - pos: 405.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12628 + pos: -63.5,-41.5 + parent: 2 + - uid: 3511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12632 + pos: -63.5,-42.5 + parent: 2 + - uid: 3512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12640 + pos: -63.5,-43.5 + parent: 2 + - uid: 3513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12651 + pos: -63.5,-44.5 + parent: 2 + - uid: 3515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12659 + pos: -68.5,-43.5 + parent: 2 + - uid: 3516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12664 + pos: -62.5,-41.5 + parent: 2 + - uid: 3517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12673 + pos: -62.5,-42.5 + parent: 2 + - uid: 3518 components: - type: Transform - pos: 416.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12683 + pos: -62.5,-45.5 + parent: 2 + - uid: 3519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12684 + pos: -62.5,-44.5 + parent: 2 + - uid: 3520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12687 + pos: -62.5,-43.5 + parent: 2 + - uid: 3521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12688 + pos: -63.5,-45.5 + parent: 2 + - uid: 3524 components: - type: Transform - pos: 399.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12689 + pos: -66.5,-43.5 + parent: 2 + - uid: 3525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12695 + pos: -66.5,-44.5 + parent: 2 + - uid: 3526 components: - type: Transform - pos: 408.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12697 + pos: -66.5,-45.5 + parent: 2 + - uid: 3528 components: - type: Transform - pos: 409.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12698 + pos: -67.5,-42.5 + parent: 2 + - uid: 3529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12699 + pos: -65.5,-42.5 + parent: 2 + - uid: 3530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12703 + pos: -65.5,-43.5 + parent: 2 + - uid: 3531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12705 + pos: -66.5,-42.5 + parent: 2 + - uid: 3532 components: - type: Transform - pos: 409.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12709 + pos: -65.5,-44.5 + parent: 2 + - uid: 3533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12711 + pos: -65.5,-45.5 + parent: 2 + - uid: 3534 components: - type: Transform - pos: 374.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12716 + pos: -64.5,-41.5 + parent: 2 + - uid: 3535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12724 + pos: -64.5,-42.5 + parent: 2 + - uid: 3536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12725 + pos: -64.5,-43.5 + parent: 2 + - uid: 3537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,394.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12729 + pos: -64.5,-44.5 + parent: 2 + - uid: 3538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12730 + pos: -64.5,-45.5 + parent: 2 + - uid: 3540 components: - type: Transform - pos: 372.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12743 + pos: -61.5,-43.5 + parent: 2 + - uid: 3543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,386.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12750 + pos: -61.5,-42.5 + parent: 2 + - uid: 3544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,383.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12751 + pos: -61.5,-44.5 + parent: 2 + - uid: 3547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,383.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12753 + pos: -60.5,-44.5 + parent: 2 + - uid: 3554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12755 + pos: -60.5,-45.5 + parent: 2 + - uid: 3555 components: - type: Transform - pos: 368.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12757 + pos: -61.5,-45.5 + parent: 2 + - uid: 3557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,386.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12773 + pos: -61.5,-46.5 + parent: 2 + - uid: 3558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12789 + pos: -62.5,-47.5 + parent: 2 + - uid: 3559 components: - type: Transform - pos: 425.5,360.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 + pos: -63.5,-46.5 + parent: 2 + - uid: 3560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12798 + pos: -62.5,-46.5 + parent: 2 + - uid: 3561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12804 + pos: -63.5,-47.5 + parent: 2 + - uid: 3562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12818 + pos: -64.5,-47.5 + parent: 2 + - uid: 3563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12823 + pos: -65.5,-47.5 + parent: 2 + - uid: 3564 components: - type: Transform - pos: 348.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12834 + pos: -66.5,-47.5 + parent: 2 + - uid: 3565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12835 + pos: -64.5,-46.5 + parent: 2 + - uid: 3566 components: - type: Transform - pos: 346.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12838 + pos: -65.5,-46.5 + parent: 2 + - uid: 3567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12849 + pos: -66.5,-46.5 + parent: 2 + - uid: 3568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12862 + pos: -67.5,-46.5 + parent: 2 + - uid: 3569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,398.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12884 + pos: -67.5,-45.5 + parent: 2 + - uid: 3570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12887 + pos: -67.5,-43.5 + parent: 2 + - uid: 3572 components: - type: Transform - pos: 415.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12897 + pos: -68.5,-45.5 + parent: 2 + - uid: 3573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12898 + pos: -68.5,-44.5 + parent: 2 + - uid: 3575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12910 + pos: -67.5,-44.5 + parent: 2 + - uid: 3583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12913 + pos: -68.5,-46.5 + parent: 2 + - uid: 3584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12918 + pos: -67.5,-47.5 + parent: 2 + - uid: 3663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12943 + pos: -61.5,-41.5 + parent: 2 + - uid: 3664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 382.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12944 + pos: -60.5,-41.5 + parent: 2 + - uid: 3665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12975 + pos: -60.5,-42.5 + parent: 2 + - uid: 3666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12982 + pos: -60.5,-43.5 + parent: 2 + - uid: 3667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12983 + pos: -59.5,-42.5 + parent: 2 + - uid: 3668 components: - type: Transform - pos: 365.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12985 + pos: -59.5,-43.5 + parent: 2 + - uid: 3669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12997 + pos: -59.5,-44.5 + parent: 2 + - uid: 3670 components: - type: Transform - pos: 385.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12998 + pos: -59.5,-45.5 + parent: 2 + - uid: 3671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12999 + pos: -60.5,-46.5 + parent: 2 + - uid: 3672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13000 + pos: -61.5,-47.5 + parent: 2 + - uid: 3756 components: - type: Transform rot: 3.141592653589793 rad - pos: 384.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13001 + pos: -69.5,-44.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-48.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-49.5 + parent: 2 + - uid: 6706 components: - type: Transform - pos: 384.5,422.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13002 + rot: -1.5707963267948966 rad + pos: -82.5,-50.5 + parent: 2 + - uid: 6737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,422.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13023 + rot: -1.5707963267948966 rad + pos: -80.5,-48.5 + parent: 2 + - uid: 6740 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13027 + rot: -1.5707963267948966 rad + pos: -80.5,-47.5 + parent: 2 + - uid: 6840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 365.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13038 + pos: -81.5,-50.5 + parent: 2 + - uid: 6859 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13039 + pos: -81.5,-49.5 + parent: 2 + - uid: 6860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13056 + rot: -1.5707963267948966 rad + pos: -80.5,-50.5 + parent: 2 + - uid: 9584 components: - type: Transform - pos: 331.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13057 + pos: -49.5,-19.5 + parent: 2 + - uid: 9690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13058 + rot: -1.5707963267948966 rad + pos: -108.5,27.5 + parent: 2 + - uid: 9692 components: - type: Transform - pos: 335.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13065 + rot: -1.5707963267948966 rad + pos: -107.5,29.5 + parent: 2 + - uid: 9693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13067 + pos: -107.5,28.5 + parent: 2 + - uid: 13807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,422.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13069 + pos: -60.5,-47.5 + parent: 2 + - uid: 16861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13074 + pos: -45.5,-61.5 + parent: 2 + - type: Drink + useSound: !type:SoundPathSpecifier + path: /Audio/Items/drink.ogg + solution: pool + - uid: 16868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13131 + pos: -44.5,-61.5 + parent: 2 + - type: Drink + useSound: !type:SoundPathSpecifier + path: /Audio/Items/drink.ogg + solution: pool + - uid: 16872 components: - type: Transform - pos: 417.5,371.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13132 + pos: -46.5,-61.5 + parent: 2 + - type: Drink + useSound: !type:SoundPathSpecifier + path: /Audio/Items/drink.ogg + solution: pool + - uid: 16907 components: - type: Transform - pos: 417.5,368.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13137 + pos: -44.5,-60.5 + parent: 2 + - type: Drink + useSound: !type:SoundPathSpecifier + path: /Audio/Items/drink.ogg + solution: pool + - uid: 19330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,368.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13140 + pos: -106.5,30.5 + parent: 2 + - uid: 21442 components: - type: Transform - pos: 410.5,368.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13141 + rot: 1.5707963267948966 rad + pos: -107.5,27.5 + parent: 2 +- proto: FloraTree + entities: + - uid: 6707 components: - type: Transform - pos: 410.5,371.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13143 + rot: -1.5707963267948966 rad + pos: -80.76986,-45.08961 + parent: 2 + - uid: 7544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,371.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13147 + pos: -61.54146,-27.099918 + parent: 2 + - uid: 9637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,374.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13148 + pos: -45.4908,-60.47104 + parent: 2 + - uid: 16856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,375.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13149 + pos: -49.051697,-58.97104 + parent: 2 + - uid: 25474 components: - type: Transform - pos: 422.5,375.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13150 + rot: -1.5707963267948966 rad + pos: -110.04935,28.039627 + parent: 2 + - uid: 25475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,374.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13167 + rot: -1.5707963267948966 rad + pos: -109.7056,30.274002 + parent: 2 + - uid: 25477 components: - type: Transform - pos: 335.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13168 + rot: -1.5707963267948966 rad + pos: -108.03694,30.711279 + parent: 2 +- proto: FloraTreeConifer + entities: + - uid: 9659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13176 + rot: -1.5707963267948966 rad + pos: -110.61175,20.942099 + parent: 2 + - uid: 25476 components: - type: Transform rot: -1.5707963267948966 rad - pos: 343.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13181 + pos: -108.32319,21.309122 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 24565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,419.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13187 + pos: -24.391703,-70.56911 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 16002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,419.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13188 + pos: -113.48114,-31.459679 + parent: 2 +- proto: FoodBagel + entities: + - uid: 25685 components: + - type: MetaData + desc: Hmm... this could be a cool station concept! - type: Transform - pos: 329.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13189 + pos: -22.400116,16.572037 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 6729 components: - type: Transform - pos: 328.5,424.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13192 + pos: -90.4905,-30.704945 + parent: 2 + - uid: 7021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13195 + pos: -90.52175,-30.298695 + parent: 2 +- proto: FoodCakePlainSlice + entities: + - uid: 25534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,424.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13205 + pos: -22.587616,18.572037 + parent: 2 + - uid: 25617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13210 + pos: -22.400116,18.368912 + parent: 2 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 20467 components: - type: Transform - pos: 336.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13215 + pos: -112.51823,36.525185 + parent: 2 + - type: RadiationSource +- proto: FoodCartCold + entities: + - uid: 3449 components: - type: Transform rot: 1.5707963267948966 rad - pos: 333.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13216 + pos: -47.5,-26.5 + parent: 2 +- proto: FoodDonutPlain + entities: + - uid: 25684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13225 + pos: -22.587616,16.868912 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 22399 components: - type: Transform - pos: 326.5,432.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13226 + pos: -116.66655,27.650211 + parent: 2 + - uid: 22400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,432.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13227 + pos: -116.3228,27.665836 + parent: 2 + - uid: 22401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,434.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13237 + pos: -116.713425,27.337711 + parent: 2 + - uid: 22402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,434.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13238 + pos: -116.244675,27.322086 + parent: 2 +- proto: FoodPizzaMeatSlice + entities: + - uid: 19500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,435.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13248 + pos: -115.710365,-21.132072 + parent: 2 + - uid: 19501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,435.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13249 + pos: -115.60099,-21.272697 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 16557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,437.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13250 + pos: -119.513954,26.718058 + parent: 2 + - uid: 26092 components: - type: Transform - pos: 349.5,437.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13251 + pos: -54.488308,-44.377945 + parent: 2 +- proto: ForensicReportPaper + entities: + - uid: 6714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,435.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13280 + pos: -100.728836,-38.809414 + parent: 2 + - uid: 6889 components: - type: Transform - pos: 354.5,435.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13281 + pos: -100.728836,-38.215664 + parent: 2 + - uid: 6890 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13282 + pos: -100.40071,-38.496914 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 23339 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,429.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13283 + pos: -112.5,-19.5 + parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 24943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13284 + pos: -117.41162,-74.49484 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 6100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13289 + pos: -150.42957,-42.364475 + parent: 2 + - uid: 15224 components: - type: Transform - pos: 354.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13291 + pos: -143.49344,-8.391947 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 16887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13292 + pos: -25.5,-63.5 + parent: 2 + - uid: 16930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13361 + pos: -29.5,-67.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,401.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13362 + pos: -123.5,3.5 + parent: 2 + - type: GasFilter + filteredGas: Tritium + - uid: 2093 components: + - type: MetaData + name: gas filter (Plasma Filter) - type: Transform - pos: 385.5,401.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13419 + rot: -1.5707963267948966 rad + pos: -110.5,-4.5 + parent: 2 + - type: Label + currentLabel: Plasma Filter + - type: NameModifier + baseName: gas filter + - uid: 2094 components: + - type: MetaData + name: gas filter (Plasma Filter) - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13435 + rot: -1.5707963267948966 rad + pos: -111.5,-5.5 + parent: 2 + - type: Label + currentLabel: Plasma Filter + - type: NameModifier + baseName: gas filter + - uid: 2666 components: + - type: MetaData + name: gas filter (Plasma Filter) - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13457 + pos: -109.5,-3.5 + parent: 2 + - type: Label + currentLabel: Plasma Filter + - type: NameModifier + baseName: gas filter + - uid: 5344 components: - type: Transform - pos: 386.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13460 + pos: -123.5,7.5 + parent: 2 + - type: GasFilter + filteredGas: CarbonDioxide + - uid: 5411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 383.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13461 + pos: -123.5,1.5 + parent: 2 + - type: GasFilter + filteredGas: NitrousOxide + - uid: 5584 components: - type: Transform - pos: 383.5,421.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13469 + pos: -123.5,9.5 + parent: 2 + - type: GasFilter + filteredGas: Oxygen + - uid: 6037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,421.5 - parent: 1 + pos: -27.5,-62.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13470 + color: '#990000FF' + - uid: 7114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,420.5 - parent: 1 + pos: -28.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13471 + color: '#990000FF' + - uid: 9018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13474 + pos: -123.5,11.5 + parent: 2 + - type: GasFilter + filteredGas: Nitrogen + - uid: 10428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13487 + pos: -123.5,5.5 + parent: 2 + - type: GasFilter + filteredGas: WaterVapor + - uid: 12041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,419.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13488 + color: '#990000FF' + - uid: 13671 components: - type: Transform - pos: 365.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13490 + pos: -140.5,-47.5 + parent: 2 + - uid: 21727 components: - type: Transform rot: 3.141592653589793 rad - pos: 363.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13521 + pos: -123.5,21.5 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 6827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13528 + rot: -1.5707963267948966 rad + pos: -122.5,0.5 + parent: 2 + - type: GasFilter + filteredGas: Plasma +- proto: GasMinerCarbonDioxide + entities: + - uid: 6947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,416.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13529 + pos: -128.5,7.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 7358 components: - type: Transform - pos: 357.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13549 + pos: -128.5,11.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 7357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,400.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13557 + pos: -128.5,9.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 2814 components: + - type: MetaData + desc: An old gas miner. It probably won't be of much use anymore. - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13564 + pos: -59.5,-9.5 + parent: 2 + missingComponents: + - GasMiner +- proto: GasMinerWaterVapor + entities: + - uid: 7359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13566 + pos: -128.5,5.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 21726 components: - type: Transform - pos: 348.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -122.5,19.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 5821 + components: + - type: Transform + pos: -121.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13579 + color: '#03FCD3FF' + - uid: 5903 components: + - type: MetaData + name: gas mixer (Mixer to TEG) - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -138.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13585 + color: '#947507FF' + - type: Label + currentLabel: Mixer to TEG + - type: NameModifier + baseName: gas mixer + - uid: 9082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-65.5 + parent: 2 + - uid: 9360 components: - type: Transform rot: 3.141592653589793 rad - pos: 348.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13595 + pos: -118.5,3.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 1433 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13602 + pos: -127.5,5.5 + parent: 2 + - uid: 1437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13606 + rot: 1.5707963267948966 rad + pos: -127.5,11.5 + parent: 2 + - uid: 1440 components: - type: Transform - pos: 356.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13617 + rot: 1.5707963267948966 rad + pos: -127.5,7.5 + parent: 2 + - uid: 5350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13622 + pos: -110.5,7.5 + parent: 2 + - uid: 5374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,384.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13636 + rot: -1.5707963267948966 rad + pos: -111.5,2.5 + parent: 2 + - uid: 5375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,390.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13646 + pos: -111.5,1.5 + parent: 2 + - uid: 5376 components: - type: Transform - pos: 363.5,384.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13650 + pos: -109.5,1.5 + parent: 2 + - uid: 5377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,380.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13675 + pos: -110.5,1.5 + parent: 2 + - uid: 5490 components: - type: Transform - pos: 369.5,390.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13678 + rot: 1.5707963267948966 rad + pos: -127.5,1.5 + parent: 2 + - uid: 5492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13699 + rot: 1.5707963267948966 rad + pos: -127.5,3.5 + parent: 2 + - uid: 5510 components: - type: Transform - pos: 405.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13724 + rot: 1.5707963267948966 rad + pos: -127.5,9.5 + parent: 2 + - uid: 6058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,370.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -146.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13748 + color: '#947507FF' + - uid: 12902 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,367.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13758 + pos: -25.5,-66.5 + parent: 2 + - uid: 18377 components: - type: Transform - pos: 412.5,376.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -127.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13762 + color: '#03FCD3FF' +- proto: GasPassiveGate + entities: + - uid: 6114 components: - type: Transform - pos: 414.5,375.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -29.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13785 + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,365.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -128.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13790 + color: '#03FCD3FF' + - uid: 1569 components: - type: Transform - pos: 422.5,365.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13792 + rot: -1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 2 + - uid: 1921 components: - type: Transform rot: 3.141592653589793 rad - pos: 422.5,363.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13794 + pos: -128.5,3.5 + parent: 2 + - uid: 1937 components: - type: Transform - pos: 424.5,363.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13799 + rot: 3.141592653589793 rad + pos: -128.5,11.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-28.5 + parent: 2 + - uid: 3440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,360.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13822 + pos: -49.5,-27.5 + parent: 2 + - uid: 4101 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,352.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13832 + pos: -18.5,-43.5 + parent: 2 + - uid: 4920 components: - type: Transform - pos: 351.5,412.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13834 + pos: -140.5,-0.5 + parent: 2 + - uid: 5437 components: - type: Transform rot: 3.141592653589793 rad - pos: 349.5,412.5 - parent: 1 + pos: -128.5,9.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -148.5,2.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 13847 + - uid: 6969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,5.5 + parent: 2 + - uid: 7013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 368.5,408.5 - parent: 1 - - uid: 13916 + pos: -110.5,3.5 + parent: 2 + - uid: 8068 components: - type: Transform - pos: 408.5,414.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13930 + rot: 3.141592653589793 rad + pos: -146.5,-52.5 + parent: 2 + - uid: 8074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13931 + rot: 3.141592653589793 rad + pos: -148.5,-52.5 + parent: 2 + - uid: 9359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13936 + rot: 3.141592653589793 rad + pos: -128.5,7.5 + parent: 2 + - uid: 9364 components: - type: Transform - pos: 409.5,422.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13954 + rot: 3.141592653589793 rad + pos: -128.5,1.5 + parent: 2 + - uid: 9594 components: - type: Transform rot: 3.141592653589793 rad - pos: 406.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13958 + pos: -31.5,-76.5 + parent: 2 + - uid: 10159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13960 + rot: 1.5707963267948966 rad + pos: -86.5,1.5 + parent: 2 + - uid: 10500 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13996 + pos: -87.5,-5.5 + parent: 2 + - uid: 11262 components: - type: Transform rot: -1.5707963267948966 rad - pos: 411.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14009 + pos: -83.5,-5.5 + parent: 2 + - uid: 11263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,379.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14014 + rot: 1.5707963267948966 rad + pos: -87.5,-1.5 + parent: 2 + - uid: 11719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,379.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14019 + pos: -83.5,-3.5 + parent: 2 + - uid: 14169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14023 + pos: -146.5,-38.5 + parent: 2 + - uid: 14170 components: - type: Transform - pos: 416.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14039 + pos: -148.5,-38.5 + parent: 2 + - uid: 14277 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14040 + pos: -87.5,-3.5 + parent: 2 + - uid: 17049 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14047 + pos: -84.5,1.5 + parent: 2 + - uid: 24817 components: - type: Transform - pos: 418.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,-1.5 + parent: 2 + - uid: 25283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -125.5,-65.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14052 + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad - pos: 418.5,392.5 - parent: 1 + pos: -105.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14058 + color: '#0055CCFF' + - uid: 1565 components: - type: Transform rot: 3.141592653589793 rad - pos: 418.5,378.5 - parent: 1 + pos: -19.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14062 + color: '#0055CCFF' + - uid: 1734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,378.5 - parent: 1 + pos: -26.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14063 + color: '#990000FF' + - uid: 1735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,380.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14064 + pos: -128.5,10.5 + parent: 2 + - uid: 1762 components: - type: Transform rot: -1.5707963267948966 rad - pos: 423.5,380.5 - parent: 1 + pos: -75.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14080 + color: '#0055CCFF' + - uid: 1865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 423.5,392.5 - parent: 1 + pos: -95.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14087 + color: '#0055CCFF' + - uid: 2151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -112.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14088 + color: '#990000FF' + - uid: 2511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,399.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -112.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14103 + color: '#990000FF' + - uid: 2710 components: - type: Transform - pos: 424.5,404.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14104 + pos: -118.5,10.5 + parent: 2 + - uid: 3309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -72.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14121 + color: '#0055CCFF' + - uid: 3630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -70.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14137 + color: '#990000FF' + - uid: 3631 components: - type: Transform - pos: 441.5,408.5 - parent: 1 + pos: -66.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14141 + color: '#0055CCFF' + - uid: 3659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,405.5 - parent: 1 + pos: -58.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14157 + color: '#0055CCFF' + - uid: 3660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,401.5 - parent: 1 + pos: -57.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14174 + color: '#990000FF' + - uid: 3881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 453.5,402.5 - parent: 1 + pos: -19.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14184 + color: '#0055CCFF' + - uid: 4104 components: - type: Transform - pos: 453.5,414.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14198 + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - uid: 4358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 458.5,414.5 - parent: 1 + pos: -134.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14202 + color: '#0055CCFF' + - uid: 4815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 462.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -123.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14215 + color: '#990000FF' + - uid: 5225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -115.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14233 + color: '#0055CCFF' + - uid: 5339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14234 + pos: -110.5,10.5 + parent: 2 + - uid: 5349 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14236 + pos: -110.5,6.5 + parent: 2 + - uid: 5358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,410.5 - parent: 1 + pos: -112.5,2.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -138.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14237 + color: '#947507FF' + - uid: 5397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,409.5 - parent: 1 + pos: -118.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14249 + color: '#947507FF' + - uid: 5433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -128.5,8.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -137.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14269 + color: '#990000FF' + - uid: 5507 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,398.5 - parent: 1 + pos: -120.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14282 + color: '#990000FF' + - uid: 5553 components: - type: Transform rot: -1.5707963267948966 rad - pos: 334.5,393.5 - parent: 1 + pos: -126.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14284 + color: '#0055CCFF' + - uid: 5572 components: - type: Transform rot: 1.5707963267948966 rad - pos: 331.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14285 + pos: -128.5,2.5 + parent: 2 + - uid: 5628 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,392.5 - parent: 1 + pos: -121.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14286 + color: '#990000FF' + - uid: 5634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,392.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14321 + color: '#0055CCFF' + - uid: 6043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14333 + rot: 1.5707963267948966 rad + pos: -148.5,3.5 + parent: 2 + - uid: 6044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14343 + pos: -146.5,3.5 + parent: 2 + - uid: 6055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,390.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -150.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14344 + color: '#FF0000FF' + - uid: 6060 components: - type: Transform - pos: 335.5,390.5 - parent: 1 + pos: -144.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14345 + color: '#947507FF' + - uid: 6075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14346 + pos: -24.5,-64.5 + parent: 2 + - uid: 6132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,385.5 - parent: 1 + pos: -142.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14347 + color: '#990000FF' + - uid: 6863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,382.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -128.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14348 + color: '#03FCD3FF' + - uid: 6906 components: - type: Transform - pos: 336.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14349 + pos: -120.5,0.5 + parent: 2 + - uid: 6912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,380.5 - parent: 1 + pos: -125.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14476 + color: '#990000FF' + - uid: 6993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,405.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14529 + pos: -111.5,10.5 + parent: 2 + - uid: 7000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14532 + pos: -111.5,7.5 + parent: 2 + - uid: 7001 components: - type: Transform - pos: 362.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14538 + rot: 3.141592653589793 rad + pos: -111.5,6.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -112.5,1.5 + parent: 2 + - uid: 8539 components: - type: Transform rot: 3.141592653589793 rad - pos: 362.5,397.5 - parent: 1 + pos: -58.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14547 + color: '#0055CCFF' + - uid: 8992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14551 + rot: 1.5707963267948966 rad + pos: -122.5,1.5 + parent: 2 + - uid: 9008 components: - type: Transform - pos: 371.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14646 + rot: 3.141592653589793 rad + pos: -123.5,0.5 + parent: 2 + - uid: 9019 components: - type: Transform - pos: 310.5,426.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14669 + pos: -25.5,-65.5 + parent: 2 + - uid: 9077 components: - type: Transform rot: 3.141592653589793 rad - pos: 309.5,425.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14684 + pos: -28.5,-65.5 + parent: 2 + - uid: 9212 components: - type: Transform rot: 1.5707963267948966 rad - pos: 310.5,414.5 - parent: 1 + pos: -60.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14688 + color: '#990000FF' + - uid: 9218 components: - type: Transform - pos: 304.5,414.5 - parent: 1 + pos: -62.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14695 + color: '#0055CCFF' + - uid: 9362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,4.5 + parent: 2 + - uid: 9474 components: - type: Transform rot: 3.141592653589793 rad - pos: 304.5,407.5 - parent: 1 + pos: -133.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14705 + color: '#990000FF' + - uid: 9478 components: - type: Transform - pos: 312.5,411.5 - parent: 1 + pos: -84.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14714 + color: '#990000FF' + - uid: 9509 components: - type: Transform - pos: 308.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14722 + rot: 1.5707963267948966 rad + pos: -128.5,6.5 + parent: 2 + - uid: 9522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 303.5,415.5 - parent: 1 + pos: -133.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14736 + color: '#990000FF' + - uid: 9770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 305.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14737 + pos: -31.5,-70.5 + parent: 2 + - uid: 10039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14739 + rot: 3.141592653589793 rad + pos: -28.5,-62.5 + parent: 2 + - uid: 10120 components: - type: Transform rot: -1.5707963267948966 rad - pos: 313.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14754 + pos: -70.5,-63.5 + parent: 2 + - uid: 10198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,417.5 - parent: 1 + pos: -75.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20315 + color: '#0055CCFF' + - uid: 10228 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 20181 - - uid: 20316 + pos: -55.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 20181 - - uid: 20317 + rot: 3.141592653589793 rad + pos: -103.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 - parent: 20181 - - uid: 20318 + pos: -43.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 20181 + pos: -40.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20319 + color: '#0055CCFF' + - uid: 10359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 20181 - - uid: 20320 + pos: -42.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 20181 + pos: -39.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20321 + color: '#990000FF' + - uid: 10380 components: - type: Transform - pos: 4.5,4.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20322 + color: '#0055CCFF' + - uid: 10381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 20181 + rot: 1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20323 + color: '#0055CCFF' + - uid: 10388 components: - type: Transform - pos: 5.5,3.5 - parent: 20181 + pos: -43.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20324 + color: '#0055CCFF' + - uid: 10403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20325 + color: '#990000FF' + - uid: 10404 components: - type: Transform - pos: 5.5,0.5 - parent: 20181 + rot: 1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20326 + color: '#990000FF' + - uid: 10414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 20181 - - uid: 20327 + rot: 3.141592653589793 rad + pos: -44.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 20181 + rot: 3.141592653589793 rad + pos: -33.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20328 + color: '#0055CCFF' + - uid: 10471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 20181 + pos: -79.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20329 + color: '#990000FF' + - uid: 10514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 20181 + pos: -36.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20330 + color: '#990000FF' + - uid: 10516 components: - type: Transform - pos: 3.5,5.5 - parent: 20181 + pos: -80.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20331 + color: '#0055CCFF' + - uid: 10572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20332 + color: '#0055CCFF' + - uid: 10622 components: - type: Transform - pos: 8.5,2.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -23.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20333 + color: '#990000FF' + - uid: 10672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 20181 + pos: -41.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20645 + color: '#990000FF' + - uid: 10755 components: - type: Transform - pos: 2.5,7.5 - parent: 20527 + rot: 1.5707963267948966 rad + pos: -68.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20646 + color: '#0055CCFF' + - uid: 10784 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 20527 - - uid: 20647 + pos: -23.5,-30.5 + parent: 2 + - uid: 11084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 20527 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20648 + rot: -1.5707963267948966 rad + pos: -25.5,-68.5 + parent: 2 + - uid: 11091 components: - type: Transform - pos: 6.5,5.5 - parent: 20527 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20649 + rot: 1.5707963267948966 rad + pos: -27.5,-66.5 + parent: 2 + - uid: 11347 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 20527 + pos: -39.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20650 + color: '#990000FF' + - uid: 11568 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 20527 + pos: -40.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20651 + color: '#0055CCFF' + - uid: 11573 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 20527 + pos: -39.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20652 + color: '#990000FF' + - uid: 11643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 20527 + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20653 + color: '#0055CCFF' + - uid: 11687 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 20527 - - uid: 20654 - components: - - type: Transform - pos: 4.5,9.5 - parent: 20527 - - uid: 21125 + pos: -33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,416.5 - parent: 1 + pos: -14.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21127 + color: '#990000FF' + - uid: 11912 components: - type: Transform - pos: 403.5,419.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21526 + color: '#990000FF' + - uid: 11930 components: - type: Transform - pos: 10.5,24.5 - parent: 5072 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21617 + - uid: 11933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 - parent: 5072 + pos: -4.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeFourway - entities: - - uid: 4970 + - uid: 11962 components: - type: Transform - pos: 412.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6250 + color: '#990000FF' + - uid: 11964 components: - type: Transform - pos: 403.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11922 + color: '#0055CCFF' + - uid: 12038 components: - type: Transform - pos: 330.5,418.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12332 + rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 12042 components: - type: Transform - pos: 408.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12451 + pos: -21.5,-29.5 + parent: 2 + - uid: 12046 components: - type: Transform - pos: 426.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12544 + color: '#0055CCFF' + - uid: 12138 components: - type: Transform - pos: 449.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -21.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12637 + color: '#990000FF' + - uid: 12139 components: - type: Transform - pos: 404.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12643 - components: - - type: Transform - pos: 400.5,417.5 - parent: 1 - - uid: 12657 + color: '#990000FF' + - uid: 12243 components: - type: Transform - pos: 408.5,416.5 - parent: 1 + pos: -38.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12670 + color: '#0055CCFF' + - uid: 12254 components: - type: Transform - pos: 372.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12712 + color: '#990000FF' + - uid: 12309 components: - type: Transform - pos: 372.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -45.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12763 + color: '#990000FF' + - uid: 12373 components: - type: Transform - pos: 359.5,381.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -19.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12781 + color: '#0055CCFF' + - uid: 12382 components: - type: Transform - pos: 355.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -105.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12785 + color: '#0055CCFF' + - uid: 12441 components: - type: Transform - pos: 355.5,388.5 - parent: 1 + pos: -19.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12810 + color: '#0055CCFF' + - uid: 12447 components: - type: Transform - pos: 351.5,388.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -22.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12846 + color: '#0055CCFF' + - uid: 12457 components: - type: Transform - pos: 345.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -45.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12857 + color: '#0055CCFF' + - uid: 12465 components: - type: Transform - pos: 347.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -108.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12903 + color: '#990000FF' + - uid: 12484 components: - type: Transform - pos: 393.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12950 + color: '#990000FF' + - uid: 12536 components: - type: Transform - pos: 373.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13158 + color: '#990000FF' + - uid: 12651 components: - type: Transform - pos: 331.5,419.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13587 + color: '#990000FF' + - uid: 12654 components: - type: Transform - pos: 350.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -50.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13715 + color: '#990000FF' + - uid: 12676 components: - type: Transform - pos: 405.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13732 + color: '#990000FF' + - uid: 12677 components: - type: Transform - pos: 408.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -43.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13831 + color: '#0055CCFF' + - uid: 12730 components: - type: Transform - pos: 351.5,411.5 - parent: 1 + pos: -42.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13871 + color: '#0055CCFF' + - uid: 12897 components: - type: Transform - pos: 392.5,406.5 - parent: 1 + pos: -55.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13897 + color: '#0055CCFF' + - uid: 12898 components: - type: Transform - pos: 403.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -64.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14093 + color: '#0055CCFF' + - uid: 13026 components: - type: Transform - pos: 424.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -27.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14169 + color: '#0055CCFF' + - uid: 13175 components: - type: Transform - pos: 453.5,407.5 - parent: 1 + pos: -74.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14729 + color: '#990000FF' + - uid: 13265 components: - type: Transform - pos: 303.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -82.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20334 + color: '#990000FF' + - uid: 13506 components: - type: Transform - pos: 3.5,2.5 - parent: 20181 + rot: 1.5707963267948966 rad + pos: -109.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20335 + color: '#0055CCFF' + - uid: 13649 components: - type: Transform - pos: 5.5,-0.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -120.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21316 + color: '#990000FF' + - uid: 13673 components: - type: Transform - pos: 2.5,24.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -140.5,-45.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21358 + - uid: 13702 components: - type: Transform - pos: 4.5,25.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -90.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 1161 + color: '#990000FF' + - uid: 13730 components: - type: Transform rot: -1.5707963267948966 rad - pos: 353.5,388.5 - parent: 1 + pos: -80.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2199 + color: '#990000FF' + - uid: 13903 components: - type: Transform - pos: 443.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -137.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2256 + color: '#0055CCFF' + - uid: 13956 components: - type: Transform - pos: 443.5,403.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -125.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3135 + color: '#0055CCFF' + - uid: 14064 components: - type: Transform - pos: 443.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -134.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3136 + color: '#990000FF' + - uid: 14079 components: - type: Transform rot: 1.5707963267948966 rad - pos: 362.5,403.5 - parent: 1 + pos: -138.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3480 + color: '#990000FF' + - uid: 14179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,396.5 - parent: 1 + pos: -82.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3633 + color: '#990000FF' + - uid: 14182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3773 + color: '#0055CCFF' + - uid: 14185 components: - type: Transform - pos: 412.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -91.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3803 + color: '#0055CCFF' + - uid: 14193 components: - type: Transform rot: -1.5707963267948966 rad - pos: 345.5,404.5 - parent: 1 + pos: -82.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3964 + color: '#990000FF' + - uid: 14235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 376.5,397.5 - parent: 1 + pos: -87.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4289 + color: '#0055CCFF' + - uid: 14351 components: - type: Transform - pos: 411.5,398.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4850 + color: '#0055CCFF' + - uid: 14643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -75.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5031 + color: '#990000FF' + - uid: 14794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -45.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5099 + color: '#0055CCFF' + - uid: 14928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -130.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5915 + color: '#0055CCFF' + - uid: 14987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 328.5,422.5 - parent: 1 - - uid: 6043 + pos: -108.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 405.5,375.5 - parent: 1 + pos: -104.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6243 + color: '#990000FF' + - uid: 15080 components: - type: Transform - pos: 347.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -45.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6247 + color: '#0055CCFF' + - uid: 15113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -94.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6310 + color: '#0055CCFF' + - uid: 15129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,426.5 - parent: 1 - - uid: 6312 + rot: 1.5707963267948966 rad + pos: -54.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15134 components: - type: Transform rot: 3.141592653589793 rad - pos: 329.5,427.5 - parent: 1 - - uid: 6313 + pos: -50.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15148 components: - type: Transform rot: 3.141592653589793 rad - pos: 329.5,428.5 - parent: 1 - - uid: 6314 + pos: -51.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,426.5 - parent: 1 - - uid: 6315 + rot: -1.5707963267948966 rad + pos: -93.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,428.5 - parent: 1 - - uid: 6316 + rot: 1.5707963267948966 rad + pos: -61.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15318 components: - type: Transform rot: 3.141592653589793 rad - pos: 330.5,427.5 - parent: 1 - - uid: 6317 + pos: -94.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,426.5 - parent: 1 - - uid: 6318 + pos: -70.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,427.5 - parent: 1 - - uid: 6319 + rot: -1.5707963267948966 rad + pos: -70.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15398 components: - type: Transform rot: 3.141592653589793 rad - pos: 332.5,428.5 - parent: 1 - - uid: 6320 + pos: -58.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,426.5 - parent: 1 - - uid: 6321 + rot: 1.5707963267948966 rad + pos: -58.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,428.5 - parent: 1 - - uid: 6322 + rot: -1.5707963267948966 rad + pos: -21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,427.5 - parent: 1 - - uid: 6323 + rot: 1.5707963267948966 rad + pos: -116.5,15.5 + parent: 2 + - uid: 16183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,426.5 - parent: 1 - - uid: 6324 + pos: -121.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,427.5 - parent: 1 - - uid: 6325 + rot: -1.5707963267948966 rad + pos: -111.5,9.5 + parent: 2 + - uid: 16551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,428.5 - parent: 1 - - uid: 6326 + rot: -1.5707963267948966 rad + pos: -144.5,-16.5 + parent: 2 + - uid: 16624 components: - type: Transform rot: 3.141592653589793 rad - pos: 336.5,426.5 - parent: 1 - - uid: 6327 + pos: -37.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,428.5 - parent: 1 - - uid: 6328 + rot: -1.5707963267948966 rad + pos: -28.5,-70.5 + parent: 2 + - uid: 16687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,427.5 - parent: 1 - - uid: 6329 + rot: 1.5707963267948966 rad + pos: -28.5,-68.5 + parent: 2 + - uid: 16892 components: - type: Transform rot: 3.141592653589793 rad - pos: 338.5,427.5 - parent: 1 - - uid: 6330 + pos: -74.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,428.5 - parent: 1 - - uid: 6331 + pos: -78.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16982 components: - type: Transform rot: 3.141592653589793 rad - pos: 338.5,426.5 - parent: 1 - - uid: 6332 + pos: -150.5,-16.5 + parent: 2 + - uid: 17289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,426.5 - parent: 1 - - uid: 6333 + rot: -1.5707963267948966 rad + pos: -19.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,427.5 - parent: 1 - - uid: 6334 + rot: 1.5707963267948966 rad + pos: -140.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,428.5 - parent: 1 - - uid: 6335 + rot: -1.5707963267948966 rad + pos: -80.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,426.5 - parent: 1 - - uid: 6336 + rot: -1.5707963267948966 rad + pos: -67.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,428.5 - parent: 1 - - uid: 6337 + pos: -25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,427.5 - parent: 1 - - uid: 6338 + pos: -67.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,426.5 - parent: 1 - - uid: 6339 + rot: -1.5707963267948966 rad + pos: -14.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,428.5 - parent: 1 - - uid: 6340 + rot: -1.5707963267948966 rad + pos: -96.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,427.5 - parent: 1 - - uid: 6341 + rot: -1.5707963267948966 rad + pos: -88.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,426.5 - parent: 1 - - uid: 6342 + rot: 1.5707963267948966 rad + pos: -83.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18077 components: - type: Transform rot: 3.141592653589793 rad - pos: 344.5,428.5 - parent: 1 - - uid: 6343 + pos: -81.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,427.5 - parent: 1 - - uid: 6344 + rot: -1.5707963267948966 rad + pos: -28.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,426.5 - parent: 1 - - uid: 6345 + rot: -1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,428.5 - parent: 1 - - uid: 6346 + rot: 1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,427.5 - parent: 1 - - uid: 6347 + rot: -1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,428.5 - parent: 1 - - uid: 6348 + rot: 1.5707963267948966 rad + pos: -99.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,426.5 - parent: 1 - - uid: 6349 + rot: 1.5707963267948966 rad + pos: -112.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,427.5 - parent: 1 - - uid: 6350 + rot: 1.5707963267948966 rad + pos: -114.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,428.5 - parent: 1 - - uid: 6351 + pos: -89.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,426.5 - parent: 1 - - uid: 6352 + rot: 1.5707963267948966 rad + pos: -134.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,427.5 - parent: 1 - - uid: 6353 + rot: 1.5707963267948966 rad + pos: -128.5,12.5 + parent: 2 + - uid: 18382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,425.5 - parent: 1 - - uid: 6354 + rot: 1.5707963267948966 rad + pos: -125.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,425.5 - parent: 1 - - uid: 6645 + rot: 1.5707963267948966 rad + pos: -126.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18761 components: - type: Transform rot: -1.5707963267948966 rad - pos: 326.5,422.5 - parent: 1 - - uid: 7382 + pos: -83.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 318.5,422.5 - parent: 1 - - uid: 7390 + pos: -111.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 318.5,421.5 - parent: 1 - - uid: 7392 + pos: -114.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18922 components: - type: Transform rot: 1.5707963267948966 rad - pos: 319.5,422.5 - parent: 1 - - uid: 7393 + pos: -51.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 319.5,421.5 - parent: 1 - - uid: 9351 + pos: -83.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18942 components: - type: Transform - pos: 414.5,368.5 - parent: 1 + pos: -83.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9793 + color: '#0055CCFF' + - uid: 18943 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,410.5 - parent: 1 + pos: -81.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9795 + color: '#990000FF' + - uid: 18960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -140.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10169 + color: '#990000FF' + - uid: 18980 components: - type: Transform - pos: 415.5,367.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -99.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10326 + color: '#0055CCFF' + - uid: 19481 components: - type: Transform - pos: 385.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -125.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10335 + color: '#0055CCFF' + - uid: 19665 components: - type: Transform - pos: 385.5,403.5 - parent: 1 + pos: -85.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10818 + color: '#0055CCFF' + - uid: 19686 components: - type: Transform - pos: 414.5,372.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -86.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10819 + color: '#990000FF' + - uid: 20250 components: - type: Transform - pos: 414.5,369.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10820 + color: '#990000FF' + - uid: 20522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -76.5,-75.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11579 + color: '#0055CCFF' + - uid: 20532 components: - type: Transform - pos: 427.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -78.5,-76.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11897 + color: '#0055CCFF' + - uid: 20533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 384.5,402.5 - parent: 1 + pos: -78.5,-75.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11921 + color: '#0055CCFF' + - uid: 20543 components: - type: Transform - pos: 330.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-66.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11923 + color: '#990000FF' + - uid: 20571 components: - type: Transform - pos: 330.5,419.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -55.5,-65.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11924 + color: '#0055CCFF' + - uid: 20580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,418.5 - parent: 1 + pos: -54.5,-66.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11925 + color: '#990000FF' + - uid: 20623 components: - type: Transform rot: -1.5707963267948966 rad - pos: 332.5,418.5 - parent: 1 + pos: -42.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11927 + color: '#0055CCFF' + - uid: 20624 components: - type: Transform - pos: 333.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -41.5,-64.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11929 + color: '#990000FF' + - uid: 21367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,416.5 - parent: 1 + pos: -15.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11930 + color: '#0055CCFF' + - uid: 21876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -30.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11931 + color: '#0055CCFF' + - uid: 22087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11932 + color: '#990000FF' + - uid: 22207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -104.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11933 + color: '#0055CCFF' + - uid: 22456 components: - type: Transform rot: 1.5707963267948966 rad - pos: 338.5,416.5 - parent: 1 + pos: -134.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11934 + color: '#0055CCFF' + - uid: 23515 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,416.5 - parent: 1 + pos: -93.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11935 + color: '#990000FF' + - uid: 23660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11936 + color: '#0055CCFF' + - uid: 23669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11937 + color: '#0055CCFF' + - uid: 23676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,416.5 - parent: 1 + pos: -76.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11938 + color: '#0055CCFF' + - uid: 23917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -36.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11940 + color: '#990000FF' + - uid: 24254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,417.5 - parent: 1 + pos: -17.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11941 + color: '#0055CCFF' + - uid: 24686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,418.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11942 + color: '#0055CCFF' + - uid: 24690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,418.5 - parent: 1 + pos: -32.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11944 + color: '#0055CCFF' + - uid: 24696 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25078 components: - type: Transform rot: 1.5707963267948966 rad - pos: 329.5,418.5 - parent: 1 + pos: -120.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11947 + color: '#0055CCFF' + - uid: 25169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,417.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -122.5,-79.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11948 + color: '#990000FF' + - uid: 25239 components: - type: Transform rot: -1.5707963267948966 rad - pos: 327.5,417.5 - parent: 1 + pos: -120.5,-67.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11949 + color: '#0055CCFF' + - uid: 25240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,417.5 - parent: 1 + pos: -121.5,-65.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11952 + color: '#990000FF' + - uid: 25245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,418.5 - parent: 1 + pos: -118.5,-80.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11953 + color: '#0055CCFF' + - uid: 25249 components: - type: Transform rot: 3.141592653589793 rad - pos: 323.5,419.5 - parent: 1 + pos: -120.5,-82.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11955 + color: '#0055CCFF' + - uid: 25259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,420.5 - parent: 1 + pos: -118.5,-79.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11956 + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 2081 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,417.5 - parent: 1 + pos: -112.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11957 + color: '#990000FF' + - uid: 3571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,415.5 - parent: 1 + pos: -30.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11958 + color: '#0055CCFF' + - uid: 4327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,416.5 - parent: 1 + pos: -119.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11967 + color: '#0055CCFF' + - uid: 5097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,413.5 - parent: 1 + pos: -118.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11968 + color: '#03FCD3FF' + - uid: 5337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,412.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11972 + pos: -110.5,8.5 + parent: 2 + - uid: 5338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11974 + pos: -110.5,9.5 + parent: 2 + - uid: 6922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,410.5 - parent: 1 + pos: -94.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11975 + color: '#990000FF' + - uid: 7498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,410.5 - parent: 1 + pos: -120.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11976 + color: '#990000FF' + - uid: 10199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,410.5 - parent: 1 + pos: -85.5,-3.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11977 + color: '#0055CCFF' + - uid: 10447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,410.5 - parent: 1 + pos: -29.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11979 + color: '#990000FF' + - uid: 11675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,410.5 - parent: 1 + pos: -34.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11980 + color: '#0055CCFF' + - uid: 11686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,410.5 - parent: 1 + pos: -33.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11981 + color: '#990000FF' + - uid: 11815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,410.5 - parent: 1 + pos: -11.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11984 + color: '#0055CCFF' + - uid: 11839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,411.5 - parent: 1 + pos: -29.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11985 + color: '#0055CCFF' + - uid: 11891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,411.5 - parent: 1 + pos: -18.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11986 + color: '#990000FF' + - uid: 11935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,411.5 - parent: 1 + pos: -10.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11987 + color: '#990000FF' + - uid: 12022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,411.5 - parent: 1 + pos: -30.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11990 + color: '#0055CCFF' + - uid: 12239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,412.5 - parent: 1 + pos: -30.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11991 + color: '#0055CCFF' + - uid: 12374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,413.5 - parent: 1 + pos: -23.5,-29.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11995 + color: '#990000FF' + - uid: 12395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,420.5 - parent: 1 + pos: -19.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11996 + color: '#0055CCFF' + - uid: 12499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,415.5 - parent: 1 + pos: -58.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11997 + color: '#0055CCFF' + - uid: 12628 components: - type: Transform - pos: 334.5,409.5 - parent: 1 + pos: -22.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11998 + color: '#0055CCFF' + - uid: 12638 components: - type: Transform - pos: 334.5,408.5 - parent: 1 + pos: -21.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11999 + color: '#990000FF' + - uid: 14883 components: - type: Transform - pos: 334.5,407.5 - parent: 1 + pos: -114.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12001 + color: '#990000FF' + - uid: 14894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,406.5 - parent: 1 + pos: -119.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12002 + color: '#0055CCFF' + - uid: 14922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,406.5 - parent: 1 + pos: -120.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12004 + color: '#990000FF' + - uid: 14994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,411.5 - parent: 1 + pos: -119.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12006 + color: '#0055CCFF' + - uid: 15168 components: - type: Transform - pos: 350.5,410.5 - parent: 1 + pos: -57.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12008 + color: '#0055CCFF' + - uid: 15212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,409.5 - parent: 1 + pos: -71.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12009 + color: '#0055CCFF' + - uid: 15217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,408.5 - parent: 1 + pos: -70.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12010 + color: '#990000FF' + - uid: 15267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,407.5 - parent: 1 + pos: -60.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12013 + color: '#990000FF' + - uid: 15268 components: - type: Transform - pos: 331.5,405.5 - parent: 1 + pos: -62.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12014 + color: '#0055CCFF' + - uid: 15672 components: - type: Transform - pos: 331.5,404.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12021 + pos: -85.5,-5.5 + parent: 2 + - uid: 16755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,402.5 - parent: 1 + pos: -115.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12022 + color: '#0055CCFF' + - uid: 16877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,402.5 - parent: 1 + pos: -29.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12023 + color: '#0055CCFF' + - uid: 16933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12024 + pos: -85.5,-1.5 + parent: 2 + - uid: 17329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,402.5 - parent: 1 + pos: -68.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12025 + color: '#0055CCFF' + - uid: 17352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,402.5 - parent: 1 + pos: -70.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12026 + color: '#0055CCFF' + - uid: 17883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,402.5 - parent: 1 + pos: -96.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12027 + color: '#0055CCFF' + - uid: 17885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,402.5 - parent: 1 + pos: -96.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12028 + color: '#0055CCFF' + - uid: 17886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,402.5 - parent: 1 + pos: -94.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12029 + color: '#990000FF' + - uid: 17935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,402.5 - parent: 1 + pos: -94.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12030 + color: '#990000FF' + - uid: 18123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,402.5 - parent: 1 + pos: -134.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12031 + color: '#0055CCFF' + - uid: 18220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,402.5 - parent: 1 + pos: -76.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12034 + color: '#0055CCFF' + - uid: 18278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,402.5 - parent: 1 + pos: -87.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12035 + color: '#990000FF' + - uid: 18868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,402.5 - parent: 1 + pos: -115.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12036 + color: '#0055CCFF' + - uid: 19591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,402.5 - parent: 1 + pos: -93.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12037 + color: '#990000FF' + - uid: 19598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,402.5 - parent: 1 + pos: -94.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12038 + color: '#0055CCFF' + - uid: 20029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,402.5 - parent: 1 + pos: -75.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12039 + color: '#990000FF' + - uid: 20055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,402.5 - parent: 1 + pos: -113.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12040 + color: '#990000FF' + - uid: 20060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,402.5 - parent: 1 + pos: -115.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12041 + color: '#0055CCFF' + - uid: 20186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,402.5 - parent: 1 + pos: -29.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12042 + color: '#0055CCFF' + - uid: 21882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,402.5 - parent: 1 + pos: -119.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12043 + color: '#0055CCFF' + - uid: 23204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,402.5 - parent: 1 + pos: -25.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12044 + color: '#0055CCFF' + - uid: 23207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,402.5 - parent: 1 + pos: -24.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12045 + color: '#990000FF' + - uid: 25155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,402.5 - parent: 1 + pos: -120.5,-68.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12046 + color: '#0055CCFF' + - uid: 25170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,402.5 - parent: 1 + pos: -121.5,-66.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12047 + color: '#990000FF' + - uid: 25241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,402.5 - parent: 1 + pos: -120.5,-80.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12048 + color: '#0055CCFF' +- proto: GasPipeHalf + entities: + - uid: 12444 components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 +- proto: GasPipeSensor + entities: + - uid: 13254 + components: + - type: MetaData + name: gas pipe sensor (TEG Fuel Mix) - type: Transform rot: 1.5707963267948966 rad - pos: 349.5,415.5 - parent: 1 + pos: -140.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12049 + color: '#947507FF' + - type: Label + currentLabel: TEG Fuel Mix + - type: NameModifier + baseName: gas pipe sensor + - uid: 16095 components: + - type: MetaData + name: gas pipe sensor (TEG Burn Chamber) - type: Transform - pos: 362.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -150.5,0.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12050 + - type: Label + currentLabel: TEG Burn Chamber + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 5095 components: - type: Transform - pos: 362.5,395.5 - parent: 1 + pos: -118.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12053 + color: '#0055CCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 16494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,403.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -125.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12054 + color: '#03FCD3FF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 22954 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12055 + pos: -146.5,-8.5 + parent: 2 +- proto: GasPipeSensorTEGHot + entities: + - uid: 22953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12056 + rot: -1.5707963267948966 rad + pos: -148.5,-6.5 + parent: 2 +- proto: GasPipeSensorWaste + entities: + - uid: 2797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12057 + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 5 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,402.5 - parent: 1 + pos: -36.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12058 + color: '#990000FF' + - uid: 9 components: - type: Transform rot: 1.5707963267948966 rad - pos: 371.5,402.5 - parent: 1 + pos: -96.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12059 + color: '#0055CCFF' + - uid: 38 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12060 + anchored: False + pos: -121.79342,-34.337505 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,402.5 - parent: 1 + pos: -120.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12061 + color: '#990000FF' + - uid: 244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12062 + pos: -85.5,-4.5 + parent: 2 + - uid: 254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12063 + rot: -1.5707963267948966 rad + pos: -84.5,-1.5 + parent: 2 + - uid: 277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12064 + rot: -1.5707963267948966 rad + pos: -84.5,-3.5 + parent: 2 + - uid: 350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,402.5 - parent: 1 + pos: -135.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12065 + color: '#990000FF' + - uid: 362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 377.5,402.5 - parent: 1 + pos: -25.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12066 + color: '#990000FF' + - uid: 389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,402.5 - parent: 1 + pos: -94.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12067 + color: '#0055CCFF' + - uid: 477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,402.5 - parent: 1 + pos: -24.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12070 + color: '#0055CCFF' + - uid: 490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -70.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12073 + color: '#990000FF' + - uid: 494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -86.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12074 + color: '#0055CCFF' + - uid: 503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -49.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12075 + color: '#990000FF' + - uid: 523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,402.5 - parent: 1 + pos: -58.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12076 + color: '#0055CCFF' + - uid: 532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12077 + anchored: False + pos: -121.19967,-34.275005 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 603 components: - type: Transform rot: 1.5707963267948966 rad - pos: 390.5,402.5 - parent: 1 + pos: -137.5,-6.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12078 + color: '#947507FF' + - uid: 605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12079 + color: '#947507FF' + - uid: 613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -138.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12082 + color: '#947507FF' + - uid: 616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,402.5 - parent: 1 + pos: -120.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12083 + color: '#947507FF' + - uid: 617 components: - type: Transform rot: 1.5707963267948966 rad - pos: 397.5,402.5 - parent: 1 + pos: -119.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12084 + color: '#947507FF' + - uid: 618 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,402.5 - parent: 1 + pos: -124.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12085 + color: '#947507FF' + - uid: 623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,402.5 - parent: 1 + pos: -123.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12086 + color: '#947507FF' + - uid: 624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,402.5 - parent: 1 + pos: -122.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12087 + color: '#947507FF' + - uid: 625 components: - type: Transform rot: 1.5707963267948966 rad - pos: 396.5,402.5 - parent: 1 + pos: -127.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12092 + color: '#947507FF' + - uid: 626 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,403.5 - parent: 1 + pos: -127.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12093 + color: '#990000FF' + - uid: 627 components: - type: Transform - pos: 422.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -126.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12095 + color: '#990000FF' + - uid: 628 components: - type: Transform rot: 3.141592653589793 rad - pos: 348.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12096 - components: - - type: Transform - pos: 383.5,401.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12097 - components: - - type: Transform - pos: 383.5,400.5 - parent: 1 + pos: -118.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12098 + color: '#947507FF' + - uid: 629 components: - type: Transform - pos: 383.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12099 + color: '#947507FF' + - uid: 630 components: - type: Transform - pos: 383.5,398.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12100 + color: '#947507FF' + - uid: 631 components: - type: Transform - pos: 383.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12101 + color: '#947507FF' + - uid: 632 components: - type: Transform - pos: 383.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12103 + color: '#947507FF' + - uid: 633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,395.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12104 + color: '#947507FF' + - uid: 634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -121.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12106 + color: '#947507FF' + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 384.5,395.5 - parent: 1 + pos: -128.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12108 + color: '#947507FF' + - uid: 636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 385.5,395.5 - parent: 1 + pos: -130.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12111 + color: '#947507FF' + - uid: 637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 389.5,395.5 - parent: 1 + pos: -121.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12113 + color: '#990000FF' + - uid: 638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -128.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12114 + color: '#990000FF' + - uid: 641 components: - type: Transform - pos: 415.5,370.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -137.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12117 + color: '#947507FF' + - uid: 642 components: - type: Transform rot: -1.5707963267948966 rad - pos: 378.5,396.5 - parent: 1 + pos: -130.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12121 + color: '#990000FF' + - uid: 645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 354.5,388.5 - parent: 1 + pos: -129.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12122 + color: '#990000FF' + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad - pos: 375.5,395.5 - parent: 1 + pos: -138.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12123 + color: '#990000FF' + - uid: 647 components: - type: Transform - pos: 374.5,394.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12124 + color: '#990000FF' + - uid: 649 components: - type: Transform - pos: 374.5,392.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12125 + color: '#990000FF' + - uid: 653 components: - type: Transform - pos: 374.5,391.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12126 + color: '#990000FF' + - uid: 654 components: - type: Transform - pos: 374.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12127 + color: '#990000FF' + - uid: 655 components: - type: Transform - pos: 374.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -104.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12128 + color: '#990000FF' + - uid: 657 components: - type: Transform - pos: 374.5,389.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12130 + color: '#990000FF' + - uid: 659 components: - type: Transform - pos: 374.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12131 + rot: 3.141592653589793 rad + pos: -140.5,-1.5 + parent: 2 + - uid: 660 components: - type: Transform - pos: 374.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12132 + color: '#990000FF' + - uid: 662 components: - type: Transform - pos: 374.5,384.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12133 + color: '#990000FF' + - uid: 708 components: - type: Transform - pos: 374.5,383.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12134 + pos: -123.5,6.5 + parent: 2 + - uid: 715 components: - type: Transform - pos: 374.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12135 + rot: -1.5707963267948966 rad + pos: -124.5,9.5 + parent: 2 + - uid: 725 components: - type: Transform - pos: 374.5,381.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -131.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12136 + color: '#990000FF' + - uid: 744 components: - type: Transform - pos: 374.5,385.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12138 + rot: -1.5707963267948966 rad + pos: -125.5,9.5 + parent: 2 + - uid: 767 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,394.5 - parent: 1 + pos: -105.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12139 + color: '#0055CCFF' + - uid: 790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -129.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12141 + color: '#947507FF' + - uid: 791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -124.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12142 + color: '#990000FF' + - uid: 792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,391.5 - parent: 1 + pos: -137.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12143 + color: '#990000FF' + - uid: 824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -75.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12144 + color: '#0055CCFF' + - uid: 830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12145 + color: '#0055CCFF' + - uid: 832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -133.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12146 + color: '#947507FF' + - uid: 840 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,386.5 - parent: 1 + pos: -118.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12147 + color: '#947507FF' + - uid: 858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,385.5 - parent: 1 + pos: -29.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12148 + color: '#0055CCFF' + - uid: 921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,384.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12149 + rot: 1.5707963267948966 rad + pos: -108.5,-5.5 + parent: 2 + - uid: 924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12150 + rot: -1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-3.5 + parent: 2 + - uid: 971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,381.5 - parent: 1 + pos: -109.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12151 + color: '#0055CCFF' + - uid: 1099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -99.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12153 + color: '#990000FF' + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,379.5 - parent: 1 + pos: -105.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12154 + color: '#0055CCFF' + - uid: 1103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,378.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12155 + rot: 1.5707963267948966 rad + pos: -108.5,-4.5 + parent: 2 + - uid: 1149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,376.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12156 + rot: -1.5707963267948966 rad + pos: -105.5,-3.5 + parent: 2 + - uid: 1185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,375.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12157 + rot: -1.5707963267948966 rad + pos: -106.5,-5.5 + parent: 2 + - uid: 1303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,374.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -76.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12158 + color: '#0055CCFF' + - uid: 1340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,373.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -92.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12159 + color: '#990000FF' + - uid: 1484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,372.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -124.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12160 + color: '#990000FF' + - uid: 1579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,371.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12161 + color: '#0055CCFF' + - uid: 1621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,377.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -120.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12163 + color: '#0055CCFF' + - uid: 1672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -146.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12164 + color: '#0055CCFF' + - uid: 1688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 393.5,370.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12165 + pos: -126.5,1.5 + parent: 2 + - uid: 1690 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,370.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12166 + pos: -126.5,3.5 + parent: 2 + - uid: 1695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,370.5 - parent: 1 + pos: -67.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12167 + color: '#0055CCFF' + - uid: 1698 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,370.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12172 + pos: -125.5,3.5 + parent: 2 + - uid: 1710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12173 + rot: -1.5707963267948966 rad + pos: -126.5,10.5 + parent: 2 + - uid: 1727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 394.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12174 + pos: -124.5,1.5 + parent: 2 + - uid: 1871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12176 + rot: -1.5707963267948966 rad + pos: -106.5,-4.5 + parent: 2 + - uid: 1874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,-65.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12177 + color: '#03FCD3FF' + - uid: 1894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -105.5,-4.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -76.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12178 + color: '#0055CCFF' + - uid: 2034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,395.5 - parent: 1 + pos: -115.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12179 + color: '#990000FF' + - uid: 2035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,395.5 - parent: 1 + pos: -116.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12182 + color: '#990000FF' + - uid: 2036 components: - type: Transform rot: 1.5707963267948966 rad - pos: 402.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12183 + pos: -109.5,-5.5 + parent: 2 + - uid: 2072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12185 + rot: 3.141592653589793 rad + pos: -111.5,-4.5 + parent: 2 + - uid: 2073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -111.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12186 + color: '#990000FF' + - uid: 2074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12192 + rot: 3.141592653589793 rad + pos: -110.5,-3.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 404.5,395.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12193 + rot: 3.141592653589793 rad + pos: -111.5,-3.5 + parent: 2 + - uid: 2076 components: - type: Transform - pos: 404.5,394.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12194 + rot: 1.5707963267948966 rad + pos: -109.5,-4.5 + parent: 2 + - uid: 2077 components: - type: Transform - pos: 404.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12195 + rot: 1.5707963267948966 rad + pos: -110.5,-5.5 + parent: 2 + - uid: 2078 components: - type: Transform - pos: 404.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -113.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12198 + color: '#990000FF' + - uid: 2079 components: - type: Transform - pos: 404.5,390.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12199 + color: '#990000FF' + - uid: 2085 components: - type: Transform - pos: 404.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -119.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12200 + color: '#990000FF' + - uid: 2095 components: - type: Transform - pos: 404.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -118.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12201 + color: '#990000FF' + - uid: 2106 components: - type: Transform - pos: 404.5,387.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -111.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12202 + color: '#990000FF' + - uid: 2107 components: - type: Transform - pos: 404.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -110.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12203 + color: '#990000FF' + - uid: 2128 components: - type: Transform - pos: 404.5,386.5 - parent: 1 + pos: -104.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12204 + color: '#0055CCFF' + - uid: 2413 components: - type: Transform - pos: 404.5,384.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -68.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12205 + color: '#990000FF' + - uid: 2445 components: - type: Transform - pos: 404.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -145.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12206 + color: '#0055CCFF' + - uid: 2461 components: - type: Transform - pos: 404.5,382.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -150.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12207 + color: '#0055CCFF' + - uid: 2462 components: - type: Transform - pos: 404.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -142.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12208 + color: '#0055CCFF' + - uid: 2463 components: - type: Transform - pos: 404.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -144.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12209 + color: '#0055CCFF' + - uid: 2466 components: - type: Transform - pos: 404.5,378.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -143.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12210 + color: '#0055CCFF' + - uid: 2467 components: - type: Transform - pos: 404.5,377.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -141.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12213 + color: '#0055CCFF' + - uid: 2469 components: - type: Transform - pos: 403.5,375.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -141.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12214 + color: '#0055CCFF' + - uid: 2470 components: - type: Transform - pos: 403.5,374.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -149.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12215 + color: '#0055CCFF' + - uid: 2709 components: - type: Transform - pos: 403.5,372.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12216 + rot: -1.5707963267948966 rad + pos: -120.5,10.5 + parent: 2 + - uid: 3011 components: - type: Transform - pos: 403.5,371.5 - parent: 1 + pos: -67.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12222 + color: '#0055CCFF' + - uid: 3167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,375.5 - parent: 1 + pos: -68.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12224 + color: '#0055CCFF' + - uid: 3346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,373.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -119.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12225 + color: '#0055CCFF' + - uid: 3348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,373.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -119.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12227 + color: '#0055CCFF' + - uid: 3418 components: - type: Transform - pos: 400.5,372.5 - parent: 1 + pos: -67.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12228 + color: '#0055CCFF' + - uid: 3442 components: - type: Transform - pos: 400.5,371.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12231 + rot: -1.5707963267948966 rad + pos: -48.5,-27.5 + parent: 2 + - uid: 3443 components: - type: Transform - pos: 408.5,373.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12234 + rot: -1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 2 + - uid: 3505 components: - type: Transform - pos: 407.5,371.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12235 + color: '#990000FF' + - uid: 3596 components: - type: Transform - pos: 407.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -117.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12236 + color: '#0055CCFF' + - uid: 3612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 441.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -118.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12237 + color: '#0055CCFF' + - uid: 3629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 409.5,374.5 - parent: 1 + pos: -62.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12238 + color: '#990000FF' + - uid: 3647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,374.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -67.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12239 + color: '#990000FF' + - uid: 3661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,374.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -68.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12240 + color: '#990000FF' + - uid: 3702 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,374.5 - parent: 1 + pos: -121.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12242 + color: '#990000FF' + - uid: 3703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,374.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -122.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12244 + color: '#990000FF' + - uid: 3726 components: - type: Transform - pos: 415.5,373.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -66.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12256 + color: '#0055CCFF' + - uid: 3750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,366.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -67.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12258 + color: '#0055CCFF' + - uid: 3836 components: - type: Transform - pos: 415.5,364.5 - parent: 1 + pos: -58.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12259 + color: '#0055CCFF' + - uid: 3837 components: - type: Transform - pos: 415.5,363.5 - parent: 1 + pos: -58.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12261 + color: '#0055CCFF' + - uid: 3886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,362.5 - parent: 1 + pos: -119.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12262 + color: '#0055CCFF' + - uid: 3939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,362.5 - parent: 1 + pos: -120.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12265 + color: '#990000FF' + - uid: 4014 components: - type: Transform - pos: 416.5,361.5 - parent: 1 + pos: -120.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12266 + color: '#990000FF' + - uid: 4051 components: - type: Transform - pos: 416.5,360.5 - parent: 1 + pos: -119.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12271 + color: '#0055CCFF' + - uid: 4103 components: - type: Transform - pos: 416.5,358.5 - parent: 1 + pos: -19.5,-44.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: -93.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12272 + color: '#990000FF' + - uid: 4224 components: - type: Transform - pos: 416.5,356.5 - parent: 1 + pos: -29.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12273 + color: '#0055CCFF' + - uid: 4227 components: - type: Transform - pos: 416.5,355.5 - parent: 1 + pos: -29.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12274 + color: '#0055CCFF' + - uid: 4244 components: - type: Transform - pos: 416.5,354.5 - parent: 1 + pos: -30.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12275 + color: '#0055CCFF' + - uid: 4311 components: - type: Transform - pos: 416.5,357.5 - parent: 1 + pos: -29.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12277 + color: '#0055CCFF' + - uid: 4313 components: - type: Transform - pos: 416.5,352.5 - parent: 1 + pos: -29.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12278 + color: '#0055CCFF' + - uid: 4314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,351.5 - parent: 1 + pos: -29.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12279 + color: '#0055CCFF' + - uid: 4315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,351.5 - parent: 1 + pos: -29.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12280 + color: '#0055CCFF' + - uid: 4320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,351.5 - parent: 1 + pos: -29.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12281 + color: '#0055CCFF' + - uid: 4321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,351.5 - parent: 1 + pos: -120.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12282 + color: '#990000FF' + - uid: 4329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,351.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -39.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12283 + color: '#990000FF' + - uid: 4336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,351.5 - parent: 1 + pos: -53.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12284 + color: '#990000FF' + - uid: 4337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,351.5 - parent: 1 + pos: -119.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12285 + color: '#990000FF' + - uid: 4374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,351.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12288 + color: '#990000FF' + - uid: 4378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,352.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -116.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12289 + color: '#0055CCFF' + - uid: 4388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,353.5 - parent: 1 + pos: -93.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12290 + color: '#990000FF' + - uid: 4455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,355.5 - parent: 1 + pos: -104.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12293 + color: '#0055CCFF' + - uid: 4463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,362.5 - parent: 1 + pos: -124.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12294 + color: '#990000FF' + - uid: 4464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,362.5 - parent: 1 + pos: -124.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12295 + color: '#990000FF' + - uid: 4546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,362.5 - parent: 1 + pos: -94.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12296 + color: '#0055CCFF' + - uid: 4556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,362.5 - parent: 1 + pos: -93.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12302 + color: '#990000FF' + - uid: 4572 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,362.5 - parent: 1 + pos: -73.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12303 + color: '#0055CCFF' + - uid: 4574 components: - type: Transform - pos: 423.5,361.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -94.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12304 + color: '#0055CCFF' + - uid: 4576 components: - type: Transform - pos: 425.5,361.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -119.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12305 + color: '#03FCD3FF' + - uid: 4577 components: - type: Transform - pos: 421.5,361.5 - parent: 1 + pos: -68.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12309 + color: '#0055CCFF' + - uid: 4592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,396.5 - parent: 1 + pos: -68.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12311 + color: '#0055CCFF' + - uid: 4601 components: - type: Transform - pos: 423.5,409.5 - parent: 1 + pos: -67.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12317 + color: '#0055CCFF' + - uid: 4605 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,394.5 - parent: 1 + pos: -64.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12321 + color: '#990000FF' + - uid: 4609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,392.5 - parent: 1 + pos: -93.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12322 + color: '#990000FF' + - uid: 4616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,392.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -72.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12324 + color: '#0055CCFF' + - uid: 4626 components: - type: Transform - pos: 409.5,391.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12327 + color: '#990000FF' + - uid: 4637 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,389.5 - parent: 1 + pos: -105.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12328 + color: '#0055CCFF' + - uid: 4654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,388.5 - parent: 1 + pos: -30.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12331 + color: '#0055CCFF' + - uid: 4670 components: - type: Transform - pos: 408.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -98.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12335 + color: '#0055CCFF' + - uid: 4686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,384.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -125.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12339 + color: '#0055CCFF' + - uid: 4691 components: - type: Transform - pos: 408.5,384.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -98.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12340 + color: '#0055CCFF' + - uid: 4692 components: - type: Transform - pos: 408.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -125.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12346 + color: '#0055CCFF' + - uid: 4748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,382.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -125.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12347 + color: '#990000FF' + - uid: 4805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,422.5 - parent: 1 - - uid: 12350 + rot: 1.5707963267948966 rad + pos: -99.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,382.5 - parent: 1 + pos: -123.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12351 + color: '#990000FF' + - uid: 4861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,382.5 - parent: 1 + pos: -29.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12352 + color: '#990000FF' + - uid: 4885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,382.5 - parent: 1 + pos: -18.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12354 + color: '#0055CCFF' + - uid: 4891 components: - type: Transform - pos: 415.5,381.5 - parent: 1 + pos: -18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12355 + color: '#0055CCFF' + - uid: 4892 components: - type: Transform - pos: 415.5,380.5 - parent: 1 + pos: -18.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12356 + color: '#0055CCFF' + - uid: 4894 components: - type: Transform - pos: 415.5,379.5 - parent: 1 + pos: -103.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12358 + color: '#990000FF' + - uid: 4895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,392.5 - parent: 1 + pos: -26.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12360 + color: '#990000FF' + - uid: 4897 components: - type: Transform - pos: 414.5,391.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -115.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12362 + color: '#990000FF' + - uid: 4903 components: - type: Transform - pos: 414.5,389.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -116.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12364 + color: '#990000FF' + - uid: 4917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,388.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12365 + color: '#947507FF' + - uid: 4919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,388.5 - parent: 1 + pos: -137.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12366 + color: '#990000FF' + - uid: 4989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,388.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -98.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12367 + color: '#990000FF' + - uid: 5036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,388.5 - parent: 1 + pos: -57.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12371 + color: '#990000FF' + - uid: 5040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,396.5 - parent: 1 + pos: -30.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12372 + color: '#0055CCFF' + - uid: 5041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,396.5 - parent: 1 + pos: -30.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12374 + color: '#0055CCFF' + - uid: 5042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,396.5 - parent: 1 + pos: -30.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12375 + color: '#0055CCFF' + - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,407.5 - parent: 1 + pos: -121.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12376 + color: '#03FCD3FF' + - uid: 5093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,407.5 - parent: 1 + pos: -122.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12377 + color: '#03FCD3FF' + - uid: 5094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 430.5,407.5 - parent: 1 + pos: -120.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12378 + color: '#03FCD3FF' + - uid: 5098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12379 + color: '#03FCD3FF' + - uid: 5122 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,398.5 - parent: 1 + pos: -133.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12386 + color: '#990000FF' + - uid: 5125 components: - type: Transform - pos: 418.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12387 + color: '#990000FF' + - uid: 5138 components: - type: Transform - pos: 418.5,401.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -100.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12389 + color: '#0055CCFF' + - uid: 5343 components: - type: Transform - pos: 418.5,403.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -130.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12392 + color: '#0055CCFF' + - uid: 5347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,404.5 - parent: 1 + pos: -134.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12396 + color: '#0055CCFF' + - uid: 5352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,405.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12397 + color: '#03FCD3FF' + - uid: 5362 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12399 + pos: -111.5,-1.5 + parent: 2 + - uid: 5363 components: - type: Transform rot: 3.141592653589793 rad - pos: 420.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12402 + pos: -111.5,-0.5 + parent: 2 + - uid: 5364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12403 + rot: 3.141592653589793 rad + pos: -111.5,0.5 + parent: 2 + - uid: 5365 components: - type: Transform rot: 3.141592653589793 rad - pos: 422.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12406 + pos: -110.5,-1.5 + parent: 2 + - uid: 5366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12407 + rot: 3.141592653589793 rad + pos: -110.5,-0.5 + parent: 2 + - uid: 5367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12408 + rot: 3.141592653589793 rad + pos: -110.5,0.5 + parent: 2 + - uid: 5368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12409 + rot: 3.141592653589793 rad + pos: -109.5,-1.5 + parent: 2 + - uid: 5369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12410 + rot: 3.141592653589793 rad + pos: -109.5,-0.5 + parent: 2 + - uid: 5370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -109.5,0.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -123.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12411 + color: '#990000FF' + - uid: 5392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -142.5,-6.5 + parent: 2 + - uid: 5402 components: - type: Transform rot: 3.141592653589793 rad - pos: 440.5,408.5 - parent: 1 + pos: -26.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12415 + color: '#990000FF' + - uid: 5407 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,394.5 - parent: 1 + pos: -30.5,-62.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12420 + color: '#0055CCFF' + - uid: 5408 components: - type: Transform - pos: 361.5,401.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12421 + rot: -1.5707963267948966 rad + pos: -142.5,-3.5 + parent: 2 + - uid: 5453 components: - type: Transform - pos: 361.5,400.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12423 + color: '#990000FF' + - uid: 5455 components: - type: Transform - pos: 361.5,398.5 - parent: 1 + pos: -134.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12428 + color: '#0055CCFF' + - uid: 5458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,394.5 - parent: 1 + pos: -134.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12429 + color: '#0055CCFF' + - uid: 5462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,393.5 - parent: 1 + pos: -137.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12432 + color: '#990000FF' + - uid: 5472 components: - type: Transform rot: 3.141592653589793 rad - pos: 426.5,397.5 - parent: 1 + pos: -137.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12436 + color: '#990000FF' + - uid: 5484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12437 + pos: -124.5,7.5 + parent: 2 + - uid: 5487 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,393.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12440 + pos: -125.5,7.5 + parent: 2 + - uid: 5488 components: - type: Transform - pos: 422.5,394.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12442 + rot: 1.5707963267948966 rad + pos: -126.5,7.5 + parent: 2 + - uid: 5489 components: - type: Transform - pos: 423.5,390.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12448 + rot: 1.5707963267948966 rad + pos: -124.5,5.5 + parent: 2 + - uid: 5491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 423.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12449 + pos: -126.5,2.5 + parent: 2 + - uid: 5500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -133.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12450 + color: '#990000FF' + - uid: 5501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -138.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12452 + color: '#947507FF' + - uid: 5502 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,389.5 - parent: 1 + pos: -123.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12453 + color: '#990000FF' + - uid: 5508 components: - type: Transform rot: -1.5707963267948966 rad - pos: 426.5,389.5 - parent: 1 + pos: -122.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12454 + color: '#990000FF' + - uid: 5509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,389.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -138.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12457 + color: '#947507FF' + - uid: 5512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12458 + pos: -125.5,5.5 + parent: 2 + - uid: 5514 components: - type: Transform - pos: 426.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -132.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12464 + color: '#990000FF' + - uid: 5515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -125.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12466 + color: '#947507FF' + - uid: 5516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,392.5 - parent: 1 + pos: -134.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12467 + color: '#947507FF' + - uid: 5517 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12468 + pos: -126.5,5.5 + parent: 2 + - uid: 5520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,392.5 - parent: 1 + pos: -132.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12469 + color: '#947507FF' + - uid: 5521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 430.5,392.5 - parent: 1 + pos: -131.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12470 + color: '#947507FF' + - uid: 5522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,396.5 - parent: 1 + pos: -135.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12471 + color: '#947507FF' + - uid: 5523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -131.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12472 + color: '#990000FF' + - uid: 5524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -125.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12473 + color: '#990000FF' + - uid: 5525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -134.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12474 + color: '#990000FF' + - uid: 5527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,400.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -135.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12475 + color: '#990000FF' + - uid: 5528 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,400.5 - parent: 1 + pos: -126.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12476 + color: '#947507FF' + - uid: 5530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,400.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -124.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12477 + color: '#03FCD3FF' + - uid: 5554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,400.5 - parent: 1 + pos: -134.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12478 + color: '#0055CCFF' + - uid: 5563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -123.5,4.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -123.5,2.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -123.5,10.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12479 + color: '#0055CCFF' + - uid: 5586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -129.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12480 + color: '#0055CCFF' + - uid: 5591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -126.5,11.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -132.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12481 + color: '#0055CCFF' + - uid: 5593 components: - type: Transform rot: 3.141592653589793 rad - pos: 426.5,399.5 - parent: 1 + pos: -133.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12483 + color: '#990000FF' + - uid: 5602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,398.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -124.5,10.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: -118.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12487 + color: '#947507FF' + - uid: 5608 components: - type: Transform - pos: 426.5,403.5 - parent: 1 + pos: -118.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12488 + color: '#947507FF' + - uid: 5612 components: - type: Transform - pos: 426.5,402.5 - parent: 1 + pos: -118.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12489 + color: '#947507FF' + - uid: 5621 components: - type: Transform rot: -1.5707963267948966 rad - pos: 427.5,404.5 - parent: 1 + pos: -112.5,9.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12494 + color: '#990000FF' + - uid: 5624 components: - type: Transform - pos: 427.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12501 + color: '#990000FF' + - uid: 5627 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12502 + pos: -125.5,6.5 + parent: 2 + - uid: 5629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,397.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12509 + rot: -1.5707963267948966 rad + pos: -121.5,0.5 + parent: 2 + - uid: 5636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12513 + pos: -124.5,2.5 + parent: 2 + - uid: 5637 components: - type: Transform - pos: 427.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12514 + color: '#990000FF' + - uid: 5640 components: - type: Transform rot: 3.141592653589793 rad - pos: 440.5,409.5 - parent: 1 + pos: -120.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12515 + color: '#990000FF' + - uid: 5644 components: - type: Transform rot: 3.141592653589793 rad - pos: 440.5,410.5 - parent: 1 + pos: -118.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12517 + color: '#0055CCFF' + - uid: 5645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 441.5,411.5 - parent: 1 + pos: -23.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12518 + color: '#990000FF' + - uid: 5655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,1.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -126.5,4.5 + parent: 2 + - uid: 5689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 439.5,411.5 - parent: 1 + pos: -96.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12519 + color: '#0055CCFF' + - uid: 5705 components: - type: Transform rot: -1.5707963267948966 rad - pos: 437.5,411.5 - parent: 1 + pos: -102.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12520 + color: '#0055CCFF' + - uid: 5740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,411.5 - parent: 1 + pos: -103.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12523 + color: '#0055CCFF' + - uid: 5788 + components: + - type: Transform + pos: -122.5,10.5 + parent: 2 + - uid: 5851 components: - type: Transform rot: 1.5707963267948966 rad - pos: 435.5,407.5 - parent: 1 + pos: -139.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12525 + color: '#947507FF' + - uid: 5902 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,405.5 - parent: 1 + pos: -138.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12526 + color: '#947507FF' + - uid: 5971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -127.5,4.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -135.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6001 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,404.5 - parent: 1 + pos: -141.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12527 + color: '#0055CCFF' + - uid: 6002 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,403.5 - parent: 1 + pos: -141.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12528 + color: '#0055CCFF' + - uid: 6014 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,406.5 - parent: 1 + pos: -141.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12529 + color: '#0055CCFF' + - uid: 6016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -74.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12530 + color: '#990000FF' + - uid: 6022 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,401.5 - parent: 1 + pos: -149.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12531 + color: '#990000FF' + - uid: 6027 components: - type: Transform rot: 3.141592653589793 rad - pos: 442.5,400.5 - parent: 1 + pos: -30.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12533 + color: '#0055CCFF' + - uid: 6045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12534 + pos: -148.5,0.5 + parent: 2 + - uid: 6046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12535 + pos: -148.5,-0.5 + parent: 2 + - uid: 6047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 446.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12536 + pos: -148.5,-1.5 + parent: 2 + - uid: 6048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12537 + pos: -146.5,0.5 + parent: 2 + - uid: 6049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12538 + pos: -146.5,-0.5 + parent: 2 + - uid: 6050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,408.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12545 + pos: -146.5,-1.5 + parent: 2 + - uid: 6051 components: - type: Transform - pos: 449.5,407.5 - parent: 1 + pos: -150.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12546 + color: '#FF0000FF' + - uid: 6052 components: - type: Transform - pos: 449.5,406.5 - parent: 1 + pos: -150.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12547 + color: '#FF0000FF' + - uid: 6053 components: - type: Transform - pos: 449.5,405.5 - parent: 1 + pos: -150.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12548 + color: '#FF0000FF' + - uid: 6056 components: - type: Transform - pos: 449.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -149.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12549 + color: '#FF0000FF' + - uid: 6059 components: - type: Transform - pos: 449.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -145.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12550 + color: '#947507FF' + - uid: 6061 components: - type: Transform - pos: 449.5,402.5 - parent: 1 + pos: -144.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12555 + color: '#947507FF' + - uid: 6062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,411.5 - parent: 1 + pos: -144.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12557 + color: '#947507FF' + - uid: 6063 components: - type: Transform - pos: 449.5,409.5 - parent: 1 + pos: -144.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12559 + color: '#947507FF' + - uid: 6064 components: - type: Transform - pos: 449.5,411.5 - parent: 1 + pos: -144.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12560 + color: '#947507FF' + - uid: 6072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12561 + rot: 3.141592653589793 rad + pos: -150.5,-14.5 + parent: 2 + - uid: 6077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12562 + rot: 3.141592653589793 rad + pos: -144.5,-13.5 + parent: 2 + - uid: 6078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 453.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12563 + rot: 3.141592653589793 rad + pos: -150.5,-13.5 + parent: 2 + - uid: 6094 components: - type: Transform rot: -1.5707963267948966 rad - pos: 454.5,410.5 - parent: 1 + pos: -146.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12564 + color: '#990000FF' + - uid: 6098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 456.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -145.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12565 + color: '#0055CCFF' + - uid: 6105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 458.5,410.5 - parent: 1 + pos: -145.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12566 + color: '#990000FF' + - uid: 6106 + components: + - type: Transform + pos: -146.5,-40.5 + parent: 2 + - uid: 6130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 457.5,410.5 - parent: 1 + pos: -100.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12570 + color: '#990000FF' + - uid: 6154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,412.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12571 + pos: -146.5,-39.5 + parent: 2 + - uid: 6177 components: - type: Transform rot: 3.141592653589793 rad - pos: 455.5,412.5 - parent: 1 + pos: -137.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12572 + color: '#0055CCFF' + - uid: 6505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,413.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -147.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12573 + color: '#990000FF' + - uid: 6514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -74.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12574 + color: '#0055CCFF' + - uid: 6544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,413.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -94.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12575 + color: '#990000FF' + - uid: 6652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -143.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12580 + color: '#990000FF' + - uid: 6668 components: - type: Transform - pos: 459.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -131.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12581 + color: '#0055CCFF' + - uid: 6700 components: - type: Transform - pos: 459.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12582 + pos: -146.5,-50.5 + parent: 2 + - uid: 6704 components: - type: Transform - pos: 459.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -151.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12583 + color: '#0055CCFF' + - uid: 6705 components: - type: Transform - pos: 459.5,412.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12585 + pos: -148.5,-40.5 + parent: 2 + - uid: 6872 components: - type: Transform - pos: 459.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12586 + rot: 1.5707963267948966 rad + pos: -116.5,3.5 + parent: 2 + - uid: 6905 components: - type: Transform - pos: 459.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12587 + rot: -1.5707963267948966 rad + pos: -114.5,3.5 + parent: 2 + - uid: 6959 components: - type: Transform - pos: 459.5,406.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12588 + rot: -1.5707963267948966 rad + pos: -127.5,10.5 + parent: 2 + - uid: 6997 components: - type: Transform - pos: 330.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12589 + rot: -1.5707963267948966 rad + pos: -113.5,7.5 + parent: 2 + - uid: 6999 components: - type: Transform - pos: 459.5,405.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12591 + rot: -1.5707963267948966 rad + pos: -112.5,7.5 + parent: 2 + - uid: 7005 components: - type: Transform - pos: 449.5,412.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12592 + pos: -118.5,4.5 + parent: 2 + - uid: 7008 components: - type: Transform - pos: 449.5,414.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12593 + rot: -1.5707963267948966 rad + pos: -113.5,3.5 + parent: 2 + - uid: 7009 components: - type: Transform - pos: 449.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12595 + rot: -1.5707963267948966 rad + pos: -111.5,3.5 + parent: 2 + - uid: 7010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12596 + rot: -1.5707963267948966 rad + pos: -112.5,3.5 + parent: 2 + - uid: 7023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12598 + pos: -146.5,-49.5 + parent: 2 + - uid: 7028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -144.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12600 + color: '#990000FF' + - uid: 7029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12603 + pos: -148.5,-41.5 + parent: 2 + - uid: 7030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,418.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -140.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12604 + color: '#990000FF' + - uid: 7031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,419.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -141.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12605 + color: '#990000FF' + - uid: 7041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,420.5 - parent: 1 + pos: -105.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12606 + color: '#0055CCFF' + - uid: 7047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 450.5,422.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -118.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12607 + color: '#990000FF' + - uid: 7049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 449.5,422.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -105.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12608 + color: '#990000FF' + - uid: 7053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,422.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -148.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12613 + color: '#990000FF' + - uid: 7118 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,405.5 - parent: 1 + pos: -118.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12618 + color: '#0055CCFF' + - uid: 7119 components: - type: Transform - pos: 405.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -118.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12620 + color: '#0055CCFF' + - uid: 7239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 404.5,409.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12621 + pos: -118.5,1.5 + parent: 2 + - uid: 7244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,409.5 - parent: 1 + pos: -104.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12622 + color: '#990000FF' + - uid: 7252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -104.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12626 + color: '#0055CCFF' + - uid: 7255 components: - type: Transform - pos: 405.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -96.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12629 + color: '#0055CCFF' + - uid: 7260 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,412.5 - parent: 1 + pos: -104.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12631 + color: '#0055CCFF' + - uid: 7267 components: - type: Transform rot: -1.5707963267948966 rad - pos: 403.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12633 + pos: -114.5,9.5 + parent: 2 + - uid: 7282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12635 + pos: -146.5,-41.5 + parent: 2 + - uid: 7305 components: - type: Transform - pos: 404.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -103.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12636 + color: '#0055CCFF' + - uid: 7347 components: - type: Transform - pos: 404.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12638 + color: '#990000FF' + - uid: 7437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -126.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12639 + color: '#990000FF' + - uid: 7438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -132.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12642 + color: '#990000FF' + - uid: 7440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,419.5 - parent: 1 - - uid: 12644 + pos: -133.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 398.5,415.5 - parent: 1 + pos: -127.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12646 + color: '#990000FF' + - uid: 7504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -128.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12648 + color: '#990000FF' + - uid: 7533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 396.5,415.5 - parent: 1 + pos: -104.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12649 + color: '#0055CCFF' + - uid: 7647 components: - type: Transform rot: 1.5707963267948966 rad - pos: 394.5,415.5 - parent: 1 + pos: -35.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12650 + color: '#990000FF' + - uid: 7649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,415.5 - parent: 1 + pos: -101.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12655 + color: '#0055CCFF' + - uid: 7650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,416.5 - parent: 1 + pos: -18.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12656 + color: '#0055CCFF' + - uid: 7651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,416.5 - parent: 1 + pos: -18.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12660 + color: '#0055CCFF' + - uid: 7652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,417.5 - parent: 1 + pos: -18.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12661 + color: '#0055CCFF' + - uid: 7670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,417.5 - parent: 1 + pos: -100.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12662 + color: '#0055CCFF' + - uid: 7671 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,417.5 - parent: 1 + pos: -102.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12663 + color: '#0055CCFF' + - uid: 7672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,417.5 - parent: 1 + pos: -103.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12668 + color: '#0055CCFF' + - uid: 7673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,418.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -81.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12671 + color: '#0055CCFF' + - uid: 7675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,415.5 - parent: 1 + pos: -18.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12675 + color: '#0055CCFF' + - uid: 7676 components: - type: Transform - pos: 404.5,417.5 - parent: 1 + pos: -18.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12676 + color: '#0055CCFF' + - uid: 7677 components: - type: Transform - pos: 404.5,418.5 - parent: 1 + pos: -18.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12677 + color: '#0055CCFF' + - uid: 7781 components: - type: Transform - pos: 404.5,420.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -116.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12678 + color: '#990000FF' + - uid: 7803 components: - type: Transform - pos: 404.5,419.5 - parent: 1 + pos: -15.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12680 + color: '#0055CCFF' + - uid: 7806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,421.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12686 + color: '#0055CCFF' + - uid: 7841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -141.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12690 + color: '#0055CCFF' + - uid: 7850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,421.5 - parent: 1 + pos: -137.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12691 + color: '#990000FF' + - uid: 7868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,421.5 - parent: 1 + pos: -136.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12694 + color: '#990000FF' + - uid: 7903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,421.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -104.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12700 + color: '#0055CCFF' + - uid: 8488 components: - type: Transform - pos: 409.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12701 + color: '#990000FF' + - uid: 8493 components: - type: Transform - pos: 409.5,415.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -55.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12702 + color: '#0055CCFF' + - uid: 8537 components: - type: Transform - pos: 408.5,412.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12706 + color: '#0055CCFF' + - uid: 8538 components: - type: Transform - pos: 409.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -56.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12707 + color: '#0055CCFF' + - uid: 8540 components: - type: Transform - pos: 409.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12708 + color: '#990000FF' + - uid: 8541 components: - type: Transform - pos: 409.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -34.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12713 + color: '#990000FF' + - uid: 8542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -54.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12714 + color: '#0055CCFF' + - uid: 8543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,395.5 - parent: 1 + pos: -53.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12715 + color: '#0055CCFF' + - uid: 8582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,394.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -99.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12719 + color: '#0055CCFF' + - uid: 8584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12720 + color: '#990000FF' + - uid: 8588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -33.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12722 + color: '#990000FF' + - uid: 8589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12723 + color: '#990000FF' + - uid: 8602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12726 + color: '#990000FF' + - uid: 8605 components: - type: Transform rot: 3.141592653589793 rad - pos: 366.5,395.5 - parent: 1 + pos: -41.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12732 + color: '#990000FF' + - uid: 8606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12733 + rot: 1.5707963267948966 rad + pos: -119.5,1.5 + parent: 2 + - uid: 8607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12734 + rot: 1.5707963267948966 rad + pos: -127.5,6.5 + parent: 2 + - uid: 8609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12735 + rot: 1.5707963267948966 rad + pos: -127.5,8.5 + parent: 2 + - uid: 8618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -19.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12737 + color: '#990000FF' + - uid: 8620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -31.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12738 + color: '#990000FF' + - uid: 8621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -30.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12739 + color: '#990000FF' + - uid: 8693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,389.5 - parent: 1 + pos: -99.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12741 + color: '#0055CCFF' + - uid: 8819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 363.5,389.5 - parent: 1 + pos: -97.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12742 + color: '#0055CCFF' + - uid: 8847 components: - type: Transform rot: 3.141592653589793 rad - pos: 362.5,388.5 - parent: 1 + pos: -39.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12744 + color: '#990000FF' + - uid: 8848 components: - type: Transform rot: 3.141592653589793 rad - pos: 362.5,387.5 - parent: 1 + pos: -39.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12745 + color: '#990000FF' + - uid: 8861 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,386.5 - parent: 1 + pos: -130.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12747 + color: '#0055CCFF' + - uid: 8900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12748 + color: '#990000FF' + - uid: 8905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,384.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -33.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12749 + color: '#990000FF' + - uid: 8932 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,387.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12752 - components: - - type: Transform - pos: 366.5,382.5 - parent: 1 + pos: -130.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12754 + color: '#0055CCFF' + - uid: 8940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,381.5 - parent: 1 + pos: -30.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12758 + color: '#990000FF' + - uid: 8944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,386.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12759 - components: - - type: Transform - pos: 359.5,384.5 - parent: 1 + pos: -31.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12760 + color: '#990000FF' + - uid: 8951 components: - type: Transform - pos: 359.5,383.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12761 + color: '#990000FF' + - uid: 8956 components: - type: Transform - pos: 359.5,385.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12762 + color: '#990000FF' + - uid: 8957 components: - type: Transform - pos: 359.5,382.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12764 + color: '#990000FF' + - uid: 8959 components: - type: Transform - pos: 359.5,380.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12765 + color: '#0055CCFF' + - uid: 8965 components: - type: Transform - pos: 359.5,378.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12766 + color: '#990000FF' + - uid: 8972 components: - type: Transform - pos: 359.5,377.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12767 + color: '#0055CCFF' + - uid: 8978 components: - type: Transform - pos: 359.5,379.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12768 + color: '#0055CCFF' + - uid: 8991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12769 + rot: 1.5707963267948966 rad + pos: -120.5,1.5 + parent: 2 + - uid: 8993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12770 + rot: 1.5707963267948966 rad + pos: -124.5,6.5 + parent: 2 + - uid: 9009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12772 + rot: 1.5707963267948966 rad + pos: -125.5,4.5 + parent: 2 + - uid: 9010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,381.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12774 + rot: 1.5707963267948966 rad + pos: -124.5,4.5 + parent: 2 + - uid: 9011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 361.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12775 + pos: -126.5,6.5 + parent: 2 + - uid: 9012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12776 + pos: -126.5,8.5 + parent: 2 + - uid: 9013 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12777 + pos: -125.5,8.5 + parent: 2 + - uid: 9047 components: - type: Transform rot: -1.5707963267948966 rad - pos: 358.5,392.5 - parent: 1 + pos: -75.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12778 + color: '#990000FF' + - uid: 9079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12782 + pos: -29.5,-70.5 + parent: 2 + - uid: 9080 components: - type: Transform - pos: 355.5,391.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12783 + pos: -31.5,-74.5 + parent: 2 + - uid: 9081 components: - type: Transform - pos: 355.5,390.5 - parent: 1 + pos: -31.5,-71.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12784 + color: '#990000FF' + - uid: 9101 components: - type: Transform - pos: 355.5,389.5 - parent: 1 + pos: -104.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12786 + color: '#990000FF' + - uid: 9107 components: - type: Transform - pos: 355.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -97.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12787 + color: '#990000FF' + - uid: 9116 components: - type: Transform - pos: 355.5,386.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -101.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12788 + color: '#990000FF' + - uid: 9140 components: - type: Transform - pos: 355.5,385.5 - parent: 1 + pos: -24.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12792 + color: '#0055CCFF' + - uid: 9143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,393.5 - parent: 1 + pos: -103.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12794 + color: '#0055CCFF' + - uid: 9144 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,394.5 - parent: 1 + pos: -28.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12796 + color: '#990000FF' + - uid: 9156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,397.5 - parent: 1 + pos: -67.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12799 + color: '#0055CCFF' + - uid: 9165 components: - type: Transform rot: -1.5707963267948966 rad - pos: 358.5,396.5 - parent: 1 + pos: -36.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12800 + color: '#0055CCFF' + - uid: 9186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,396.5 - parent: 1 + pos: -31.5,-72.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: -103.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12801 + color: '#0055CCFF' + - uid: 9214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 356.5,396.5 - parent: 1 + pos: -40.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12802 + color: '#990000FF' + - uid: 9230 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,360.5 - parent: 1 + pos: -101.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#0055CCFF' + - uid: 9231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,396.5 - parent: 1 + pos: -45.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12805 + color: '#0055CCFF' + - uid: 9238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,397.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12806 + color: '#990000FF' + - uid: 9264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,398.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -46.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12809 + color: '#990000FF' + - uid: 9266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,388.5 - parent: 1 + pos: -57.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12811 + color: '#990000FF' + - uid: 9278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,389.5 - parent: 1 + pos: -103.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12812 + color: '#990000FF' + - uid: 9291 components: - type: Transform rot: 3.141592653589793 rad - pos: 351.5,390.5 - parent: 1 + pos: -94.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12815 + color: '#990000FF' + - uid: 9292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,392.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12816 + color: '#0055CCFF' + - uid: 9316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,392.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -72.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12817 + color: '#0055CCFF' + - uid: 9352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,392.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12820 + rot: 3.141592653589793 rad + pos: -28.5,-64.5 + parent: 2 + - uid: 9361 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12821 + pos: -30.5,-70.5 + parent: 2 + - uid: 9363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,388.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12822 + rot: 3.141592653589793 rad + pos: -27.5,-63.5 + parent: 2 + - uid: 9426 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,388.5 - parent: 1 + pos: -72.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12824 + color: '#990000FF' + - uid: 9427 components: - type: Transform rot: -1.5707963267948966 rad - pos: 347.5,389.5 - parent: 1 + pos: -73.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12825 + color: '#990000FF' + - uid: 9429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,389.5 - parent: 1 - - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12826 + rot: 3.141592653589793 rad + pos: -90.5,-43.5 + parent: 2 + - uid: 9453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,389.5 - parent: 1 + pos: -87.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12827 + color: '#990000FF' + - uid: 9454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,389.5 - parent: 1 - - uid: 12831 + pos: -87.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,388.5 - parent: 1 - - uid: 12832 + rot: 3.141592653589793 rad + pos: -133.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,387.5 - parent: 1 + pos: -103.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12833 + color: '#990000FF' + - uid: 9466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,387.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -115.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12836 + color: '#0055CCFF' + - uid: 9467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -129.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12839 + color: '#990000FF' + - uid: 9470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -106.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12840 + color: '#990000FF' + - uid: 9471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,390.5 - parent: 1 + pos: -134.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12841 + color: '#0055CCFF' + - uid: 9472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,391.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -120.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12842 + color: '#0055CCFF' + - uid: 9473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -101.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12845 + color: '#0055CCFF' + - uid: 9477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -95.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12847 + color: '#990000FF' + - uid: 9482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -72.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12848 + color: '#0055CCFF' + - uid: 9483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -72.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12854 + color: '#0055CCFF' + - uid: 9484 components: - type: Transform - pos: 347.5,395.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -68.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12855 + color: '#990000FF' + - uid: 9487 components: - type: Transform - pos: 347.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -138.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12856 + color: '#990000FF' + - uid: 9489 components: - type: Transform - pos: 347.5,397.5 - parent: 1 + pos: -67.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12860 + color: '#0055CCFF' + - uid: 9490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12861 + color: '#990000FF' + - uid: 9493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12864 + color: '#990000FF' + - uid: 9498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,399.5 - parent: 1 + pos: -120.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12865 + color: '#990000FF' + - uid: 9501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,399.5 - parent: 1 + pos: -104.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12866 + color: '#0055CCFF' + - uid: 9502 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,399.5 - parent: 1 + pos: -28.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12867 + color: '#0055CCFF' + - uid: 9503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 351.5,399.5 - parent: 1 + pos: -121.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12868 + color: '#0055CCFF' + - uid: 9530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12869 + color: '#990000FF' + - uid: 9564 components: - type: Transform - pos: 347.5,400.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12870 + pos: -122.5,11.5 + parent: 2 + - uid: 9575 components: - type: Transform - pos: 347.5,401.5 - parent: 1 + pos: -45.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12871 + color: '#990000FF' + - uid: 9586 components: - type: Transform - pos: 412.5,398.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -99.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12872 + color: '#990000FF' + - uid: 9715 components: - type: Transform - pos: 412.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12873 + rot: 1.5707963267948966 rad + pos: -116.5,1.5 + parent: 2 + - uid: 9743 components: - type: Transform - pos: 412.5,400.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -44.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12874 + color: '#990000FF' + - uid: 9747 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,370.5 - parent: 1 + pos: -45.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12875 + color: '#990000FF' + - uid: 9771 components: - type: Transform - pos: 412.5,402.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12877 + pos: -31.5,-75.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 9809 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,404.5 - parent: 1 + pos: -41.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12878 + color: '#990000FF' + - uid: 9811 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,405.5 - parent: 1 + pos: -41.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12880 + color: '#990000FF' + - uid: 9818 components: - type: Transform - pos: 412.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12881 + rot: -1.5707963267948966 rad + pos: -125.5,10.5 + parent: 2 + - uid: 9827 components: - type: Transform - pos: 412.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12882 + color: '#990000FF' + - uid: 9830 components: - type: Transform - pos: 412.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -41.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12883 + color: '#0055CCFF' + - uid: 9842 components: - type: Transform - pos: 412.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12885 + color: '#990000FF' + - uid: 9844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,411.5 - parent: 1 + pos: -100.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12886 + color: '#0055CCFF' + - uid: 9865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 414.5,411.5 - parent: 1 + pos: -36.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12891 + color: '#990000FF' + - uid: 9900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12892 + color: '#990000FF' + - uid: 9915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12893 + color: '#990000FF' + - uid: 9936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12894 + rot: -1.5707963267948966 rad + pos: -124.5,11.5 + parent: 2 + - uid: 9945 components: - type: Transform rot: -1.5707963267948966 rad - pos: 407.5,403.5 - parent: 1 + pos: -125.5,11.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12895 + color: '#990000FF' + - uid: 9959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -20.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12896 + color: '#990000FF' + - uid: 9960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12899 + color: '#990000FF' + - uid: 9961 components: - type: Transform - pos: 393.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -25.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12900 + color: '#990000FF' + - uid: 9962 components: - type: Transform - pos: 393.5,405.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -27.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12901 + color: '#990000FF' + - uid: 9963 components: - type: Transform - pos: 393.5,406.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -38.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12902 + color: '#990000FF' + - uid: 10006 components: - type: Transform - pos: 393.5,404.5 - parent: 1 + pos: -93.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12904 + color: '#990000FF' + - uid: 10007 components: - type: Transform - pos: 393.5,408.5 - parent: 1 + pos: -93.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12905 + color: '#990000FF' + - uid: 10008 components: - type: Transform - pos: 393.5,410.5 - parent: 1 + pos: -93.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12906 + color: '#990000FF' + - uid: 10022 components: - type: Transform - pos: 393.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -18.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12908 + color: '#0055CCFF' + - uid: 10023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -60.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12909 + color: '#990000FF' + - uid: 10024 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,411.5 - parent: 1 + pos: -65.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12911 + color: '#990000FF' + - uid: 10025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,407.5 - parent: 1 + pos: -29.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12912 + color: '#990000FF' + - uid: 10027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -88.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12914 + color: '#990000FF' + - uid: 10028 components: - type: Transform rot: 1.5707963267948966 rad - pos: 394.5,407.5 - parent: 1 + pos: -73.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12915 + color: '#990000FF' + - uid: 10030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12917 + color: '#990000FF' + - uid: 10034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,408.5 - parent: 1 + pos: -29.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12927 + color: '#990000FF' + - uid: 10037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,405.5 - parent: 1 + pos: -23.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12929 + color: '#990000FF' + - uid: 10040 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,407.5 - parent: 1 + pos: -66.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12930 + color: '#990000FF' + - uid: 10041 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,408.5 - parent: 1 + pos: -66.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12933 + color: '#990000FF' + - uid: 10044 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,411.5 - parent: 1 + pos: -66.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12934 + color: '#990000FF' + - uid: 10045 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,412.5 - parent: 1 + pos: -66.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12936 + color: '#990000FF' + - uid: 10046 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,414.5 - parent: 1 + pos: -66.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12937 + color: '#990000FF' + - uid: 10047 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,415.5 - parent: 1 + pos: -67.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12941 + color: '#0055CCFF' + - uid: 10048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12942 + color: '#0055CCFF' + - uid: 10049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12945 + color: '#0055CCFF' + - uid: 10051 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,403.5 - parent: 1 + pos: -67.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12946 + color: '#0055CCFF' + - uid: 10054 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,404.5 - parent: 1 + pos: -67.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12947 + color: '#0055CCFF' + - uid: 10055 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,405.5 - parent: 1 + pos: -67.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12952 + color: '#0055CCFF' + - uid: 10056 components: - type: Transform - pos: 373.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12953 + color: '#990000FF' + - uid: 10057 components: - type: Transform - pos: 373.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12954 + color: '#990000FF' + - uid: 10058 components: - type: Transform - pos: 373.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12955 + color: '#990000FF' + - uid: 10059 components: - type: Transform - pos: 373.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12956 + color: '#0055CCFF' + - uid: 10060 components: - type: Transform - pos: 373.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -67.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12957 + color: '#990000FF' + - uid: 10061 components: - type: Transform - pos: 373.5,415.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -68.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12961 + color: '#990000FF' + - uid: 10062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -70.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12962 + color: '#990000FF' + - uid: 10063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -71.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12967 + color: '#990000FF' + - uid: 10064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -72.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12968 + color: '#990000FF' + - uid: 10065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -69.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12969 + color: '#990000FF' + - uid: 10066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12970 + color: '#0055CCFF' + - uid: 10067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -69.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12971 + color: '#0055CCFF' + - uid: 10068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -71.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12973 + color: '#0055CCFF' + - uid: 10069 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,416.5 - parent: 1 + pos: -72.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12974 + color: '#0055CCFF' + - uid: 10070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,416.5 - parent: 1 + pos: -70.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12976 + color: '#0055CCFF' + - uid: 10092 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,417.5 - parent: 1 + pos: -130.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12977 + color: '#0055CCFF' + - uid: 10093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,418.5 - parent: 1 + pos: -67.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12978 + color: '#0055CCFF' + - uid: 10099 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,419.5 - parent: 1 + pos: -72.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12981 + color: '#0055CCFF' + - uid: 10108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -72.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12984 + color: '#0055CCFF' + - uid: 10114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,421.5 - parent: 1 + pos: -127.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12989 + color: '#0055CCFF' + - uid: 10115 components: - type: Transform rot: 3.141592653589793 rad - pos: 373.5,417.5 - parent: 1 + pos: -133.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12990 + color: '#990000FF' + - uid: 10116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,419.5 - parent: 1 + pos: -67.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12991 + color: '#0055CCFF' + - uid: 10118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,420.5 - parent: 1 + pos: -76.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12992 + color: '#0055CCFF' + - uid: 10137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,418.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -74.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12993 + color: '#0055CCFF' + - uid: 10182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,417.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12994 + rot: -1.5707963267948966 rad + pos: -84.5,-5.5 + parent: 2 + - uid: 10211 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,419.5 - parent: 1 + pos: -66.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12995 + color: '#990000FF' + - uid: 10214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,418.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -67.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12996 + color: '#990000FF' + - uid: 10215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,420.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13003 + color: '#990000FF' + - uid: 10216 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,422.5 - parent: 1 + pos: -56.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13004 + color: '#990000FF' + - uid: 10217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 376.5,422.5 - parent: 1 + pos: -65.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13005 + color: '#990000FF' + - uid: 10218 components: - type: Transform rot: -1.5707963267948966 rad - pos: 377.5,422.5 - parent: 1 + pos: -64.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13006 + color: '#990000FF' + - uid: 10219 components: - type: Transform rot: -1.5707963267948966 rad - pos: 383.5,422.5 - parent: 1 + pos: -62.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13007 + color: '#990000FF' + - uid: 10220 components: - type: Transform rot: -1.5707963267948966 rad - pos: 382.5,422.5 - parent: 1 + pos: -61.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13008 + color: '#990000FF' + - uid: 10222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 381.5,422.5 - parent: 1 + pos: -59.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13010 + color: '#990000FF' + - uid: 10223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,422.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -58.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13011 + color: '#990000FF' + - uid: 10224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,422.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -57.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13013 + color: '#990000FF' + - uid: 10229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13014 + color: '#0055CCFF' + - uid: 10230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13015 + color: '#0055CCFF' + - uid: 10231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13016 + color: '#0055CCFF' + - uid: 10232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -67.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13019 + color: '#0055CCFF' + - uid: 10233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13022 + color: '#0055CCFF' + - uid: 10234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -64.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13025 + color: '#0055CCFF' + - uid: 10235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -63.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13026 + color: '#0055CCFF' + - uid: 10236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13029 + color: '#0055CCFF' + - uid: 10237 components: - type: Transform - pos: 364.5,411.5 - parent: 1 + pos: -62.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13030 + color: '#0055CCFF' + - uid: 10238 components: - type: Transform - pos: 364.5,412.5 - parent: 1 + pos: -62.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13033 + color: '#0055CCFF' + - uid: 10239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,413.5 - parent: 1 + pos: -62.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13034 + color: '#0055CCFF' + - uid: 10240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 366.5,413.5 - parent: 1 + pos: -61.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13036 + color: '#0055CCFF' + - uid: 10241 components: - type: Transform - pos: 331.5,401.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13041 + color: '#0055CCFF' + - uid: 10242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,398.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13042 + color: '#0055CCFF' + - uid: 10243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13044 + color: '#0055CCFF' + - uid: 10244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,400.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13045 + color: '#0055CCFF' + - uid: 10245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13047 + color: '#0055CCFF' + - uid: 10246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13048 + color: '#0055CCFF' + - uid: 10247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13050 + color: '#0055CCFF' + - uid: 10248 components: - type: Transform rot: 3.141592653589793 rad - pos: 328.5,404.5 - parent: 1 + pos: -56.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13051 + color: '#0055CCFF' + - uid: 10249 components: - type: Transform rot: 3.141592653589793 rad - pos: 328.5,405.5 - parent: 1 + pos: -56.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13052 + color: '#0055CCFF' + - uid: 10252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,406.5 - parent: 1 + pos: -103.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13059 + color: '#0055CCFF' + - uid: 10253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,396.5 - parent: 1 + pos: -103.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13060 + color: '#0055CCFF' + - uid: 10255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,396.5 - parent: 1 + pos: -103.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13061 + color: '#0055CCFF' + - uid: 10256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,396.5 - parent: 1 + pos: -103.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13062 + color: '#0055CCFF' + - uid: 10257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,395.5 - parent: 1 + pos: -103.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13063 + color: '#0055CCFF' + - uid: 10258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,394.5 - parent: 1 + pos: -103.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13064 + color: '#0055CCFF' + - uid: 10259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,393.5 - parent: 1 + pos: -103.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13066 + color: '#0055CCFF' + - uid: 10260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 334.5,392.5 - parent: 1 + pos: -113.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13068 + color: '#0055CCFF' + - uid: 10265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,392.5 - parent: 1 + pos: -29.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13070 + color: '#990000FF' + - uid: 10266 components: - type: Transform - pos: 331.5,391.5 - parent: 1 + pos: -29.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13071 + color: '#990000FF' + - uid: 10267 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10268 components: - type: Transform - pos: 331.5,390.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -18.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13072 + color: '#0055CCFF' + - uid: 10269 components: - type: Transform - pos: 331.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -63.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13073 + color: '#0055CCFF' + - uid: 10270 components: - type: Transform - pos: 331.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -65.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13078 + color: '#0055CCFF' + - uid: 10271 components: - type: Transform - pos: 428.5,394.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -66.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13079 + color: '#0055CCFF' + - uid: 10272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,387.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -64.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13080 + color: '#0055CCFF' + - uid: 10275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 327.5,387.5 - parent: 1 + pos: -61.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13081 + color: '#990000FF' + - uid: 10276 components: - type: Transform rot: -1.5707963267948966 rad - pos: 325.5,387.5 - parent: 1 + pos: -62.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13082 + color: '#990000FF' + - uid: 10277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 323.5,387.5 - parent: 1 + pos: -64.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13083 + color: '#990000FF' + - uid: 10278 components: - type: Transform rot: -1.5707963267948966 rad - pos: 322.5,387.5 - parent: 1 + pos: -65.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13084 + color: '#990000FF' + - uid: 10279 components: - type: Transform rot: -1.5707963267948966 rad - pos: 324.5,387.5 - parent: 1 + pos: -63.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13085 + color: '#990000FF' + - uid: 10280 components: - type: Transform rot: -1.5707963267948966 rad - pos: 321.5,387.5 - parent: 1 + pos: -59.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13086 + color: '#990000FF' + - uid: 10281 components: - type: Transform rot: -1.5707963267948966 rad - pos: 319.5,387.5 - parent: 1 + pos: -58.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13087 + color: '#990000FF' + - uid: 10282 components: - type: Transform rot: -1.5707963267948966 rad - pos: 317.5,387.5 - parent: 1 + pos: -57.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13088 + color: '#990000FF' + - uid: 10285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 318.5,387.5 - parent: 1 + pos: -55.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13090 + color: '#990000FF' + - uid: 10286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 315.5,387.5 - parent: 1 + pos: -55.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13091 + color: '#990000FF' + - uid: 10287 components: - type: Transform rot: -1.5707963267948966 rad - pos: 314.5,387.5 - parent: 1 + pos: -56.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13092 + color: '#990000FF' + - uid: 10288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13093 + color: '#990000FF' + - uid: 10289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 312.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13094 + color: '#990000FF' + - uid: 10290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13095 + color: '#990000FF' + - uid: 10291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13096 + color: '#990000FF' + - uid: 10292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13097 + color: '#990000FF' + - uid: 10293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13099 + color: '#990000FF' + - uid: 10296 components: - type: Transform - pos: 307.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13100 + color: '#0055CCFF' + - uid: 10297 components: - type: Transform - pos: 307.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13101 + color: '#0055CCFF' + - uid: 10298 components: - type: Transform - pos: 307.5,384.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -59.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13103 + color: '#0055CCFF' + - uid: 10299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 308.5,383.5 - parent: 1 + pos: -58.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13105 + color: '#0055CCFF' + - uid: 10300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -57.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13109 + color: '#0055CCFF' + - uid: 10301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 310.5,383.5 - parent: 1 + pos: -60.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13110 + color: '#0055CCFF' + - uid: 10303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 312.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13111 + color: '#0055CCFF' + - uid: 10304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13112 + color: '#0055CCFF' + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 314.5,383.5 - parent: 1 + pos: -55.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13113 + color: '#0055CCFF' + - uid: 10307 components: - type: Transform rot: 1.5707963267948966 rad - pos: 315.5,383.5 - parent: 1 + pos: -54.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13114 + color: '#0055CCFF' + - uid: 10308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 316.5,383.5 - parent: 1 + pos: -52.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13115 + color: '#0055CCFF' + - uid: 10309 components: - type: Transform rot: 1.5707963267948966 rad - pos: 311.5,383.5 - parent: 1 + pos: -53.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13119 + color: '#0055CCFF' + - uid: 10310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 306.5,387.5 - parent: 1 + pos: -54.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13120 + color: '#990000FF' + - uid: 10311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 305.5,387.5 - parent: 1 + pos: -53.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13121 + color: '#990000FF' + - uid: 10312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 304.5,387.5 - parent: 1 + pos: -52.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13127 + color: '#990000FF' + - uid: 10320 components: - type: Transform - pos: 415.5,372.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13129 + color: '#990000FF' + - uid: 10321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,368.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13130 + color: '#990000FF' + - uid: 10322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,371.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13138 + color: '#990000FF' + - uid: 10323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,368.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13139 + color: '#990000FF' + - uid: 10324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,368.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13142 + color: '#990000FF' + - uid: 10325 components: - type: Transform rot: -1.5707963267948966 rad - pos: 409.5,371.5 - parent: 1 + pos: -50.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13144 + color: '#0055CCFF' + - uid: 10326 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,374.5 - parent: 1 + pos: -48.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13145 + color: '#0055CCFF' + - uid: 10327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,374.5 - parent: 1 + pos: -47.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13146 + color: '#0055CCFF' + - uid: 10328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,374.5 - parent: 1 + pos: -49.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13151 + color: '#0055CCFF' + - uid: 10329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,375.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13152 + color: '#990000FF' + - uid: 10332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,375.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -46.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13153 + color: '#0055CCFF' + - uid: 10333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,374.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -46.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13154 + color: '#0055CCFF' + - uid: 10334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,374.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -45.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13155 + color: '#990000FF' + - uid: 10335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10336 components: - type: Transform rot: 1.5707963267948966 rad - pos: 425.5,374.5 - parent: 1 + pos: -45.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13157 + color: '#0055CCFF' + - uid: 10338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10341 components: - type: Transform rot: 3.141592653589793 rad - pos: 331.5,420.5 - parent: 1 + pos: -43.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13159 + color: '#0055CCFF' + - uid: 10343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,419.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -43.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13160 + color: '#0055CCFF' + - uid: 10344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,419.5 - parent: 1 + pos: -23.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13162 + color: '#990000FF' + - uid: 10345 components: - type: Transform rot: 3.141592653589793 rad - pos: 331.5,418.5 - parent: 1 + pos: -43.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13164 + color: '#0055CCFF' + - uid: 10346 components: - type: Transform rot: 1.5707963267948966 rad - pos: 332.5,417.5 - parent: 1 + pos: -42.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13165 + color: '#0055CCFF' + - uid: 10347 components: - type: Transform rot: 1.5707963267948966 rad - pos: 333.5,417.5 - parent: 1 + pos: -41.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13166 + color: '#0055CCFF' + - uid: 10349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,417.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13169 + color: '#0055CCFF' + - uid: 10352 components: - type: Transform rot: 3.141592653589793 rad - pos: 335.5,416.5 - parent: 1 + pos: -40.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13170 + color: '#0055CCFF' + - uid: 10353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13171 + color: '#0055CCFF' + - uid: 10354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13172 + color: '#0055CCFF' + - uid: 10355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13173 + color: '#0055CCFF' + - uid: 10356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13174 + color: '#0055CCFF' + - uid: 10357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13175 + color: '#0055CCFF' + - uid: 10358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13177 + color: '#0055CCFF' + - uid: 10360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,415.5 - parent: 1 + pos: -42.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13178 + color: '#990000FF' + - uid: 10361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,416.5 - parent: 1 + pos: -42.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13179 + color: '#990000FF' + - uid: 10362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10365 components: - type: Transform rot: 3.141592653589793 rad - pos: 343.5,417.5 - parent: 1 + pos: -39.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13180 + color: '#990000FF' + - uid: 10366 components: - type: Transform rot: 3.141592653589793 rad - pos: 343.5,418.5 - parent: 1 + pos: -39.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13182 + color: '#990000FF' + - uid: 10367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,419.5 - parent: 1 + pos: -24.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13183 + color: '#990000FF' + - uid: 10368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,419.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -39.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13184 + color: '#990000FF' + - uid: 10369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,419.5 - parent: 1 + pos: -94.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13186 + color: '#0055CCFF' + - uid: 10371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,419.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -39.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13190 + color: '#990000FF' + - uid: 10372 components: - type: Transform - pos: 328.5,423.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13191 + color: '#990000FF' + - uid: 10373 components: - type: Transform - pos: 328.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -39.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13193 + color: '#990000FF' + - uid: 10377 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,424.5 - parent: 1 + pos: -55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13194 + color: '#0055CCFF' + - uid: 10378 components: - type: Transform - pos: 328.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13196 + color: '#0055CCFF' + - uid: 10379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,427.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13197 + color: '#0055CCFF' + - uid: 10382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,425.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -50.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13198 + color: '#0055CCFF' + - uid: 10383 components: - type: Transform - pos: 423.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13199 + color: '#0055CCFF' + - uid: 10384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,428.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13200 + color: '#0055CCFF' + - uid: 10385 components: - type: Transform - pos: 331.5,415.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13201 + color: '#0055CCFF' + - uid: 10386 components: - type: Transform - pos: 331.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13204 + color: '#0055CCFF' + - uid: 10389 components: - type: Transform - pos: 331.5,412.5 - parent: 1 + pos: -43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13207 + color: '#0055CCFF' + - uid: 10390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,411.5 - parent: 1 + pos: -43.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13208 + color: '#0055CCFF' + - uid: 10391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 334.5,411.5 - parent: 1 + pos: -44.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13211 + color: '#0055CCFF' + - uid: 10396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -54.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13212 + color: '#990000FF' + - uid: 10397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -53.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13213 + color: '#990000FF' + - uid: 10398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13217 + color: '#990000FF' + - uid: 10399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 334.5,407.5 - parent: 1 + pos: -50.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13218 + color: '#990000FF' + - uid: 10400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 332.5,406.5 - parent: 1 + pos: -52.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13222 + color: '#990000FF' + - uid: 10405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,429.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13223 + color: '#990000FF' + - uid: 10406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,431.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13224 + color: '#990000FF' + - uid: 10407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,430.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -46.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13228 + color: '#990000FF' + - uid: 10409 components: - type: Transform - pos: 325.5,433.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13229 + color: '#990000FF' + - uid: 10412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,434.5 - parent: 1 + pos: -44.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13230 + color: '#990000FF' + - uid: 10413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,434.5 - parent: 1 + pos: -44.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13231 + color: '#990000FF' + - uid: 10415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13232 + color: '#990000FF' + - uid: 10417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13233 + color: '#990000FF' + - uid: 10418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -41.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13234 + color: '#990000FF' + - uid: 10419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13235 + color: '#990000FF' + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,434.5 - parent: 1 + pos: -75.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13239 + color: '#0055CCFF' + - uid: 10421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,435.5 - parent: 1 + pos: -125.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13240 + color: '#990000FF' + - uid: 10423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,435.5 - parent: 1 + pos: -75.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13241 + color: '#0055CCFF' + - uid: 10424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,435.5 - parent: 1 + pos: -75.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13242 + color: '#0055CCFF' + - uid: 10425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,435.5 - parent: 1 + pos: -75.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13243 + color: '#0055CCFF' + - uid: 10427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,435.5 - parent: 1 + pos: -74.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13244 + color: '#990000FF' + - uid: 10430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,435.5 - parent: 1 + pos: -74.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13245 + color: '#990000FF' + - uid: 10431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,435.5 - parent: 1 + pos: -74.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13246 + color: '#990000FF' + - uid: 10432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,435.5 - parent: 1 + pos: -74.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13247 + color: '#990000FF' + - uid: 10433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,435.5 - parent: 1 + pos: -74.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13252 + color: '#990000FF' + - uid: 10434 components: - type: Transform rot: 3.141592653589793 rad - pos: 344.5,436.5 - parent: 1 + pos: -18.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13253 + color: '#0055CCFF' + - uid: 10438 components: - type: Transform - pos: 349.5,436.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -76.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13254 + color: '#0055CCFF' + - uid: 10439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 345.5,437.5 - parent: 1 + pos: -78.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13255 + color: '#0055CCFF' + - uid: 10441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 347.5,437.5 - parent: 1 + pos: -43.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13256 + color: '#0055CCFF' + - uid: 10442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,437.5 - parent: 1 + pos: -49.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13257 + color: '#0055CCFF' + - uid: 10444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 346.5,437.5 - parent: 1 + pos: -77.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13258 + color: '#0055CCFF' + - uid: 10445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,435.5 - parent: 1 + pos: -76.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13259 + color: '#990000FF' + - uid: 10446 components: - type: Transform rot: -1.5707963267948966 rad - pos: 351.5,435.5 - parent: 1 + pos: -77.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13260 + color: '#990000FF' + - uid: 10449 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,435.5 - parent: 1 + pos: -81.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13261 + color: '#990000FF' + - uid: 10450 + components: + - type: Transform + pos: -103.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 353.5,435.5 - parent: 1 + pos: -78.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13262 + color: '#990000FF' + - uid: 10456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -69.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13263 + color: '#990000FF' + - uid: 10457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,432.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -79.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13264 + color: '#0055CCFF' + - uid: 10458 + components: + - type: Transform + pos: -103.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10460 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,431.5 - parent: 1 + pos: -79.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13265 + color: '#990000FF' + - uid: 10461 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,430.5 - parent: 1 + pos: -79.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13266 + color: '#990000FF' + - uid: 10462 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,433.5 - parent: 1 + pos: -79.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13267 + color: '#990000FF' + - uid: 10463 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,428.5 - parent: 1 + pos: -79.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13268 + color: '#990000FF' + - uid: 10464 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,427.5 - parent: 1 + pos: -79.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13269 + color: '#990000FF' + - uid: 10465 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,426.5 - parent: 1 + pos: -79.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13270 + color: '#990000FF' + - uid: 10466 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,425.5 - parent: 1 + pos: -79.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13271 + color: '#990000FF' + - uid: 10467 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,424.5 - parent: 1 + pos: -79.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13272 + color: '#990000FF' + - uid: 10468 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,423.5 - parent: 1 + pos: -79.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13273 + color: '#990000FF' + - uid: 10469 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,422.5 - parent: 1 + pos: -80.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13274 + color: '#0055CCFF' + - uid: 10470 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,419.5 - parent: 1 + pos: -80.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13275 + color: '#0055CCFF' + - uid: 10472 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,420.5 - parent: 1 + pos: -80.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13276 + color: '#0055CCFF' + - uid: 10473 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,418.5 - parent: 1 + pos: -80.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13278 + color: '#0055CCFF' + - uid: 10474 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,421.5 - parent: 1 + pos: -80.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13279 + color: '#0055CCFF' + - uid: 10475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13285 + color: '#0055CCFF' + - uid: 10476 components: - type: Transform - pos: 353.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13286 + color: '#0055CCFF' + - uid: 10477 components: - type: Transform - pos: 353.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13287 + color: '#0055CCFF' + - uid: 10478 components: - type: Transform - pos: 353.5,412.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13288 + color: '#0055CCFF' + - uid: 10479 components: - type: Transform - pos: 353.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13290 + color: '#0055CCFF' + - uid: 10480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13293 + color: '#0055CCFF' + - uid: 10481 components: - type: Transform - pos: 354.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -80.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13294 + color: '#0055CCFF' + - uid: 10482 components: - type: Transform - pos: 353.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -79.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13295 + color: '#990000FF' + - uid: 10483 components: - type: Transform - pos: 353.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -79.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13296 + color: '#990000FF' + - uid: 10484 components: - type: Transform - pos: 353.5,405.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -80.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13297 + color: '#990000FF' + - uid: 10486 components: - type: Transform - pos: 353.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -79.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13302 + color: '#990000FF' + - uid: 10491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -130.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13303 + color: '#0055CCFF' + - uid: 10492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -82.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13304 + color: '#0055CCFF' + - uid: 10493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13305 + color: '#0055CCFF' + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -81.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13306 + color: '#0055CCFF' + - uid: 10495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -81.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13309 + color: '#990000FF' + - uid: 10496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -82.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13310 + color: '#990000FF' + - uid: 10497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13311 + color: '#990000FF' + - uid: 10501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,404.5 - parent: 1 + pos: -80.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13312 + color: '#0055CCFF' + - uid: 10502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13313 + color: '#0055CCFF' + - uid: 10503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13315 + color: '#0055CCFF' + - uid: 10504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13316 + color: '#0055CCFF' + - uid: 10505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13317 + color: '#0055CCFF' + - uid: 10506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13318 + color: '#0055CCFF' + - uid: 10507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13319 + color: '#0055CCFF' + - uid: 10508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -85.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13320 + color: '#0055CCFF' + - uid: 10509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -84.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13321 + color: '#990000FF' + - uid: 10510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -84.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13322 + color: '#990000FF' + - uid: 10511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -84.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13323 + color: '#990000FF' + - uid: 10515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -84.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13324 + color: '#990000FF' + - uid: 10517 components: - type: Transform rot: 1.5707963267948966 rad - pos: 328.5,404.5 - parent: 1 + pos: -86.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13325 + color: '#0055CCFF' + - uid: 10518 components: - type: Transform rot: 1.5707963267948966 rad - pos: 332.5,404.5 - parent: 1 + pos: -88.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13328 + color: '#0055CCFF' + - uid: 10519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -89.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13329 + color: '#0055CCFF' + - uid: 10520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -90.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13330 + color: '#0055CCFF' + - uid: 10521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -91.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13332 + color: '#0055CCFF' + - uid: 10522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -92.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13333 + color: '#0055CCFF' + - uid: 10523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -93.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13334 + color: '#0055CCFF' + - uid: 10524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -42.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13336 + color: '#0055CCFF' + - uid: 10525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -87.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13337 + color: '#0055CCFF' + - uid: 10527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,404.5 - parent: 1 + pos: -104.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13338 + color: '#0055CCFF' + - uid: 10530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -86.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13342 + color: '#990000FF' + - uid: 10531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -87.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13343 + color: '#990000FF' + - uid: 10532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -88.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13344 + color: '#990000FF' + - uid: 10533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -90.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13345 + color: '#990000FF' + - uid: 10534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -91.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13346 + color: '#990000FF' + - uid: 10535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -92.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13348 + color: '#990000FF' + - uid: 10536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -93.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13349 + color: '#990000FF' + - uid: 10540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -89.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13350 + color: '#990000FF' + - uid: 10584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -111.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13351 + color: '#0055CCFF' + - uid: 10588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -57.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13352 + color: '#0055CCFF' + - uid: 10609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 377.5,404.5 - parent: 1 + pos: -71.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13354 + color: '#0055CCFF' + - uid: 10620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,404.5 - parent: 1 + pos: -23.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13355 + color: '#990000FF' + - uid: 10623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13356 + color: '#990000FF' + - uid: 10629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 380.5,404.5 - parent: 1 + pos: -27.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13357 + color: '#0055CCFF' + - uid: 10670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13359 + color: '#990000FF' + - uid: 10671 components: - type: Transform - pos: 384.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13360 + color: '#990000FF' + - uid: 10673 components: - type: Transform - pos: 384.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -41.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13364 + color: '#0055CCFF' + - uid: 10727 components: - type: Transform - pos: 385.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13365 + color: '#0055CCFF' + - uid: 10756 components: - type: Transform - pos: 385.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13366 + color: '#0055CCFF' + - uid: 10912 components: - type: Transform - pos: 385.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13374 + color: '#990000FF' + - uid: 10913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13375 + color: '#990000FF' + - uid: 10915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13376 + color: '#990000FF' + - uid: 10916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,372.5 - parent: 1 + pos: -67.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13377 + color: '#0055CCFF' + - uid: 10917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13378 + color: '#990000FF' + - uid: 10972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13379 + color: '#990000FF' + - uid: 11037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13381 + color: '#0055CCFF' + - uid: 11049 components: - type: Transform - pos: 389.5,373.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13382 + color: '#0055CCFF' + - uid: 11065 components: - type: Transform - pos: 389.5,375.5 - parent: 1 + pos: -104.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13383 + color: '#990000FF' + - uid: 11069 components: - type: Transform - pos: 389.5,376.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13384 + color: '#990000FF' + - uid: 11071 components: - type: Transform - pos: 389.5,377.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -66.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13385 + color: '#990000FF' + - uid: 11077 components: - type: Transform - pos: 389.5,378.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -137.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13386 + color: '#0055CCFF' + - uid: 11101 components: - type: Transform - pos: 389.5,374.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13387 + color: '#990000FF' + - uid: 11131 components: - type: Transform - pos: 389.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -103.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13388 + color: '#0055CCFF' + - uid: 11143 components: - type: Transform - pos: 389.5,381.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13389 + color: '#990000FF' + - uid: 11151 components: - type: Transform - pos: 389.5,382.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13390 + color: '#0055CCFF' + - uid: 11183 components: - type: Transform - pos: 389.5,384.5 - parent: 1 + pos: -40.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13391 + color: '#0055CCFF' + - uid: 11256 components: - type: Transform - pos: 389.5,385.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13392 + color: '#0055CCFF' + - uid: 11258 components: - type: Transform - pos: 389.5,386.5 - parent: 1 + pos: -85.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13393 + color: '#0055CCFF' + - uid: 11259 components: - type: Transform - pos: 389.5,387.5 - parent: 1 + pos: -29.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13394 + color: '#0055CCFF' + - uid: 11260 components: - type: Transform - pos: 389.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -84.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13395 + color: '#0055CCFF' + - uid: 11261 components: - type: Transform - pos: 389.5,389.5 - parent: 1 + pos: -85.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13396 + color: '#0055CCFF' + - uid: 11267 components: - type: Transform - pos: 389.5,390.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -62.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13397 + color: '#0055CCFF' + - uid: 11268 components: - type: Transform - pos: 389.5,383.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -62.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13400 + color: '#0055CCFF' + - uid: 11270 components: - type: Transform - pos: 389.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -95.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13401 + color: '#990000FF' + - uid: 11274 components: - type: Transform - pos: 389.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -100.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13402 + color: '#990000FF' + - uid: 11277 components: - type: Transform - pos: 389.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -104.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13403 + color: '#0055CCFF' + - uid: 11279 components: - type: Transform - pos: 389.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -95.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13404 + color: '#0055CCFF' + - uid: 11287 components: - type: Transform - pos: 389.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13407 + color: '#0055CCFF' + - uid: 11330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,397.5 - parent: 1 + pos: -103.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13408 + color: '#0055CCFF' + - uid: 11331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,397.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -87.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13409 + color: '#0055CCFF' + - uid: 11348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,397.5 - parent: 1 + pos: -103.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13411 + color: '#0055CCFF' + - uid: 11379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,397.5 - parent: 1 + pos: -103.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13412 + color: '#0055CCFF' + - uid: 11380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 382.5,397.5 - parent: 1 + pos: -31.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13413 + color: '#0055CCFF' + - uid: 11381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,397.5 - parent: 1 + pos: -33.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13414 + color: '#990000FF' + - uid: 11382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,397.5 - parent: 1 + pos: -43.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13415 + color: '#0055CCFF' + - uid: 11383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 379.5,397.5 - parent: 1 + pos: -34.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13416 + color: '#990000FF' + - uid: 11389 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,397.5 - parent: 1 + pos: -96.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13417 + color: '#0055CCFF' + - uid: 11390 components: - type: Transform rot: 1.5707963267948966 rad - pos: 377.5,397.5 - parent: 1 + pos: -97.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13421 + color: '#0055CCFF' + - uid: 11391 components: - type: Transform - pos: 375.5,394.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -94.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13422 + color: '#0055CCFF' + - uid: 11392 components: - type: Transform - pos: 375.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -92.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13423 + color: '#0055CCFF' + - uid: 11393 components: - type: Transform - pos: 375.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -91.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13424 + color: '#0055CCFF' + - uid: 11394 components: - type: Transform - pos: 375.5,391.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13425 + color: '#990000FF' + - uid: 11395 components: - type: Transform - pos: 375.5,390.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -93.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13426 + color: '#0055CCFF' + - uid: 11402 components: - type: Transform - pos: 375.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -90.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13427 + color: '#0055CCFF' + - uid: 11556 components: - type: Transform - pos: 375.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -95.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13428 + color: '#0055CCFF' + - uid: 11569 components: - type: Transform - pos: 375.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13430 + color: '#0055CCFF' + - uid: 11570 components: - type: Transform - pos: 375.5,386.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13431 + color: '#0055CCFF' + - uid: 11571 components: - type: Transform - pos: 375.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13432 + color: '#0055CCFF' + - uid: 11572 components: - type: Transform - pos: 375.5,384.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -35.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13433 + color: '#0055CCFF' + - uid: 11574 components: - type: Transform - pos: 375.5,383.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13434 + color: '#0055CCFF' + - uid: 11577 components: - type: Transform - pos: 375.5,382.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13436 + color: '#990000FF' + - uid: 11578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13438 + color: '#990000FF' + - uid: 11579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,405.5 - parent: 1 + pos: -25.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13442 + color: '#0055CCFF' + - uid: 11580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13443 + color: '#990000FF' + - uid: 11581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -34.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13444 + color: '#990000FF' + - uid: 11582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13445 + color: '#990000FF' + - uid: 11583 components: - - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,412.5 - parent: 1 + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13447 + color: '#990000FF' + - uid: 11589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,414.5 - parent: 1 + pos: -33.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13448 + color: '#990000FF' + - uid: 11590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,415.5 - parent: 1 + pos: -33.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13454 + color: '#990000FF' + - uid: 11591 components: - type: Transform - pos: 386.5,418.5 - parent: 1 + pos: -33.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13455 + color: '#990000FF' + - uid: 11592 components: - type: Transform - pos: 386.5,419.5 - parent: 1 + pos: -33.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13456 + color: '#990000FF' + - uid: 11593 components: - type: Transform - pos: 386.5,417.5 - parent: 1 + pos: -33.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13458 + color: '#990000FF' + - uid: 11594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,420.5 - parent: 1 + pos: -33.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13459 + color: '#990000FF' + - uid: 11595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,420.5 - parent: 1 + pos: -33.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13462 + color: '#990000FF' + - uid: 11596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,421.5 - parent: 1 + pos: -33.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13463 + color: '#990000FF' + - uid: 11604 components: - type: Transform rot: -1.5707963267948966 rad - pos: 380.5,421.5 - parent: 1 + pos: -33.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13464 + color: '#0055CCFF' + - uid: 11606 components: - type: Transform rot: -1.5707963267948966 rad - pos: 381.5,421.5 - parent: 1 + pos: -26.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13466 + color: '#0055CCFF' + - uid: 11608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,421.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13467 + color: '#0055CCFF' + - uid: 11609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,421.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13468 + color: '#0055CCFF' + - uid: 11610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,421.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13472 + color: '#0055CCFF' + - uid: 11611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,419.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13473 + color: '#0055CCFF' + - uid: 11644 components: - type: Transform rot: 3.141592653589793 rad - pos: 374.5,418.5 - parent: 1 + pos: -28.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13475 + color: '#990000FF' + - uid: 11651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 373.5,417.5 - parent: 1 + pos: -20.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13476 + color: '#0055CCFF' + - uid: 11652 components: - type: Transform rot: -1.5707963267948966 rad - pos: 371.5,417.5 - parent: 1 + pos: -22.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13477 + color: '#0055CCFF' + - uid: 11654 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,417.5 - parent: 1 + pos: -21.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13478 + color: '#0055CCFF' + - uid: 11655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 369.5,417.5 - parent: 1 + pos: -27.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13481 + color: '#0055CCFF' + - uid: 11657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,418.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13485 + color: '#0055CCFF' + - uid: 11658 components: - type: Transform rot: -1.5707963267948966 rad - pos: 367.5,419.5 - parent: 1 + pos: -28.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13486 + color: '#0055CCFF' + - uid: 11659 components: - type: Transform rot: -1.5707963267948966 rad - pos: 366.5,419.5 - parent: 1 + pos: -29.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13489 + color: '#0055CCFF' + - uid: 11660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,420.5 - parent: 1 + pos: -45.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13492 + color: '#990000FF' + - uid: 11661 components: - type: Transform rot: -1.5707963267948966 rad - pos: 385.5,411.5 - parent: 1 + pos: -31.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13493 + color: '#0055CCFF' + - uid: 11662 components: - type: Transform rot: -1.5707963267948966 rad - pos: 383.5,411.5 - parent: 1 + pos: -32.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13494 + color: '#0055CCFF' + - uid: 11663 components: - type: Transform rot: -1.5707963267948966 rad - pos: 382.5,411.5 - parent: 1 + pos: -33.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13495 + color: '#0055CCFF' + - uid: 11664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,411.5 - parent: 1 + pos: -45.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13496 + color: '#990000FF' + - uid: 11665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,405.5 - parent: 1 + pos: -45.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13497 + color: '#0055CCFF' + - uid: 11666 components: - type: Transform rot: 3.141592653589793 rad - pos: 372.5,407.5 - parent: 1 + pos: -65.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13498 + color: '#0055CCFF' + - uid: 11667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13499 + color: '#0055CCFF' + - uid: 11668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13500 + color: '#0055CCFF' + - uid: 11669 components: - type: Transform rot: 3.141592653589793 rad - pos: 372.5,412.5 - parent: 1 + pos: -34.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13505 + color: '#0055CCFF' + - uid: 11670 components: - type: Transform - pos: 372.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13506 + color: '#0055CCFF' + - uid: 11671 components: - type: Transform - pos: 372.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13507 + color: '#0055CCFF' + - uid: 11672 components: - type: Transform - pos: 372.5,415.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13511 + color: '#0055CCFF' + - uid: 11673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13512 + color: '#0055CCFF' + - uid: 11674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13513 + color: '#0055CCFF' + - uid: 11676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,411.5 - parent: 1 + pos: -36.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13514 + color: '#0055CCFF' + - uid: 11677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,411.5 - parent: 1 + pos: -35.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13517 + color: '#0055CCFF' + - uid: 11678 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,417.5 - parent: 1 + pos: -33.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13518 + color: '#0055CCFF' + - uid: 11679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,417.5 - parent: 1 + pos: -32.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13519 + color: '#0055CCFF' + - uid: 11680 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,417.5 - parent: 1 + pos: -30.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13520 + color: '#0055CCFF' + - uid: 11681 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,417.5 - parent: 1 + pos: -31.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13523 + color: '#0055CCFF' + - uid: 11683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -29.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13524 + color: '#0055CCFF' + - uid: 11684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13525 + color: '#0055CCFF' + - uid: 11685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13526 + color: '#0055CCFF' + - uid: 11688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13527 + color: '#990000FF' + - uid: 11689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -31.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13530 + color: '#990000FF' + - uid: 11690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,417.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -30.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13531 + color: '#990000FF' + - uid: 11691 components: - type: Transform - pos: 355.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -29.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13532 + color: '#990000FF' + - uid: 11692 components: - type: Transform - pos: 355.5,401.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13533 + color: '#990000FF' + - uid: 11693 components: - type: Transform - pos: 355.5,402.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13537 + color: '#990000FF' + - uid: 11694 components: - type: Transform rot: 1.5707963267948966 rad - pos: 353.5,400.5 - parent: 1 + pos: -26.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13538 + color: '#990000FF' + - uid: 11695 components: - type: Transform rot: 1.5707963267948966 rad - pos: 352.5,400.5 - parent: 1 + pos: -25.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13539 + color: '#990000FF' + - uid: 11697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13540 + color: '#990000FF' + - uid: 11698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13541 + color: '#990000FF' + - uid: 11699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13542 + color: '#990000FF' + - uid: 11700 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,399.5 - parent: 1 + pos: -33.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13544 + color: '#990000FF' + - uid: 11701 components: - type: Transform rot: 3.141592653589793 rad - pos: 355.5,398.5 - parent: 1 + pos: -33.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13548 + color: '#990000FF' + - uid: 11702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13551 + color: '#990000FF' + - uid: 11703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13552 + color: '#990000FF' + - uid: 11704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13554 + color: '#990000FF' + - uid: 11705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -33.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13555 + color: '#990000FF' + - uid: 11712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,399.5 - parent: 1 + pos: -94.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13556 + color: '#990000FF' + - uid: 11713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -25.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13558 + color: '#0055CCFF' + - uid: 11714 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,400.5 - parent: 1 + pos: -25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13559 + color: '#0055CCFF' + - uid: 11715 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,402.5 - parent: 1 + pos: -25.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13560 + color: '#0055CCFF' + - uid: 11717 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,403.5 - parent: 1 + pos: -25.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13561 + color: '#0055CCFF' + - uid: 11718 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,401.5 - parent: 1 + pos: -25.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13563 + color: '#0055CCFF' + - uid: 11729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,398.5 - parent: 1 + pos: -103.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13565 + color: '#0055CCFF' + - uid: 11732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13567 + color: '#990000FF' + - uid: 11733 components: - type: Transform - pos: 348.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -31.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13569 + color: '#990000FF' + - uid: 11734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13571 + color: '#990000FF' + - uid: 11735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,393.5 - parent: 1 + pos: -103.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13573 + color: '#0055CCFF' + - uid: 11736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13574 + color: '#990000FF' + - uid: 11737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13575 + color: '#990000FF' + - uid: 11738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13577 + color: '#990000FF' + - uid: 11740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13578 + color: '#990000FF' + - uid: 11741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -30.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13580 + color: '#990000FF' + - uid: 11742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13583 + color: '#990000FF' + - uid: 11746 components: - type: Transform - pos: 348.5,391.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13584 + color: '#0055CCFF' + - uid: 11747 components: - type: Transform - pos: 348.5,390.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13586 + color: '#0055CCFF' + - uid: 11748 components: - type: Transform rot: 1.5707963267948966 rad - pos: 349.5,389.5 - parent: 1 + pos: -22.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13588 + color: '#0055CCFF' + - uid: 11749 components: - type: Transform - pos: 350.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13590 + color: '#0055CCFF' + - uid: 11750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,390.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13591 + color: '#990000FF' + - uid: 11752 components: - type: Transform rot: 1.5707963267948966 rad - pos: 351.5,389.5 - parent: 1 + pos: -23.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13594 + color: '#990000FF' + - uid: 11753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13596 + color: '#990000FF' + - uid: 11754 components: - type: Transform rot: 1.5707963267948966 rad - pos: 351.5,393.5 - parent: 1 + pos: -21.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13598 + color: '#0055CCFF' + - uid: 11755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 353.5,393.5 - parent: 1 + pos: -23.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13601 + color: '#0055CCFF' + - uid: 11756 components: - type: Transform rot: 1.5707963267948966 rad - pos: 355.5,393.5 - parent: 1 + pos: -22.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13603 + color: '#0055CCFF' + - uid: 11758 components: - type: Transform rot: 3.141592653589793 rad - pos: 356.5,394.5 - parent: 1 + pos: -25.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13604 + color: '#0055CCFF' + - uid: 11759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,396.5 - parent: 1 + pos: -24.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13605 + color: '#990000FF' + - uid: 11760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,395.5 - parent: 1 + pos: -24.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13608 + color: '#990000FF' + - uid: 11761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,389.5 - parent: 1 + pos: -24.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13609 + color: '#990000FF' + - uid: 11762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,389.5 - parent: 1 + pos: -24.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13610 + color: '#990000FF' + - uid: 11769 components: - type: Transform rot: -1.5707963267948966 rad - pos: 355.5,389.5 - parent: 1 + pos: -99.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13611 + color: '#990000FF' + - uid: 11774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 353.5,389.5 - parent: 1 + pos: -101.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13613 + color: '#0055CCFF' + - uid: 11779 components: - type: Transform - pos: 356.5,388.5 - parent: 1 + pos: -104.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13616 + color: '#990000FF' + - uid: 11781 components: - type: Transform - pos: 356.5,386.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13618 + color: '#0055CCFF' + - uid: 11782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13619 + color: '#0055CCFF' + - uid: 11787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 354.5,384.5 - parent: 1 + pos: -58.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13620 + color: '#990000FF' + - uid: 11788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 352.5,384.5 - parent: 1 + pos: -60.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13621 + color: '#0055CCFF' + - uid: 11789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,384.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -69.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13625 + color: '#990000FF' + - uid: 11790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,385.5 - parent: 1 + pos: -70.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13626 + color: '#0055CCFF' + - uid: 11819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13627 + color: '#0055CCFF' + - uid: 11820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13629 + color: '#0055CCFF' + - uid: 11821 components: - type: Transform rot: 1.5707963267948966 rad - pos: 357.5,389.5 - parent: 1 + pos: -19.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13630 + color: '#0055CCFF' + - uid: 11822 + components: + - type: Transform + pos: -103.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11823 components: - type: Transform rot: 1.5707963267948966 rad - pos: 358.5,389.5 - parent: 1 + pos: -17.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13633 + color: '#0055CCFF' + - uid: 11824 components: - type: Transform - pos: 360.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13634 + color: '#0055CCFF' + - uid: 11825 components: - type: Transform - pos: 360.5,387.5 - parent: 1 + pos: -103.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13635 + color: '#0055CCFF' + - uid: 11826 components: - type: Transform - pos: 360.5,386.5 - parent: 1 + pos: -103.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13637 + color: '#0055CCFF' + - uid: 11827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,390.5 - parent: 1 + pos: -103.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13639 + color: '#0055CCFF' + - uid: 11828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -101.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13640 + color: '#990000FF' + - uid: 11830 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,390.5 - parent: 1 + pos: -22.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13644 + color: '#990000FF' + - uid: 11831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,384.5 - parent: 1 + pos: -104.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13645 + color: '#0055CCFF' + - uid: 11832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,384.5 - parent: 1 + pos: -104.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13647 + color: '#0055CCFF' + - uid: 11834 components: - type: Transform - pos: 363.5,382.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -70.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13648 + color: '#990000FF' + - uid: 11835 components: - type: Transform - pos: 363.5,383.5 - parent: 1 + pos: -15.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13649 + color: '#0055CCFF' + - uid: 11838 components: - type: Transform - pos: 363.5,381.5 - parent: 1 + pos: -104.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13651 + color: '#0055CCFF' + - uid: 11840 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,380.5 - parent: 1 + pos: -61.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13652 + color: '#990000FF' + - uid: 11844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,380.5 - parent: 1 + pos: -29.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13653 + color: '#0055CCFF' + - uid: 11847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,380.5 - parent: 1 + pos: -104.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13655 + color: '#0055CCFF' + - uid: 11853 components: - type: Transform rot: 3.141592653589793 rad - pos: 360.5,383.5 - parent: 1 + pos: -64.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13656 + color: '#990000FF' + - uid: 11854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,382.5 - parent: 1 + pos: -104.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13657 + color: '#0055CCFF' + - uid: 11855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,381.5 - parent: 1 + pos: -15.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13659 + color: '#0055CCFF' + - uid: 11856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,380.5 - parent: 1 + pos: -15.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13661 + color: '#0055CCFF' + - uid: 11857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,380.5 - parent: 1 + pos: -15.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13663 + color: '#0055CCFF' + - uid: 11858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,380.5 - parent: 1 + pos: -15.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13664 + color: '#0055CCFF' + - uid: 11859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,380.5 - parent: 1 + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13665 + color: '#0055CCFF' + - uid: 11860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,380.5 - parent: 1 + pos: -15.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13669 + color: '#0055CCFF' + - uid: 11861 components: - type: Transform - pos: 360.5,379.5 - parent: 1 + pos: -15.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13671 + color: '#0055CCFF' + - uid: 11862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,390.5 - parent: 1 + pos: -15.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13672 + color: '#0055CCFF' + - uid: 11863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,390.5 - parent: 1 + pos: -15.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13673 + color: '#0055CCFF' + - uid: 11864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,390.5 - parent: 1 + pos: -15.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13674 + color: '#0055CCFF' + - uid: 11865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,390.5 - parent: 1 + pos: -15.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13676 + color: '#0055CCFF' + - uid: 11866 components: - type: Transform - pos: 369.5,389.5 - parent: 1 + pos: -15.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13677 + color: '#0055CCFF' + - uid: 11868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,388.5 - parent: 1 + pos: -14.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13679 + color: '#990000FF' + - uid: 11869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,387.5 - parent: 1 + pos: -14.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13680 + color: '#990000FF' + - uid: 11870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,387.5 - parent: 1 + pos: -14.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13681 + color: '#990000FF' + - uid: 11880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13682 + color: '#990000FF' + - uid: 11889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,387.5 - parent: 1 + pos: -19.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13685 + color: '#0055CCFF' + - uid: 11899 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,397.5 - parent: 1 + pos: -10.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13686 + color: '#0055CCFF' + - uid: 11900 components: - type: Transform rot: -1.5707963267948966 rad - pos: 393.5,397.5 - parent: 1 + pos: -8.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13687 + color: '#0055CCFF' + - uid: 11901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 394.5,397.5 - parent: 1 + pos: -7.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13688 + color: '#0055CCFF' + - uid: 11902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,397.5 - parent: 1 + pos: -6.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13690 + color: '#0055CCFF' + - uid: 11903 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,397.5 - parent: 1 + pos: -9.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13691 + color: '#0055CCFF' + - uid: 11905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,397.5 - parent: 1 + pos: -19.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13692 + color: '#0055CCFF' + - uid: 11906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 399.5,397.5 - parent: 1 + pos: -26.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13693 + color: '#990000FF' + - uid: 11907 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,397.5 - parent: 1 + pos: -26.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13694 + color: '#0055CCFF' + - uid: 11908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13695 + color: '#0055CCFF' + - uid: 11909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13696 + color: '#0055CCFF' + - uid: 11910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13697 + color: '#0055CCFF' + - uid: 11911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 403.5,397.5 - parent: 1 + pos: -27.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13700 + color: '#0055CCFF' + - uid: 11914 components: - type: Transform - pos: 405.5,396.5 - parent: 1 + pos: -10.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13702 + color: '#990000FF' + - uid: 11915 components: - type: Transform - pos: 405.5,394.5 - parent: 1 + pos: -10.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13703 + color: '#990000FF' + - uid: 11916 components: - type: Transform - pos: 405.5,392.5 - parent: 1 + pos: -10.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13704 + color: '#990000FF' + - uid: 11917 components: - type: Transform - pos: 405.5,391.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13705 + color: '#990000FF' + - uid: 11918 components: - type: Transform - pos: 405.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13706 + color: '#990000FF' + - uid: 11919 components: - type: Transform - pos: 405.5,389.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13707 + color: '#990000FF' + - uid: 11920 components: - type: Transform - pos: 405.5,388.5 - parent: 1 + pos: -10.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13708 + color: '#990000FF' + - uid: 11922 components: - type: Transform - pos: 405.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13709 + color: '#990000FF' + - uid: 11923 components: - type: Transform - pos: 405.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13710 + color: '#990000FF' + - uid: 11924 components: - type: Transform - pos: 405.5,384.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13711 + color: '#990000FF' + - uid: 11925 components: - type: Transform - pos: 405.5,385.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13712 + color: '#990000FF' + - uid: 11926 components: - type: Transform - pos: 405.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13713 + color: '#990000FF' + - uid: 11927 components: - type: Transform - pos: 405.5,382.5 - parent: 1 + pos: -10.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13714 + color: '#990000FF' + - uid: 11928 components: - type: Transform - pos: 405.5,381.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13716 + color: '#990000FF' + - uid: 11929 components: - type: Transform - pos: 405.5,379.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13717 + color: '#990000FF' + - uid: 11934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11941 components: - type: Transform - pos: 405.5,377.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13719 + color: '#990000FF' + - uid: 11942 components: - type: Transform - pos: 405.5,375.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13720 + color: '#990000FF' + - uid: 11943 components: - type: Transform - pos: 405.5,374.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13721 + color: '#990000FF' + - uid: 11944 components: - type: Transform - pos: 405.5,373.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13723 + color: '#990000FF' + - uid: 11947 components: - type: Transform - pos: 405.5,378.5 - parent: 1 + pos: -14.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13730 + color: '#990000FF' + - uid: 11948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,370.5 - parent: 1 + pos: -14.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13731 + color: '#990000FF' + - uid: 11949 components: - type: Transform rot: -1.5707963267948966 rad - pos: 407.5,370.5 - parent: 1 + pos: -14.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13733 + color: '#0055CCFF' + - uid: 11950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13734 + color: '#0055CCFF' + - uid: 11951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13737 + color: '#0055CCFF' + - uid: 11953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 404.5,372.5 - parent: 1 + pos: -12.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13738 + color: '#990000FF' + - uid: 11954 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,372.5 - parent: 1 + pos: -13.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13739 + color: '#990000FF' + - uid: 11955 components: - type: Transform rot: -1.5707963267948966 rad - pos: 403.5,372.5 - parent: 1 + pos: -11.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13741 + color: '#990000FF' + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13743 + color: '#0055CCFF' + - uid: 11957 components: - type: Transform - pos: 401.5,371.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13744 + color: '#0055CCFF' + - uid: 11959 components: - type: Transform - pos: 401.5,370.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13746 + color: '#0055CCFF' + - uid: 11960 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,369.5 - parent: 1 + pos: -11.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13747 + color: '#0055CCFF' + - uid: 11961 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,368.5 - parent: 1 + pos: -11.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13749 + color: '#0055CCFF' + - uid: 11963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,367.5 - parent: 1 + pos: -4.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13750 + color: '#0055CCFF' + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,367.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13752 + color: '#0055CCFF' + - uid: 11968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,376.5 - parent: 1 + pos: -10.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13753 + color: '#990000FF' + - uid: 11969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,376.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13754 + color: '#990000FF' + - uid: 11970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,376.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13755 + color: '#990000FF' + - uid: 11971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,376.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13756 + color: '#990000FF' + - uid: 11973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,376.5 - parent: 1 + pos: -10.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13757 + color: '#990000FF' + - uid: 11980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,376.5 - parent: 1 + pos: -19.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13761 + color: '#0055CCFF' + - uid: 11981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,375.5 - parent: 1 + pos: -3.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13763 + color: '#0055CCFF' + - uid: 11982 components: - type: Transform - pos: 414.5,374.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13764 + color: '#0055CCFF' + - uid: 11983 components: - type: Transform - pos: 414.5,373.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13765 + color: '#0055CCFF' + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,367.5 - parent: 1 + pos: -2.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13766 + color: '#0055CCFF' + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,367.5 - parent: 1 + pos: -0.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13767 + color: '#0055CCFF' + - uid: 11986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,367.5 - parent: 1 + pos: -1.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13769 + color: '#0055CCFF' + - uid: 11987 components: - type: Transform - pos: 414.5,366.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13770 + color: '#0055CCFF' + - uid: 11988 components: - type: Transform - pos: 414.5,365.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13773 + color: '#990000FF' + - uid: 11989 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,363.5 - parent: 1 + pos: -2.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13774 + color: '#0055CCFF' + - uid: 11990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,363.5 - parent: 1 + pos: -0.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13775 + color: '#0055CCFF' + - uid: 11991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,364.5 - parent: 1 + pos: -2.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13778 + color: '#0055CCFF' + - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,363.5 - parent: 1 + pos: -3.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13780 + color: '#0055CCFF' + - uid: 11993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,363.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -19.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13781 + color: '#0055CCFF' + - uid: 11994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,362.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13782 + color: '#0055CCFF' + - uid: 11995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,361.5 - parent: 1 + pos: -19.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13784 + color: '#0055CCFF' + - uid: 11996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,364.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13786 + color: '#0055CCFF' + - uid: 11997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,365.5 - parent: 1 + pos: -1.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13787 + color: '#0055CCFF' + - uid: 11998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,365.5 - parent: 1 + pos: -0.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13788 + color: '#0055CCFF' + - uid: 11999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,365.5 - parent: 1 + pos: -2.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13789 + color: '#0055CCFF' + - uid: 12002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,365.5 - parent: 1 + pos: -20.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13791 + color: '#990000FF' + - uid: 12004 components: - type: Transform - pos: 422.5,364.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13796 + color: '#0055CCFF' + - uid: 12008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,362.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13797 + color: '#0055CCFF' + - uid: 12009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,361.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -41.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13807 + color: '#0055CCFF' + - uid: 12010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,359.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13808 + color: '#0055CCFF' + - uid: 12013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,358.5 - parent: 1 + pos: -43.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13809 + color: '#0055CCFF' + - uid: 12014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,357.5 - parent: 1 + pos: -43.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13810 + color: '#0055CCFF' + - uid: 12015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,356.5 - parent: 1 + pos: -43.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13811 + color: '#0055CCFF' + - uid: 12016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,355.5 - parent: 1 + pos: -43.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13812 + color: '#0055CCFF' + - uid: 12017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,353.5 - parent: 1 + pos: -43.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13813 + color: '#0055CCFF' + - uid: 12018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,354.5 - parent: 1 + pos: -43.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13816 + color: '#0055CCFF' + - uid: 12019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,352.5 - parent: 1 + pos: -43.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13817 + color: '#0055CCFF' + - uid: 12020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,352.5 - parent: 1 + pos: -43.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13818 + color: '#0055CCFF' + - uid: 12023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,352.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13819 + color: '#0055CCFF' + - uid: 12024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,352.5 - parent: 1 + pos: -42.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13820 + color: '#990000FF' + - uid: 12025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,352.5 - parent: 1 + pos: -42.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13821 + color: '#990000FF' + - uid: 12026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,352.5 - parent: 1 + pos: -42.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13823 + color: '#990000FF' + - uid: 12030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,353.5 - parent: 1 + pos: -42.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13825 + color: '#990000FF' + - uid: 12031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,355.5 - parent: 1 + pos: -42.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13826 + color: '#990000FF' + - uid: 12032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,356.5 - parent: 1 + pos: -42.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13829 + color: '#990000FF' + - uid: 12033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,380.5 - parent: 1 + pos: -42.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13830 + color: '#990000FF' + - uid: 12034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,411.5 - parent: 1 + pos: -42.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13833 + color: '#990000FF' + - uid: 12039 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,412.5 - parent: 1 + pos: -28.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13835 + color: '#0055CCFF' + - uid: 12066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,413.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -19.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13836 + color: '#990000FF' + - uid: 12084 components: - type: Transform - pos: 351.5,410.5 - parent: 1 + pos: -19.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13842 + color: '#0055CCFF' + - uid: 12140 components: - type: Transform rot: 1.5707963267948966 rad - pos: 371.5,409.5 - parent: 1 + pos: -21.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13843 + color: '#0055CCFF' + - uid: 12158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 370.5,409.5 - parent: 1 + pos: -102.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,408.5 - parent: 1 - - uid: 13849 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,408.5 - parent: 1 - - uid: 13850 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,408.5 - parent: 1 - - uid: 13852 + color: '#0055CCFF' + - uid: 12159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,408.5 - parent: 1 - - uid: 13854 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,409.5 - parent: 1 - - uid: 13855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,410.5 - parent: 1 - - uid: 13856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,411.5 - parent: 1 - - uid: 13857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,412.5 - parent: 1 - - uid: 13858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,413.5 - parent: 1 - - uid: 13861 + pos: -99.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -98.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13862 + color: '#0055CCFF' + - uid: 12164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -100.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13863 + color: '#0055CCFF' + - uid: 12165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,404.5 - parent: 1 + pos: -103.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13864 + color: '#990000FF' + - uid: 12167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13865 + color: '#0055CCFF' + - uid: 12169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13867 + color: '#0055CCFF' + - uid: 12170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,405.5 - parent: 1 + pos: -103.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13868 + color: '#990000FF' + - uid: 12172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -102.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13869 + color: '#990000FF' + - uid: 12173 components: - type: Transform rot: 3.141592653589793 rad - pos: 392.5,407.5 - parent: 1 + pos: -104.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13870 + color: '#0055CCFF' + - uid: 12176 components: - type: Transform rot: 3.141592653589793 rad - pos: 392.5,409.5 - parent: 1 + pos: -104.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13872 + color: '#0055CCFF' + - uid: 12181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13873 + color: '#0055CCFF' + - uid: 12184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13874 + color: '#0055CCFF' + - uid: 12185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13877 + color: '#0055CCFF' + - uid: 12190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -106.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13878 + color: '#990000FF' + - uid: 12191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -108.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13879 + color: '#990000FF' + - uid: 12192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -109.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13884 + color: '#990000FF' + - uid: 12193 components: - type: Transform - pos: 395.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -110.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13885 + color: '#990000FF' + - uid: 12194 components: - type: Transform - pos: 395.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -107.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13886 + color: '#990000FF' + - uid: 12195 components: - type: Transform - pos: 395.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -112.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13888 + color: '#990000FF' + - uid: 12196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -111.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13889 + color: '#990000FF' + - uid: 12197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13891 + color: '#990000FF' + - uid: 12198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -116.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13892 + color: '#990000FF' + - uid: 12199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -115.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13893 + color: '#990000FF' + - uid: 12200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -117.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13894 + color: '#990000FF' + - uid: 12201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -114.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13895 + color: '#990000FF' + - uid: 12204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,404.5 - parent: 1 + pos: -118.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13896 + color: '#0055CCFF' + - uid: 12205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,404.5 - parent: 1 + pos: -118.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13899 + color: '#0055CCFF' + - uid: 12206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,405.5 - parent: 1 + pos: -118.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13903 + color: '#0055CCFF' + - uid: 12208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,407.5 - parent: 1 + pos: -120.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13904 + color: '#990000FF' + - uid: 12209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,407.5 - parent: 1 + pos: -120.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13906 + color: '#990000FF' + - uid: 12210 components: - type: Transform - pos: 403.5,408.5 - parent: 1 + pos: -120.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13907 + color: '#990000FF' + - uid: 12211 components: - type: Transform - pos: 403.5,409.5 - parent: 1 + pos: -120.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13908 + color: '#990000FF' + - uid: 12213 components: - type: Transform - pos: 403.5,410.5 - parent: 1 + pos: -120.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13909 + color: '#990000FF' + - uid: 12215 components: - type: Transform - pos: 403.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -119.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13910 + color: '#0055CCFF' + - uid: 12216 components: - type: Transform - pos: 403.5,412.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -117.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13911 + color: '#0055CCFF' + - uid: 12217 components: - type: Transform - pos: 403.5,413.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -116.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13913 + color: '#0055CCFF' + - uid: 12219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -115.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13917 + color: '#0055CCFF' + - uid: 12220 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,414.5 - parent: 1 + pos: -114.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13918 + color: '#0055CCFF' + - uid: 12221 components: - type: Transform rot: -1.5707963267948966 rad - pos: 407.5,414.5 - parent: 1 + pos: -113.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13920 + color: '#0055CCFF' + - uid: 12222 components: - type: Transform - pos: 403.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -111.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13921 + color: '#0055CCFF' + - uid: 12223 components: - type: Transform - pos: 403.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -110.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13923 + color: '#0055CCFF' + - uid: 12224 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,417.5 - parent: 1 + pos: -109.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13926 + color: '#0055CCFF' + - uid: 12225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13927 + color: '#0055CCFF' + - uid: 12226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -108.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13928 + color: '#0055CCFF' + - uid: 12227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13929 + color: '#0055CCFF' + - uid: 12229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -112.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13933 + color: '#0055CCFF' + - uid: 12231 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,419.5 - parent: 1 + pos: -37.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13937 + color: '#990000FF' + - uid: 12232 components: - type: Transform rot: -1.5707963267948966 rad - pos: 408.5,422.5 - parent: 1 + pos: -37.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13938 + color: '#0055CCFF' + - uid: 12234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -104.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13939 + color: '#0055CCFF' + - uid: 12235 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,422.5 - parent: 1 + pos: -46.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13940 + color: '#0055CCFF' + - uid: 12236 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,422.5 - parent: 1 + pos: -31.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13942 + color: '#0055CCFF' + - uid: 12238 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,422.5 - parent: 1 + pos: -36.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13943 + color: '#990000FF' + - uid: 12240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 403.5,422.5 - parent: 1 + pos: -32.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13944 + color: '#0055CCFF' + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,422.5 - parent: 1 + pos: -34.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13945 + color: '#0055CCFF' + - uid: 12242 components: - type: Transform rot: -1.5707963267948966 rad - pos: 399.5,422.5 - parent: 1 + pos: -35.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13947 + color: '#0055CCFF' + - uid: 12244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13948 + color: '#990000FF' + - uid: 12245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13952 + color: '#990000FF' + - uid: 12246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13953 + color: '#0055CCFF' + - uid: 12247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13957 + color: '#0055CCFF' + - uid: 12249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,418.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13959 + color: '#990000FF' + - uid: 12251 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,419.5 - parent: 1 + pos: -37.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13962 + color: '#990000FF' + - uid: 12252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13963 + color: '#0055CCFF' + - uid: 12253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,420.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13965 + color: '#0055CCFF' + - uid: 12255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,421.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13969 + color: '#990000FF' + - uid: 12257 components: - type: Transform rot: -1.5707963267948966 rad - pos: 404.5,404.5 - parent: 1 + pos: -32.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13970 + color: '#990000FF' + - uid: 12258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,404.5 - parent: 1 + pos: -31.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13971 + color: '#990000FF' + - uid: 12259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 407.5,404.5 - parent: 1 + pos: -30.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13972 + color: '#990000FF' + - uid: 12260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,404.5 - parent: 1 + pos: -34.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13974 + color: '#990000FF' + - uid: 12261 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,405.5 - parent: 1 + pos: -37.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13976 + color: '#990000FF' + - uid: 12262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13977 + color: '#990000FF' + - uid: 12263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13979 + color: '#0055CCFF' + - uid: 12264 components: - type: Transform - pos: 411.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13980 + color: '#0055CCFF' + - uid: 12265 components: - type: Transform - pos: 411.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13982 + color: '#0055CCFF' + - uid: 12268 components: - type: Transform - pos: 411.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13984 + color: '#0055CCFF' + - uid: 12273 components: - type: Transform - pos: 411.5,400.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13985 + color: '#0055CCFF' + - uid: 12274 components: - type: Transform - pos: 411.5,402.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13986 + color: '#0055CCFF' + - uid: 12276 components: - type: Transform - pos: 411.5,399.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -44.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13987 + color: '#0055CCFF' + - uid: 12277 components: - type: Transform - pos: 411.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13988 + color: '#0055CCFF' + - uid: 12279 components: - type: Transform - pos: 411.5,395.5 - parent: 1 + pos: -30.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13989 + color: '#0055CCFF' + - uid: 12280 components: - type: Transform - pos: 411.5,394.5 - parent: 1 + pos: -30.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13990 + color: '#0055CCFF' + - uid: 12281 components: - type: Transform - pos: 411.5,393.5 - parent: 1 + pos: -30.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13991 + color: '#0055CCFF' + - uid: 12282 components: - type: Transform - pos: 411.5,392.5 - parent: 1 + pos: -30.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13994 + color: '#0055CCFF' + - uid: 12283 components: - type: Transform - pos: 411.5,390.5 - parent: 1 + pos: -30.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13997 + color: '#0055CCFF' + - uid: 12284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,389.5 - parent: 1 + pos: -30.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13998 + color: '#990000FF' + - uid: 12285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,389.5 - parent: 1 + pos: -29.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13999 + color: '#990000FF' + - uid: 12289 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,389.5 - parent: 1 + pos: -29.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14001 + color: '#990000FF' + - uid: 12290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,388.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14002 + color: '#990000FF' + - uid: 12291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,388.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14005 + color: '#990000FF' + - uid: 12292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,381.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14006 + color: '#990000FF' + - uid: 12293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,383.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14007 + color: '#990000FF' + - uid: 12294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,382.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14010 + color: '#990000FF' + - uid: 12295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,379.5 - parent: 1 + pos: -24.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14013 + color: '#990000FF' + - uid: 12299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,379.5 - parent: 1 + pos: -108.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14018 + color: '#0055CCFF' + - uid: 12301 components: - type: Transform - pos: 412.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14020 + color: '#0055CCFF' + - uid: 12302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -29.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14022 + color: '#0055CCFF' + - uid: 12303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14024 + color: '#0055CCFF' + - uid: 12304 components: - type: Transform - pos: 416.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -42.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14026 + color: '#990000FF' + - uid: 12305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,382.5 - parent: 1 + pos: -51.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14027 + color: '#0055CCFF' + - uid: 12306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14029 + color: '#0055CCFF' + - uid: 12310 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,384.5 - parent: 1 + pos: -22.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14032 + color: '#990000FF' + - uid: 12311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,379.5 - parent: 1 + pos: -44.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14034 + color: '#0055CCFF' + - uid: 12312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -25.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14035 + color: '#990000FF' + - uid: 12313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,382.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14036 + color: '#990000FF' + - uid: 12314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14037 + color: '#990000FF' + - uid: 12315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,384.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14038 + color: '#0055CCFF' + - uid: 12316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14041 + color: '#0055CCFF' + - uid: 12317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14043 + color: '#0055CCFF' + - uid: 12318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14045 + color: '#0055CCFF' + - uid: 12319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14046 + color: '#0055CCFF' + - uid: 12320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14048 + color: '#0055CCFF' + - uid: 12321 components: - type: Transform - pos: 418.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14050 + color: '#0055CCFF' + - uid: 12322 components: - type: Transform - pos: 418.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -101.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14054 + color: '#0055CCFF' + - uid: 12325 components: - type: Transform rot: -1.5707963267948966 rad - pos: 419.5,392.5 - parent: 1 + pos: -19.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14055 + color: '#0055CCFF' + - uid: 12326 components: - type: Transform rot: -1.5707963267948966 rad - pos: 421.5,392.5 - parent: 1 + pos: -20.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14056 + color: '#990000FF' + - uid: 12327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 420.5,392.5 - parent: 1 + pos: -19.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14057 + color: '#990000FF' + - uid: 12328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 422.5,392.5 - parent: 1 + pos: -17.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14059 + color: '#990000FF' + - uid: 12329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,378.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14060 + color: '#990000FF' + - uid: 12330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,378.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14061 + color: '#990000FF' + - uid: 12331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,378.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14065 + color: '#990000FF' + - uid: 12333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,379.5 - parent: 1 + pos: -104.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14066 + color: '#0055CCFF' + - uid: 12334 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,381.5 - parent: 1 + pos: -15.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14067 + color: '#0055CCFF' + - uid: 12336 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,383.5 - parent: 1 + pos: -15.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14068 + color: '#0055CCFF' + - uid: 12338 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,384.5 - parent: 1 + pos: -15.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14069 + color: '#0055CCFF' + - uid: 12339 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,385.5 - parent: 1 + pos: -14.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14070 + color: '#990000FF' + - uid: 12340 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,386.5 - parent: 1 + pos: -14.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14071 + color: '#990000FF' + - uid: 12341 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,387.5 - parent: 1 + pos: -14.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14074 + color: '#990000FF' + - uid: 12342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14075 + color: '#990000FF' + - uid: 12343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14076 + color: '#990000FF' + - uid: 12345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,387.5 - parent: 1 + pos: -15.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14077 + color: '#0055CCFF' + - uid: 12346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,387.5 - parent: 1 + pos: -15.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14081 + color: '#0055CCFF' + - uid: 12347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,393.5 - parent: 1 + pos: -15.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14082 + color: '#0055CCFF' + - uid: 12348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,395.5 - parent: 1 + pos: -15.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14083 + color: '#0055CCFF' + - uid: 12349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,396.5 - parent: 1 + pos: -15.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14084 + color: '#0055CCFF' + - uid: 12350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,397.5 - parent: 1 + pos: -15.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14085 + color: '#0055CCFF' + - uid: 12351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,398.5 - parent: 1 + pos: -15.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14089 + color: '#0055CCFF' + - uid: 12352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,400.5 - parent: 1 + pos: -15.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14090 + color: '#0055CCFF' + - uid: 12353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,401.5 - parent: 1 + pos: -15.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14094 + color: '#0055CCFF' + - uid: 12354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,403.5 - parent: 1 + pos: -14.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14095 + color: '#990000FF' + - uid: 12355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,403.5 - parent: 1 + pos: -45.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14096 + color: '#0055CCFF' + - uid: 12356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,403.5 - parent: 1 + pos: -14.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14097 + color: '#990000FF' + - uid: 12357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,403.5 - parent: 1 + pos: -14.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14098 + color: '#990000FF' + - uid: 12358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,403.5 - parent: 1 + pos: -14.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14099 + color: '#990000FF' + - uid: 12359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,403.5 - parent: 1 + pos: -14.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14100 + color: '#990000FF' + - uid: 12360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,403.5 - parent: 1 + pos: -14.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14101 + color: '#990000FF' + - uid: 12361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,403.5 - parent: 1 + pos: -14.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14105 + color: '#990000FF' + - uid: 12362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,405.5 - parent: 1 + pos: -14.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14106 + color: '#990000FF' + - uid: 12363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,406.5 - parent: 1 + pos: -14.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14109 + color: '#990000FF' + - uid: 12364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,408.5 - parent: 1 + pos: -14.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14111 + color: '#990000FF' + - uid: 12365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,411.5 - parent: 1 + pos: -14.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14112 + color: '#990000FF' + - uid: 12366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,411.5 - parent: 1 + pos: -15.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14113 + color: '#0055CCFF' + - uid: 12367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,411.5 - parent: 1 + pos: -15.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14116 + color: '#0055CCFF' + - uid: 12369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,411.5 - parent: 1 + pos: -15.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14117 + color: '#0055CCFF' + - uid: 12370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,411.5 - parent: 1 + pos: -15.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14118 + color: '#0055CCFF' + - uid: 12371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,411.5 - parent: 1 + pos: -30.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14122 + color: '#0055CCFF' + - uid: 12372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,408.5 - parent: 1 + pos: -30.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14123 + color: '#0055CCFF' + - uid: 12375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,408.5 - parent: 1 + pos: -30.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14124 + color: '#0055CCFF' + - uid: 12376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,408.5 - parent: 1 + pos: -30.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14127 + color: '#0055CCFF' + - uid: 12377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 432.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14128 + color: '#0055CCFF' + - uid: 12380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14129 + color: '#990000FF' + - uid: 12383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14130 + color: '#990000FF' + - uid: 12384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14131 + color: '#990000FF' + - uid: 12385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14134 + color: '#990000FF' + - uid: 12386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14135 + color: '#990000FF' + - uid: 12387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14136 + color: '#990000FF' + - uid: 12389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 439.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14138 + color: '#990000FF' + - uid: 12390 components: - type: Transform - pos: 441.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14142 + color: '#990000FF' + - uid: 12392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 442.5,405.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14144 + color: '#990000FF' + - uid: 12393 components: - type: Transform rot: 3.141592653589793 rad - pos: 443.5,406.5 - parent: 1 + pos: -18.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14145 + color: '#990000FF' + - uid: 12394 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14146 + color: '#990000FF' + - uid: 12397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,409.5 - parent: 1 + pos: -11.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14150 + color: '#0055CCFF' + - uid: 12401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,410.5 - parent: 1 + pos: -10.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14151 + color: '#990000FF' + - uid: 12402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,410.5 - parent: 1 + pos: -10.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14152 + color: '#990000FF' + - uid: 12403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 441.5,410.5 - parent: 1 + pos: -3.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14153 + color: '#990000FF' + - uid: 12405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 439.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14154 + rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14155 + color: '#0055CCFF' + - uid: 12408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 437.5,410.5 - parent: 1 + pos: -102.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14159 + color: '#990000FF' + - uid: 12410 components: - type: Transform rot: 1.5707963267948966 rad - pos: 444.5,407.5 - parent: 1 + pos: -26.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14160 + color: '#990000FF' + - uid: 12411 components: - type: Transform rot: 1.5707963267948966 rad - pos: 446.5,407.5 - parent: 1 + pos: -25.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14161 + color: '#990000FF' + - uid: 12413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14162 + color: '#990000FF' + - uid: 12414 components: - type: Transform rot: 1.5707963267948966 rad - pos: 448.5,407.5 - parent: 1 + pos: -21.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14163 + color: '#990000FF' + - uid: 12415 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,407.5 - parent: 1 + pos: -19.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14164 + color: '#990000FF' + - uid: 12417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -22.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14167 + color: '#990000FF' + - uid: 12418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 451.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14168 + color: '#0055CCFF' + - uid: 12420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 452.5,407.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14170 + pos: -22.5,-30.5 + parent: 2 + - uid: 12422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14171 + color: '#0055CCFF' + - uid: 12423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14172 + color: '#0055CCFF' + - uid: 12427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14173 + pos: -28.5,-59.5 + parent: 2 + - uid: 12430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,405.5 - parent: 1 + pos: -18.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14175 + color: '#990000FF' + - uid: 12431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 452.5,402.5 - parent: 1 + pos: -18.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14176 + color: '#990000FF' + - uid: 12432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 451.5,402.5 - parent: 1 + pos: -18.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14178 + color: '#990000FF' + - uid: 12433 components: - type: Transform - pos: 453.5,408.5 - parent: 1 + pos: -18.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14179 + color: '#990000FF' + - uid: 12434 components: - type: Transform - pos: 453.5,409.5 - parent: 1 + pos: -18.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14180 + color: '#990000FF' + - uid: 12435 components: - type: Transform - pos: 453.5,410.5 - parent: 1 + pos: -18.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14182 + color: '#990000FF' + - uid: 12436 components: - type: Transform - pos: 453.5,412.5 - parent: 1 + pos: -18.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14183 + color: '#990000FF' + - uid: 12437 components: - type: Transform - pos: 453.5,413.5 - parent: 1 + pos: -19.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14186 + color: '#0055CCFF' + - uid: 12438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 454.5,407.5 - parent: 1 + pos: -19.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14187 + color: '#0055CCFF' + - uid: 12439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 455.5,407.5 - parent: 1 + pos: -19.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14189 + color: '#0055CCFF' + - uid: 12440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,409.5 - parent: 1 + pos: -19.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14190 + color: '#0055CCFF' + - uid: 12442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,410.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14192 + pos: -28.5,-60.5 + parent: 2 + - uid: 12443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,413.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14193 + pos: -28.5,-61.5 + parent: 2 + - uid: 12445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,411.5 - parent: 1 + pos: -103.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14194 + color: '#0055CCFF' + - uid: 12446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,408.5 - parent: 1 + pos: -103.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14197 + color: '#0055CCFF' + - uid: 12448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,414.5 - parent: 1 + pos: -103.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14200 + color: '#0055CCFF' + - uid: 12449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 460.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -18.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14201 + color: '#990000FF' + - uid: 12450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 461.5,408.5 - parent: 1 + pos: -103.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14204 + color: '#0055CCFF' + - uid: 12451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,407.5 - parent: 1 + pos: -29.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14206 + color: '#990000FF' + - uid: 12453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 459.5,407.5 - parent: 1 + pos: -20.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14207 + color: '#0055CCFF' + - uid: 12454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,407.5 - parent: 1 + pos: -103.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14208 + color: '#0055CCFF' + - uid: 12455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,407.5 - parent: 1 + pos: -24.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14209 + color: '#0055CCFF' + - uid: 12460 components: - type: Transform rot: 3.141592653589793 rad - pos: 458.5,406.5 - parent: 1 + pos: -65.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14210 + color: '#0055CCFF' + - uid: 12462 components: - type: Transform rot: 3.141592653589793 rad - pos: 458.5,405.5 - parent: 1 + pos: -57.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14213 + color: '#990000FF' + - uid: 12464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -110.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14214 + color: '#0055CCFF' + - uid: 12469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,411.5 - parent: 1 + pos: -75.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14216 + color: '#0055CCFF' + - uid: 12471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,412.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -94.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14217 + color: '#990000FF' + - uid: 12472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,414.5 - parent: 1 + pos: -58.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14218 + color: '#0055CCFF' + - uid: 12473 components: - type: Transform rot: 3.141592653589793 rad - pos: 450.5,413.5 - parent: 1 + pos: -18.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14219 + color: '#990000FF' + - uid: 12474 components: - type: Transform rot: 3.141592653589793 rad - pos: 450.5,415.5 - parent: 1 + pos: -18.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14221 + color: '#990000FF' + - uid: 12477 components: - type: Transform rot: -1.5707963267948966 rad - pos: 449.5,416.5 - parent: 1 + pos: -29.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14222 + color: '#0055CCFF' + - uid: 12478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 448.5,416.5 - parent: 1 + pos: -103.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14223 + color: '#990000FF' + - uid: 12479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,417.5 - parent: 1 + pos: -58.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14224 + color: '#0055CCFF' + - uid: 12480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,419.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -55.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14225 + color: '#990000FF' + - uid: 12482 components: - type: Transform rot: 3.141592653589793 rad - pos: 450.5,420.5 - parent: 1 + pos: -42.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14226 + color: '#990000FF' + - uid: 12491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,418.5 - parent: 1 + pos: -30.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14228 + color: '#0055CCFF' + - uid: 12492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 449.5,421.5 - parent: 1 + pos: -30.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14229 + color: '#0055CCFF' + - uid: 12493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,421.5 - parent: 1 + pos: -28.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14235 + color: '#990000FF' + - uid: 12494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,410.5 - parent: 1 + pos: -28.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14239 + color: '#990000FF' + - uid: 12496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,403.5 - parent: 1 + pos: -28.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14240 + color: '#990000FF' + - uid: 12497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,403.5 - parent: 1 + pos: -28.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14241 + color: '#990000FF' + - uid: 12500 components: - type: Transform rot: 1.5707963267948966 rad - pos: 427.5,403.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,399.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,398.5 - parent: 1 + pos: -29.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14248 + color: '#990000FF' + - uid: 12501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,400.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14250 + color: '#990000FF' + - uid: 12502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14253 + color: '#990000FF' + - uid: 12503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,401.5 - parent: 1 + pos: -31.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14254 + color: '#0055CCFF' + - uid: 12504 components: - type: Transform rot: 1.5707963267948966 rad - pos: 430.5,401.5 - parent: 1 + pos: -33.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14255 + color: '#990000FF' + - uid: 12506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,397.5 - parent: 1 + pos: -37.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14256 + color: '#990000FF' + - uid: 12508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14257 + color: '#990000FF' + - uid: 12511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -35.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14258 + color: '#990000FF' + - uid: 12512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -36.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14264 + color: '#990000FF' + - uid: 12514 components: - type: Transform - pos: 335.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14265 + color: '#990000FF' + - uid: 12515 components: - type: Transform - pos: 335.5,401.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -37.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14266 + color: '#990000FF' + - uid: 12516 components: - type: Transform - pos: 335.5,400.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14267 + color: '#0055CCFF' + - uid: 12518 components: - type: Transform - pos: 335.5,402.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -35.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14271 + color: '#0055CCFF' + - uid: 12519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14272 + color: '#0055CCFF' + - uid: 12520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,398.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14273 + color: '#0055CCFF' + - uid: 12521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,398.5 - parent: 1 + pos: -34.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14274 + color: '#0055CCFF' + - uid: 12523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,398.5 - parent: 1 + pos: -38.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14275 + color: '#0055CCFF' + - uid: 12526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,398.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -65.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14278 + color: '#0055CCFF' + - uid: 12527 components: - type: Transform - pos: 334.5,397.5 - parent: 1 + pos: -64.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14279 + color: '#990000FF' + - uid: 12529 components: - type: Transform - pos: 334.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -107.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14280 + color: '#0055CCFF' + - uid: 12530 components: - type: Transform - pos: 334.5,394.5 - parent: 1 + pos: -64.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14281 + color: '#990000FF' + - uid: 12531 components: - type: Transform - pos: 334.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -64.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14283 + color: '#0055CCFF' + - uid: 12532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14287 + color: '#990000FF' + - uid: 12533 components: - type: Transform - pos: 330.5,391.5 - parent: 1 + pos: -39.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14288 + color: '#990000FF' + - uid: 12535 components: - type: Transform - pos: 330.5,389.5 - parent: 1 + pos: -39.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14289 + color: '#990000FF' + - uid: 12571 components: - type: Transform - pos: 330.5,390.5 - parent: 1 + pos: -21.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14290 + color: '#0055CCFF' + - uid: 12573 components: - type: Transform - pos: 330.5,388.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14293 + color: '#0055CCFF' + - uid: 12574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -23.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14294 + color: '#0055CCFF' + - uid: 12575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -25.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14296 + color: '#0055CCFF' + - uid: 12576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -26.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14297 + color: '#0055CCFF' + - uid: 12577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14298 + color: '#0055CCFF' + - uid: 12578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 323.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -29.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14299 + color: '#0055CCFF' + - uid: 12579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -24.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14300 + color: '#0055CCFF' + - uid: 12580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14302 + color: '#0055CCFF' + - uid: 12581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -28.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14303 + color: '#0055CCFF' + - uid: 12583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 319.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14304 + color: '#0055CCFF' + - uid: 12586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 318.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14305 + color: '#0055CCFF' + - uid: 12587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 316.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -30.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14306 + color: '#0055CCFF' + - uid: 12591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 317.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14308 + color: '#990000FF' + - uid: 12592 components: - type: Transform rot: 1.5707963267948966 rad - pos: 313.5,386.5 - parent: 1 + pos: -27.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14309 + color: '#990000FF' + - uid: 12593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 314.5,386.5 - parent: 1 + pos: -28.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14310 + color: '#990000FF' + - uid: 12594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 312.5,386.5 - parent: 1 + pos: -28.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14311 + color: '#990000FF' + - uid: 12597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -31.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14312 + color: '#0055CCFF' + - uid: 12598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -32.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14313 + color: '#0055CCFF' + - uid: 12599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -34.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14314 + color: '#0055CCFF' + - uid: 12600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -35.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14315 + color: '#0055CCFF' + - uid: 12601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -36.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14316 + color: '#0055CCFF' + - uid: 12602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -37.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14318 + color: '#0055CCFF' + - uid: 12603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,386.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -33.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14319 + color: '#0055CCFF' + - uid: 12604 components: - type: Transform - pos: 305.5,385.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -65.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14322 + color: '#0055CCFF' + - uid: 12605 components: - type: Transform rot: 3.141592653589793 rad - pos: 305.5,383.5 - parent: 1 + pos: -64.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14323 + color: '#990000FF' + - uid: 12606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,382.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -65.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14324 + color: '#0055CCFF' + - uid: 12608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,382.5 - parent: 1 + pos: -58.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14325 + color: '#0055CCFF' + - uid: 12609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,382.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14326 + color: '#0055CCFF' + - uid: 12610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,382.5 - parent: 1 + pos: -104.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14328 + color: '#0055CCFF' + - uid: 12611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,382.5 - parent: 1 + pos: -104.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14330 + color: '#0055CCFF' + - uid: 12612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,382.5 - parent: 1 + pos: -104.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14331 + color: '#0055CCFF' + - uid: 12620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 314.5,382.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14332 + color: '#0055CCFF' + - uid: 12621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 315.5,382.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14342 + color: '#0055CCFF' + - uid: 12622 components: - type: Transform - pos: 333.5,391.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14350 + color: '#0055CCFF' + - uid: 12623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -21.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14351 + color: '#0055CCFF' + - uid: 12625 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,382.5 - parent: 1 + pos: -25.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14352 + color: '#0055CCFF' + - uid: 12626 components: - type: Transform - pos: 334.5,383.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14353 + color: '#0055CCFF' + - uid: 12627 components: - type: Transform - pos: 334.5,384.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -23.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14354 + color: '#0055CCFF' + - uid: 12629 components: - type: Transform - pos: 335.5,386.5 - parent: 1 + pos: -22.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14355 + color: '#0055CCFF' + - uid: 12630 components: - type: Transform - pos: 335.5,387.5 - parent: 1 + pos: -22.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14356 + color: '#0055CCFF' + - uid: 12631 components: - type: Transform - pos: 335.5,388.5 - parent: 1 + pos: -22.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14357 + color: '#0055CCFF' + - uid: 12632 components: - type: Transform - pos: 335.5,389.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14358 + color: '#990000FF' + - uid: 12633 components: - type: Transform rot: -1.5707963267948966 rad - pos: 334.5,390.5 - parent: 1 + pos: -19.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14360 + color: '#990000FF' + - uid: 12634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,435.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14361 + color: '#990000FF' + - uid: 12635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,437.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -18.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14362 + color: '#990000FF' + - uid: 12636 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,438.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14363 + color: '#990000FF' + - uid: 12637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,439.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -19.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14364 + color: '#990000FF' + - uid: 12640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,436.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -25.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14368 + color: '#990000FF' + - uid: 12641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -23.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14369 + color: '#990000FF' + - uid: 12642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14370 + color: '#990000FF' + - uid: 12643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -24.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14371 + color: '#990000FF' + - uid: 12644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,416.5 - parent: 1 + pos: -22.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14372 + color: '#0055CCFF' + - uid: 12645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,416.5 - parent: 1 + pos: -22.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14373 + color: '#0055CCFF' + - uid: 12646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,416.5 - parent: 1 + pos: -22.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14409 + color: '#0055CCFF' + - uid: 12647 components: - type: Transform - pos: 396.5,420.5 - parent: 1 + pos: -21.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14410 + color: '#990000FF' + - uid: 12648 components: - type: Transform - pos: 396.5,419.5 - parent: 1 + pos: -21.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14411 + color: '#990000FF' + - uid: 12649 components: - type: Transform - pos: 396.5,418.5 - parent: 1 + pos: -21.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14412 + color: '#990000FF' + - uid: 12650 components: - type: Transform - pos: 396.5,417.5 - parent: 1 + pos: -21.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14413 + color: '#990000FF' + - uid: 12652 components: - type: Transform - pos: 396.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14414 + color: '#990000FF' + - uid: 12653 components: - type: Transform - pos: 396.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14416 + color: '#0055CCFF' + - uid: 12655 components: - type: Transform rot: -1.5707963267948966 rad - pos: 395.5,414.5 - parent: 1 + pos: -49.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14417 + color: '#990000FF' + - uid: 12656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,414.5 - parent: 1 + pos: -50.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14418 + color: '#990000FF' + - uid: 12657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14420 + color: '#990000FF' + - uid: 12658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14421 + color: '#990000FF' + - uid: 12660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14422 + color: '#990000FF' + - uid: 12661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14475 + color: '#990000FF' + - uid: 12662 components: - type: Transform rot: 3.141592653589793 rad - pos: 428.5,404.5 - parent: 1 + pos: -42.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14477 + color: '#990000FF' + - uid: 12663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14478 + color: '#990000FF' + - uid: 12664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,405.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -42.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14499 + color: '#990000FF' + - uid: 12667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,370.5 - parent: 1 + pos: -44.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14500 + color: '#0055CCFF' + - uid: 12668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,370.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -43.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14526 + color: '#0055CCFF' + - uid: 12670 components: - type: Transform rot: 3.141592653589793 rad - pos: 359.5,390.5 - parent: 1 + pos: -43.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14527 + color: '#0055CCFF' + - uid: 12671 components: - type: Transform rot: 3.141592653589793 rad - pos: 359.5,391.5 - parent: 1 + pos: -43.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14528 + color: '#0055CCFF' + - uid: 12672 components: - type: Transform rot: 3.141592653589793 rad - pos: 359.5,392.5 - parent: 1 + pos: -43.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14530 + color: '#0055CCFF' + - uid: 12673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -43.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14533 + color: '#0055CCFF' + - uid: 12674 components: - type: Transform - pos: 362.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -43.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14534 + color: '#0055CCFF' + - uid: 12675 components: - type: Transform - pos: 362.5,401.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14536 + color: '#990000FF' + - uid: 12678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,399.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14537 + color: '#0055CCFF' + - uid: 12679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,398.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14539 + color: '#0055CCFF' + - uid: 12680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14540 + color: '#990000FF' + - uid: 12681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14541 + color: '#0055CCFF' + - uid: 12683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -80.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14544 + color: '#0055CCFF' + - uid: 12684 components: - type: Transform - pos: 367.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -45.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14545 + color: '#990000FF' + - uid: 12685 components: - type: Transform - pos: 367.5,395.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -46.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14546 + color: '#990000FF' + - uid: 12686 components: - type: Transform - pos: 367.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14548 + color: '#990000FF' + - uid: 12688 components: - type: Transform rot: -1.5707963267948966 rad - pos: 368.5,397.5 - parent: 1 + pos: -50.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14549 + color: '#990000FF' + - uid: 12689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 369.5,397.5 - parent: 1 + pos: -51.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14550 + color: '#990000FF' + - uid: 12690 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,397.5 - parent: 1 + pos: -49.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14552 + color: '#990000FF' + - uid: 12691 components: - type: Transform - pos: 371.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -45.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14553 + color: '#0055CCFF' + - uid: 12692 components: - type: Transform - pos: 371.5,394.5 - parent: 1 + pos: -49.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14554 + color: '#0055CCFF' + - uid: 12693 components: - type: Transform - pos: 371.5,393.5 - parent: 1 + pos: -49.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14659 + color: '#0055CCFF' + - uid: 12695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,426.5 - parent: 1 + pos: -49.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14660 + color: '#0055CCFF' + - uid: 12696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,426.5 - parent: 1 + pos: -49.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14661 + color: '#0055CCFF' + - uid: 12697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,426.5 - parent: 1 + pos: -49.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14664 + color: '#0055CCFF' + - uid: 12698 components: - type: Transform - pos: 307.5,424.5 - parent: 1 + pos: -49.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14665 + color: '#0055CCFF' + - uid: 12699 components: - type: Transform - pos: 307.5,423.5 - parent: 1 + pos: -49.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14666 + color: '#0055CCFF' + - uid: 12700 components: - type: Transform - pos: 307.5,422.5 - parent: 1 + pos: -48.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14667 + color: '#990000FF' + - uid: 12701 components: - type: Transform - pos: 307.5,425.5 - parent: 1 + pos: -48.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14668 + color: '#990000FF' + - uid: 12702 components: - type: Transform - pos: 307.5,421.5 - parent: 1 + pos: -48.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14672 + color: '#990000FF' + - uid: 12703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,426.5 - parent: 1 + anchored: False + pos: -121.32467,-34.35313 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12704 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14674 + color: '#990000FF' + - uid: 12705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,419.5 - parent: 1 + pos: -48.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14675 + color: '#990000FF' + - uid: 12706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,418.5 - parent: 1 + pos: -48.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14676 + color: '#990000FF' + - uid: 12707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,417.5 - parent: 1 + pos: -48.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14678 + color: '#990000FF' + - uid: 12710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,415.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -48.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14681 + color: '#0055CCFF' + - uid: 12711 components: - type: Transform rot: 1.5707963267948966 rad - pos: 308.5,413.5 - parent: 1 + pos: -46.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14682 + color: '#0055CCFF' + - uid: 12712 components: - type: Transform rot: 1.5707963267948966 rad - pos: 309.5,413.5 - parent: 1 + pos: -47.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14685 + color: '#0055CCFF' + - uid: 12713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 306.5,413.5 - parent: 1 + pos: -79.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14686 + color: '#0055CCFF' + - uid: 12714 components: - type: Transform rot: -1.5707963267948966 rad - pos: 305.5,413.5 - parent: 1 + pos: -76.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14689 + color: '#0055CCFF' + - uid: 12715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,412.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -78.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14691 + color: '#0055CCFF' + - uid: 12717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -90.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14692 + color: '#0055CCFF' + - uid: 12718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -92.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14693 + color: '#0055CCFF' + - uid: 12719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14696 + color: '#0055CCFF' + - uid: 12720 components: - type: Transform rot: 1.5707963267948966 rad - pos: 305.5,407.5 - parent: 1 + pos: -47.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14698 + color: '#990000FF' + - uid: 12721 components: - type: Transform rot: -1.5707963267948966 rad - pos: 307.5,407.5 - parent: 1 + pos: -89.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14699 + color: '#0055CCFF' + - uid: 12722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -46.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14700 + color: '#990000FF' + - uid: 12723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,407.5 - parent: 1 + pos: -58.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14701 + color: '#0055CCFF' + - uid: 12724 components: - type: Transform rot: 1.5707963267948966 rad - pos: 310.5,407.5 - parent: 1 + pos: -44.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14702 + color: '#0055CCFF' + - uid: 12725 components: - type: Transform - pos: 310.5,412.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -43.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14704 + color: '#0055CCFF' + - uid: 12729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,411.5 - parent: 1 + pos: -42.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14707 + color: '#0055CCFF' + - uid: 12731 components: - type: Transform - pos: 303.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -121.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14713 + color: '#990000FF' + - uid: 12735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 307.5,417.5 - parent: 1 + pos: -42.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14718 + color: '#990000FF' + - uid: 12736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,415.5 - parent: 1 + pos: -57.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14719 + color: '#990000FF' + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad - pos: 305.5,415.5 - parent: 1 + pos: -38.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14720 + color: '#0055CCFF' + - uid: 12740 components: - type: Transform rot: 1.5707963267948966 rad - pos: 306.5,415.5 - parent: 1 + pos: -39.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14721 + color: '#0055CCFF' + - uid: 12741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 304.5,415.5 - parent: 1 + pos: -40.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14723 + color: '#0055CCFF' + - uid: 12742 components: - type: Transform - pos: 303.5,414.5 - parent: 1 + pos: -42.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14725 + color: '#0055CCFF' + - uid: 12743 components: - type: Transform - pos: 303.5,412.5 - parent: 1 + pos: -42.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14727 + color: '#0055CCFF' + - uid: 12744 components: - type: Transform - pos: 303.5,408.5 - parent: 1 + pos: -42.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14728 + color: '#0055CCFF' + - uid: 12747 components: - type: Transform - pos: 303.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -133.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14730 + color: '#0055CCFF' + - uid: 12749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -102.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14732 + color: '#0055CCFF' + - uid: 12752 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,410.5 - parent: 1 + pos: -42.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14733 + color: '#0055CCFF' + - uid: 12753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,408.5 - parent: 1 + pos: -42.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14735 + color: '#0055CCFF' + - uid: 12754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 306.5,411.5 - parent: 1 + pos: -42.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14738 + color: '#0055CCFF' + - uid: 12755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,410.5 - parent: 1 + pos: -42.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14740 + color: '#0055CCFF' + - uid: 12756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 312.5,409.5 - parent: 1 + pos: -42.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14741 + color: '#0055CCFF' + - uid: 12757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,409.5 - parent: 1 + pos: -42.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14743 + color: '#0055CCFF' + - uid: 12758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,409.5 - parent: 1 + pos: -42.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14744 + color: '#0055CCFF' + - uid: 12759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,409.5 - parent: 1 + pos: -42.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14747 + color: '#0055CCFF' + - uid: 12760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,421.5 - parent: 1 + pos: -42.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14749 + color: '#0055CCFF' + - uid: 12761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,421.5 - parent: 1 + pos: -42.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14750 + color: '#0055CCFF' + - uid: 12762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,421.5 - parent: 1 + pos: -42.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14752 + color: '#0055CCFF' + - uid: 12766 components: - type: Transform - pos: 306.5,420.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14753 + pos: -146.5,-51.5 + parent: 2 + - uid: 12770 components: - type: Transform - pos: 306.5,419.5 - parent: 1 + pos: -42.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14756 + color: '#0055CCFF' + - uid: 12771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,418.5 - parent: 1 - - uid: 14760 + pos: -42.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,411.5 - parent: 1 + pos: -42.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14769 + color: '#0055CCFF' + - uid: 12777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20336 + color: '#0055CCFF' + - uid: 12778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 20181 - - uid: 20337 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 20181 - - uid: 20338 + rot: -1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 20181 - - uid: 20339 + rot: -1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 20181 - - uid: 20340 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 20181 - - uid: 20341 + rot: 1.5707963267948966 rad + pos: -12.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 20181 - - uid: 20342 + rot: 1.5707963267948966 rad + pos: -14.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12785 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 20181 - - uid: 20343 + pos: -13.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 20181 - - uid: 20344 + pos: -15.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 20181 - - uid: 20345 + pos: -15.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 20181 - - uid: 20346 + pos: -15.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 20181 - - uid: 20347 + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12791 components: - type: Transform - pos: 3.5,3.5 - parent: 20181 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20348 + color: '#990000FF' + - uid: 12792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 20181 + pos: -11.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20349 + color: '#990000FF' + - uid: 12793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 20181 + pos: -12.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20350 + color: '#990000FF' + - uid: 12794 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 20181 + pos: -13.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20351 + color: '#990000FF' + - uid: 12795 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 20181 + pos: -10.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20352 + color: '#990000FF' + - uid: 12797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 20181 + pos: -14.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20353 + color: '#990000FF' + - uid: 12798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 20181 + pos: -14.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20354 + color: '#990000FF' + - uid: 12799 components: - type: Transform - pos: 6.5,-0.5 - parent: 20181 - - uid: 20355 + pos: -14.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 - parent: 20181 + pos: -14.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20356 + color: '#990000FF' + - uid: 12801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 20181 - - uid: 20357 + pos: -15.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 20181 - - uid: 20358 + pos: -15.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 20181 + pos: -15.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20359 + color: '#0055CCFF' + - uid: 12804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 20181 + pos: -15.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20360 + color: '#0055CCFF' + - uid: 12805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 20181 + pos: -15.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20361 + color: '#0055CCFF' + - uid: 12806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 20181 + pos: -15.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20362 + color: '#0055CCFF' + - uid: 12807 components: - type: Transform - pos: -1.5,0.5 - parent: 20181 + pos: -15.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20363 + color: '#0055CCFF' + - uid: 12808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 20181 + pos: -15.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20364 + color: '#0055CCFF' + - uid: 12809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 20181 + pos: -15.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20365 + color: '#0055CCFF' + - uid: 12810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 20181 + pos: -14.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20366 + color: '#990000FF' + - uid: 12811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 20181 + pos: -14.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20367 + color: '#990000FF' + - uid: 12812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 20181 + pos: -14.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20368 + color: '#990000FF' + - uid: 12813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 20181 + pos: -14.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20369 + color: '#990000FF' + - uid: 12814 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12815 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12816 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12817 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12818 components: - type: Transform - pos: 8.5,1.5 - parent: 20181 + pos: -14.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20370 + color: '#990000FF' + - uid: 12819 components: - type: Transform - pos: 8.5,0.5 - parent: 20181 + pos: -14.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20371 + color: '#990000FF' + - uid: 12820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 20181 + pos: -14.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20372 + color: '#990000FF' + - uid: 12821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 20181 + pos: -14.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20655 + color: '#990000FF' + - uid: 12822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 20527 + pos: -15.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20656 + color: '#0055CCFF' + - uid: 12823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 20527 + pos: -15.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20657 + color: '#0055CCFF' + - uid: 12824 components: - type: Transform - pos: 1.5,4.5 - parent: 20527 + pos: -15.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20658 + color: '#0055CCFF' + - uid: 12825 components: - type: Transform - pos: 1.5,3.5 - parent: 20527 + pos: -15.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20659 + color: '#0055CCFF' + - uid: 12826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 20527 + pos: -15.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20660 + color: '#0055CCFF' + - uid: 12827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 20527 + pos: -15.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20661 + color: '#0055CCFF' + - uid: 12828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 20527 + pos: -15.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20662 + color: '#0055CCFF' + - uid: 12829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 20527 + pos: -15.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20663 + color: '#0055CCFF' + - uid: 12830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 20527 + pos: -15.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20664 + color: '#0055CCFF' + - uid: 12831 components: - type: Transform - pos: 6.5,4.5 - parent: 20527 + pos: -15.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20665 + color: '#0055CCFF' + - uid: 12832 components: - type: Transform - pos: 6.5,3.5 - parent: 20527 + pos: -14.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20666 + color: '#990000FF' + - uid: 12833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 20527 + pos: -14.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20667 + color: '#990000FF' + - uid: 12834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 20527 + pos: -14.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20668 + color: '#990000FF' + - uid: 12835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 20527 + pos: -14.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20669 + color: '#990000FF' + - uid: 12836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 20527 + pos: -14.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20670 + color: '#990000FF' + - uid: 12837 components: - type: Transform - pos: 3.5,2.5 - parent: 20527 + pos: -14.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20671 + color: '#990000FF' + - uid: 12838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 20527 + pos: -14.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20672 + color: '#990000FF' + - uid: 12841 components: - type: Transform - pos: 0.5,4.5 - parent: 20527 + rot: 3.141592653589793 rad + pos: -14.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20673 + color: '#990000FF' + - uid: 12844 components: - type: Transform - pos: 0.5,5.5 - parent: 20527 + rot: 1.5707963267948966 rad + pos: -15.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20674 + color: '#990000FF' + - uid: 12846 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 20527 + pos: -14.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20675 + color: '#990000FF' + - uid: 12884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 20527 - - uid: 20676 + pos: -126.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 20527 - - uid: 21128 + pos: -148.5,-39.5 + parent: 2 + - uid: 12892 components: - type: Transform - pos: 403.5,418.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -88.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21297 + color: '#0055CCFF' + - uid: 12895 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 5072 + pos: -65.5,-64.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21299 + - uid: 12896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -65.5,-65.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21306 + - uid: 12901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,24.5 - parent: 5072 + pos: -103.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21308 + color: '#0055CCFF' + - uid: 12910 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,25.5 - parent: 5072 + pos: -22.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21313 + - uid: 12911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,22.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -29.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21317 + - uid: 12912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,25.5 - parent: 5072 + pos: -20.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21324 + - uid: 12913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,23.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -21.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21326 + - uid: 12914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,24.5 - parent: 5072 + pos: -23.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21329 + color: '#0055CCFF' + - uid: 12915 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 5072 + pos: -24.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21330 + - uid: 12916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,25.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -25.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21339 + color: '#0055CCFF' + - uid: 12917 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,24.5 - parent: 5072 + pos: -26.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21340 + color: '#0055CCFF' + - uid: 12918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,24.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -27.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21348 + - uid: 12919 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,26.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -28.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21357 + color: '#0055CCFF' + - uid: 12929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,24.5 - parent: 5072 + pos: -40.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21367 + color: '#0055CCFF' + - uid: 12930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,27.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -33.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21375 + color: '#0055CCFF' + - uid: 12931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -31.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21385 + - uid: 12932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,24.5 - parent: 5072 + pos: -32.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21388 + color: '#0055CCFF' + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,25.5 - parent: 5072 + pos: -34.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21397 + - uid: 12934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,28.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -35.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21406 + color: '#0055CCFF' + - uid: 12935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,20.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -36.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21421 + - uid: 12936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,25.5 - parent: 5072 + pos: -37.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21426 + - uid: 12937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,27.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -38.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21429 + - uid: 12938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -39.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21449 + color: '#0055CCFF' + - uid: 12945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,24.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -128.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21457 + color: '#0055CCFF' + - uid: 12953 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,28.5 - parent: 5072 + pos: -33.5,-33.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21463 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 5072 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21469 - components: - - type: Transform - pos: 7.5,18.5 - parent: 5072 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 21471 + - uid: 13022 components: - type: Transform - pos: 8.5,19.5 - parent: 5072 + pos: -4.5,-9.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21486 + - uid: 13024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,24.5 - parent: 5072 + pos: -19.5,-39.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21488 + - uid: 13025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,25.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -18.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21498 + color: '#990000FF' + - uid: 13027 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,29.5 - parent: 5072 + pos: -18.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21510 + color: '#990000FF' + - uid: 13029 components: - type: Transform - pos: 8.5,18.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -25.5,-30.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21530 + - uid: 13033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 - parent: 5072 + pos: -19.5,-35.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21548 + - uid: 13091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 21601 + color: '#0055CCFF' + - uid: 13092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 5072 + rot: -1.5707963267948966 rad + pos: -32.5,-41.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21786 + - uid: 13115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,25.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -33.5,-31.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21796 + - uid: 13128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 5072 + pos: -36.5,-39.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 22140 + - uid: 13140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 329.5,422.5 - parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 445 - components: - - type: Transform - pos: 414.5,384.5 - parent: 1 + pos: -100.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2880 + color: '#990000FF' + - uid: 13182 components: - type: Transform rot: 3.141592653589793 rad - pos: 363.5,416.5 - parent: 1 + pos: -80.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2885 + color: '#0055CCFF' + - uid: 13187 components: - type: Transform rot: 3.141592653589793 rad - pos: 345.5,402.5 - parent: 1 + pos: -120.5,-73.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2911 + color: '#0055CCFF' + - uid: 13204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3532 + color: '#0055CCFF' + - uid: 13224 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,396.5 - parent: 1 + pos: -109.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3772 + color: '#0055CCFF' + - uid: 13245 components: - type: Transform - pos: 413.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3779 + color: '#0055CCFF' + - uid: 13257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -120.5,-72.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3802 + color: '#0055CCFF' + - uid: 13416 components: - type: Transform - pos: 346.5,404.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -82.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4559 + color: '#990000FF' + - uid: 13435 components: - type: Transform - pos: 404.5,421.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -102.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4814 + color: '#990000FF' + - uid: 13436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -129.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5032 + color: '#0055CCFF' + - uid: 13450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,395.5 - parent: 1 + pos: -72.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5405 + color: '#990000FF' + - uid: 13501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,415.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6042 + rot: 1.5707963267948966 rad + pos: -127.5,2.5 + parent: 2 + - uid: 13504 components: - type: Transform - pos: 388.5,396.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7475 + rot: 1.5707963267948966 rad + pos: -114.5,1.5 + parent: 2 + - uid: 13551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,402.5 - parent: 1 + pos: -103.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7484 + color: '#990000FF' + - uid: 13564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,372.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -104.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9004 + color: '#0055CCFF' + - uid: 13594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,369.5 - parent: 1 + pos: -80.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9008 + color: '#990000FF' + - uid: 13596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,395.5 - parent: 1 + pos: -71.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9032 + color: '#990000FF' + - uid: 13609 components: - type: Transform - pos: 415.5,374.5 - parent: 1 + pos: -103.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9199 + color: '#990000FF' + - uid: 13615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,403.5 - parent: 1 + pos: -67.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9225 + color: '#990000FF' + - uid: 13632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,371.5 - parent: 1 + pos: -103.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9227 + color: '#990000FF' + - uid: 13638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,369.5 - parent: 1 + pos: -147.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10312 + color: '#0055CCFF' + - uid: 13639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,384.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -134.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10374 + color: '#990000FF' + - uid: 13650 components: - type: Transform - pos: 347.5,402.5 - parent: 1 + pos: -120.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10376 + color: '#990000FF' + - uid: 13651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,402.5 - parent: 1 + pos: -119.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10801 + color: '#0055CCFF' + - uid: 13653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,402.5 - parent: 1 + pos: -119.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11902 + color: '#0055CCFF' + - uid: 13668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,376.5 - parent: 1 + pos: -103.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11908 + color: '#990000FF' + - uid: 13669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -148.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11910 + color: '#0055CCFF' + - uid: 13672 components: - type: Transform rot: -1.5707963267948966 rad - pos: 374.5,388.5 - parent: 1 + pos: -150.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11920 + color: '#990000FF' + - uid: 13674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,370.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -140.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11926 + color: '#990000FF' + - uid: 13675 components: - type: Transform - pos: 333.5,418.5 - parent: 1 + pos: -142.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11950 + color: '#990000FF' + - uid: 13680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 324.5,417.5 - parent: 1 + pos: -103.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11960 + color: '#990000FF' + - uid: 13681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,414.5 - parent: 1 + pos: -103.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11969 + color: '#990000FF' + - uid: 13686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -120.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11971 + color: '#0055CCFF' + - uid: 13688 components: - type: Transform - pos: 331.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -120.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11973 + color: '#990000FF' + - uid: 13694 components: - type: Transform - pos: 334.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -85.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11978 + color: '#990000FF' + - uid: 13695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -86.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11988 + color: '#990000FF' + - uid: 13696 components: - type: Transform rot: 3.141592653589793 rad - pos: 347.5,411.5 - parent: 1 + pos: -141.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11989 + color: '#0055CCFF' + - uid: 13704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -84.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11994 + color: '#990000FF' + - uid: 13710 components: - type: Transform rot: 3.141592653589793 rad - pos: 353.5,411.5 - parent: 1 + pos: -87.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12011 + color: '#990000FF' + - uid: 13711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,406.5 - parent: 1 + pos: -89.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12015 + color: '#990000FF' + - uid: 13725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -140.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12016 + color: '#990000FF' + - uid: 13726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -151.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12017 + color: '#990000FF' + - uid: 13729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -84.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12018 + color: '#990000FF' + - uid: 13732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -88.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12019 + color: '#0055CCFF' + - uid: 13738 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,402.5 - parent: 1 + pos: -83.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12020 + color: '#0055CCFF' + - uid: 13786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,402.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -86.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12072 + color: '#990000FF' + - uid: 13826 components: - type: Transform rot: 1.5707963267948966 rad - pos: 383.5,402.5 - parent: 1 + pos: -136.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12081 + color: '#0055CCFF' + - uid: 14013 components: - type: Transform - pos: 355.5,396.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -82.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12088 + color: '#990000FF' + - uid: 14066 components: - type: Transform rot: 3.141592653589793 rad - pos: 394.5,402.5 - parent: 1 + pos: -134.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12102 + color: '#990000FF' + - uid: 14067 components: - type: Transform rot: 3.141592653589793 rad - pos: 383.5,395.5 - parent: 1 + pos: -138.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12105 + color: '#990000FF' + - uid: 14068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -135.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12115 + color: '#990000FF' + - uid: 14069 components: - type: Transform - pos: 390.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -137.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12140 + color: '#990000FF' + - uid: 14070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -136.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12152 + color: '#990000FF' + - uid: 14073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,380.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -138.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12162 + color: '#990000FF' + - uid: 14074 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,370.5 - parent: 1 + pos: -138.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12175 + color: '#990000FF' + - uid: 14076 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,395.5 - parent: 1 + pos: -134.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12184 + color: '#990000FF' + - uid: 14077 components: - type: Transform - pos: 404.5,396.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12189 + color: '#990000FF' + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,395.5 - parent: 1 + pos: -137.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12196 + color: '#0055CCFF' + - uid: 14091 components: - type: Transform rot: 1.5707963267948966 rad - pos: 404.5,391.5 - parent: 1 + pos: -128.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12197 + color: '#990000FF' + - uid: 14097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 404.5,379.5 - parent: 1 + pos: -127.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12219 + color: '#990000FF' + - uid: 14102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,363.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -125.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12223 + color: '#990000FF' + - uid: 14103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,373.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -131.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12226 + color: '#990000FF' + - uid: 14104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,373.5 - parent: 1 + pos: -130.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12230 + color: '#990000FF' + - uid: 14105 components: - type: Transform - pos: 408.5,374.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -129.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12241 + color: '#990000FF' + - uid: 14109 components: - type: Transform rot: 3.141592653589793 rad - pos: 413.5,374.5 - parent: 1 + pos: -125.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12245 + color: '#0055CCFF' + - uid: 14137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -91.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12250 + color: '#0055CCFF' + - uid: 14138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,367.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12257 + color: '#990000FF' + - uid: 14180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,365.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -83.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12260 + color: '#0055CCFF' + - uid: 14181 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,362.5 - parent: 1 + pos: -83.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12264 + color: '#0055CCFF' + - uid: 14183 components: - type: Transform - pos: 416.5,362.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -84.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12267 + color: '#0055CCFF' + - uid: 14184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,359.5 - parent: 1 + pos: -82.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12276 + color: '#990000FF' + - uid: 14186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,353.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -91.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12291 + color: '#0055CCFF' + - uid: 14187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,354.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -89.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12297 + color: '#0055CCFF' + - uid: 14188 components: - type: Transform - pos: 421.5,362.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -91.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12299 + color: '#0055CCFF' + - uid: 14191 components: - type: Transform - pos: 423.5,362.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -83.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12301 + color: '#0055CCFF' + - uid: 14192 components: - type: Transform rot: 3.141592653589793 rad - pos: 422.5,362.5 - parent: 1 + pos: -91.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12310 + color: '#0055CCFF' + - uid: 14194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,371.5 - parent: 1 + pos: -90.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12318 + color: '#990000FF' + - uid: 14275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,393.5 - parent: 1 + pos: -89.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12319 + color: '#990000FF' + - uid: 14276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -124.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12325 + color: '#0055CCFF' + - uid: 14293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,390.5 - parent: 1 + pos: -45.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12344 + color: '#0055CCFF' + - uid: 14496 components: - type: Transform - pos: 409.5,382.5 - parent: 1 + pos: -91.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12345 + color: '#0055CCFF' + - uid: 14544 components: - type: Transform - pos: 411.5,382.5 - parent: 1 + pos: -91.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12353 + color: '#0055CCFF' + - uid: 14583 components: - type: Transform - pos: 415.5,382.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12361 + pos: -148.5,-51.5 + parent: 2 + - uid: 14617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,390.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -119.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12388 + color: '#990000FF' + - uid: 14641 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,402.5 - parent: 1 + pos: -69.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12390 + color: '#990000FF' + - uid: 14655 components: - type: Transform - pos: 418.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -75.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12398 + color: '#0055CCFF' + - uid: 14729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,408.5 - parent: 1 + pos: -91.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12401 + color: '#0055CCFF' + - uid: 14730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,407.5 - parent: 1 + pos: -91.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12405 + color: '#0055CCFF' + - uid: 14732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 439.5,407.5 - parent: 1 + pos: -87.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12414 + color: '#990000FF' + - uid: 14793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 459.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -50.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12416 + color: '#990000FF' + - uid: 14798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,393.5 - parent: 1 + pos: -51.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12422 + color: '#0055CCFF' + - uid: 14814 components: - type: Transform rot: 1.5707963267948966 rad - pos: 361.5,399.5 - parent: 1 + pos: -106.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12425 + color: '#0055CCFF' + - uid: 14833 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,401.5 - parent: 1 + pos: -63.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12426 + color: '#0055CCFF' + - uid: 14834 components: - type: Transform - pos: 333.5,392.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -52.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12427 + color: '#990000FF' + - uid: 14838 components: - type: Transform - pos: 329.5,387.5 - parent: 1 + pos: -87.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12430 + color: '#990000FF' + - uid: 14841 components: - type: Transform rot: 3.141592653589793 rad - pos: 362.5,392.5 - parent: 1 + pos: -99.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12438 + color: '#0055CCFF' + - uid: 14842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,426.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -55.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12439 + color: '#990000FF' + - uid: 14843 components: - type: Transform - pos: 332.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -103.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12441 + color: '#0055CCFF' + - uid: 14844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,434.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -58.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12443 + color: '#990000FF' + - uid: 14845 components: - type: Transform - pos: 335.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -59.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12445 + color: '#990000FF' + - uid: 14846 components: - type: Transform rot: 1.5707963267948966 rad - pos: 423.5,389.5 - parent: 1 + pos: -56.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12446 + color: '#990000FF' + - uid: 14848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,395.5 - parent: 1 + pos: -101.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12459 + color: '#990000FF' + - uid: 14849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,394.5 - parent: 1 + pos: -59.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12484 + color: '#0055CCFF' + - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,400.5 - parent: 1 + pos: -60.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12485 + color: '#0055CCFF' + - uid: 14851 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,401.5 - parent: 1 + pos: -61.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12486 + color: '#0055CCFF' + - uid: 14856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,404.5 - parent: 1 + pos: -61.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12492 + color: '#990000FF' + - uid: 14857 components: - type: Transform - pos: 362.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -62.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12495 + color: '#990000FF' + - uid: 14858 components: - type: Transform - pos: 354.5,385.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -101.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12496 + color: '#0055CCFF' + - uid: 14859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -63.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12497 + color: '#990000FF' + - uid: 14862 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,385.5 - parent: 1 + pos: -102.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12498 + color: '#990000FF' + - uid: 14865 components: - type: Transform - pos: 404.5,397.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12499 + color: '#0055CCFF' + - uid: 14866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -47.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12500 + color: '#0055CCFF' + - uid: 14867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,402.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12504 + color: '#0055CCFF' + - uid: 14868 components: - type: Transform - pos: 422.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -45.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12505 + color: '#0055CCFF' + - uid: 14869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12507 + color: '#0055CCFF' + - uid: 14870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -43.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12508 + color: '#990000FF' + - uid: 14871 components: - type: Transform rot: -1.5707963267948966 rad - pos: 442.5,407.5 - parent: 1 + pos: -45.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12516 + color: '#990000FF' + - uid: 14872 components: - type: Transform - pos: 440.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12524 + color: '#990000FF' + - uid: 14875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,407.5 - parent: 1 + pos: -85.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12558 + color: '#0055CCFF' + - uid: 14876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 449.5,410.5 - parent: 1 + pos: -102.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12567 + color: '#0055CCFF' + - uid: 14878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,410.5 - parent: 1 + pos: -104.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12568 + color: '#0055CCFF' + - uid: 14881 components: - type: Transform rot: 3.141592653589793 rad - pos: 455.5,410.5 - parent: 1 + pos: -120.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12578 + color: '#990000FF' + - uid: 14884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 459.5,410.5 - parent: 1 + pos: -110.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12579 + color: '#990000FF' + - uid: 14885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 455.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -113.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12594 + color: '#990000FF' + - uid: 14886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 449.5,415.5 - parent: 1 + pos: -115.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12609 + color: '#0055CCFF' + - uid: 14887 components: - type: Transform rot: 1.5707963267948966 rad - pos: 451.5,421.5 - parent: 1 + pos: -66.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12611 + color: '#990000FF' + - uid: 14888 components: - type: Transform - pos: 403.5,403.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -111.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12612 + color: '#990000FF' + - uid: 14889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 372.5,411.5 - parent: 1 + pos: -116.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12616 + color: '#0055CCFF' + - uid: 14891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,407.5 - parent: 1 + pos: -121.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12619 + color: '#990000FF' + - uid: 14892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,409.5 - parent: 1 + pos: -118.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12624 + color: '#0055CCFF' + - uid: 14893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,408.5 - parent: 1 + pos: -117.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12630 + color: '#0055CCFF' + - uid: 14896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,413.5 - parent: 1 + pos: -119.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12641 + color: '#0055CCFF' + - uid: 14897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,415.5 - parent: 1 + pos: -74.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12645 + color: '#990000FF' + - uid: 14898 components: - type: Transform - pos: 397.5,415.5 - parent: 1 + pos: -74.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12653 + color: '#990000FF' + - uid: 14899 components: - type: Transform - pos: 405.5,416.5 - parent: 1 + pos: -75.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12667 + color: '#0055CCFF' + - uid: 14900 components: - type: Transform - pos: 413.5,418.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -105.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12669 + color: '#990000FF' + - uid: 14901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,418.5 - parent: 1 + pos: -119.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12681 + color: '#0055CCFF' + - uid: 14902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -124.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12685 + color: '#990000FF' + - uid: 14903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,420.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -125.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12721 + color: '#990000FF' + - uid: 14904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,396.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -127.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12731 + color: '#990000FF' + - uid: 14905 components: - type: Transform - pos: 371.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -128.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12736 + color: '#990000FF' + - uid: 14906 components: - type: Transform - pos: 367.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -52.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12740 + color: '#990000FF' + - uid: 14907 components: - type: Transform - pos: 362.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12756 + color: '#990000FF' + - uid: 14908 components: - type: Transform - pos: 361.5,386.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -127.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12771 + color: '#0055CCFF' + - uid: 14909 components: - type: Transform - pos: 355.5,381.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -48.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12779 + color: '#990000FF' + - uid: 14911 components: - type: Transform - pos: 356.5,392.5 - parent: 1 + pos: -119.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12793 + color: '#0055CCFF' + - uid: 14912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -50.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12807 + color: '#990000FF' + - uid: 14913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,399.5 - parent: 1 + pos: -119.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12814 + color: '#0055CCFF' + - uid: 14914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,391.5 - parent: 1 + pos: -119.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12843 + color: '#0055CCFF' + - uid: 14915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,393.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -121.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12844 + color: '#0055CCFF' + - uid: 14916 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,394.5 - parent: 1 + pos: -48.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12858 + color: '#0055CCFF' + - uid: 14917 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,399.5 - parent: 1 + pos: -50.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12876 + color: '#0055CCFF' + - uid: 14918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,403.5 - parent: 1 + pos: -120.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12879 + color: '#0055CCFF' + - uid: 14919 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,406.5 - parent: 1 + pos: -52.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,411.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12916 + color: '#0055CCFF' + - uid: 14920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -123.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12928 + color: '#0055CCFF' + - uid: 14921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,406.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -54.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12931 + color: '#0055CCFF' + - uid: 14923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -56.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12932 + color: '#0055CCFF' + - uid: 14924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,410.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -57.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12935 + color: '#0055CCFF' + - uid: 14925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,413.5 - parent: 1 + pos: -119.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12948 + color: '#0055CCFF' + - uid: 14926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,406.5 - parent: 1 + pos: -56.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12949 + color: '#990000FF' + - uid: 14927 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,409.5 - parent: 1 + pos: -122.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12951 + color: '#0055CCFF' + - uid: 14929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,413.5 - parent: 1 + pos: -129.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12965 + color: '#0055CCFF' + - uid: 14930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 385.5,416.5 - parent: 1 + pos: -128.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12966 + color: '#0055CCFF' + - uid: 14931 components: - type: Transform rot: -1.5707963267948966 rad - pos: 373.5,416.5 - parent: 1 + pos: -119.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12972 + color: '#990000FF' + - uid: 14933 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,416.5 - parent: 1 + pos: -123.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12979 + color: '#990000FF' + - uid: 14941 components: - type: Transform - pos: 367.5,420.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -68.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13009 + color: '#990000FF' + - uid: 14958 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,422.5 - parent: 1 + pos: -57.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13017 + color: '#990000FF' + - uid: 14959 components: - type: Transform rot: 3.141592653589793 rad - pos: 368.5,410.5 - parent: 1 + pos: -57.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13018 + color: '#990000FF' + - uid: 14960 components: - type: Transform - pos: 367.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -57.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13024 + color: '#990000FF' + - uid: 14961 components: - type: Transform - pos: 365.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -57.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13031 + color: '#990000FF' + - uid: 14962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -57.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13037 + color: '#990000FF' + - uid: 14963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 331.5,400.5 - parent: 1 + pos: -58.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13040 + color: '#990000FF' + - uid: 14964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,397.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -59.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13049 + color: '#990000FF' + - uid: 14966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,403.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -61.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13075 + color: '#990000FF' + - uid: 14967 components: - type: Transform rot: 1.5707963267948966 rad - pos: 428.5,397.5 - parent: 1 + pos: -62.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13076 + color: '#990000FF' + - uid: 14968 components: - type: Transform - pos: 326.5,387.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -63.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13077 + color: '#990000FF' + - uid: 14970 components: - type: Transform - pos: 320.5,387.5 - parent: 1 + pos: -119.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13089 + color: '#0055CCFF' + - uid: 14971 components: - type: Transform - pos: 316.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -59.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13098 + color: '#0055CCFF' + - uid: 14972 components: - type: Transform - pos: 307.5,387.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -61.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13102 + color: '#0055CCFF' + - uid: 14973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -60.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13104 + color: '#0055CCFF' + - uid: 14974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,383.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -63.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13128 + color: '#0055CCFF' + - uid: 14977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,368.5 - parent: 1 + pos: -119.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13163 + color: '#0055CCFF' + - uid: 14983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -132.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13202 + color: '#0055CCFF' + - uid: 14984 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,413.5 - parent: 1 + pos: -128.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13206 + color: '#0055CCFF' + - uid: 14985 components: - type: Transform - pos: 413.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -64.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13209 + color: '#990000FF' + - uid: 14986 components: - type: Transform - pos: 335.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -64.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13214 + color: '#990000FF' + - uid: 14988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,407.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -127.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13277 + color: '#0055CCFF' + - uid: 14989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,417.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -126.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13298 + color: '#0055CCFF' + - uid: 14990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,404.5 - parent: 1 + pos: -65.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13314 + color: '#0055CCFF' + - uid: 14991 components: - type: Transform - pos: 339.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -64.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13326 + color: '#0055CCFF' + - uid: 14992 components: - type: Transform - pos: 334.5,404.5 - parent: 1 + pos: -65.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13327 + color: '#0055CCFF' + - uid: 14993 components: - type: Transform - pos: 358.5,404.5 - parent: 1 + pos: -65.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13331 + color: '#0055CCFF' + - uid: 14995 components: - type: Transform - pos: 355.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -125.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13341 + color: '#0055CCFF' + - uid: 14998 components: - type: Transform - pos: 366.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -123.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13347 + color: '#0055CCFF' + - uid: 14999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,404.5 - parent: 1 + pos: -64.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13353 + color: '#990000FF' + - uid: 15000 components: - type: Transform - pos: 378.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -118.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13358 + color: '#0055CCFF' + - uid: 15001 components: - type: Transform - pos: 384.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -124.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13380 + color: '#0055CCFF' + - uid: 15003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,372.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -141.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13398 + color: '#0055CCFF' + - uid: 15005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,391.5 - parent: 1 + pos: -55.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13399 + color: '#0055CCFF' + - uid: 15022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,379.5 - parent: 1 + pos: -33.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13405 + color: '#0055CCFF' + - uid: 15027 components: - type: Transform - pos: 389.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -64.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13406 + color: '#990000FF' + - uid: 15028 components: - type: Transform - pos: 390.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -64.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13410 + color: '#990000FF' + - uid: 15029 components: - type: Transform rot: 3.141592653589793 rad - pos: 385.5,397.5 - parent: 1 + pos: -64.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13420 + color: '#990000FF' + - uid: 15031 components: - type: Transform - pos: 381.5,397.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -102.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13429 + color: '#0055CCFF' + - uid: 15038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,387.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13437 + color: '#0055CCFF' + - uid: 15040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,404.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -54.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13439 + color: '#990000FF' + - uid: 15041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,406.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -109.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13440 + color: '#0055CCFF' + - uid: 15043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13441 + color: '#0055CCFF' + - uid: 15044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13446 + color: '#0055CCFF' + - uid: 15046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13452 + color: '#0055CCFF' + - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 386.5,416.5 - parent: 1 + pos: -136.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13465 + color: '#947507FF' + - uid: 15050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -136.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13479 + color: '#990000FF' + - uid: 15053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15057 components: - type: Transform rot: 3.141592653589793 rad - pos: 368.5,417.5 - parent: 1 + pos: -105.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13480 + color: '#0055CCFF' + - uid: 15073 components: - type: Transform - pos: 372.5,417.5 - parent: 1 + pos: -58.5,-17.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -149.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13482 + color: '#0055CCFF' + - uid: 15081 components: - type: Transform - pos: 368.5,419.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -44.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13502 + color: '#990000FF' + - uid: 15082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -44.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13503 + color: '#990000FF' + - uid: 15083 components: - type: Transform - pos: 349.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -44.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13504 + color: '#990000FF' + - uid: 15084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -44.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13534 + color: '#990000FF' + - uid: 15085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 355.5,400.5 - parent: 1 + pos: -122.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13535 + color: '#0055CCFF' + - uid: 15087 components: - type: Transform - pos: 354.5,400.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -105.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13543 + color: '#0055CCFF' + - uid: 15088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -95.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13546 + color: '#0055CCFF' + - uid: 15090 components: - type: Transform - pos: 348.5,400.5 - parent: 1 + pos: -45.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13550 + color: '#0055CCFF' + - uid: 15091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -130.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13553 + color: '#0055CCFF' + - uid: 15093 components: - type: Transform - pos: 343.5,399.5 - parent: 1 + pos: -103.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13568 + color: '#990000FF' + - uid: 15094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -70.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13570 + color: '#990000FF' + - uid: 15096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,392.5 - parent: 1 + pos: -103.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13576 + color: '#990000FF' + - uid: 15097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,392.5 - parent: 1 + pos: -103.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13592 + color: '#990000FF' + - uid: 15101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,391.5 - parent: 1 + pos: -103.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13599 + color: '#0055CCFF' + - uid: 15102 components: - type: Transform - pos: 354.5,393.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -103.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13612 + color: '#0055CCFF' + - uid: 15104 components: - type: Transform - pos: 356.5,389.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -97.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13614 + color: '#0055CCFF' + - uid: 15105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 356.5,387.5 - parent: 1 + pos: -96.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13632 + color: '#0055CCFF' + - uid: 15106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,389.5 - parent: 1 + pos: -99.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13638 + color: '#0055CCFF' + - uid: 15107 components: - type: Transform - pos: 362.5,390.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -100.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13643 + color: '#990000FF' + - uid: 15108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,384.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -101.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13658 + color: '#990000FF' + - uid: 15109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,380.5 - parent: 1 + pos: -102.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13660 + color: '#990000FF' + - uid: 15110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -95.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13662 + color: '#0055CCFF' + - uid: 15111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,380.5 - parent: 1 + pos: -51.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13683 + color: '#0055CCFF' + - uid: 15112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,387.5 - parent: 1 + pos: -51.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13689 + color: '#0055CCFF' + - uid: 15114 components: - type: Transform - pos: 395.5,397.5 - parent: 1 + pos: -51.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13718 + color: '#0055CCFF' + - uid: 15115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,376.5 - parent: 1 + pos: -51.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13722 + color: '#0055CCFF' + - uid: 15116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,372.5 - parent: 1 + pos: -51.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13725 + color: '#0055CCFF' + - uid: 15117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,371.5 - parent: 1 + pos: -50.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13727 + color: '#990000FF' + - uid: 15118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,390.5 - parent: 1 + pos: -50.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13740 + color: '#990000FF' + - uid: 15119 components: - type: Transform - pos: 401.5,372.5 - parent: 1 + pos: -50.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13759 + color: '#990000FF' + - uid: 15122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,375.5 - parent: 1 + pos: -50.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13771 + color: '#990000FF' + - uid: 15123 components: - type: Transform rot: 1.5707963267948966 rad - pos: 414.5,364.5 - parent: 1 + pos: -53.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13772 + color: '#990000FF' + - uid: 15130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,363.5 - parent: 1 + pos: -53.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13783 + color: '#0055CCFF' + - uid: 15132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,360.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -52.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13793 + color: '#990000FF' + - uid: 15133 components: - type: Transform - pos: 423.5,363.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -51.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13798 + color: '#990000FF' + - uid: 15135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,360.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -49.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13800 + color: '#990000FF' + - uid: 15136 components: - type: Transform - pos: 423.5,360.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -47.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13814 + color: '#990000FF' + - uid: 15138 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,352.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -48.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13824 + color: '#990000FF' + - uid: 15143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,354.5 - parent: 1 + pos: -46.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13844 + color: '#0055CCFF' + - uid: 15144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -47.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13846 + color: '#0055CCFF' + - uid: 15145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,409.5 - parent: 1 - - uid: 13851 + rot: -1.5707963267948966 rad + pos: -49.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,408.5 - parent: 1 - - uid: 13866 + rot: -1.5707963267948966 rad + pos: -50.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -48.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13875 + color: '#0055CCFF' + - uid: 15149 components: - type: Transform rot: 3.141592653589793 rad - pos: 395.5,406.5 - parent: 1 + pos: -51.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13880 + color: '#0055CCFF' + - uid: 15151 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,410.5 - parent: 1 + pos: -99.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13890 + color: '#990000FF' + - uid: 15152 components: - type: Transform - pos: 395.5,404.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -96.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13900 + color: '#990000FF' + - uid: 15154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -97.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13902 + color: '#990000FF' + - uid: 15156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,407.5 - parent: 1 + pos: -54.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13912 + color: '#990000FF' + - uid: 15157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,414.5 - parent: 1 + pos: -54.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13914 + color: '#990000FF' + - uid: 15158 components: - type: Transform - pos: 405.5,414.5 - parent: 1 + pos: -54.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13932 + color: '#990000FF' + - uid: 15161 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,418.5 - parent: 1 + pos: -54.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13934 + color: '#990000FF' + - uid: 15163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,420.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -86.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13935 + color: '#990000FF' + - uid: 15164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -85.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13941 + color: '#990000FF' + - uid: 15166 components: - type: Transform - pos: 404.5,422.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -56.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13946 + color: '#0055CCFF' + - uid: 15167 components: - type: Transform - pos: 400.5,422.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -58.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13961 + color: '#0055CCFF' + - uid: 15169 components: - type: Transform - pos: 412.5,420.5 - parent: 1 + pos: -55.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13964 + color: '#0055CCFF' + - uid: 15170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,420.5 - parent: 1 + pos: -55.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13973 + color: '#0055CCFF' + - uid: 15171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,404.5 - parent: 1 + pos: -55.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13978 + color: '#0055CCFF' + - uid: 15172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,404.5 - parent: 1 + pos: -55.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13983 + color: '#0055CCFF' + - uid: 15173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,401.5 - parent: 1 + pos: -55.5,-62.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13992 + color: '#0055CCFF' + - uid: 15174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,391.5 - parent: 1 + pos: -55.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13995 + color: '#0055CCFF' + - uid: 15177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,389.5 - parent: 1 + pos: -54.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14004 + color: '#990000FF' + - uid: 15178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,380.5 - parent: 1 + pos: -54.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14011 + color: '#990000FF' + - uid: 15179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,379.5 - parent: 1 + pos: -54.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14012 + color: '#990000FF' + - uid: 15180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,379.5 - parent: 1 + pos: -54.5,-62.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14021 + color: '#990000FF' + - uid: 15182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,381.5 - parent: 1 + pos: -54.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14025 + color: '#990000FF' + - uid: 15188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,379.5 - parent: 1 + pos: -60.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14033 + color: '#990000FF' + - uid: 15189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,379.5 - parent: 1 + pos: -60.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14049 + color: '#990000FF' + - uid: 15191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,395.5 - parent: 1 + pos: -61.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14051 + color: '#0055CCFF' + - uid: 15192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,393.5 - parent: 1 + pos: -61.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14072 + color: '#0055CCFF' + - uid: 15193 components: - type: Transform - pos: 423.5,387.5 - parent: 1 + pos: -61.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14086 + color: '#0055CCFF' + - uid: 15195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,394.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -59.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14091 + color: '#0055CCFF' + - uid: 15196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,402.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -60.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14107 + color: '#0055CCFF' + - uid: 15197 components: - type: Transform rot: 1.5707963267948966 rad - pos: 423.5,407.5 - parent: 1 + pos: -59.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14110 + color: '#990000FF' + - uid: 15198 components: - type: Transform - pos: 423.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -61.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14114 + color: '#990000FF' + - uid: 15199 components: - type: Transform - pos: 419.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -62.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14119 + color: '#990000FF' + - uid: 15200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -64.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14125 + color: '#990000FF' + - uid: 15201 components: - type: Transform - pos: 431.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -65.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14132 + color: '#990000FF' + - uid: 15202 components: - type: Transform - pos: 437.5,408.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -120.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14139 + color: '#0055CCFF' + - uid: 15203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 441.5,406.5 - parent: 1 + pos: -62.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14143 + color: '#0055CCFF' + - uid: 15205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,405.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -65.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14147 + color: '#0055CCFF' + - uid: 15206 components: - type: Transform rot: 1.5707963267948966 rad - pos: 443.5,407.5 - parent: 1 + pos: -63.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14148 + color: '#0055CCFF' + - uid: 15207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,410.5 - parent: 1 + pos: -66.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14165 + color: '#0055CCFF' + - uid: 15209 components: - type: Transform - pos: 450.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -67.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14181 + color: '#0055CCFF' + - uid: 15210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 453.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -68.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14188 + color: '#0055CCFF' + - uid: 15211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -70.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14191 + color: '#0055CCFF' + - uid: 15214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 456.5,412.5 - parent: 1 + pos: -69.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14195 + color: '#0055CCFF' + - uid: 15215 components: - type: Transform - pos: 456.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -67.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14205 + color: '#990000FF' + - uid: 15216 components: - type: Transform - pos: 458.5,407.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -69.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14220 + color: '#990000FF' + - uid: 15218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -71.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14227 + color: '#990000FF' + - uid: 15219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -68.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14242 + color: '#990000FF' + - uid: 15225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,403.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14243 + color: '#990000FF' + - uid: 15228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,402.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14244 + color: '#990000FF' + - uid: 15229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,395.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14245 + color: '#990000FF' + - uid: 15230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,401.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14268 + color: '#990000FF' + - uid: 15231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,399.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14270 + color: '#990000FF' + - uid: 15232 components: - type: Transform - pos: 334.5,398.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14292 + color: '#990000FF' + - uid: 15233 components: - type: Transform rot: 3.141592653589793 rad - pos: 330.5,386.5 - parent: 1 + pos: -75.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14295 + color: '#990000FF' + - uid: 15234 components: - type: Transform rot: 3.141592653589793 rad - pos: 327.5,386.5 - parent: 1 + pos: -75.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14301 + color: '#990000FF' + - uid: 15235 components: - type: Transform rot: 3.141592653589793 rad - pos: 321.5,386.5 - parent: 1 + pos: -75.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14307 + color: '#990000FF' + - uid: 15236 components: - type: Transform rot: 3.141592653589793 rad - pos: 315.5,386.5 - parent: 1 + pos: -75.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14317 + color: '#990000FF' + - uid: 15237 components: - type: Transform - pos: 305.5,386.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14320 + color: '#990000FF' + - uid: 15238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,384.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14327 + color: '#990000FF' + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad - pos: 310.5,382.5 - parent: 1 + pos: -75.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14329 + color: '#990000FF' + - uid: 15240 components: - type: Transform rot: 3.141592653589793 rad - pos: 312.5,382.5 - parent: 1 + pos: -75.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14415 + color: '#990000FF' + - uid: 15241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -75.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14419 + color: '#990000FF' + - uid: 15242 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,413.5 - parent: 1 + pos: -75.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14535 + color: '#990000FF' + - uid: 15243 components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,400.5 - parent: 1 + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14542 + color: '#0055CCFF' + - uid: 15244 components: - type: Transform rot: 3.141592653589793 rad - pos: 366.5,397.5 - parent: 1 + pos: -76.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14543 + color: '#0055CCFF' + - uid: 15245 components: - type: Transform - pos: 367.5,397.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14555 + color: '#0055CCFF' + - uid: 15246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,395.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14578 + color: '#0055CCFF' + - uid: 15247 components: - type: Transform - pos: 352.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14663 + color: '#0055CCFF' + - uid: 15248 components: - type: Transform - pos: 307.5,426.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14671 + color: '#0055CCFF' + - uid: 15249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,425.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14673 + color: '#0055CCFF' + - uid: 15251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14677 + color: '#0055CCFF' + - uid: 15253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14679 + color: '#0055CCFF' + - uid: 15254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14680 + color: '#0055CCFF' + - uid: 15255 components: - type: Transform rot: 3.141592653589793 rad - pos: 307.5,413.5 - parent: 1 + pos: -76.5,-51.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14683 + color: '#0055CCFF' + - uid: 15256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-50.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14687 + color: '#0055CCFF' + - uid: 15257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14690 + color: '#0055CCFF' + - uid: 15258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14694 + color: '#0055CCFF' + - uid: 15259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14697 + color: '#0055CCFF' + - uid: 15260 components: - type: Transform - pos: 306.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -76.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14703 + color: '#0055CCFF' + - uid: 15269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,411.5 - parent: 1 + pos: -120.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14712 + color: '#990000FF' + - uid: 15303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,416.5 - parent: 1 + pos: -104.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14716 + color: '#0055CCFF' + - uid: 15309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,414.5 - parent: 1 + pos: -68.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14717 + color: '#0055CCFF' + - uid: 15312 components: - type: Transform rot: -1.5707963267948966 rad - pos: 308.5,415.5 - parent: 1 + pos: -103.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14724 + color: '#990000FF' + - uid: 15317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,413.5 - parent: 1 + pos: -68.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14731 + color: '#0055CCFF' + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 307.5,409.5 - parent: 1 + pos: -51.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14734 + color: '#0055CCFF' + - uid: 15321 components: - type: Transform - pos: 307.5,411.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14742 + color: '#0055CCFF' + - uid: 15322 components: - type: Transform - pos: 310.5,409.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -52.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14748 + color: '#0055CCFF' + - uid: 15323 components: - type: Transform - pos: 308.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -51.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14751 + color: '#990000FF' + - uid: 15324 components: - type: Transform - pos: 306.5,421.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -50.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14755 + color: '#990000FF' + - uid: 15325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 306.5,418.5 - parent: 1 + pos: -49.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15386 + color: '#990000FF' + - uid: 15335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,421.5 - parent: 1 + pos: -120.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20373 + color: '#990000FF' + - uid: 15376 components: - type: Transform - pos: -1.5,1.5 - parent: 20181 + rot: 3.141592653589793 rad + pos: -71.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20374 + color: '#0055CCFF' + - uid: 15377 components: - type: Transform - pos: 3.5,4.5 - parent: 20181 + rot: 3.141592653589793 rad + pos: -71.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20375 + color: '#0055CCFF' + - uid: 15378 components: - type: Transform - pos: 6.5,1.5 - parent: 20181 + rot: 3.141592653589793 rad + pos: -71.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20376 + color: '#0055CCFF' + - uid: 15379 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 20181 + pos: -71.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20677 + color: '#0055CCFF' + - uid: 15380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 20527 + rot: 3.141592653589793 rad + pos: -57.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20678 + color: '#0055CCFF' + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 20527 + rot: 3.141592653589793 rad + pos: -57.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20679 + color: '#0055CCFF' + - uid: 15382 components: - type: Transform - pos: 3.5,3.5 - parent: 20527 + rot: 3.141592653589793 rad + pos: -57.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20680 + color: '#0055CCFF' + - uid: 15383 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 20527 + pos: -57.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21126 + color: '#0055CCFF' + - uid: 15384 components: - type: Transform - pos: 401.5,419.5 - parent: 1 - - uid: 21305 + rot: 3.141592653589793 rad + pos: -58.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -58.5,-55.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21342 + - uid: 15386 components: - type: Transform - pos: 3.5,25.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -58.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21394 + color: '#990000FF' + - uid: 15387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,26.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -58.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21417 + color: '#990000FF' + - uid: 15388 components: - type: Transform - pos: 7.5,24.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -58.5,-59.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21440 + - uid: 15389 components: - type: Transform - pos: 8.5,20.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -58.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21452 + color: '#990000FF' + - uid: 15390 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,25.5 - parent: 5072 + pos: -70.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21506 + color: '#990000FF' + - uid: 15391 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,17.5 - parent: 5072 + pos: -70.5,-58.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21569 + - uid: 15392 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,25.5 - parent: 5072 + pos: -70.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPort - entities: - - uid: 7474 + color: '#990000FF' + - uid: 15393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,387.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -70.5,-55.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 12080 + color: '#990000FF' + - uid: 15394 components: - type: Transform rot: 3.141592653589793 rad - pos: 348.5,387.5 - parent: 1 + pos: -70.5,-53.5 + parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 14645 + color: '#990000FF' + - uid: 15395 components: - type: Transform - pos: 309.5,427.5 - parent: 1 - - uid: 20681 + rot: 3.141592653589793 rad + pos: -70.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15400 components: - type: Transform - pos: 0.5,8.5 - parent: 20527 -- proto: GasPressurePump - entities: - - uid: 449 + pos: -148.5,-49.5 + parent: 2 + - uid: 15402 components: - type: Transform - pos: 338.5,425.5 - parent: 1 - - uid: 455 + pos: -64.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,425.5 - parent: 1 - - uid: 456 + pos: -64.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15405 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,425.5 - parent: 1 - - uid: 461 - components: - - type: Transform - pos: 341.5,425.5 - parent: 1 - - uid: 466 - components: - - type: Transform - pos: 329.5,425.5 - parent: 1 - - uid: 467 + pos: -127.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15406 components: - type: Transform - pos: 335.5,425.5 - parent: 1 - - uid: 468 + rot: 1.5707963267948966 rad + pos: -137.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15418 components: - type: Transform rot: 3.141592653589793 rad - pos: 345.5,425.5 - parent: 1 - - uid: 469 + pos: -127.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15419 components: - type: Transform rot: 3.141592653589793 rad - pos: 330.5,425.5 - parent: 1 - - uid: 489 + pos: -30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15421 components: - type: Transform rot: 3.141592653589793 rad - pos: 333.5,425.5 - parent: 1 - - uid: 490 + pos: -127.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15423 components: - type: Transform rot: 3.141592653589793 rad - pos: 336.5,425.5 - parent: 1 - - uid: 523 - components: - - type: Transform - pos: 344.5,425.5 - parent: 1 - - uid: 532 + pos: -127.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15444 components: - type: Transform - pos: 332.5,425.5 - parent: 1 - - uid: 5403 + rot: 1.5707963267948966 rad + pos: -24.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,416.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -22.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12829 + color: '#990000FF' + - uid: 15447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,389.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -23.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#A505FAFF' - - uid: 12837 + color: '#990000FF' + - uid: 15450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,388.5 - parent: 1 + pos: -40.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 14662 + color: '#990000FF' + - uid: 15451 components: - type: Transform - pos: 309.5,426.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -39.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14757 + color: '#990000FF' + - uid: 15452 components: - type: Transform rot: 1.5707963267948966 rad - pos: 307.5,418.5 - parent: 1 + pos: -37.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20377 + color: '#990000FF' + - uid: 15453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 20181 - - uid: 20378 + rot: 1.5707963267948966 rad + pos: -35.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15473 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 20181 - - uid: 20379 + pos: -41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 20181 - - uid: 20682 + rot: -1.5707963267948966 rad + pos: -100.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 20527 + rot: -1.5707963267948966 rad + pos: -101.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20683 + color: '#0055CCFF' + - uid: 15553 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,8.5 - parent: 20527 + pos: -141.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasRecycler - entities: - - uid: 16394 + color: '#0055CCFF' + - uid: 15554 components: - type: Transform - pos: 499.5,384.5 - parent: 1 -- proto: GasThermoMachineFreezer - entities: - - uid: 825 + rot: -1.5707963267948966 rad + pos: -95.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15569 components: - type: Transform rot: 3.141592653589793 rad - pos: 322.5,420.5 - parent: 1 - - uid: 5406 + pos: -41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15580 components: - type: Transform - pos: 400.5,418.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -41.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6266 + color: '#990000FF' + - uid: 15590 components: - type: Transform - pos: 337.5,417.5 - parent: 1 - - uid: 6267 + rot: 3.141592653589793 rad + pos: -105.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15601 components: - type: Transform - pos: 338.5,417.5 - parent: 1 - - uid: 7385 + rot: 3.141592653589793 rad + pos: -21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15618 components: - type: Transform rot: 3.141592653589793 rad - pos: 321.5,420.5 - parent: 1 - - uid: 20380 + pos: -105.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15623 components: - type: Transform - pos: 7.5,2.5 - parent: 20181 -- proto: GasThermoMachineHeater - entities: - - uid: 824 + rot: -1.5707963267948966 rad + pos: -97.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15630 components: - type: Transform rot: 3.141592653589793 rad - pos: 320.5,420.5 - parent: 1 - - uid: 846 + pos: -57.5,-17.5 + parent: 2 + - uid: 15675 components: - type: Transform rot: 3.141592653589793 rad - pos: 319.5,420.5 - parent: 1 - - uid: 6268 + pos: -60.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15677 components: - type: Transform - pos: 340.5,417.5 - parent: 1 - - uid: 6269 + rot: -1.5707963267948966 rad + pos: -58.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15681 components: - type: Transform - pos: 341.5,417.5 - parent: 1 - - uid: 20381 + rot: 1.5707963267948966 rad + pos: -63.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15686 components: - type: Transform - pos: 6.5,2.5 - parent: 20181 -- proto: GasVentPump - entities: - - uid: 593 + rot: 1.5707963267948966 rad + pos: -66.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15697 components: - type: Transform - pos: 432.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -69.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 621 + color: '#0055CCFF' + - uid: 15698 components: - type: Transform - pos: 436.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15350 + rot: -1.5707963267948966 rad + pos: -70.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2397 + color: '#0055CCFF' + - uid: 15703 components: - type: Transform - pos: 347.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15261 + rot: 1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6254 + color: '#990000FF' + - uid: 15839 components: - type: Transform - pos: 399.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15325 + rot: 3.141592653589793 rad + pos: -119.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10802 + color: '#0055CCFF' + - uid: 15854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,369.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15502 + rot: 3.141592653589793 rad + pos: -110.5,-2.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -109.5,-2.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11884 + color: '#0055CCFF' + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -124.5,8.5 + parent: 2 + - uid: 15887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15301 + pos: -139.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11885 + color: '#990000FF' + - uid: 15888 components: - type: Transform - pos: 408.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 - - 15297 + pos: -95.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11886 + color: '#0055CCFF' + - uid: 15897 components: - type: Transform - pos: 396.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 + pos: -58.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11887 + color: '#0055CCFF' + - uid: 15908 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15300 + pos: -82.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11888 + color: '#990000FF' + - uid: 15910 components: - type: Transform - pos: 394.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 + rot: 3.141592653589793 rad + pos: -140.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11890 + color: '#990000FF' + - uid: 15917 components: - type: Transform - pos: 379.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 + rot: 1.5707963267948966 rad + pos: -138.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11892 + color: '#0055CCFF' + - uid: 15929 components: - type: Transform - pos: 367.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11893 + anchored: False + rot: 1.5707963267948966 rad + pos: -137.5,-39.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 15932 components: - type: Transform - pos: 359.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 + rot: 1.5707963267948966 rad + pos: -139.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11894 + color: '#0055CCFF' + - uid: 15954 components: - type: Transform - pos: 333.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11895 + pos: -28.5,-69.5 + parent: 2 + - uid: 15964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 + rot: 3.141592653589793 rad + pos: -67.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11896 + color: '#0055CCFF' + - uid: 15972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15299 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11898 + pos: -27.5,-68.5 + parent: 2 + - uid: 15986 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15530 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11899 + pos: -105.5,-5.5 + parent: 2 + - uid: 16037 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15524 + pos: -138.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11900 + color: '#990000FF' + - uid: 16063 components: - type: Transform rot: -1.5707963267948966 rad - pos: 408.5,369.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15497 + pos: -68.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11901 + color: '#0055CCFF' + - uid: 16090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -111.5,-2.5 + parent: 2 + - uid: 16102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 404.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15496 + pos: -69.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11903 + color: '#0055CCFF' + - uid: 16140 components: - type: Transform - pos: 413.5,375.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15503 + rot: 3.141592653589793 rad + pos: -41.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11904 + color: '#990000FF' + - uid: 16191 components: - type: Transform - pos: 400.5,374.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15494 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11905 + rot: 1.5707963267948966 rad + pos: -113.5,1.5 + parent: 2 + - uid: 16193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15495 + rot: 3.141592653589793 rad + pos: -140.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11906 + color: '#990000FF' + - uid: 16208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15493 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11907 + pos: -121.5,1.5 + parent: 2 + - uid: 16214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15493 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11909 + pos: -114.5,7.5 + parent: 2 + - uid: 16243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15314 + rot: -1.5707963267948966 rad + pos: -71.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11911 + color: '#0055CCFF' + - uid: 16256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,381.5 - parent: 1 + pos: -73.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11912 + color: '#0055CCFF' + - uid: 16264 components: - type: Transform rot: 3.141592653589793 rad - pos: 359.5,376.5 - parent: 1 + pos: -68.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11913 + color: '#990000FF' + - uid: 16357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,380.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11914 + pos: -85.5,-0.5 + parent: 2 + - uid: 16358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,380.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11915 + pos: -85.5,0.5 + parent: 2 + - uid: 16367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 361.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 + pos: -65.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11916 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,418.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11917 + color: '#990000FF' + - uid: 16397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,418.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 + rot: 3.141592653589793 rad + pos: -60.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11918 + color: '#990000FF' + - uid: 16399 components: - type: Transform - pos: 324.5,418.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15266 + rot: 1.5707963267948966 rad + pos: -141.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11919 + color: '#990000FF' + - uid: 16464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,420.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15265 + rot: 1.5707963267948966 rad + pos: -89.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11959 + color: '#0055CCFF' + - uid: 16491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15258 + rot: 3.141592653589793 rad + pos: -60.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11961 + color: '#990000FF' + - uid: 16504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15257 + pos: -67.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11962 + color: '#0055CCFF' + - uid: 16511 components: - type: Transform - pos: 338.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11963 + rot: 3.141592653589793 rad + pos: -150.5,-15.5 + parent: 2 + - uid: 16515 components: - type: Transform - pos: 348.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 + rot: 3.141592653589793 rad + pos: -62.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11964 + color: '#0055CCFF' + - uid: 16516 components: - type: Transform - pos: 337.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 11580 + pos: -75.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11966 + color: '#0055CCFF' + - uid: 16519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15263 + rot: 3.141592653589793 rad + pos: -149.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12007 + color: '#990000FF' + - uid: 16527 components: - type: Transform rot: 3.141592653589793 rad - pos: 350.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15262 + pos: -37.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12012 + color: '#0055CCFF' + - uid: 16710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15256 + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12033 + color: '#0055CCFF' + - uid: 16761 components: - type: Transform rot: 3.141592653589793 rad - pos: 371.5,388.5 - parent: 1 + pos: -60.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12091 + color: '#990000FF' + - uid: 16764 components: - type: Transform - pos: 404.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12107 + pos: -85.5,-6.5 + parent: 2 + - uid: 16766 components: - type: Transform - pos: 380.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15291 + rot: 3.141592653589793 rad + pos: -141.5,-40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12253 + color: '#0055CCFF' + - uid: 16810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,365.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15506 + pos: -74.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12254 + color: '#0055CCFF' + - uid: 16848 components: - type: Transform - pos: 412.5,363.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15505 + pos: -36.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12255 + color: '#990000FF' + - uid: 16849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,359.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 + rot: 3.141592653589793 rad + pos: -62.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12268 + color: '#0055CCFF' + - uid: 16859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,353.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12269 + rot: 3.141592653589793 rad + pos: -144.5,-14.5 + parent: 2 + - uid: 16867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,354.5 - parent: 1 + pos: -127.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12270 + color: '#03FCD3FF' + - uid: 16870 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,356.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15529 + pos: -126.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12298 + color: '#03FCD3FF' + - uid: 16895 components: - type: Transform - pos: 422.5,363.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 16102 + rot: 3.141592653589793 rad + pos: -72.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12307 + color: '#0055CCFF' + - uid: 16897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,360.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15509 + rot: 1.5707963267948966 rad + pos: -64.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12312 + color: '#990000FF' + - uid: 16898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 426.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15341 + pos: -51.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12320 + color: '#0055CCFF' + - uid: 16899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15376 + rot: -1.5707963267948966 rad + pos: -49.5,-64.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12326 + color: '#990000FF' + - uid: 16912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15368 + rot: 3.141592653589793 rad + pos: -72.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12337 + color: '#0055CCFF' + - uid: 16916 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15369 + pos: -64.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12338 + color: '#0055CCFF' + - uid: 16942 components: - type: Transform - pos: 411.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15370 + pos: -120.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12341 + color: '#990000FF' + - uid: 16962 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,381.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 + pos: -72.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12342 + color: '#0055CCFF' + - uid: 17006 + components: + - type: Transform + pos: -85.5,-2.5 + parent: 2 + - uid: 17016 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,381.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12348 + pos: -138.5,-53.5 + parent: 2 + - uid: 17038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,382.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15373 + rot: 3.141592653589793 rad + pos: -62.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12349 + color: '#0055CCFF' + - uid: 17062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,378.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15372 - - 15373 + rot: 3.141592653589793 rad + pos: -37.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12369 + color: '#0055CCFF' + - uid: 17085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12370 + pos: -86.5,-3.5 + parent: 2 + - uid: 17102 components: - type: Transform - pos: 419.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15374 + rot: 1.5707963267948966 rad + pos: -19.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12382 + color: '#0055CCFF' + - uid: 17112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15338 + rot: 3.141592653589793 rad + pos: -62.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12383 + color: '#0055CCFF' + - uid: 17154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15337 + rot: 1.5707963267948966 rad + pos: -24.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12384 + color: '#0055CCFF' + - uid: 17163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15340 + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12385 + color: '#0055CCFF' + - uid: 17168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15339 + pos: -21.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12413 + color: '#0055CCFF' + - uid: 17181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 420.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 13123 - - 15295 + pos: -33.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12417 + color: '#0055CCFF' + - uid: 17226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12418 + rot: 1.5707963267948966 rad + pos: -26.5,-64.5 + parent: 2 + - uid: 17238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15226 + pos: -58.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12419 + color: '#0055CCFF' + - uid: 17282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12120 + rot: 1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12431 + color: '#0055CCFF' + - uid: 17295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 + pos: -140.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12433 + color: '#990000FF' + - uid: 17297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12434 + pos: -148.5,-50.5 + parent: 2 + - uid: 17308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15367 + rot: 3.141592653589793 rad + pos: -141.5,-41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12435 + color: '#0055CCFF' + - uid: 17312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15366 + rot: 1.5707963267948966 rad + pos: -140.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12460 + color: '#0055CCFF' + - uid: 17351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15348 + rot: 3.141592653589793 rad + pos: -68.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12461 + color: '#990000FF' + - uid: 17377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15347 + rot: 1.5707963267948966 rad + pos: -122.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12462 + color: '#990000FF' + - uid: 17425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15346 + pos: -68.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12463 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15345 + color: '#0055CCFF' + - uid: 17452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12482 + color: '#990000FF' + - uid: 17557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 + rot: 3.141592653589793 rad + pos: -60.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12510 + color: '#990000FF' + - uid: 17578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 6311 + rot: 1.5707963267948966 rad + pos: -17.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12511 + color: '#990000FF' + - uid: 17612 components: - type: Transform - pos: 436.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 13307 + rot: 3.141592653589793 rad + pos: -15.5,-63.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12512 + color: '#0055CCFF' + - uid: 17613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15352 + rot: 3.141592653589793 rad + pos: -15.5,-64.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12522 + color: '#0055CCFF' + - uid: 17616 components: - type: Transform - pos: 439.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15351 + rot: 3.141592653589793 rad + pos: -15.5,-66.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12539 + color: '#0055CCFF' + - uid: 17626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + rot: 1.5707963267948966 rad + pos: -16.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12540 + color: '#990000FF' + - uid: 17628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15354 + rot: 3.141592653589793 rad + pos: -15.5,-67.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12541 + color: '#0055CCFF' + - uid: 17630 components: - type: Transform - pos: 446.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15360 + rot: 3.141592653589793 rad + pos: -14.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12542 + color: '#990000FF' + - uid: 17631 components: - type: Transform - pos: 452.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15361 + rot: -1.5707963267948966 rad + pos: -16.5,-65.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12543 + color: '#0055CCFF' + - uid: 17634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 447.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15364 + pos: -18.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12552 + color: '#990000FF' + - uid: 17635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 456.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15358 + rot: 3.141592653589793 rad + pos: -15.5,-62.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12553 + color: '#0055CCFF' + - uid: 17636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 453.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15359 + rot: 1.5707963267948966 rad + pos: -16.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12554 + color: '#0055CCFF' + - uid: 17639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15357 + rot: 3.141592653589793 rad + pos: -15.5,-61.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12569 + color: '#0055CCFF' + - uid: 17640 components: - type: Transform rot: -1.5707963267948966 rad - pos: 456.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + pos: -17.5,-65.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12590 + color: '#0055CCFF' + - uid: 17641 components: - type: Transform rot: 3.141592653589793 rad - pos: 459.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + pos: -15.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12617 + color: '#0055CCFF' + - uid: 17642 components: - type: Transform rot: 1.5707963267948966 rad - pos: 404.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15385 + pos: -17.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12625 + color: '#0055CCFF' + - uid: 17643 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,408.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15323 + pos: -19.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12634 + color: '#0055CCFF' + - uid: 17644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15324 + rot: 1.5707963267948966 rad + pos: -18.5,-59.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12647 + color: '#0055CCFF' + - uid: 17647 components: - type: Transform rot: 3.141592653589793 rad - pos: 397.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15334 + pos: -15.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12652 + color: '#0055CCFF' + - uid: 17648 components: - type: Transform rot: 3.141592653589793 rad - pos: 393.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15335 + pos: -15.5,-58.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12654 + color: '#0055CCFF' + - uid: 17854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,415.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -108.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12658 + color: '#990000FF' + - uid: 17862 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 5375 + pos: -33.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12665 + color: '#0055CCFF' + - uid: 17866 + components: + - type: Transform + pos: -119.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,418.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15327 + pos: -80.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12666 + color: '#0055CCFF' + - uid: 17868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,418.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15328 + rot: 1.5707963267948966 rad + pos: -79.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12674 + color: '#0055CCFF' + - uid: 17869 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15387 + pos: -83.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12682 + color: '#0055CCFF' + - uid: 17870 components: - type: Transform - pos: 406.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 3703 + rot: 1.5707963267948966 rad + pos: -84.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12692 + color: '#0055CCFF' + - uid: 17873 components: - type: Transform - pos: 401.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15332 + rot: -1.5707963267948966 rad + pos: -106.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12693 + color: '#990000FF' + - uid: 17874 components: - type: Transform - pos: 397.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15333 + rot: -1.5707963267948966 rad + pos: -105.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12696 + color: '#990000FF' + - uid: 17875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,420.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 3703 + rot: -1.5707963267948966 rad + pos: -104.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12710 + color: '#990000FF' + - uid: 17876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15322 + pos: -86.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12717 + color: '#0055CCFF' + - uid: 17877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15310 + rot: -1.5707963267948966 rad + pos: -102.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12718 + color: '#990000FF' + - uid: 17878 components: - type: Transform - pos: 372.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15311 + rot: -1.5707963267948966 rad + pos: -101.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12727 + color: '#990000FF' + - uid: 17880 components: - type: Transform - pos: 369.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15307 + rot: -1.5707963267948966 rad + pos: -98.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12728 + color: '#990000FF' + - uid: 17881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15309 + rot: -1.5707963267948966 rad + pos: -97.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12746 + color: '#990000FF' + - uid: 17882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 + rot: -1.5707963267948966 rad + pos: -100.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12780 + color: '#990000FF' + - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15228 + rot: 1.5707963267948966 rad + pos: -95.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12790 + color: '#990000FF' + - uid: 17889 components: - type: Transform rot: -1.5707963267948966 rad - pos: 356.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15236 + pos: -97.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12791 + color: '#0055CCFF' + - uid: 17890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 356.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 + pos: -98.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12795 + color: '#0055CCFF' + - uid: 17891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 + rot: -1.5707963267948966 rad + pos: -98.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12808 + color: '#990000FF' + - uid: 17892 components: - type: Transform - pos: 353.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 + rot: -1.5707963267948966 rad + pos: -97.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12813 + color: '#990000FF' + - uid: 17893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 + pos: -94.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12819 + color: '#990000FF' + - uid: 17894 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15229 + pos: -96.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12850 + color: '#990000FF' + - uid: 17898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15232 + pos: -95.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12851 + color: '#0055CCFF' + - uid: 17899 components: - type: Transform - pos: 345.5,394.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -94.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12852 + color: '#0055CCFF' + - uid: 17900 components: - type: Transform rot: 3.141592653589793 rad - pos: 345.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1858 + pos: -96.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12853 + color: '#0055CCFF' + - uid: 17901 components: - type: Transform - pos: 342.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15231 + rot: 1.5707963267948966 rad + pos: -88.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12859 + color: '#0055CCFF' + - uid: 17902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15233 + pos: -98.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12863 + color: '#0055CCFF' + - uid: 17903 components: - type: Transform - pos: 344.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15235 + rot: -1.5707963267948966 rad + pos: -97.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12888 + color: '#0055CCFF' + - uid: 17904 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15321 + pos: -98.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12889 + color: '#0055CCFF' + - uid: 17905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15336 + rot: -1.5707963267948966 rad + pos: -97.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12919 + color: '#0055CCFF' + - uid: 17906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 + pos: -98.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12920 + color: '#990000FF' + - uid: 17907 components: - type: Transform - pos: 393.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 + rot: -1.5707963267948966 rad + pos: -97.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12921 + color: '#990000FF' + - uid: 17908 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15390 + pos: -95.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12922 + color: '#990000FF' + - uid: 17909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15391 + rot: -1.5707963267948966 rad + pos: -96.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12923 + color: '#990000FF' + - uid: 17910 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15392 + pos: -96.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12938 + color: '#0055CCFF' + - uid: 17911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -96.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12939 + color: '#0055CCFF' + - uid: 17912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -96.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12940 + color: '#0055CCFF' + - uid: 17913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -94.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12958 + color: '#990000FF' + - uid: 17914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,406.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -94.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12959 + color: '#990000FF' + - uid: 17915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,409.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -94.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12960 + color: '#990000FF' + - uid: 17916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -94.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12963 + color: '#990000FF' + - uid: 17917 components: - type: Transform - pos: 382.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 + rot: 3.141592653589793 rad + pos: -94.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12964 + color: '#990000FF' + - uid: 17918 components: - type: Transform - pos: 376.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 + rot: 3.141592653589793 rad + pos: -94.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12980 + color: '#990000FF' + - uid: 17919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,420.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -96.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12986 + color: '#0055CCFF' + - uid: 17920 components: - type: Transform - pos: 363.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -96.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12987 + color: '#0055CCFF' + - uid: 17921 components: - type: Transform - pos: 364.5,417.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12988 + color: '#990000FF' + - uid: 17923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 386.5,416.5 - parent: 1 + pos: -86.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13012 + color: '#0055CCFF' + - uid: 17925 components: - type: Transform - pos: 379.5,423.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -96.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13020 + color: '#0055CCFF' + - uid: 17926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,408.5 - parent: 1 + pos: -96.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13021 + color: '#0055CCFF' + - uid: 17927 components: - type: Transform - pos: 368.5,411.5 - parent: 1 + pos: -96.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13028 + color: '#0055CCFF' + - uid: 17928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,407.5 - parent: 1 + pos: -96.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13032 + color: '#0055CCFF' + - uid: 17929 components: - type: Transform - pos: 364.5,414.5 - parent: 1 + pos: -96.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13035 + color: '#0055CCFF' + - uid: 17931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,413.5 - parent: 1 + pos: -94.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17932 + components: + - type: Transform + pos: -94.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17933 + components: + - type: Transform + pos: -94.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17934 + components: + - type: Transform + pos: -94.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13043 + color: '#990000FF' + - uid: 17938 components: - type: Transform rot: 1.5707963267948966 rad - pos: 328.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15254 + pos: -93.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13046 + color: '#990000FF' + - uid: 17939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15409 + rot: 1.5707963267948966 rad + pos: -92.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13053 + color: '#990000FF' + - uid: 17940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15255 + pos: -91.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13054 + color: '#990000FF' + - uid: 17942 components: - type: Transform - pos: 328.5,407.5 - parent: 1 + pos: -95.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13106 + color: '#990000FF' + - uid: 17943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15253 + pos: -95.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13107 + color: '#990000FF' + - uid: 17944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 320.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15252 + pos: -95.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13108 + color: '#990000FF' + - uid: 17945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 + pos: -95.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13116 + color: '#990000FF' + - uid: 17946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 317.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15248 + pos: -97.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13117 + color: '#0055CCFF' + - uid: 17947 components: - type: Transform - pos: 309.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15247 + pos: -96.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13118 + color: '#0055CCFF' + - uid: 17949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 306.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 + pos: -95.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13122 + color: '#0055CCFF' + - uid: 17950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 303.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15251 + pos: -94.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13133 + color: '#0055CCFF' + - uid: 17951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,367.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15501 + rot: 1.5707963267948966 rad + pos: -93.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13134 + color: '#0055CCFF' + - uid: 17953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15500 + pos: -92.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13135 + color: '#0055CCFF' + - uid: 17954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 410.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15499 + pos: -92.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13136 + color: '#0055CCFF' + - uid: 17955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 410.5,367.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15498 + pos: -92.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13156 + color: '#0055CCFF' + - uid: 17956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,374.5 - parent: 1 + pos: -90.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13623 + color: '#990000FF' + - uid: 17957 components: - type: Transform - pos: 351.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15237 + pos: -90.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14203 + color: '#990000FF' + - uid: 17961 components: - type: Transform - pos: 462.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15356 + rot: -1.5707963267948966 rad + pos: -91.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14291 + color: '#0055CCFF' + - uid: 17962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15238 + rot: -1.5707963267948966 rad + pos: -89.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14359 + color: '#0055CCFF' + - uid: 17964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -89.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14434 + color: '#990000FF' + - uid: 17965 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15294 - - 15295 + pos: -87.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14439 + color: '#990000FF' + - uid: 17966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 + rot: -1.5707963267948966 rad + pos: -88.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14647 + color: '#990000FF' + - uid: 17968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,426.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -90.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14648 + color: '#0055CCFF' + - uid: 17969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,420.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -95.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14649 + color: '#0055CCFF' + - uid: 17970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,416.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -94.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14650 + color: '#0055CCFF' + - uid: 17971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -93.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14651 + color: '#0055CCFF' + - uid: 17973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,414.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -91.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14652 + color: '#0055CCFF' + - uid: 17974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -89.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14653 + color: '#0055CCFF' + - uid: 17976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -87.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14654 + color: '#0055CCFF' + - uid: 17978 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -84.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14655 + color: '#990000FF' + - uid: 17979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 311.5,407.5 - parent: 1 + pos: -93.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14656 + color: '#990000FF' + - uid: 17980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -92.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14657 + color: '#990000FF' + - uid: 17981 components: - type: Transform rot: -1.5707963267948966 rad - pos: 311.5,414.5 - parent: 1 + pos: -90.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14658 + color: '#990000FF' + - uid: 17982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,410.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -89.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14670 + color: '#990000FF' + - uid: 17984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,424.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -87.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15210 + color: '#990000FF' + - uid: 17985 components: - type: Transform - pos: 345.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 + rot: -1.5707963267948966 rad + pos: -86.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15302 + color: '#990000FF' + - uid: 17986 components: - type: Transform - pos: 376.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15304 + rot: -1.5707963267948966 rad + pos: -85.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20382 + color: '#990000FF' + - uid: 17987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20185 + pos: -85.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20383 + color: '#0055CCFF' + - uid: 17992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20182 + pos: -96.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20384 + color: '#0055CCFF' + - uid: 17995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20184 + rot: 3.141592653589793 rad + pos: -28.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20385 + color: '#990000FF' + - uid: 17996 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20183 + pos: -93.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20386 + color: '#0055CCFF' + - uid: 17997 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20185 - - uid: 20684 + pos: -28.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20528 + pos: -94.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20685 + color: '#0055CCFF' + - uid: 18001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,2.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20529 + rot: -1.5707963267948966 rad + pos: -92.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20686 + color: '#990000FF' + - uid: 18002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20530 + rot: 3.141592653589793 rad + pos: -92.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21325 + color: '#0055CCFF' + - uid: 18004 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,24.5 - parent: 5072 + pos: -92.5,-22.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21475 + - uid: 18005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -92.5,-20.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 21492 + - uid: 18006 components: - type: Transform - pos: 7.5,26.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -91.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21543 + color: '#990000FF' + - uid: 18007 components: - type: Transform - pos: 4.5,30.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -91.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21547 + color: '#990000FF' + - uid: 18008 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 5072 + pos: -91.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21603 + color: '#990000FF' + - uid: 18009 components: - type: Transform - pos: 10.5,26.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -91.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21634 + color: '#990000FF' + - uid: 18010 components: - type: Transform - pos: 12.5,26.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -91.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 21768 + color: '#990000FF' + - uid: 18015 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,25.5 - parent: 5072 + pos: -83.5,-21.5 + parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 4410 + - uid: 18016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15333 + pos: -84.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6249 + color: '#0055CCFF' + - uid: 18017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15325 + rot: 1.5707963267948966 rad + pos: -85.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6292 - components: - - type: Transform - pos: 349.5,429.5 - parent: 1 - - uid: 7388 + color: '#0055CCFF' + - uid: 18018 components: - type: Transform rot: 1.5707963267948966 rad - pos: 317.5,422.5 - parent: 1 - - uid: 12249 + pos: -87.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 + rot: 1.5707963267948966 rad + pos: -89.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13161 + color: '#0055CCFF' + - uid: 18020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 + rot: 1.5707963267948966 rad + pos: -90.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13185 + color: '#0055CCFF' + - uid: 18021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15264 + rot: 1.5707963267948966 rad + pos: -88.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13203 + color: '#0055CCFF' + - uid: 18022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15258 + pos: -91.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13219 + color: '#0055CCFF' + - uid: 18023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 331.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15256 + pos: -82.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13220 + color: '#0055CCFF' + - uid: 18025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15259 + rot: 1.5707963267948966 rad + pos: -90.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13221 + color: '#990000FF' + - uid: 18026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 11580 + rot: 1.5707963267948966 rad + pos: -85.5,-56.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13299 + color: '#0055CCFF' + - uid: 18027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12032 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13300 + color: '#990000FF' + - uid: 18028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 + rot: 1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13301 + color: '#990000FF' + - uid: 18029 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15255 + pos: -21.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13339 + color: '#990000FF' + - uid: 18031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 + rot: -1.5707963267948966 rad + pos: -118.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13340 + color: '#990000FF' + - uid: 18033 components: - type: Transform rot: 3.141592653589793 rad - pos: 378.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15306 + pos: -91.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13363 + color: '#990000FF' + - uid: 18034 components: - type: Transform rot: 3.141592653589793 rad - pos: 395.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 + pos: -92.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13367 + color: '#0055CCFF' + - uid: 18035 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 + pos: -92.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13368 + color: '#0055CCFF' + - uid: 18036 components: - type: Transform rot: 3.141592653589793 rad - pos: 381.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15291 + pos: -92.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13369 + color: '#0055CCFF' + - uid: 18039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,381.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15301 + pos: -82.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13370 + color: '#0055CCFF' + - uid: 18040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15299 + pos: -84.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13371 + color: '#0055CCFF' + - uid: 18041 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15300 + pos: -83.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13372 + color: '#0055CCFF' + - uid: 18044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 389.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15493 + pos: -82.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13373 + color: '#0055CCFF' + - uid: 18047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,372.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15493 + pos: -88.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13449 + color: '#990000FF' + - uid: 18050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,406.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -82.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13450 + color: '#990000FF' + - uid: 18051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,409.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -83.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13451 + color: '#990000FF' + - uid: 18052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -81.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13453 + color: '#990000FF' + - uid: 18055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,416.5 - parent: 1 + pos: -81.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13483 + color: '#990000FF' + - uid: 18056 components: - type: Transform - pos: 379.5,422.5 - parent: 1 + pos: -81.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13484 + color: '#990000FF' + - uid: 18057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,419.5 - parent: 1 + pos: -81.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13491 + color: '#990000FF' + - uid: 18058 components: - type: Transform - pos: 363.5,421.5 - parent: 1 + pos: -82.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13501 + color: '#0055CCFF' + - uid: 18059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15260 + pos: -81.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13508 + color: '#0055CCFF' + - uid: 18064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,413.5 - parent: 1 + pos: -82.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13509 + color: '#0055CCFF' + - uid: 18065 components: - type: Transform rot: -1.5707963267948966 rad - pos: 373.5,409.5 - parent: 1 + pos: -81.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13510 + color: '#0055CCFF' + - uid: 18066 components: - type: Transform rot: -1.5707963267948966 rad - pos: 373.5,406.5 - parent: 1 + pos: -80.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13515 + color: '#0055CCFF' + - uid: 18067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 + rot: -1.5707963267948966 rad + pos: -78.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13516 + color: '#0055CCFF' + - uid: 18068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 377.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 22141 + pos: -77.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13536 + color: '#0055CCFF' + - uid: 18069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 + rot: -1.5707963267948966 rad + pos: -79.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13545 + color: '#0055CCFF' + - uid: 18075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15234 + pos: -80.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13547 + color: '#990000FF' + - uid: 18078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15233 + pos: -100.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13562 + color: '#990000FF' + - uid: 18081 components: - type: Transform rot: 3.141592653589793 rad - pos: 343.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15235 + pos: -114.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13572 + color: '#990000FF' + - uid: 18086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15232 + pos: -104.5,-33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13581 + color: '#0055CCFF' + - uid: 18087 components: - type: Transform - pos: 344.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1858 + pos: -104.5,-32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13582 + color: '#0055CCFF' + - uid: 18088 components: - type: Transform - pos: 341.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15231 + pos: -104.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13589 + color: '#0055CCFF' + - uid: 18089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15230 + pos: -104.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13593 + color: '#0055CCFF' + - uid: 18090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15229 + pos: -104.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13600 + color: '#0055CCFF' + - uid: 18091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15228 + pos: -90.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13615 + color: '#990000FF' + - uid: 18092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15406 + pos: -104.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13628 + color: '#0055CCFF' + - uid: 18093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15237 + pos: -104.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13641 + color: '#0055CCFF' + - uid: 18094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15405 + rot: -1.5707963267948966 rad + pos: -85.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13654 + color: '#0055CCFF' + - uid: 18095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15314 + pos: -104.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13666 + color: '#0055CCFF' + - uid: 18096 components: - type: Transform - pos: 358.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -98.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13667 + color: '#990000FF' + - uid: 18097 components: - type: Transform - pos: 356.5,381.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -89.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13668 + color: '#0055CCFF' + - uid: 18098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -90.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13670 + color: '#0055CCFF' + - uid: 18099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,378.5 - parent: 1 + pos: -103.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13684 + color: '#0055CCFF' + - uid: 18102 components: - type: Transform - pos: 372.5,388.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -103.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13726 + color: '#0055CCFF' + - uid: 18104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15297 + rot: -1.5707963267948966 rad + pos: -102.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13728 + color: '#0055CCFF' + - uid: 18105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15524 + rot: 3.141592653589793 rad + pos: -105.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13729 + color: '#0055CCFF' + - uid: 18107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15496 + pos: -75.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13735 + color: '#0055CCFF' + - uid: 18108 components: - type: Transform - pos: 408.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15497 + rot: -1.5707963267948966 rad + pos: -124.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13736 + color: '#0055CCFF' + - uid: 18109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 411.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15499 + pos: -50.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13742 + color: '#0055CCFF' + - uid: 18110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,372.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15494 + pos: -28.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13745 + color: '#990000FF' + - uid: 18111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,369.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15495 + pos: -51.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13751 + color: '#0055CCFF' + - uid: 18113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,367.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15498 + rot: 1.5707963267948966 rad + pos: -32.5,-47.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13760 + color: '#0055CCFF' + - uid: 18117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,375.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15503 + pos: -40.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13768 + color: '#0055CCFF' + - uid: 18118 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,367.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15501 + pos: -115.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13776 + color: '#0055CCFF' + - uid: 18119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,364.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15506 + pos: -86.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13777 + color: '#0055CCFF' + - uid: 18120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,363.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15505 + rot: -1.5707963267948966 rad + pos: -123.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13795 + color: '#990000FF' + - uid: 18121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,362.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 16102 + rot: -1.5707963267948966 rad + pos: -114.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13802 + color: '#990000FF' + - uid: 18122 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,359.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15509 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13806 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,360.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 + pos: -133.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13815 + color: '#990000FF' + - uid: 18125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,352.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15511 + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13827 + color: '#0055CCFF' + - uid: 18126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,354.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15512 + pos: -23.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13828 + color: '#990000FF' + - uid: 18127 components: - type: Transform - pos: 424.5,357.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15529 + rot: -1.5707963267948966 rad + pos: -85.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13837 + color: '#990000FF' + - uid: 18131 components: - type: Transform rot: 3.141592653589793 rad - pos: 351.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15262 + pos: -56.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13838 + color: '#0055CCFF' + - uid: 18132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15261 + pos: -100.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15263 - - uid: 13845 + color: '#990000FF' + - uid: 18133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,408.5 - parent: 1 + pos: -84.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13853 + color: '#990000FF' + - uid: 18134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,407.5 - parent: 1 - - uid: 13859 + pos: -85.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18136 components: - type: Transform - pos: 363.5,414.5 - parent: 1 - - uid: 13860 + pos: -41.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18138 components: - type: Transform - pos: 368.5,410.5 - parent: 1 - - uid: 13876 + pos: -23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18139 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 + pos: -47.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13881 + color: '#0055CCFF' + - uid: 18140 components: - type: Transform - pos: 392.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15393 + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13882 + color: '#990000FF' + - uid: 18142 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15391 + pos: -117.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13883 + color: '#0055CCFF' + - uid: 18143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15392 + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13887 + color: '#990000FF' + - uid: 18145 components: - type: Transform - pos: 395.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15390 + rot: 1.5707963267948966 rad + pos: -23.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13898 + color: '#990000FF' + - uid: 18147 components: - type: Transform rot: 3.141592653589793 rad - pos: 403.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15292 + pos: -15.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13901 + color: '#0055CCFF' + - uid: 18148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15385 + pos: -104.5,-54.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13905 + color: '#0055CCFF' + - uid: 18154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15323 + pos: -28.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13915 + color: '#990000FF' + - uid: 18156 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,413.5 - parent: 1 + pos: -45.5,-46.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13919 + color: '#0055CCFF' + - uid: 18157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 5375 + pos: -42.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13950 + color: '#990000FF' + - uid: 18159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15332 + pos: -103.5,-44.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13951 + color: '#990000FF' + - uid: 18161 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15330 + pos: -57.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13955 + color: '#990000FF' + - uid: 18162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 3703 + pos: -58.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13956 + color: '#0055CCFF' + - uid: 18163 components: - type: Transform - pos: 406.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 3703 + rot: -1.5707963267948966 rad + pos: -73.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13966 + color: '#990000FF' + - uid: 18164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15327 + pos: -58.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13967 + color: '#0055CCFF' + - uid: 18167 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,419.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15328 + pos: -90.5,-49.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13968 + color: '#990000FF' + - uid: 18168 components: - type: Transform - pos: 415.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15387 + rot: 3.141592653589793 rad + pos: -90.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13975 + color: '#990000FF' + - uid: 18171 components: - type: Transform - pos: 408.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15322 + rot: 3.141592653589793 rad + pos: -47.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13981 + color: '#990000FF' + - uid: 18172 components: - type: Transform - pos: 411.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15321 + rot: 1.5707963267948966 rad + pos: -51.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 13993 + color: '#0055CCFF' + - uid: 18175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,391.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15376 + pos: -100.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14000 + color: '#990000FF' + - uid: 18177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,389.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15375 + rot: 1.5707963267948966 rad + pos: -96.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14003 + color: '#990000FF' + - uid: 18179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,388.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15368 + pos: -99.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14008 + color: '#990000FF' + - uid: 18180 components: - type: Transform - pos: 407.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15369 + rot: 1.5707963267948966 rad + pos: -98.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14015 + color: '#990000FF' + - uid: 18181 components: - type: Transform - pos: 409.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 + pos: -56.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14016 + color: '#0055CCFF' + - uid: 18184 components: - type: Transform - pos: 411.5,380.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15371 + pos: -99.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14030 + color: '#0055CCFF' + - uid: 18185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15370 + pos: -99.5,-36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14031 + color: '#0055CCFF' + - uid: 18187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,379.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15372 - - 15373 + rot: -1.5707963267948966 rad + pos: -98.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14042 + color: '#0055CCFF' + - uid: 18188 components: - type: Transform - pos: 419.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15374 + rot: 3.141592653589793 rad + pos: -65.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14053 + color: '#0055CCFF' + - uid: 18189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 + pos: -58.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14078 + color: '#0055CCFF' + - uid: 18190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15367 + rot: 3.141592653589793 rad + pos: -99.5,-38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14079 + color: '#0055CCFF' + - uid: 18191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15366 + pos: -104.5,-52.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14092 + color: '#0055CCFF' + - uid: 18192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15338 + rot: 3.141592653589793 rad + pos: -45.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14102 + color: '#0055CCFF' + - uid: 18193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15337 + rot: -1.5707963267948966 rad + pos: -102.5,-45.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14108 + color: '#0055CCFF' + - uid: 18194 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15340 + pos: -94.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14115 + color: '#0055CCFF' + - uid: 18199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15339 + rot: 1.5707963267948966 rad + pos: -63.5,-57.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14120 + color: '#990000FF' + - uid: 18202 components: - type: Transform - pos: 427.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15341 + rot: 1.5707963267948966 rad + pos: -119.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14126 + color: '#990000FF' + - uid: 18204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 431.5,407.5 - parent: 1 + pos: -119.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14133 + color: '#0055CCFF' + - uid: 18205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15350 + rot: -1.5707963267948966 rad + pos: -110.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14140 + color: '#990000FF' + - uid: 18206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 442.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15351 + pos: -111.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14149 + color: '#990000FF' + - uid: 18209 components: - type: Transform - pos: 443.5,411.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 6311 + rot: 1.5707963267948966 rad + pos: -111.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14156 + color: '#0055CCFF' + - uid: 18210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 436.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 13307 + pos: -112.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14158 + color: '#0055CCFF' + - uid: 18211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 442.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15352 + pos: -113.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14166 + color: '#0055CCFF' + - uid: 18213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,406.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + pos: -114.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14177 + color: '#0055CCFF' + - uid: 18214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 450.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15354 + pos: -110.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14185 + color: '#0055CCFF' + - uid: 18215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 452.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15359 + pos: -110.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14196 + color: '#0055CCFF' + - uid: 18216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 455.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15358 + pos: -110.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14199 + color: '#0055CCFF' + - uid: 18217 components: - type: Transform - pos: 458.5,415.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15357 + pos: -109.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14211 + color: '#990000FF' + - uid: 18218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 458.5,404.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + pos: -109.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14212 + color: '#990000FF' + - uid: 18219 + components: + - type: Transform + pos: -109.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 462.5,407.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15356 + pos: -113.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14230 + color: '#990000FF' + - uid: 18224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15360 + rot: -1.5707963267948966 rad + pos: -122.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14231 + color: '#990000FF' + - uid: 18226 components: - type: Transform - pos: 450.5,422.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15361 + rot: -1.5707963267948966 rad + pos: -121.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14232 + color: '#990000FF' + - uid: 18227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,421.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15364 + rot: -1.5707963267948966 rad + pos: -110.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14238 + color: '#990000FF' + - uid: 18228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,409.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15336 + rot: -1.5707963267948966 rad + pos: -111.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14259 + color: '#990000FF' + - uid: 18229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 + rot: -1.5707963267948966 rad + pos: -112.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14260 + color: '#990000FF' + - uid: 18231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,402.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15349 + rot: -1.5707963267948966 rad + pos: -115.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14261 + color: '#990000FF' + - uid: 18232 components: - type: Transform rot: -1.5707963267948966 rad - pos: 431.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15346 + pos: -116.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14262 + color: '#990000FF' + - uid: 18233 components: - type: Transform rot: -1.5707963267948966 rad - pos: 431.5,397.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15347 + pos: -117.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14263 + color: '#990000FF' + - uid: 18234 components: - type: Transform rot: -1.5707963267948966 rad - pos: 431.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15348 + pos: -118.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14276 + color: '#990000FF' + - uid: 18235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15254 + rot: -1.5707963267948966 rad + pos: -129.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14277 + color: '#0055CCFF' + - uid: 18236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,399.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15409 + rot: -1.5707963267948966 rad + pos: -130.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14334 + color: '#0055CCFF' + - uid: 18237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 331.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15238 + pos: -126.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14335 + color: '#0055CCFF' + - uid: 18238 components: - type: Transform - pos: 327.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15253 + rot: -1.5707963267948966 rad + pos: -131.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14336 + color: '#0055CCFF' + - uid: 18239 components: - type: Transform - pos: 321.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15252 + rot: -1.5707963267948966 rad + pos: -113.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14337 + color: '#0055CCFF' + - uid: 18240 components: - type: Transform - pos: 315.5,387.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15250 + rot: -1.5707963267948966 rad + pos: -121.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14338 + color: '#0055CCFF' + - uid: 18242 components: - type: Transform rot: -1.5707963267948966 rad - pos: 306.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15249 + pos: -122.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14339 + color: '#0055CCFF' + - uid: 18243 components: - type: Transform - pos: 312.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15247 + rot: -1.5707963267948966 rad + pos: -123.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14340 + color: '#0055CCFF' + - uid: 18244 components: - type: Transform - pos: 316.5,383.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15248 + rot: -1.5707963267948966 rad + pos: -125.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14341 + color: '#0055CCFF' + - uid: 18245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,386.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15251 + rot: -1.5707963267948966 rad + pos: -127.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14365 + color: '#0055CCFF' + - uid: 18247 components: - type: Transform - pos: 327.5,440.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15319 + rot: -1.5707963267948966 rad + pos: -128.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14374 + color: '#0055CCFF' + - uid: 18248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,416.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15266 + rot: -1.5707963267948966 rad + pos: -111.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14376 + color: '#0055CCFF' + - uid: 18249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,426.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15265 + rot: -1.5707963267948966 rad + pos: -112.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14383 + color: '#0055CCFF' + - uid: 18250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,410.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15257 + rot: -1.5707963267948966 rad + pos: -114.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14423 + color: '#0055CCFF' + - uid: 18252 components: - type: Transform rot: -1.5707963267948966 rad - pos: 400.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15324 + pos: -116.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14424 + color: '#0055CCFF' + - uid: 18253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,413.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15334 + rot: -1.5707963267948966 rad + pos: -117.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14425 + color: '#0055CCFF' + - uid: 18254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,414.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15335 + rot: -1.5707963267948966 rad + pos: -118.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14435 + color: '#0055CCFF' + - uid: 18257 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,401.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15294 - - 15295 + pos: -126.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14437 + color: '#990000FF' + - uid: 18258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 - - 15297 + rot: -1.5707963267948966 rad + pos: -124.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14440 + color: '#990000FF' + - uid: 18259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15295 + rot: -1.5707963267948966 rad + pos: -125.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14449 + color: '#990000FF' + - uid: 18262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,394.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15344 + rot: -1.5707963267948966 rad + pos: -129.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14465 + color: '#990000FF' + - uid: 18263 components: - type: Transform rot: -1.5707963267948966 rad - pos: 457.5,412.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15353 + pos: -130.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14479 + color: '#990000FF' + - uid: 18264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 431.5,405.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15345 + pos: -131.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14498 + color: '#990000FF' + - uid: 18265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,371.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15502 + pos: -132.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14501 + color: '#990000FF' + - uid: 18266 components: - type: Transform rot: -1.5707963267948966 rad - pos: 418.5,370.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15500 + pos: -132.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14531 + color: '#0055CCFF' + - uid: 18267 components: - type: Transform rot: -1.5707963267948966 rad - pos: 361.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 12120 + pos: -133.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14556 + color: '#0055CCFF' + - uid: 18269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,393.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15309 + rot: 3.141592653589793 rad + pos: -134.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14557 + color: '#0055CCFF' + - uid: 18270 components: - type: Transform - pos: 366.5,398.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15307 + rot: 3.141592653589793 rad + pos: -134.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14558 + color: '#0055CCFF' + - uid: 18271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,395.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15311 + rot: 3.141592653589793 rad + pos: -134.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14559 + color: '#0055CCFF' + - uid: 18272 components: - type: Transform rot: 3.141592653589793 rad - pos: 371.5,392.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15310 + pos: -134.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14563 + color: '#0055CCFF' + - uid: 18273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,385.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15313 + rot: 3.141592653589793 rad + pos: -134.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14572 + color: '#0055CCFF' + - uid: 18274 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15236 + pos: -133.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14590 + color: '#990000FF' + - uid: 18276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,390.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15530 + rot: 3.141592653589793 rad + pos: -133.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14603 + color: '#990000FF' + - uid: 18277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,416.5 - parent: 1 + pos: -87.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14706 + color: '#0055CCFF' + - uid: 18279 components: - type: Transform - pos: 313.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14708 + color: '#990000FF' + - uid: 18280 components: - type: Transform rot: 3.141592653589793 rad - pos: 303.5,407.5 - parent: 1 + pos: -133.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14709 + color: '#990000FF' + - uid: 18281 components: - type: Transform rot: 3.141592653589793 rad - pos: 310.5,408.5 - parent: 1 + pos: -133.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14710 + color: '#990000FF' + - uid: 18282 components: - type: Transform rot: 3.141592653589793 rad - pos: 307.5,406.5 - parent: 1 + pos: -133.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14715 + color: '#990000FF' + - uid: 18283 components: - type: Transform rot: 3.141592653589793 rad - pos: 308.5,413.5 - parent: 1 + pos: -133.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14726 + color: '#990000FF' + - uid: 18284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14745 + color: '#990000FF' + - uid: 18285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,421.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14746 + color: '#990000FF' + - uid: 18286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,421.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -133.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14759 + color: '#990000FF' + - uid: 18287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,413.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14761 + color: '#0055CCFF' + - uid: 18288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 309.5,411.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14770 + color: '#0055CCFF' + - uid: 18289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14772 + color: '#0055CCFF' + - uid: 18290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,416.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -134.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14774 + color: '#0055CCFF' + - uid: 18292 components: - type: Transform rot: 3.141592653589793 rad - pos: 308.5,420.5 - parent: 1 + pos: -134.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15211 + color: '#0055CCFF' + - uid: 18293 components: - type: Transform rot: 3.141592653589793 rad - pos: 346.5,403.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15222 + pos: -134.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15224 + color: '#0055CCFF' + - uid: 18294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,400.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15226 + rot: 3.141592653589793 rad + pos: -134.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15303 + color: '#0055CCFF' + - uid: 18295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,396.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15304 + rot: 3.141592653589793 rad + pos: -134.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20018 + color: '#0055CCFF' + - uid: 18297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,384.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 15373 + rot: 3.141592653589793 rad + pos: -134.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20387 + color: '#0055CCFF' + - uid: 18298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20183 + rot: 3.141592653589793 rad + pos: -134.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20388 + color: '#0055CCFF' + - uid: 18299 components: - type: Transform - pos: 0.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20182 + rot: 3.141592653589793 rad + pos: -134.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20389 + color: '#0055CCFF' + - uid: 18300 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20185 + pos: -134.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20390 + color: '#0055CCFF' + - uid: 18301 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20184 + pos: -134.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20391 + color: '#0055CCFF' + - uid: 18302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 20181 - - type: DeviceNetwork - deviceLists: - - 20185 + rot: 3.141592653589793 rad + pos: -133.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20687 + color: '#990000FF' + - uid: 18303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20529 + rot: 3.141592653589793 rad + pos: -133.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20688 + color: '#990000FF' + - uid: 18304 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20530 + pos: -133.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20689 + color: '#990000FF' + - uid: 18305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 20527 - - type: DeviceNetwork - deviceLists: - - 20528 + rot: 3.141592653589793 rad + pos: -133.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21314 + color: '#990000FF' + - uid: 18306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -133.5,-8.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21380 + - uid: 18307 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,23.5 - parent: 5072 + pos: -133.5,-7.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21438 + - uid: 18308 components: - type: Transform - pos: 7.5,19.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -133.5,-6.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21461 + - uid: 18310 components: - type: Transform - pos: 2.5,30.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -133.5,-11.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21483 + - uid: 18311 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,23.5 - parent: 5072 + pos: -133.5,-4.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21584 + - uid: 18312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,17.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -133.5,-2.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 21784 + - uid: 18313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,24.5 - parent: 5072 + rot: 3.141592653589793 rad + pos: -133.5,-1.5 + parent: 2 - type: AtmosPipeColor color: '#990000FF' -- proto: GeneratorBasic15kW - entities: - - uid: 6411 + - uid: 18314 components: - type: Transform - pos: 306.5,420.5 - parent: 1 - - type: PowerSupplier - supplyRate: 30000 - - uid: 17406 + rot: 3.141592653589793 rad + pos: -133.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18315 components: - type: Transform - pos: 499.5,386.5 - parent: 1 - - uid: 20690 + rot: 3.141592653589793 rad + pos: -133.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18316 components: - type: Transform - pos: 0.5,7.5 - parent: 20527 - - uid: 21268 + rot: 3.141592653589793 rad + pos: -134.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18319 components: - type: Transform - pos: 0.5,1.5 - parent: 16114 - - type: PowerSupplier - supplyRate: 25000 -- proto: GeneratorRTG - entities: - - uid: 5856 + rot: 3.141592653589793 rad + pos: -134.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18320 components: - type: Transform - pos: 309.5,384.5 - parent: 1 - - uid: 20392 + rot: 3.141592653589793 rad + pos: -134.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18321 components: - type: Transform - pos: 5.5,-1.5 - parent: 20181 - - uid: 20393 + rot: 3.141592653589793 rad + pos: -134.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18322 components: - type: Transform - pos: 5.5,-2.5 - parent: 20181 -- proto: GeneratorRTGDamaged - entities: - - uid: 5897 + rot: 3.141592653589793 rad + pos: -134.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18323 components: - type: Transform - pos: 350.5,407.5 - parent: 1 - - uid: 18597 + rot: 3.141592653589793 rad + pos: -134.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18324 components: - type: Transform - pos: 349.5,434.5 - parent: 1 -- proto: GenericTank - entities: - - uid: 18605 + rot: 3.141592653589793 rad + pos: -134.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18325 components: - type: Transform - pos: 346.5,435.5 - parent: 1 -- proto: Girder - entities: - - uid: 17371 + rot: 3.141592653589793 rad + pos: -134.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18326 components: - type: Transform - pos: 479.5,375.5 - parent: 1 - - uid: 17467 + rot: 3.141592653589793 rad + pos: -134.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18327 components: - type: Transform - pos: 505.5,393.5 - parent: 1 - - uid: 17651 + rot: 3.141592653589793 rad + pos: -134.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18328 components: - type: Transform - pos: 501.5,396.5 - parent: 1 - - uid: 18243 + rot: 3.141592653589793 rad + pos: -133.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18329 components: - type: Transform - pos: 326.5,436.5 - parent: 1 - - uid: 18669 + rot: 3.141592653589793 rad + pos: -133.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18330 components: - type: Transform - pos: 326.5,432.5 - parent: 1 - - uid: 21727 + rot: 3.141592653589793 rad + pos: -133.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18331 components: - type: Transform - pos: -5.5,26.5 - parent: 5072 -- proto: GravityGenerator - entities: - - uid: 1066 + rot: 3.141592653589793 rad + pos: -133.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18332 components: - type: Transform - pos: 367.5,422.5 - parent: 1 -- proto: GravityGeneratorMini - entities: - - uid: 16166 + rot: 3.141592653589793 rad + pos: -133.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18333 components: - type: Transform - pos: 1.5,2.5 - parent: 16114 - - uid: 20394 + rot: 3.141592653589793 rad + pos: -133.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18334 components: - type: Transform - pos: 8.5,1.5 - parent: 20181 - - uid: 20691 + rot: 3.141592653589793 rad + pos: -133.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18335 components: - type: Transform - pos: 2.5,8.5 - parent: 20527 -- proto: GrenadeFoamDart - entities: - - uid: 4079 + rot: 3.141592653589793 rad + pos: -133.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18336 components: - type: Transform - parent: 1369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 4530 + rot: 3.141592653589793 rad + pos: -133.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18337 components: - type: Transform - parent: 1369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5059 + rot: 3.141592653589793 rad + pos: -133.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18338 components: - type: Transform - parent: 1369 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Grille - entities: - - uid: 501 + rot: 3.141592653589793 rad + pos: -133.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18339 components: - type: Transform - pos: 324.5,448.5 - parent: 1 - - uid: 576 + rot: 3.141592653589793 rad + pos: -134.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,440.5 - parent: 1 - - uid: 787 + rot: 3.141592653589793 rad + pos: -134.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18344 components: - type: Transform rot: 3.141592653589793 rad - pos: 318.5,423.5 - parent: 1 - - uid: 964 + pos: -134.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18345 components: - type: Transform - pos: 420.5,414.5 - parent: 1 - - uid: 965 + rot: 3.141592653589793 rad + pos: -134.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18346 components: - type: Transform - pos: 428.5,416.5 - parent: 1 - - uid: 966 + rot: 3.141592653589793 rad + pos: -134.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18347 components: - type: Transform - pos: 430.5,413.5 - parent: 1 - - uid: 1012 + rot: 3.141592653589793 rad + pos: -134.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18350 components: - type: Transform - pos: 422.5,416.5 - parent: 1 - - uid: 1089 + rot: 3.141592653589793 rad + pos: -134.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18351 components: - type: Transform rot: 3.141592653589793 rad - pos: 417.5,410.5 - parent: 1 - - uid: 1090 + pos: -133.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18352 components: - type: Transform rot: 3.141592653589793 rad - pos: 417.5,408.5 - parent: 1 - - uid: 1354 + pos: -133.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,391.5 - parent: 1 - - uid: 1365 + rot: 3.141592653589793 rad + pos: -133.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 506.5,378.5 - parent: 1 - - uid: 1457 + rot: 3.141592653589793 rad + pos: -133.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,383.5 - parent: 1 - - uid: 2476 + rot: 3.141592653589793 rad + pos: -133.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,406.5 - parent: 1 - - uid: 2487 + rot: 3.141592653589793 rad + pos: -133.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 373.5,380.5 - parent: 1 - - uid: 2488 + pos: -125.5,1.5 + parent: 2 + - uid: 18371 components: - type: Transform - pos: 373.5,395.5 - parent: 1 - - uid: 2503 + pos: -118.5,6.5 + parent: 2 + - uid: 18372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,381.5 - parent: 1 - - uid: 2531 + rot: -1.5707963267948966 rad + pos: -113.5,9.5 + parent: 2 + - uid: 18373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,395.5 - parent: 1 - - uid: 2591 + pos: -118.5,5.5 + parent: 2 + - uid: 18375 components: - type: Transform - pos: 359.5,431.5 - parent: 1 - - uid: 2856 + rot: -1.5707963267948966 rad + pos: -119.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,352.5 - parent: 1 - - uid: 2863 + pos: -122.5,10.5 + parent: 2 + - uid: 18380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 436.5,389.5 - parent: 1 - - uid: 2931 - components: - - type: Transform - pos: 453.5,418.5 - parent: 1 - - uid: 3154 + pos: -124.5,3.5 + parent: 2 + - uid: 18388 components: - type: Transform - pos: 420.5,413.5 - parent: 1 - - uid: 3155 + pos: -126.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18390 components: - type: Transform - pos: 420.5,415.5 - parent: 1 - - uid: 3156 + rot: -1.5707963267948966 rad + pos: -124.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18391 components: - type: Transform - pos: 420.5,416.5 - parent: 1 - - uid: 3157 + rot: -1.5707963267948966 rad + pos: -123.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18392 components: - type: Transform - pos: 421.5,416.5 - parent: 1 - - uid: 3158 + rot: -1.5707963267948966 rad + pos: -121.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18393 components: - type: Transform - pos: 423.5,416.5 - parent: 1 - - uid: 3159 + rot: -1.5707963267948966 rad + pos: -122.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18394 components: - type: Transform - pos: 424.5,416.5 - parent: 1 - - uid: 3160 + rot: -1.5707963267948966 rad + pos: -120.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18395 components: - type: Transform - pos: 425.5,416.5 - parent: 1 - - uid: 3161 + rot: -1.5707963267948966 rad + pos: -121.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18396 components: - type: Transform - pos: 426.5,416.5 - parent: 1 - - uid: 3162 + rot: -1.5707963267948966 rad + pos: -123.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18397 components: - type: Transform - pos: 427.5,416.5 - parent: 1 - - uid: 3164 + rot: -1.5707963267948966 rad + pos: -124.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18398 components: - type: Transform - pos: 429.5,416.5 - parent: 1 - - uid: 3165 + rot: -1.5707963267948966 rad + pos: -125.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18399 components: - type: Transform - pos: 430.5,416.5 - parent: 1 - - uid: 3167 + rot: -1.5707963267948966 rad + pos: -122.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18400 components: - type: Transform - pos: 430.5,415.5 - parent: 1 - - uid: 3169 + rot: -1.5707963267948966 rad + pos: -95.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18401 components: - type: Transform - pos: 430.5,412.5 - parent: 1 - - uid: 3170 + rot: -1.5707963267948966 rad + pos: -96.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18773 components: - type: Transform - pos: 430.5,411.5 - parent: 1 - - uid: 3171 + rot: 1.5707963267948966 rad + pos: -86.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18801 components: - type: Transform - pos: 430.5,410.5 - parent: 1 - - uid: 3172 + rot: -1.5707963267948966 rad + pos: -119.5,10.5 + parent: 2 + - uid: 18829 components: - type: Transform - pos: 430.5,414.5 - parent: 1 - - uid: 3862 + rot: -1.5707963267948966 rad + pos: -88.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,382.5 - parent: 1 - - uid: 3872 + pos: -88.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,368.5 - parent: 1 - - uid: 3873 + pos: -91.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,368.5 - parent: 1 - - uid: 3874 + pos: -88.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,368.5 - parent: 1 - - uid: 3875 + rot: 3.141592653589793 rad + pos: -115.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,368.5 - parent: 1 - - uid: 3876 + rot: 3.141592653589793 rad + pos: -115.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,368.5 - parent: 1 - - uid: 3877 + rot: 3.141592653589793 rad + pos: -115.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,368.5 - parent: 1 - - uid: 3878 + rot: -1.5707963267948966 rad + pos: -113.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,370.5 - parent: 1 - - uid: 3879 + rot: -1.5707963267948966 rad + pos: -112.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,371.5 - parent: 1 - - uid: 3880 + rot: -1.5707963267948966 rad + pos: -110.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,372.5 - parent: 1 - - uid: 3881 + rot: -1.5707963267948966 rad + pos: -111.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,374.5 - parent: 1 - - uid: 3882 + rot: -1.5707963267948966 rad + pos: -97.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,373.5 - parent: 1 - - uid: 3883 + pos: -114.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,376.5 - parent: 1 - - uid: 3884 + rot: -1.5707963267948966 rad + pos: -112.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,376.5 - parent: 1 - - uid: 3885 + rot: 3.141592653589793 rad + pos: -114.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,376.5 - parent: 1 - - uid: 3886 + pos: -100.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,376.5 - parent: 1 - - uid: 3887 + rot: -1.5707963267948966 rad + pos: -114.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,375.5 - parent: 1 - - uid: 3888 + rot: 3.141592653589793 rad + pos: -114.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,375.5 - parent: 1 - - uid: 3889 + rot: -1.5707963267948966 rad + pos: -113.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,372.5 - parent: 1 - - uid: 3890 + rot: 3.141592653589793 rad + pos: -114.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,370.5 - parent: 1 - - uid: 3891 + rot: 3.141592653589793 rad + pos: -114.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,369.5 - parent: 1 - - uid: 3892 + rot: -1.5707963267948966 rad + pos: -112.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5,370.5 - parent: 1 - - uid: 3895 + pos: -118.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,383.5 - parent: 1 - - uid: 3896 + rot: -1.5707963267948966 rad + pos: -116.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,384.5 - parent: 1 - - uid: 3897 + rot: -1.5707963267948966 rad + pos: -109.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,384.5 - parent: 1 - - uid: 3898 + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18873 components: - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,389.5 - parent: 1 - - uid: 3899 + pos: -126.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,390.5 - parent: 1 - - uid: 3900 + pos: -119.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,392.5 - parent: 1 - - uid: 3901 + pos: -103.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,391.5 - parent: 1 - - uid: 3902 + rot: -1.5707963267948966 rad + pos: -98.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,392.5 - parent: 1 - - uid: 3903 + pos: -87.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,394.5 - parent: 1 - - uid: 3904 + pos: -114.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,394.5 - parent: 1 - - uid: 3905 + pos: -114.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,394.5 - parent: 1 - - uid: 3907 + pos: -114.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,394.5 - parent: 1 - - uid: 3909 + pos: -114.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,398.5 - parent: 1 - - uid: 3910 + pos: -114.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,398.5 - parent: 1 - - uid: 3911 + pos: -114.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,398.5 - parent: 1 - - uid: 3912 + pos: -114.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,398.5 - parent: 1 - - uid: 3913 + pos: -113.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18896 components: - type: Transform rot: 1.5707963267948966 rad - pos: 397.5,398.5 - parent: 1 - - uid: 3914 + pos: -111.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 396.5,398.5 - parent: 1 - - uid: 3915 + pos: -110.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 395.5,401.5 - parent: 1 - - uid: 3916 + pos: -109.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 397.5,401.5 - parent: 1 - - uid: 3917 + pos: -112.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 396.5,401.5 - parent: 1 - - uid: 3918 + rot: -1.5707963267948966 rad + pos: -120.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 388.5,401.5 - parent: 1 - - uid: 3919 + pos: -126.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,401.5 - parent: 1 - - uid: 3920 + rot: 3.141592653589793 rad + pos: -127.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,401.5 - parent: 1 - - uid: 3921 + rot: -1.5707963267948966 rad + pos: -126.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,401.5 - parent: 1 - - uid: 3922 + pos: -67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,401.5 - parent: 1 - - uid: 3923 + rot: 3.141592653589793 rad + pos: -28.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,401.5 - parent: 1 - - uid: 3924 + pos: -104.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,398.5 - parent: 1 - - uid: 3925 + pos: -23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,398.5 - parent: 1 - - uid: 3926 + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,398.5 - parent: 1 - - uid: 3929 + pos: -33.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,394.5 - parent: 1 - - uid: 3930 + pos: -24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,394.5 - parent: 1 - - uid: 3931 + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,394.5 - parent: 1 - - uid: 3932 + pos: -20.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,392.5 - parent: 1 - - uid: 3934 + rot: 3.141592653589793 rad + pos: -33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,377.5 - parent: 1 - - uid: 3935 + pos: -58.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,381.5 - parent: 1 - - uid: 3936 + rot: 3.141592653589793 rad + pos: -47.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,377.5 - parent: 1 - - uid: 3937 + rot: -1.5707963267948966 rad + pos: -45.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,377.5 - parent: 1 - - uid: 3938 + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,377.5 - parent: 1 - - uid: 3939 + rot: -1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,377.5 - parent: 1 - - uid: 3940 + rot: -1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,376.5 - parent: 1 - - uid: 3941 + rot: 3.141592653589793 rad + pos: -83.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,374.5 - parent: 1 - - uid: 3942 + pos: -123.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18958 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,373.5 - parent: 1 - - uid: 3943 + pos: -124.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,367.5 - parent: 1 - - uid: 3944 + rot: -1.5707963267948966 rad + pos: -133.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,368.5 - parent: 1 - - uid: 3945 + rot: 3.141592653589793 rad + pos: -137.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,370.5 - parent: 1 - - uid: 3946 + rot: 3.141592653589793 rad + pos: -134.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18966 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,371.5 - parent: 1 - - uid: 3947 + pos: -142.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,377.5 - parent: 1 - - uid: 3948 + rot: 3.141592653589793 rad + pos: -137.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,377.5 - parent: 1 - - uid: 3949 + rot: -1.5707963267948966 rad + pos: -138.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,377.5 - parent: 1 - - uid: 3950 + rot: 3.141592653589793 rad + pos: -134.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,377.5 - parent: 1 - - uid: 3951 + rot: 3.141592653589793 rad + pos: -133.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,377.5 - parent: 1 - - uid: 3952 + pos: -77.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,377.5 - parent: 1 - - uid: 3953 + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,394.5 - parent: 1 - - uid: 3962 + pos: -104.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,394.5 - parent: 1 - - uid: 3965 + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,397.5 - parent: 1 - - uid: 3966 + pos: -51.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,398.5 - parent: 1 - - uid: 3967 + rot: -1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,398.5 - parent: 1 - - uid: 3968 + pos: -103.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,400.5 - parent: 1 - - uid: 3969 + pos: -124.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 19174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,401.5 - parent: 1 - - uid: 3970 + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,400.5 - parent: 1 - - uid: 3971 + rot: -1.5707963267948966 rad + pos: -71.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,401.5 - parent: 1 - - uid: 3976 + rot: -1.5707963267948966 rad + pos: -77.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,405.5 - parent: 1 - - uid: 3977 + rot: -1.5707963267948966 rad + pos: -136.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,405.5 - parent: 1 - - uid: 3978 + rot: -1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,412.5 - parent: 1 - - uid: 3983 + pos: -140.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,405.5 - parent: 1 - - uid: 3984 + pos: -142.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,405.5 - parent: 1 - - uid: 3987 + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19309 components: - type: Transform rot: 1.5707963267948966 rad - pos: 402.5,407.5 - parent: 1 - - uid: 3988 + pos: -144.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5,407.5 - parent: 1 - - uid: 3989 + pos: -145.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5,410.5 - parent: 1 - - uid: 3991 + pos: -146.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,409.5 - parent: 1 - - uid: 3992 + pos: -148.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,408.5 - parent: 1 - - uid: 3993 + pos: -150.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,407.5 - parent: 1 - - uid: 3994 + pos: -152.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,412.5 - parent: 1 - - uid: 3995 + pos: -153.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 409.5,412.5 - parent: 1 - - uid: 3996 + pos: -147.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,413.5 - parent: 1 - - uid: 3997 + pos: -53.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,412.5 - parent: 1 - - uid: 3998 + rot: -1.5707963267948966 rad + pos: -44.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,412.5 - parent: 1 - - uid: 3999 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,420.5 - parent: 1 - - uid: 4000 + rot: -1.5707963267948966 rad + pos: -83.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,422.5 - parent: 1 - - uid: 4001 + rot: -1.5707963267948966 rad + pos: -93.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,417.5 - parent: 1 - - uid: 4002 + rot: -1.5707963267948966 rad + pos: -78.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,416.5 - parent: 1 - - uid: 4003 + rot: 3.141592653589793 rad + pos: -81.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,418.5 - parent: 1 - - uid: 4004 + pos: -83.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19353 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,413.5 - parent: 1 - - uid: 4005 + pos: -87.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,421.5 - parent: 1 - - uid: 4006 + pos: -87.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,421.5 - parent: 1 - - uid: 4007 + rot: 3.141592653589793 rad + pos: -75.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 393.5,413.5 - parent: 1 - - uid: 4008 + pos: -118.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,411.5 - parent: 1 - - uid: 4009 + rot: -1.5707963267948966 rad + pos: -73.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,413.5 - parent: 1 - - uid: 4010 + rot: -1.5707963267948966 rad + pos: -122.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,414.5 - parent: 1 - - uid: 4011 + pos: -140.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,405.5 - parent: 1 - - uid: 4012 + pos: -107.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,405.5 - parent: 1 - - uid: 4013 + rot: -1.5707963267948966 rad + pos: -117.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 379.5,405.5 - parent: 1 - - uid: 4014 + rot: -1.5707963267948966 rad + pos: -100.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,411.5 - parent: 1 - - uid: 4015 + pos: -94.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,413.5 - parent: 1 - - uid: 4016 + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,414.5 - parent: 1 - - uid: 4017 + rot: -1.5707963267948966 rad + pos: -97.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19564 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,416.5 - parent: 1 - - uid: 4018 + pos: -78.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19565 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,416.5 - parent: 1 - - uid: 4019 + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,408.5 - parent: 1 - - uid: 4020 + rot: -1.5707963267948966 rad + pos: -117.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19567 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,407.5 - parent: 1 - - uid: 4021 + pos: -115.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 363.5,412.5 - parent: 1 - - uid: 4022 + pos: -104.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19572 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,419.5 - parent: 1 - - uid: 4023 + pos: -97.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,422.5 - parent: 1 - - uid: 4024 + rot: -1.5707963267948966 rad + pos: -81.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,422.5 - parent: 1 - - uid: 4025 + pos: -30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,423.5 - parent: 1 - - uid: 4026 + rot: -1.5707963267948966 rad + pos: -109.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,424.5 - parent: 1 - - uid: 4027 + rot: 3.141592653589793 rad + pos: -93.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,424.5 - parent: 1 - - uid: 4028 + rot: 3.141592653589793 rad + pos: -93.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,424.5 - parent: 1 - - uid: 4029 + rot: 3.141592653589793 rad + pos: -93.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19592 components: - type: Transform rot: 1.5707963267948966 rad - pos: 377.5,425.5 - parent: 1 - - uid: 4030 + pos: -94.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 379.5,425.5 - parent: 1 - - uid: 4031 + pos: -95.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,425.5 - parent: 1 - - uid: 4032 + pos: -97.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19595 components: - type: Transform rot: 1.5707963267948966 rad - pos: 381.5,425.5 - parent: 1 - - uid: 4033 + pos: -98.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 378.5,425.5 - parent: 1 - - uid: 4034 + pos: -96.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,424.5 - parent: 1 - - uid: 4035 + pos: -94.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,424.5 - parent: 1 - - uid: 4036 + rot: -1.5707963267948966 rad + pos: -95.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,424.5 - parent: 1 - - uid: 4037 + rot: -1.5707963267948966 rad + pos: -96.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,423.5 - parent: 1 - - uid: 4038 + rot: -1.5707963267948966 rad + pos: -98.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,422.5 - parent: 1 - - uid: 4039 + rot: -1.5707963267948966 rad + pos: -99.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 386.5,422.5 - parent: 1 - - uid: 4040 + rot: -1.5707963267948966 rad + pos: -100.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,419.5 - parent: 1 - - uid: 4041 + rot: -1.5707963267948966 rad + pos: -97.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,420.5 - parent: 1 - - uid: 4042 + rot: -1.5707963267948966 rad + pos: -108.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 379.5,420.5 - parent: 1 - - uid: 4043 + pos: -29.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,420.5 - parent: 1 - - uid: 4044 + rot: -1.5707963267948966 rad + pos: -106.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,420.5 - parent: 1 - - uid: 4045 + rot: -1.5707963267948966 rad + pos: -104.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,420.5 - parent: 1 - - uid: 4046 + rot: 3.141592653589793 rad + pos: -94.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,419.5 - parent: 1 - - uid: 4047 + rot: 3.141592653589793 rad + pos: -94.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,401.5 - parent: 1 - - uid: 4048 + rot: 3.141592653589793 rad + pos: -94.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,401.5 - parent: 1 - - uid: 4049 + rot: 3.141592653589793 rad + pos: -94.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,401.5 - parent: 1 - - uid: 4050 + rot: 3.141592653589793 rad + pos: -94.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,401.5 - parent: 1 - - uid: 4051 + rot: 3.141592653589793 rad + pos: -94.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,401.5 - parent: 1 - - uid: 4052 + rot: 3.141592653589793 rad + pos: -93.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,401.5 - parent: 1 - - uid: 4053 + rot: 3.141592653589793 rad + pos: -93.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,401.5 - parent: 1 - - uid: 4054 + rot: 3.141592653589793 rad + pos: -93.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,399.5 - parent: 1 - - uid: 4055 + rot: 3.141592653589793 rad + pos: -93.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,399.5 - parent: 1 - - uid: 4056 + rot: 3.141592653589793 rad + pos: -93.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,399.5 - parent: 1 - - uid: 4057 + rot: 3.141592653589793 rad + pos: -93.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,399.5 - parent: 1 - - uid: 4058 + rot: 3.141592653589793 rad + pos: -93.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,397.5 - parent: 1 - - uid: 4059 + rot: 3.141592653589793 rad + pos: -93.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,392.5 - parent: 1 - - uid: 4060 + rot: 3.141592653589793 rad + pos: -94.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 368.5,392.5 - parent: 1 - - uid: 4061 + rot: 3.141592653589793 rad + pos: -88.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,392.5 - parent: 1 - - uid: 4063 + rot: 3.141592653589793 rad + pos: -88.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,382.5 - parent: 1 - - uid: 4067 + rot: 3.141592653589793 rad + pos: -88.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,394.5 - parent: 1 - - uid: 4068 + rot: 3.141592653589793 rad + pos: -88.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,394.5 - parent: 1 - - uid: 4069 + rot: 3.141592653589793 rad + pos: -88.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,394.5 - parent: 1 - - uid: 4070 + rot: 3.141592653589793 rad + pos: -89.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,394.5 - parent: 1 - - uid: 4071 + rot: 3.141592653589793 rad + pos: -89.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19664 components: - type: Transform rot: 1.5707963267948966 rad - pos: 385.5,394.5 - parent: 1 - - uid: 4072 + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,394.5 - parent: 1 - - uid: 4080 + rot: -1.5707963267948966 rad + pos: -88.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,382.5 - parent: 1 - - uid: 4081 + rot: -1.5707963267948966 rad + pos: -87.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,377.5 - parent: 1 - - uid: 4083 + rot: -1.5707963267948966 rad + pos: -86.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,379.5 - parent: 1 - - uid: 4084 + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 359.5,375.5 - parent: 1 - - uid: 4085 + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,376.5 - parent: 1 - - uid: 4086 + rot: 3.141592653589793 rad + pos: -85.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19673 components: - type: Transform rot: 1.5707963267948966 rad - pos: 354.5,376.5 - parent: 1 - - uid: 4087 + pos: -89.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 357.5,380.5 - parent: 1 - - uid: 4088 + pos: -90.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19675 components: - type: Transform rot: 1.5707963267948966 rad - pos: 355.5,382.5 - parent: 1 - - uid: 4089 + pos: -92.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 356.5,382.5 - parent: 1 - - uid: 4090 + pos: -91.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19677 components: - type: Transform rot: 1.5707963267948966 rad - pos: 360.5,383.5 - parent: 1 - - uid: 4091 + pos: -90.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,386.5 - parent: 1 - - uid: 4092 + pos: -121.5,11.5 + parent: 2 + - uid: 19679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 356.5,390.5 - parent: 1 - - uid: 4093 + pos: -93.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19680 components: - type: Transform rot: 1.5707963267948966 rad - pos: 354.5,390.5 - parent: 1 - - uid: 4094 + pos: -92.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19681 components: - type: Transform rot: 1.5707963267948966 rad - pos: 352.5,390.5 - parent: 1 - - uid: 4095 + pos: -92.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19682 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,390.5 - parent: 1 - - uid: 4096 + pos: -91.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,390.5 - parent: 1 - - uid: 4097 + pos: -118.5,7.5 + parent: 2 + - uid: 19684 components: - type: Transform rot: 1.5707963267948966 rad - pos: 345.5,388.5 - parent: 1 - - uid: 4098 + pos: -88.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 343.5,388.5 - parent: 1 - - uid: 4099 + pos: -87.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19688 components: - type: Transform rot: 1.5707963267948966 rad - pos: 346.5,392.5 - parent: 1 - - uid: 4100 + pos: -90.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,392.5 - parent: 1 - - uid: 4101 + rot: 3.141592653589793 rad + pos: -87.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,394.5 - parent: 1 - - uid: 4102 + rot: 3.141592653589793 rad + pos: -87.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,394.5 - parent: 1 - - uid: 4103 + pos: -118.5,9.5 + parent: 2 + - uid: 19695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,400.5 - parent: 1 - - uid: 4104 + rot: -1.5707963267948966 rad + pos: -88.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,401.5 - parent: 1 - - uid: 4105 + rot: -1.5707963267948966 rad + pos: -90.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,401.5 - parent: 1 - - uid: 4107 + rot: -1.5707963267948966 rad + pos: -92.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,400.5 - parent: 1 - - uid: 4108 + rot: -1.5707963267948966 rad + pos: -93.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,400.5 - parent: 1 - - uid: 4109 + rot: -1.5707963267948966 rad + pos: -89.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,398.5 - parent: 1 - - uid: 4112 + rot: 3.141592653589793 rad + pos: -86.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,385.5 - parent: 1 - - uid: 4113 + rot: 3.141592653589793 rad + pos: -86.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,385.5 - parent: 1 - - uid: 4114 + rot: 3.141592653589793 rad + pos: -86.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,385.5 - parent: 1 - - uid: 4115 + rot: 3.141592653589793 rad + pos: -87.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,388.5 - parent: 1 - - uid: 4116 + rot: 3.141592653589793 rad + pos: -87.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,388.5 - parent: 1 - - uid: 4117 + rot: 3.141592653589793 rad + pos: -87.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,388.5 - parent: 1 - - uid: 4118 + rot: 3.141592653589793 rad + pos: -87.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,388.5 - parent: 1 - - uid: 4119 + rot: 3.141592653589793 rad + pos: -87.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,385.5 - parent: 1 - - uid: 4122 + rot: 3.141592653589793 rad + pos: -86.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,385.5 - parent: 1 - - uid: 4123 + rot: 3.141592653589793 rad + pos: -86.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,385.5 - parent: 1 - - uid: 4124 + rot: 3.141592653589793 rad + pos: -86.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,385.5 - parent: 1 - - uid: 4125 + rot: 3.141592653589793 rad + pos: -86.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 312.5,385.5 - parent: 1 - - uid: 4126 + pos: -87.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,384.5 - parent: 1 - - uid: 4127 + rot: -1.5707963267948966 rad + pos: -85.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,382.5 - parent: 1 - - uid: 4128 + pos: -118.5,8.5 + parent: 2 + - uid: 19723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 301.5,385.5 - parent: 1 - - uid: 4129 + rot: 3.141592653589793 rad + pos: -72.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 301.5,389.5 - parent: 1 - - uid: 4130 + pos: -72.5,-63.5 + parent: 2 + - uid: 19725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 296.5,385.5 - parent: 1 - - uid: 4131 + pos: -67.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 296.5,387.5 - parent: 1 - - uid: 4132 + pos: -94.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 296.5,388.5 - parent: 1 - - uid: 4133 + rot: 3.141592653589793 rad + pos: -94.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 296.5,389.5 - parent: 1 - - uid: 4134 + rot: 3.141592653589793 rad + pos: -94.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 296.5,386.5 - parent: 1 - - uid: 4135 + rot: -1.5707963267948966 rad + pos: -69.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 294.5,385.5 - parent: 1 - - uid: 4136 + pos: -31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 294.5,387.5 - parent: 1 - - uid: 4137 + rot: 3.141592653589793 rad + pos: -70.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 294.5,388.5 - parent: 1 - - uid: 4138 + rot: -1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 294.5,389.5 - parent: 1 - - uid: 4139 + rot: 3.141592653589793 rad + pos: -82.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 294.5,386.5 - parent: 1 - - uid: 4140 + rot: 3.141592653589793 rad + pos: -110.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,380.5 - parent: 1 - - uid: 4141 + rot: 3.141592653589793 rad + pos: -110.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,381.5 - parent: 1 - - uid: 4142 + rot: 3.141592653589793 rad + pos: -110.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,402.5 - parent: 1 - - uid: 4143 + pos: -109.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 330.5,404.5 - parent: 1 - - uid: 4145 + pos: -110.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,405.5 - parent: 1 - - uid: 4146 + pos: -111.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 336.5,405.5 - parent: 1 - - uid: 4147 + pos: -119.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,405.5 - parent: 1 - - uid: 4148 + pos: -117.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,405.5 - parent: 1 - - uid: 4149 + pos: -116.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 340.5,405.5 - parent: 1 - - uid: 4150 + pos: -115.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,405.5 - parent: 1 - - uid: 4151 + pos: -118.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20054 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,406.5 - parent: 1 - - uid: 4152 + pos: -114.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,407.5 - parent: 1 - - uid: 4153 + pos: -112.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,409.5 - parent: 1 - - uid: 4154 + pos: -111.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 341.5,409.5 - parent: 1 - - uid: 4155 + pos: -112.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,409.5 - parent: 1 - - uid: 4156 + pos: -113.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 338.5,409.5 - parent: 1 - - uid: 4157 + pos: -117.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,409.5 - parent: 1 - - uid: 4158 + pos: -118.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 334.5,412.5 - parent: 1 - - uid: 4159 + pos: -119.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,412.5 - parent: 1 - - uid: 4160 + pos: -120.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 337.5,412.5 - parent: 1 - - uid: 4161 + pos: -116.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,412.5 - parent: 1 - - uid: 4162 + pos: -115.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,412.5 - parent: 1 - - uid: 4163 + pos: -115.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,412.5 - parent: 1 - - uid: 4164 + pos: -115.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,412.5 - parent: 1 - - uid: 4165 + pos: -115.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,415.5 - parent: 1 - - uid: 4166 + rot: 3.141592653589793 rad + pos: -121.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 349.5,413.5 - parent: 1 - - uid: 4167 + pos: -116.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 347.5,417.5 - parent: 1 - - uid: 4168 + pos: -117.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 348.5,417.5 - parent: 1 - - uid: 4169 + pos: -118.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,407.5 - parent: 1 - - uid: 4177 + pos: -120.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,410.5 - parent: 1 - - uid: 4178 + pos: -120.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,410.5 - parent: 1 - - uid: 4179 + pos: -120.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,418.5 - parent: 1 - - uid: 4180 + pos: -119.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,416.5 - parent: 1 - - uid: 4181 + pos: -119.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,416.5 - parent: 1 - - uid: 4182 + pos: -119.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 325.5,418.5 - parent: 1 - - uid: 4183 + pos: -119.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 324.5,419.5 - parent: 1 - - uid: 4184 + pos: -119.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,419.5 - parent: 1 - - uid: 4185 + pos: -119.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,420.5 - parent: 1 - - uid: 4186 + pos: -119.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,421.5 - parent: 1 - - uid: 4187 + pos: -119.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,426.5 - parent: 1 - - uid: 4188 + rot: -1.5707963267948966 rad + pos: -118.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,423.5 - parent: 1 - - uid: 4189 + rot: -1.5707963267948966 rad + pos: -117.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,426.5 - parent: 1 - - uid: 4190 + rot: -1.5707963267948966 rad + pos: -116.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,426.5 - parent: 1 - - uid: 4191 + rot: -1.5707963267948966 rad + pos: -114.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,428.5 - parent: 1 - - uid: 4192 + rot: -1.5707963267948966 rad + pos: -115.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,428.5 - parent: 1 - - uid: 4193 + rot: 3.141592653589793 rad + pos: -113.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,428.5 - parent: 1 - - uid: 4194 + rot: 3.141592653589793 rad + pos: -113.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,428.5 - parent: 1 - - uid: 4195 + rot: 3.141592653589793 rad + pos: -113.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,426.5 - parent: 1 - - uid: 4196 + rot: 3.141592653589793 rad + pos: -113.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,426.5 - parent: 1 - - uid: 4197 + rot: 3.141592653589793 rad + pos: -113.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,426.5 - parent: 1 - - uid: 4198 + rot: 3.141592653589793 rad + pos: -113.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,426.5 - parent: 1 - - uid: 4199 + rot: 3.141592653589793 rad + pos: -115.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,428.5 - parent: 1 - - uid: 4200 + pos: -114.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 336.5,428.5 - parent: 1 - - uid: 4201 + pos: -116.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,426.5 - parent: 1 - - uid: 4202 + pos: -117.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,428.5 - parent: 1 - - uid: 4203 + pos: -118.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 338.5,428.5 - parent: 1 - - uid: 4204 + pos: -120.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 341.5,428.5 - parent: 1 - - uid: 4205 + pos: -121.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,428.5 - parent: 1 - - uid: 4206 + pos: -115.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,426.5 - parent: 1 - - uid: 4207 + pos: -122.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 341.5,426.5 - parent: 1 - - uid: 4208 + pos: -123.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,426.5 - parent: 1 - - uid: 4209 + pos: -113.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,426.5 - parent: 1 - - uid: 4210 + pos: -113.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,428.5 - parent: 1 - - uid: 4211 + pos: -113.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,428.5 - parent: 1 - - uid: 4212 + pos: -113.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,428.5 - parent: 1 - - uid: 4213 + pos: -115.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,428.5 - parent: 1 - - uid: 4215 + pos: -115.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,426.5 - parent: 1 - - uid: 4216 + pos: -115.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,426.5 - parent: 1 - - uid: 4217 + pos: -115.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,426.5 - parent: 1 - - uid: 4218 + pos: -115.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,421.5 - parent: 1 - - uid: 4219 + rot: -1.5707963267948966 rad + pos: -118.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,422.5 - parent: 1 - - uid: 4220 + rot: -1.5707963267948966 rad + pos: -116.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,424.5 - parent: 1 - - uid: 4221 + rot: -1.5707963267948966 rad + pos: -117.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,425.5 - parent: 1 - - uid: 4222 + rot: -1.5707963267948966 rad + pos: -119.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 357.5,419.5 - parent: 1 - - uid: 4223 + rot: -1.5707963267948966 rad + pos: -122.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,427.5 - parent: 1 - - uid: 4224 + rot: -1.5707963267948966 rad + pos: -123.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 320.5,431.5 - parent: 1 - - uid: 4225 + rot: -1.5707963267948966 rad + pos: -122.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 319.5,431.5 - parent: 1 - - uid: 4226 + rot: -1.5707963267948966 rad + pos: -121.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,423.5 - parent: 1 - - uid: 4227 + pos: -104.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,425.5 - parent: 1 - - uid: 4228 + rot: -1.5707963267948966 rad + pos: -124.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,425.5 - parent: 1 - - uid: 4229 + rot: -1.5707963267948966 rad + pos: -122.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,423.5 - parent: 1 - - uid: 4230 + rot: -1.5707963267948966 rad + pos: -121.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,418.5 - parent: 1 - - uid: 4231 + rot: -1.5707963267948966 rad + pos: -123.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 306.5,418.5 - parent: 1 - - uid: 4232 + pos: -134.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,414.5 - parent: 1 - - uid: 4233 + pos: -125.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20176 components: - type: Transform rot: 1.5707963267948966 rad - pos: 311.5,415.5 - parent: 1 - - uid: 4234 + pos: -98.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 312.5,415.5 - parent: 1 - - uid: 4235 + rot: -1.5707963267948966 rad + pos: -121.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,414.5 - parent: 1 - - uid: 4236 + rot: -1.5707963267948966 rad + pos: -122.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 312.5,414.5 - parent: 1 - - uid: 4237 + rot: -1.5707963267948966 rad + pos: -123.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 314.5,414.5 - parent: 1 - - uid: 4238 + rot: -1.5707963267948966 rad + pos: -125.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,414.5 - parent: 1 - - uid: 4239 + rot: -1.5707963267948966 rad + pos: -126.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 300.5,413.5 - parent: 1 - - uid: 4240 + rot: -1.5707963267948966 rad + pos: -107.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 301.5,413.5 - parent: 1 - - uid: 4241 + pos: -29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20195 components: - type: Transform rot: 1.5707963267948966 rad - pos: 301.5,414.5 - parent: 1 - - uid: 4242 + pos: -126.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20196 components: - type: Transform rot: 1.5707963267948966 rad - pos: 300.5,411.5 - parent: 1 - - uid: 4243 + pos: -124.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20197 components: - type: Transform rot: 1.5707963267948966 rad - pos: 300.5,410.5 - parent: 1 - - uid: 4244 + pos: -123.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20198 components: - type: Transform rot: 1.5707963267948966 rad - pos: 314.5,409.5 - parent: 1 - - uid: 4245 + pos: -122.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 315.5,409.5 - parent: 1 - - uid: 4246 + pos: -121.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 314.5,412.5 - parent: 1 - - uid: 4247 + rot: -1.5707963267948966 rad + pos: -124.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20204 components: - type: Transform rot: 1.5707963267948966 rad - pos: 315.5,412.5 - parent: 1 - - uid: 4248 + pos: -127.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 314.5,407.5 - parent: 1 - - uid: 4249 + pos: -128.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20207 components: - type: Transform rot: 1.5707963267948966 rad - pos: 313.5,407.5 - parent: 1 - - uid: 4250 + pos: -130.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 312.5,407.5 - parent: 1 - - uid: 4251 + pos: -131.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20209 components: - type: Transform rot: 1.5707963267948966 rad - pos: 312.5,406.5 - parent: 1 - - uid: 4252 + pos: -132.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 311.5,406.5 - parent: 1 - - uid: 4253 + pos: -133.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 307.5,409.5 - parent: 1 - - uid: 4254 + pos: -125.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20212 components: - type: Transform rot: 1.5707963267948966 rad - pos: 300.5,408.5 - parent: 1 - - uid: 4255 + pos: -123.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 301.5,408.5 - parent: 1 - - uid: 4256 + pos: -122.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 301.5,407.5 - parent: 1 - - uid: 4273 + pos: -124.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20217 components: - type: Transform - pos: 328.5,394.5 - parent: 1 - - uid: 4274 + rot: 1.5707963267948966 rad + pos: -128.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20218 components: - type: Transform - pos: 326.5,394.5 - parent: 1 - - uid: 4275 + rot: 1.5707963267948966 rad + pos: -130.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20219 components: - type: Transform - pos: 325.5,394.5 - parent: 1 - - uid: 4276 + rot: 1.5707963267948966 rad + pos: -131.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20220 components: - type: Transform - pos: 324.5,394.5 - parent: 1 - - uid: 4277 + rot: 1.5707963267948966 rad + pos: -132.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20221 components: - type: Transform - pos: 327.5,394.5 - parent: 1 - - uid: 4278 + rot: 1.5707963267948966 rad + pos: -129.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20225 components: - type: Transform - pos: 324.5,396.5 - parent: 1 - - uid: 4279 + pos: -30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20228 components: - type: Transform - pos: 324.5,398.5 - parent: 1 - - uid: 4280 + rot: 1.5707963267948966 rad + pos: -127.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20229 components: - type: Transform - pos: 324.5,397.5 - parent: 1 - - uid: 4281 + rot: 1.5707963267948966 rad + pos: -128.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20230 components: - type: Transform - pos: 324.5,400.5 - parent: 1 - - uid: 4282 + rot: 1.5707963267948966 rad + pos: -130.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20231 components: - type: Transform - pos: 324.5,399.5 - parent: 1 - - uid: 4283 + rot: 1.5707963267948966 rad + pos: -131.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20232 components: - type: Transform - pos: 324.5,395.5 - parent: 1 - - uid: 4284 + rot: 1.5707963267948966 rad + pos: -132.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20233 components: - type: Transform - pos: 325.5,400.5 - parent: 1 - - uid: 4285 + rot: 1.5707963267948966 rad + pos: -133.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20234 components: - type: Transform - pos: 327.5,400.5 - parent: 1 - - uid: 4286 + rot: 1.5707963267948966 rad + pos: -134.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20235 components: - type: Transform - pos: 328.5,400.5 - parent: 1 - - uid: 4287 + rot: 1.5707963267948966 rad + pos: -129.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20240 components: - type: Transform - pos: 326.5,400.5 - parent: 1 - - uid: 4312 + pos: -135.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 321.5,416.5 - parent: 1 - - uid: 4313 + pos: -135.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 321.5,417.5 - parent: 1 - - uid: 4315 + pos: -135.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 472.5,375.5 - parent: 1 - - uid: 4316 + pos: -135.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 472.5,378.5 - parent: 1 - - uid: 4317 + pos: -135.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 474.5,375.5 - parent: 1 - - uid: 4318 + pos: -135.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 474.5,379.5 - parent: 1 - - uid: 4319 + pos: -134.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 477.5,382.5 - parent: 1 - - uid: 4320 + pos: -134.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 481.5,382.5 - parent: 1 - - uid: 4321 + pos: -134.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 484.5,379.5 - parent: 1 - - uid: 4322 + pos: -134.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20253 components: - type: Transform rot: 1.5707963267948966 rad - pos: 484.5,375.5 - parent: 1 - - uid: 4323 + pos: -133.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20254 components: - type: Transform rot: 1.5707963267948966 rad - pos: 481.5,372.5 - parent: 1 - - uid: 4324 + pos: -131.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 477.5,372.5 - parent: 1 - - uid: 4325 + pos: -130.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 501.5,382.5 - parent: 1 - - uid: 4326 + pos: -128.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 501.5,381.5 - parent: 1 - - uid: 4327 + rot: -1.5707963267948966 rad + pos: -114.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 504.5,383.5 - parent: 1 - - uid: 4330 + rot: -1.5707963267948966 rad + pos: -111.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 511.5,385.5 - parent: 1 - - uid: 4331 + rot: -1.5707963267948966 rad + pos: -110.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 511.5,386.5 - parent: 1 - - uid: 4332 + rot: -1.5707963267948966 rad + pos: -105.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 509.5,391.5 - parent: 1 - - uid: 4333 + pos: -29.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 508.5,391.5 - parent: 1 - - uid: 4334 + rot: -1.5707963267948966 rad + pos: -101.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 501.5,390.5 - parent: 1 - - uid: 4335 + pos: -104.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 501.5,389.5 - parent: 1 - - uid: 4344 + rot: 3.141592653589793 rad + pos: -119.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 507.5,385.5 - parent: 1 - - uid: 4347 + rot: 3.141592653589793 rad + pos: -119.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,390.5 - parent: 1 - - uid: 4348 + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,390.5 - parent: 1 - - uid: 4357 + pos: -30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,353.5 - parent: 1 - - uid: 4358 + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,352.5 - parent: 1 - - uid: 4359 + pos: -133.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,350.5 - parent: 1 - - uid: 4360 + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,350.5 - parent: 1 - - uid: 4361 + pos: -29.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,350.5 - parent: 1 - - uid: 4362 + rot: -1.5707963267948966 rad + pos: -112.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,350.5 - parent: 1 - - uid: 4363 + pos: -75.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,352.5 - parent: 1 - - uid: 4364 + pos: -75.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,353.5 - parent: 1 - - uid: 4365 + rot: -1.5707963267948966 rad + pos: -75.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,355.5 - parent: 1 - - uid: 4366 + rot: -1.5707963267948966 rad + pos: -74.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,356.5 - parent: 1 - - uid: 4367 + rot: -1.5707963267948966 rad + pos: -72.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,358.5 - parent: 1 - - uid: 4368 + rot: -1.5707963267948966 rad + pos: -73.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,359.5 - parent: 1 - - uid: 4369 + rot: -1.5707963267948966 rad + pos: -72.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,362.5 - parent: 1 - - uid: 4370 + rot: -1.5707963267948966 rad + pos: -73.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,363.5 - parent: 1 - - uid: 4371 + rot: -1.5707963267948966 rad + pos: -74.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20504 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,376.5 - parent: 1 - - uid: 4372 + pos: -76.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20505 components: - type: Transform rot: 3.141592653589793 rad - pos: 426.5,376.5 - parent: 1 - - uid: 4373 + pos: -76.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20506 components: - type: Transform rot: 3.141592653589793 rad - pos: 427.5,376.5 - parent: 1 - - uid: 4375 + pos: -76.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20507 components: - type: Transform rot: 3.141592653589793 rad - pos: 429.5,374.5 - parent: 1 - - uid: 4376 + pos: -76.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20508 components: - type: Transform rot: 3.141592653589793 rad - pos: 429.5,373.5 - parent: 1 - - uid: 4378 + pos: -76.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20509 components: - type: Transform rot: 3.141592653589793 rad - pos: 434.5,390.5 - parent: 1 - - uid: 4379 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,388.5 - parent: 1 - - uid: 4380 + pos: -76.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20510 components: - type: Transform rot: 3.141592653589793 rad - pos: 437.5,393.5 - parent: 1 - - uid: 4381 + pos: -76.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20511 components: - type: Transform rot: 3.141592653589793 rad - pos: 437.5,392.5 - parent: 1 - - uid: 4382 + pos: -76.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20512 components: - type: Transform rot: 3.141592653589793 rad - pos: 432.5,391.5 - parent: 1 - - uid: 4383 + pos: -75.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20513 components: - type: Transform rot: 3.141592653589793 rad - pos: 432.5,393.5 - parent: 1 - - uid: 4384 + pos: -76.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,392.5 - parent: 1 - - uid: 4386 + pos: -76.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,393.5 - parent: 1 - - uid: 4387 + pos: -76.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,392.5 - parent: 1 - - uid: 4388 + pos: -76.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,394.5 - parent: 1 - - uid: 4389 + pos: -76.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,393.5 - parent: 1 - - uid: 4391 + pos: -76.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,397.5 - parent: 1 - - uid: 4392 + pos: -76.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,397.5 - parent: 1 - - uid: 4393 + pos: -76.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,395.5 - parent: 1 - - uid: 4394 + pos: -76.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,396.5 - parent: 1 - - uid: 4395 + pos: -82.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,395.5 - parent: 1 - - uid: 4396 + pos: -82.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,397.5 - parent: 1 - - uid: 4397 + pos: -82.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,396.5 - parent: 1 - - uid: 4398 + rot: 1.5707963267948966 rad + pos: -81.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,399.5 - parent: 1 - - uid: 4399 + rot: 1.5707963267948966 rad + pos: -80.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,401.5 - parent: 1 - - uid: 4400 + rot: 1.5707963267948966 rad + pos: -79.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,400.5 - parent: 1 - - uid: 4401 + rot: 1.5707963267948966 rad + pos: -77.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,395.5 - parent: 1 - - uid: 4402 + pos: -75.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,398.5 - parent: 1 - - uid: 4403 + pos: -75.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,399.5 - parent: 1 - - uid: 4404 + pos: -75.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,401.5 - parent: 1 - - uid: 4405 + pos: -75.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,402.5 - parent: 1 - - uid: 4406 + pos: -75.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,404.5 - parent: 1 - - uid: 4407 + pos: -75.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,405.5 - parent: 1 - - uid: 4408 + pos: -75.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,403.5 - parent: 1 - - uid: 4409 + rot: 1.5707963267948966 rad + pos: -66.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,406.5 - parent: 1 - - uid: 4411 + rot: 1.5707963267948966 rad + pos: -73.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,405.5 - parent: 1 - - uid: 4412 + rot: 1.5707963267948966 rad + pos: -64.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,403.5 - parent: 1 - - uid: 4413 + rot: 1.5707963267948966 rad + pos: -74.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,404.5 - parent: 1 - - uid: 4414 + rot: 1.5707963267948966 rad + pos: -71.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,401.5 - parent: 1 - - uid: 4415 + rot: 1.5707963267948966 rad + pos: -70.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,399.5 - parent: 1 - - uid: 4416 + rot: 1.5707963267948966 rad + pos: -69.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,400.5 - parent: 1 - - uid: 4418 + rot: 1.5707963267948966 rad + pos: -68.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,401.5 - parent: 1 - - uid: 4420 + rot: 1.5707963267948966 rad + pos: -67.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,405.5 - parent: 1 - - uid: 4421 + rot: 1.5707963267948966 rad + pos: -64.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,395.5 - parent: 1 - - uid: 4422 + rot: 1.5707963267948966 rad + pos: -63.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,398.5 - parent: 1 - - uid: 4423 + rot: 1.5707963267948966 rad + pos: -62.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,399.5 - parent: 1 - - uid: 4424 + rot: 1.5707963267948966 rad + pos: -61.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,400.5 - parent: 1 - - uid: 4425 + rot: 1.5707963267948966 rad + pos: -60.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 457.5,400.5 - parent: 1 - - uid: 4426 + rot: 1.5707963267948966 rad + pos: -65.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 459.5,400.5 - parent: 1 - - uid: 4427 + rot: 1.5707963267948966 rad + pos: -66.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 458.5,400.5 - parent: 1 - - uid: 4428 + rot: 1.5707963267948966 rad + pos: -74.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,402.5 - parent: 1 - - uid: 4429 + rot: 1.5707963267948966 rad + pos: -72.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20566 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,403.5 - parent: 1 - - uid: 4430 + rot: 1.5707963267948966 rad + pos: -70.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,406.5 - parent: 1 - - uid: 4431 + rot: 1.5707963267948966 rad + pos: -69.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,407.5 - parent: 1 - - uid: 4432 + rot: 1.5707963267948966 rad + pos: -68.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,409.5 - parent: 1 - - uid: 4433 + rot: 1.5707963267948966 rad + pos: -67.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,409.5 - parent: 1 - - uid: 4434 + rot: 1.5707963267948966 rad + pos: -73.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,407.5 - parent: 1 - - uid: 4435 + rot: 1.5707963267948966 rad + pos: -61.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,406.5 - parent: 1 - - uid: 4436 + rot: 1.5707963267948966 rad + pos: -63.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,408.5 - parent: 1 - - uid: 4437 + rot: 1.5707963267948966 rad + pos: -62.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,411.5 - parent: 1 - - uid: 4438 + rot: 1.5707963267948966 rad + pos: -60.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,412.5 - parent: 1 - - uid: 4439 + rot: 1.5707963267948966 rad + pos: -59.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 457.5,414.5 - parent: 1 - - uid: 4440 + rot: 1.5707963267948966 rad + pos: -58.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 457.5,415.5 - parent: 1 - - uid: 4441 + rot: 1.5707963267948966 rad + pos: -57.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,413.5 - parent: 1 - - uid: 4442 + rot: 1.5707963267948966 rad + pos: -56.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,414.5 - parent: 1 - - uid: 4443 + rot: 1.5707963267948966 rad + pos: -58.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,415.5 - parent: 1 - - uid: 4444 + rot: 1.5707963267948966 rad + pos: -59.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,413.5 - parent: 1 - - uid: 4445 + rot: 1.5707963267948966 rad + pos: -56.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,419.5 - parent: 1 - - uid: 4447 + rot: 1.5707963267948966 rad + pos: -75.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,421.5 - parent: 1 - - uid: 4448 + rot: 1.5707963267948966 rad + pos: -57.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,423.5 - parent: 1 - - uid: 4449 + pos: -55.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,423.5 - parent: 1 - - uid: 4450 + rot: -1.5707963267948966 rad + pos: -55.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20590 components: - type: Transform rot: 3.141592653589793 rad - pos: 448.5,423.5 - parent: 1 - - uid: 4451 + pos: -54.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,423.5 - parent: 1 - - uid: 4452 + rot: 1.5707963267948966 rad + pos: -54.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,420.5 - parent: 1 - - uid: 4453 + rot: 1.5707963267948966 rad + pos: -53.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 445.5,420.5 - parent: 1 - - uid: 4454 + rot: 1.5707963267948966 rad + pos: -52.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,420.5 - parent: 1 - - uid: 4455 + rot: 1.5707963267948966 rad + pos: -50.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,418.5 - parent: 1 - - uid: 4456 + rot: 1.5707963267948966 rad + pos: -49.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,416.5 - parent: 1 - - uid: 4457 + rot: 1.5707963267948966 rad + pos: -48.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,417.5 - parent: 1 - - uid: 4458 + rot: 1.5707963267948966 rad + pos: -47.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,415.5 - parent: 1 - - uid: 4459 + pos: -54.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 445.5,413.5 - parent: 1 - - uid: 4460 + rot: -1.5707963267948966 rad + pos: -53.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,413.5 - parent: 1 - - uid: 4461 + rot: -1.5707963267948966 rad + pos: -52.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,412.5 - parent: 1 - - uid: 4462 + rot: -1.5707963267948966 rad + pos: -51.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,410.5 - parent: 1 - - uid: 4463 + rot: -1.5707963267948966 rad + pos: -50.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,411.5 - parent: 1 - - uid: 4464 + rot: -1.5707963267948966 rad + pos: -48.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 445.5,409.5 - parent: 1 - - uid: 4465 + rot: -1.5707963267948966 rad + pos: -47.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,409.5 - parent: 1 - - uid: 4466 + rot: -1.5707963267948966 rad + pos: -46.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,409.5 - parent: 1 - - uid: 4467 + rot: -1.5707963267948966 rad + pos: -44.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,409.5 - parent: 1 - - uid: 4468 + rot: -1.5707963267948966 rad + pos: -43.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,409.5 - parent: 1 - - uid: 4469 + rot: -1.5707963267948966 rad + pos: -42.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,409.5 - parent: 1 - - uid: 4470 + rot: -1.5707963267948966 rad + pos: -45.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,414.5 - parent: 1 - - uid: 4471 + rot: -1.5707963267948966 rad + pos: -46.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,414.5 - parent: 1 - - uid: 4472 + rot: -1.5707963267948966 rad + pos: -45.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,400.5 - parent: 1 - - uid: 4473 + rot: -1.5707963267948966 rad + pos: -43.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,401.5 - parent: 1 - - uid: 4474 + rot: -1.5707963267948966 rad + pos: -44.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20625 components: - type: Transform rot: 3.141592653589793 rad - pos: 417.5,391.5 - parent: 1 - - uid: 4475 + pos: -42.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad - pos: 410.5,387.5 - parent: 1 - - uid: 4476 + pos: -42.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20627 components: - type: Transform rot: 3.141592653589793 rad - pos: 410.5,390.5 - parent: 1 - - uid: 4478 + pos: -41.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20628 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,394.5 - parent: 1 - - uid: 4502 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,387.5 - parent: 1 - - uid: 4503 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,387.5 - parent: 1 - - uid: 4504 + pos: -41.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,387.5 - parent: 1 - - uid: 4505 + rot: 3.141592653589793 rad + pos: -41.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20667 components: - type: Transform rot: 1.5707963267948966 rad - pos: 364.5,388.5 - parent: 1 - - uid: 4506 + pos: -46.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,390.5 - parent: 1 - - uid: 4526 + pos: -30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20839 components: - type: Transform rot: 1.5707963267948966 rad - pos: 351.5,396.5 - parent: 1 - - uid: 4527 + pos: -45.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,397.5 - parent: 1 - - uid: 4618 + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20962 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,377.5 - parent: 1 - - uid: 4620 + pos: -117.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,392.5 - parent: 1 - - uid: 4777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,418.5 - parent: 1 - - uid: 4778 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,418.5 - parent: 1 - - uid: 4779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,418.5 - parent: 1 - - uid: 4806 + pos: -44.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 327.5,442.5 - parent: 1 - - uid: 4821 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,405.5 - parent: 1 - - uid: 4822 + pos: -64.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21364 components: - type: Transform rot: 3.141592653589793 rad - pos: 397.5,405.5 - parent: 1 - - uid: 4823 + pos: -15.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21365 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,405.5 - parent: 1 - - uid: 4824 + pos: -15.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21366 components: - type: Transform rot: 3.141592653589793 rad - pos: 400.5,405.5 - parent: 1 - - uid: 4854 + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,390.5 - parent: 1 - - uid: 4858 + pos: -14.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21369 components: - type: Transform rot: 1.5707963267948966 rad - pos: 376.5,389.5 - parent: 1 - - uid: 4990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,386.5 - parent: 1 - - uid: 4991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,386.5 - parent: 1 - - uid: 4992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,386.5 - parent: 1 - - uid: 4993 + pos: -13.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,383.5 - parent: 1 - - uid: 4994 + rot: 1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21742 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,383.5 - parent: 1 - - uid: 4995 + pos: -125.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,380.5 - parent: 1 - - uid: 5135 + pos: -121.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 21883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 508.5,382.5 - parent: 1 - - uid: 5987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,403.5 - parent: 1 - - uid: 5988 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,404.5 - parent: 1 - - uid: 5989 + pos: -123.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22139 components: - type: Transform rot: 3.141592653589793 rad - pos: 326.5,406.5 - parent: 1 - - uid: 5990 + pos: -19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,407.5 - parent: 1 - - uid: 5991 + rot: 1.5707963267948966 rad + pos: -103.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22209 components: - type: Transform rot: 3.141592653589793 rad - pos: 329.5,407.5 - parent: 1 - - uid: 5992 + pos: -104.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22210 components: - type: Transform rot: 3.141592653589793 rad - pos: 327.5,409.5 - parent: 1 - - uid: 5993 + pos: -104.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22216 components: - type: Transform - pos: 353.5,391.5 - parent: 1 - - uid: 5994 + rot: 1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22217 components: - type: Transform - pos: 353.5,393.5 - parent: 1 - - uid: 5995 + rot: 1.5707963267948966 rad + pos: -102.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22378 components: - type: Transform - pos: 357.5,393.5 - parent: 1 - - uid: 5996 + rot: -1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22434 components: - type: Transform - pos: 356.5,394.5 - parent: 1 - - uid: 6501 + rot: -1.5707963267948966 rad + pos: -87.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22455 components: - type: Transform - pos: 307.5,440.5 - parent: 1 - - uid: 6520 + pos: -134.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22458 components: - type: Transform - pos: 306.5,439.5 - parent: 1 - - uid: 6532 + rot: 3.141592653589793 rad + pos: -125.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22459 components: - type: Transform - pos: 306.5,440.5 - parent: 1 - - uid: 6535 + rot: -1.5707963267948966 rad + pos: -126.5,9.5 + parent: 2 + - uid: 22460 components: - type: Transform - pos: 309.5,446.5 - parent: 1 - - uid: 6546 + rot: -1.5707963267948966 rad + pos: -125.5,12.5 + parent: 2 + - uid: 22462 components: - type: Transform - pos: 307.5,441.5 - parent: 1 - - uid: 6547 + rot: 1.5707963267948966 rad + pos: -126.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22634 components: - type: Transform - pos: 304.5,442.5 - parent: 1 - - uid: 6548 + rot: -1.5707963267948966 rad + pos: -67.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22635 components: - type: Transform - pos: 304.5,443.5 - parent: 1 - - uid: 6549 + rot: 1.5707963267948966 rad + pos: -59.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22769 components: - type: Transform - pos: 304.5,444.5 - parent: 1 - - uid: 6550 + rot: -1.5707963267948966 rad + pos: -138.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22790 components: - type: Transform - pos: 306.5,444.5 - parent: 1 - - uid: 6551 + rot: -1.5707963267948966 rad + pos: -135.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22816 components: - type: Transform - pos: 305.5,444.5 - parent: 1 - - uid: 6552 + rot: 1.5707963267948966 rad + pos: -127.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22828 components: - type: Transform - pos: 308.5,445.5 - parent: 1 - - uid: 6553 + rot: 1.5707963267948966 rad + pos: -130.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22883 components: - type: Transform - pos: 307.5,445.5 - parent: 1 - - uid: 6554 + rot: 1.5707963267948966 rad + pos: -128.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22884 components: - type: Transform - pos: 305.5,447.5 - parent: 1 - - uid: 6555 + rot: -1.5707963267948966 rad + pos: -124.5,12.5 + parent: 2 + - uid: 22885 components: - type: Transform - pos: 305.5,446.5 - parent: 1 - - uid: 6556 + rot: -1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 22886 components: - type: Transform - pos: 312.5,448.5 - parent: 1 - - uid: 6557 + rot: -1.5707963267948966 rad + pos: -122.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 22887 components: - type: Transform - pos: 313.5,448.5 - parent: 1 - - uid: 6558 + rot: -1.5707963267948966 rad + pos: -127.5,12.5 + parent: 2 + - uid: 22889 components: - type: Transform - pos: 314.5,450.5 - parent: 1 - - uid: 6559 + rot: 1.5707963267948966 rad + pos: -129.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22890 components: - type: Transform - pos: 316.5,450.5 - parent: 1 - - uid: 6560 + rot: 1.5707963267948966 rad + pos: -132.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22891 components: - type: Transform - pos: 317.5,450.5 - parent: 1 - - uid: 6561 + pos: -123.5,8.5 + parent: 2 + - uid: 22960 components: - type: Transform - pos: 315.5,450.5 - parent: 1 - - uid: 6562 + rot: -1.5707963267948966 rad + pos: -139.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22961 components: - type: Transform - pos: 323.5,440.5 - parent: 1 - - uid: 6563 + rot: 3.141592653589793 rad + pos: -144.5,-15.5 + parent: 2 + - uid: 22971 components: - type: Transform - pos: 317.5,448.5 - parent: 1 - - uid: 6564 + anchored: False + pos: -121.48092,-34.32188 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22972 components: - type: Transform - pos: 321.5,446.5 - parent: 1 - - uid: 6565 + anchored: False + pos: -121.43787,-34.368755 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22973 components: - type: Transform - pos: 320.5,446.5 - parent: 1 - - uid: 6566 + anchored: False + pos: -121.728355,-34.29063 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 22974 components: - type: Transform - pos: 321.5,444.5 - parent: 1 - - uid: 6567 + anchored: False + pos: -121.559044,-34.337505 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 23073 components: - type: Transform - pos: 321.5,445.5 - parent: 1 - - uid: 6568 + rot: 1.5707963267948966 rad + pos: -121.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23074 components: - type: Transform - pos: 322.5,444.5 - parent: 1 - - uid: 6569 + rot: -1.5707963267948966 rad + pos: -136.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23115 components: - type: Transform - pos: 322.5,443.5 - parent: 1 - - uid: 6570 + rot: 3.141592653589793 rad + pos: -134.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23167 components: - type: Transform - pos: 323.5,438.5 - parent: 1 - - uid: 6571 + rot: -1.5707963267948966 rad + pos: -143.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23198 components: - type: Transform - pos: 323.5,439.5 - parent: 1 - - uid: 6572 + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23203 components: - type: Transform - pos: 322.5,439.5 - parent: 1 - - uid: 6573 + rot: 1.5707963267948966 rad + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23239 components: - type: Transform - pos: 307.5,436.5 - parent: 1 - - uid: 6574 + pos: -29.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23241 components: - type: Transform - pos: 307.5,435.5 - parent: 1 - - uid: 6575 + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23293 components: - type: Transform - pos: 307.5,433.5 - parent: 1 - - uid: 6576 + rot: 1.5707963267948966 rad + pos: -139.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23415 components: - type: Transform - pos: 307.5,432.5 - parent: 1 - - uid: 6577 + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23512 components: - type: Transform - pos: 308.5,431.5 - parent: 1 - - uid: 6578 + rot: 3.141592653589793 rad + pos: -94.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23518 components: - type: Transform - pos: 309.5,431.5 - parent: 1 - - uid: 6579 + pos: -94.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23591 components: - type: Transform - pos: 309.5,430.5 - parent: 1 - - uid: 6580 + pos: -94.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23602 components: - type: Transform - pos: 310.5,430.5 - parent: 1 - - uid: 6581 + rot: 1.5707963267948966 rad + pos: -43.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23604 components: - type: Transform - pos: 312.5,431.5 - parent: 1 - - uid: 6582 + rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23605 components: - type: Transform - pos: 303.5,438.5 - parent: 1 - - uid: 6583 + rot: 1.5707963267948966 rad + pos: -73.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23607 components: - type: Transform - pos: 303.5,436.5 - parent: 1 - - uid: 6584 + rot: 1.5707963267948966 rad + pos: -70.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23608 components: - type: Transform - pos: 303.5,437.5 - parent: 1 - - uid: 6661 + rot: 1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23609 components: - type: Transform - pos: 294.5,407.5 - parent: 1 - - uid: 6712 + rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23610 components: - type: Transform - pos: 298.5,411.5 - parent: 1 - - uid: 6713 + rot: 1.5707963267948966 rad + pos: -72.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23611 components: - type: Transform - pos: 298.5,409.5 - parent: 1 - - uid: 6714 + rot: -1.5707963267948966 rad + pos: -92.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23615 components: - type: Transform - pos: 298.5,408.5 - parent: 1 - - uid: 6715 + rot: 1.5707963267948966 rad + pos: -54.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23616 components: - type: Transform - pos: 298.5,410.5 - parent: 1 - - uid: 6716 + rot: 1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23617 components: - type: Transform - pos: 298.5,407.5 - parent: 1 - - uid: 6717 + rot: 1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23618 components: - type: Transform - pos: 299.5,407.5 - parent: 1 - - uid: 6718 + rot: 1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23619 components: - type: Transform - pos: 296.5,407.5 - parent: 1 - - uid: 6719 + rot: 1.5707963267948966 rad + pos: -49.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23620 components: - type: Transform - pos: 292.5,407.5 - parent: 1 - - uid: 6720 + rot: 1.5707963267948966 rad + pos: -48.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23623 components: - type: Transform - pos: 291.5,407.5 - parent: 1 - - uid: 6721 + rot: 1.5707963267948966 rad + pos: -62.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23624 components: - type: Transform - pos: 293.5,407.5 - parent: 1 - - uid: 6722 + rot: 1.5707963267948966 rad + pos: -63.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23625 components: - type: Transform - pos: 292.5,408.5 - parent: 1 - - uid: 6723 + rot: 1.5707963267948966 rad + pos: -61.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23627 components: - type: Transform - pos: 291.5,406.5 - parent: 1 - - uid: 6724 + rot: 1.5707963267948966 rad + pos: -59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23628 components: - type: Transform - pos: 291.5,405.5 - parent: 1 - - uid: 6725 + rot: 1.5707963267948966 rad + pos: -58.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23630 components: - type: Transform - pos: 295.5,405.5 - parent: 1 - - uid: 6726 + rot: 1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23632 components: - type: Transform - pos: 293.5,404.5 - parent: 1 - - uid: 6727 + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23633 components: - type: Transform - pos: 293.5,403.5 - parent: 1 - - uid: 6728 + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23634 components: - type: Transform - pos: 293.5,405.5 - parent: 1 - - uid: 6729 + rot: -1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23635 components: - type: Transform - pos: 298.5,405.5 - parent: 1 - - uid: 6730 + rot: -1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23636 components: - type: Transform - pos: 299.5,405.5 - parent: 1 - - uid: 6731 + rot: -1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23637 components: - type: Transform - pos: 301.5,404.5 - parent: 1 - - uid: 6732 + rot: -1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23638 components: - type: Transform - pos: 300.5,404.5 - parent: 1 - - uid: 6733 + rot: -1.5707963267948966 rad + pos: -51.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23639 components: - type: Transform - pos: 301.5,403.5 - parent: 1 - - uid: 6734 + rot: -1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23640 components: - type: Transform - pos: 302.5,403.5 - parent: 1 - - uid: 6735 + rot: -1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23641 components: - type: Transform - pos: 309.5,401.5 - parent: 1 - - uid: 6736 + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23643 components: - type: Transform - pos: 304.5,403.5 - parent: 1 - - uid: 6737 + rot: -1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23644 components: - type: Transform - pos: 310.5,401.5 - parent: 1 - - uid: 6738 + rot: 3.141592653589793 rad + pos: -56.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23645 components: - type: Transform - pos: 312.5,401.5 - parent: 1 - - uid: 6739 + rot: 3.141592653589793 rad + pos: -56.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23650 components: - type: Transform - pos: 312.5,400.5 - parent: 1 - - uid: 6740 + rot: 1.5707963267948966 rad + pos: -74.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23651 components: - type: Transform - pos: 314.5,401.5 - parent: 1 - - uid: 6741 + rot: 1.5707963267948966 rad + pos: -73.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23652 components: - type: Transform - pos: 314.5,402.5 - parent: 1 - - uid: 6742 + rot: 1.5707963267948966 rad + pos: -71.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23653 components: - type: Transform - pos: 314.5,403.5 - parent: 1 - - uid: 6743 + rot: 1.5707963267948966 rad + pos: -70.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23654 components: - type: Transform - pos: 316.5,403.5 - parent: 1 - - uid: 6744 + rot: 1.5707963267948966 rad + pos: -69.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23655 components: - type: Transform - pos: 315.5,403.5 - parent: 1 - - uid: 6745 + rot: 1.5707963267948966 rad + pos: -68.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23656 components: - type: Transform - pos: 314.5,404.5 - parent: 1 - - uid: 6746 + rot: -1.5707963267948966 rad + pos: -66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23657 components: - type: Transform - pos: 323.5,409.5 - parent: 1 - - uid: 6747 + rot: 1.5707963267948966 rad + pos: -72.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23659 components: - type: Transform - pos: 317.5,405.5 - parent: 1 - - uid: 6748 + rot: 1.5707963267948966 rad + pos: -57.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23664 components: - type: Transform - pos: 318.5,405.5 - parent: 1 - - uid: 6749 + rot: 1.5707963267948966 rad + pos: -61.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23665 components: - type: Transform - pos: 318.5,403.5 - parent: 1 - - uid: 6750 + rot: 1.5707963267948966 rad + pos: -60.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23666 components: - type: Transform - pos: 321.5,403.5 - parent: 1 - - uid: 6751 + rot: 1.5707963267948966 rad + pos: -59.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23668 components: - type: Transform - pos: 320.5,403.5 - parent: 1 - - uid: 6752 + rot: 1.5707963267948966 rad + pos: -63.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23670 components: - type: Transform - pos: 321.5,404.5 - parent: 1 - - uid: 6753 + rot: 1.5707963267948966 rad + pos: -70.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23726 components: - type: Transform - pos: 321.5,405.5 - parent: 1 - - uid: 6754 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23848 components: - type: Transform - pos: 321.5,406.5 - parent: 1 - - uid: 6755 + rot: 1.5707963267948966 rad + pos: -123.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23913 components: - type: Transform - pos: 321.5,407.5 - parent: 1 - - uid: 6756 + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23914 components: - type: Transform - pos: 323.5,404.5 - parent: 1 - - uid: 6757 + pos: -36.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23918 components: - type: Transform - pos: 323.5,405.5 - parent: 1 - - uid: 6758 + rot: 1.5707963267948966 rad + pos: -35.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23920 components: - type: Transform - pos: 323.5,403.5 - parent: 1 - - uid: 6759 + rot: 1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23921 components: - type: Transform - pos: 324.5,403.5 - parent: 1 - - uid: 6760 + rot: 1.5707963267948966 rad + pos: -30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23922 components: - type: Transform - pos: 314.5,419.5 - parent: 1 - - uid: 6761 + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23923 components: - type: Transform - pos: 318.5,416.5 - parent: 1 - - uid: 6762 + rot: 1.5707963267948966 rad + pos: -32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23936 components: - type: Transform - pos: 318.5,417.5 - parent: 1 - - uid: 6763 + rot: -1.5707963267948966 rad + pos: -79.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23996 components: - type: Transform - pos: 317.5,417.5 - parent: 1 - - uid: 6764 + rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23997 components: - type: Transform - pos: 319.5,417.5 - parent: 1 - - uid: 6765 + rot: 3.141592653589793 rad + pos: -25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23998 components: - type: Transform - pos: 316.5,419.5 - parent: 1 - - uid: 6766 + rot: 3.141592653589793 rad + pos: -25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24000 components: - type: Transform - pos: 315.5,419.5 - parent: 1 - - uid: 6768 + rot: 3.141592653589793 rad + pos: -25.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24007 components: - type: Transform - pos: 313.5,417.5 - parent: 1 - - uid: 6769 + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24008 components: - type: Transform - pos: 312.5,417.5 - parent: 1 - - uid: 6770 + rot: 1.5707963267948966 rad + pos: -27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24009 components: - type: Transform - pos: 311.5,417.5 - parent: 1 - - uid: 6771 + rot: 1.5707963267948966 rad + pos: -26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24010 components: - type: Transform - pos: 301.5,429.5 - parent: 1 - - uid: 6772 + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24011 components: - type: Transform - pos: 314.5,424.5 - parent: 1 - - uid: 6774 + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24012 components: - type: Transform - pos: 314.5,426.5 - parent: 1 - - uid: 6778 + pos: -24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24013 components: - type: Transform - pos: 306.5,430.5 - parent: 1 - - uid: 6779 + pos: -24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24015 components: - type: Transform - pos: 304.5,430.5 - parent: 1 - - uid: 6780 + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24016 components: - type: Transform - pos: 304.5,429.5 - parent: 1 - - uid: 6781 + rot: 1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24017 components: - type: Transform - pos: 299.5,429.5 - parent: 1 - - uid: 6782 + rot: 1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24018 components: - type: Transform - pos: 300.5,429.5 - parent: 1 - - uid: 6783 + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24021 components: - type: Transform - pos: 299.5,428.5 - parent: 1 - - uid: 6784 + pos: -24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24022 components: - type: Transform - pos: 299.5,426.5 - parent: 1 - - uid: 6785 + pos: -24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24160 components: - type: Transform - pos: 298.5,429.5 - parent: 1 - - uid: 6786 + rot: 3.141592653589793 rad + pos: -118.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24251 components: - type: Transform - pos: 299.5,422.5 - parent: 1 - - uid: 6787 + rot: -1.5707963267948966 rad + pos: -20.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24253 components: - type: Transform - pos: 298.5,422.5 - parent: 1 - - uid: 6788 + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24255 components: - type: Transform - pos: 297.5,422.5 - parent: 1 - - uid: 6789 + rot: -1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24256 components: - type: Transform - pos: 300.5,424.5 - parent: 1 - - uid: 6790 + rot: -1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24259 components: - type: Transform - pos: 295.5,383.5 - parent: 1 - - uid: 6791 + rot: -1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24286 components: - type: Transform - pos: 297.5,419.5 - parent: 1 - - uid: 6792 + rot: -1.5707963267948966 rad + pos: -126.5,12.5 + parent: 2 + - uid: 24292 components: - type: Transform - pos: 299.5,419.5 - parent: 1 - - uid: 6793 + rot: 1.5707963267948966 rad + pos: -125.5,2.5 + parent: 2 + - uid: 24555 components: - type: Transform - pos: 298.5,419.5 - parent: 1 - - uid: 6794 + rot: 3.141592653589793 rad + pos: -15.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24559 components: - type: Transform - pos: 297.5,420.5 - parent: 1 - - uid: 6795 + pos: -94.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24560 components: - type: Transform - pos: 297.5,416.5 - parent: 1 - - uid: 6796 + pos: -94.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24561 components: - type: Transform - pos: 297.5,417.5 - parent: 1 - - uid: 6797 + pos: -94.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24572 components: - type: Transform - pos: 297.5,415.5 - parent: 1 - - uid: 6798 + rot: -1.5707963267948966 rad + pos: -86.5,-1.5 + parent: 2 + - uid: 24623 components: - type: Transform - pos: 298.5,415.5 - parent: 1 - - uid: 6799 + rot: 3.141592653589793 rad + pos: -72.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24678 components: - type: Transform - pos: 299.5,415.5 - parent: 1 - - uid: 6800 + rot: -1.5707963267948966 rad + pos: -71.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24679 components: - type: Transform - pos: 296.5,414.5 - parent: 1 - - uid: 6801 + rot: -1.5707963267948966 rad + pos: -72.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24684 components: - type: Transform - pos: 302.5,418.5 - parent: 1 - - uid: 6802 + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24685 components: - type: Transform - pos: 303.5,418.5 - parent: 1 - - uid: 6803 + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24688 components: - type: Transform - pos: 302.5,417.5 - parent: 1 - - uid: 6804 + pos: -32.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24689 components: - type: Transform - pos: 291.5,401.5 - parent: 1 - - uid: 6805 + pos: -32.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24691 components: - type: Transform - pos: 292.5,401.5 - parent: 1 - - uid: 6806 + pos: -32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24692 components: - type: Transform - pos: 286.5,401.5 - parent: 1 - - uid: 6807 + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24694 components: - type: Transform - pos: 284.5,401.5 - parent: 1 - - uid: 6808 + pos: -33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24695 components: - type: Transform - pos: 285.5,401.5 - parent: 1 - - uid: 6809 + pos: -33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24701 components: - type: Transform - pos: 282.5,401.5 - parent: 1 - - uid: 6810 + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24702 components: - type: Transform - pos: 281.5,401.5 - parent: 1 - - uid: 6811 + rot: -1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24703 components: - type: Transform - pos: 280.5,401.5 - parent: 1 - - uid: 6812 + rot: -1.5707963267948966 rad + pos: -37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24704 components: - type: Transform - pos: 277.5,401.5 - parent: 1 - - uid: 6813 + rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24705 components: - type: Transform - pos: 276.5,401.5 - parent: 1 - - uid: 6814 + rot: 3.141592653589793 rad + pos: -36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24706 components: - type: Transform - pos: 278.5,401.5 - parent: 1 - - uid: 6815 + rot: 3.141592653589793 rad + pos: -36.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24709 components: - type: Transform - pos: 280.5,397.5 - parent: 1 - - uid: 6816 + rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24712 components: - type: Transform - pos: 281.5,397.5 - parent: 1 - - uid: 6817 + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24713 components: - type: Transform - pos: 279.5,397.5 - parent: 1 - - uid: 6818 + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24714 components: - type: Transform - pos: 283.5,397.5 - parent: 1 - - uid: 6819 + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24715 components: - type: Transform - pos: 282.5,397.5 - parent: 1 - - uid: 6820 + rot: -1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24724 components: - type: Transform - pos: 284.5,397.5 - parent: 1 - - uid: 6821 + rot: 1.5707963267948966 rad + pos: -50.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24725 components: - type: Transform - pos: 285.5,397.5 - parent: 1 - - uid: 6822 + rot: 1.5707963267948966 rad + pos: -51.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24726 components: - type: Transform - pos: 289.5,397.5 - parent: 1 - - uid: 6823 + rot: 1.5707963267948966 rad + pos: -52.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24727 components: - type: Transform - pos: 290.5,397.5 - parent: 1 - - uid: 6824 + rot: 1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24728 components: - type: Transform - pos: 292.5,397.5 - parent: 1 - - uid: 6825 + rot: 1.5707963267948966 rad + pos: -55.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24729 components: - type: Transform - pos: 294.5,397.5 - parent: 1 - - uid: 6826 + rot: 1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24730 components: - type: Transform - pos: 295.5,397.5 - parent: 1 - - uid: 6827 + rot: 1.5707963267948966 rad + pos: -54.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24731 components: - type: Transform - pos: 293.5,397.5 - parent: 1 - - uid: 6828 + rot: 1.5707963267948966 rad + pos: -56.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24732 components: - type: Transform - pos: 295.5,396.5 - parent: 1 - - uid: 6829 + rot: 1.5707963267948966 rad + pos: -55.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24733 components: - type: Transform - pos: 295.5,395.5 - parent: 1 - - uid: 6830 + rot: 1.5707963267948966 rad + pos: -54.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24734 components: - type: Transform - pos: 295.5,391.5 - parent: 1 - - uid: 6831 + rot: 1.5707963267948966 rad + pos: -53.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24735 components: - type: Transform - pos: 275.5,384.5 - parent: 1 - - uid: 6832 + rot: 1.5707963267948966 rad + pos: -52.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24736 components: - type: Transform - pos: 295.5,378.5 - parent: 1 - - uid: 6833 + rot: 1.5707963267948966 rad + pos: -51.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24737 components: - type: Transform - pos: 295.5,377.5 - parent: 1 - - uid: 6834 + rot: 1.5707963267948966 rad + pos: -50.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24738 components: - type: Transform - pos: 295.5,379.5 - parent: 1 - - uid: 6835 + rot: 1.5707963267948966 rad + pos: -49.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24739 components: - type: Transform - pos: 294.5,377.5 - parent: 1 - - uid: 6836 + rot: -1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24740 components: - type: Transform - pos: 293.5,377.5 - parent: 1 - - uid: 6837 + rot: -1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24741 components: - type: Transform - pos: 291.5,377.5 - parent: 1 - - uid: 6838 + rot: -1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24754 components: - type: Transform - pos: 289.5,377.5 - parent: 1 - - uid: 6839 + rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24755 components: - type: Transform - pos: 288.5,377.5 - parent: 1 - - uid: 6840 + rot: -1.5707963267948966 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24756 components: - type: Transform - pos: 287.5,377.5 - parent: 1 - - uid: 6841 + rot: -1.5707963267948966 rad + pos: -42.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24757 components: - type: Transform - pos: 290.5,377.5 - parent: 1 - - uid: 6842 + rot: -1.5707963267948966 rad + pos: -41.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24758 components: - type: Transform - pos: 282.5,377.5 - parent: 1 - - uid: 6843 + rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24759 components: - type: Transform - pos: 281.5,377.5 - parent: 1 - - uid: 6844 + rot: -1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24760 components: - type: Transform - pos: 280.5,377.5 - parent: 1 - - uid: 6845 + rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24761 components: - type: Transform - pos: 279.5,377.5 - parent: 1 - - uid: 6846 + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24762 components: - type: Transform - pos: 277.5,377.5 - parent: 1 - - uid: 6847 + rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24765 components: - type: Transform - pos: 275.5,377.5 - parent: 1 - - uid: 6848 + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24766 components: - type: Transform - pos: 276.5,377.5 - parent: 1 - - uid: 6849 + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24767 components: - type: Transform - pos: 275.5,378.5 - parent: 1 - - uid: 6850 + rot: -1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24768 components: - type: Transform - pos: 275.5,380.5 - parent: 1 - - uid: 6851 + rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24769 components: - type: Transform - pos: 275.5,379.5 - parent: 1 - - uid: 6852 + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24770 components: - type: Transform - pos: 275.5,386.5 - parent: 1 - - uid: 6853 + rot: -1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24771 components: - type: Transform - pos: 275.5,387.5 - parent: 1 - - uid: 6854 + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24772 components: - type: Transform - pos: 275.5,385.5 - parent: 1 - - uid: 6855 + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24773 components: - type: Transform - pos: 275.5,390.5 - parent: 1 - - uid: 6856 + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24774 components: - type: Transform - pos: 275.5,392.5 - parent: 1 - - uid: 6857 + rot: 3.141592653589793 rad + pos: -35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24775 components: - type: Transform - pos: 275.5,393.5 - parent: 1 - - uid: 6858 + rot: 3.141592653589793 rad + pos: -35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24776 components: - type: Transform - pos: 275.5,391.5 - parent: 1 - - uid: 6859 + rot: 3.141592653589793 rad + pos: -35.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24777 components: - type: Transform - pos: 276.5,374.5 - parent: 1 - - uid: 6860 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24780 components: - type: Transform - pos: 277.5,397.5 - parent: 1 - - uid: 6861 + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24781 components: - type: Transform - pos: 277.5,400.5 - parent: 1 - - uid: 6862 + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24786 components: - type: Transform - pos: 281.5,399.5 - parent: 1 - - uid: 6863 + rot: 3.141592653589793 rad + pos: -94.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24789 components: - type: Transform - pos: 285.5,400.5 - parent: 1 - - uid: 6864 + rot: 1.5707963267948966 rad + pos: -106.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24790 components: - type: Transform - pos: 272.5,396.5 - parent: 1 - - uid: 6865 + rot: 1.5707963267948966 rad + pos: -107.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24791 components: - type: Transform - pos: 272.5,394.5 - parent: 1 - - uid: 6866 + rot: 1.5707963267948966 rad + pos: -106.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24792 components: - type: Transform - pos: 272.5,395.5 - parent: 1 - - uid: 6867 + rot: 1.5707963267948966 rad + pos: -107.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24793 components: - type: Transform - pos: 273.5,395.5 - parent: 1 - - uid: 6868 + rot: 1.5707963267948966 rad + pos: -109.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24794 components: - type: Transform - pos: 272.5,383.5 - parent: 1 - - uid: 6869 + rot: 1.5707963267948966 rad + pos: -110.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24795 components: - type: Transform - pos: 272.5,382.5 - parent: 1 - - uid: 6870 + rot: 1.5707963267948966 rad + pos: -111.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24796 components: - type: Transform - pos: 272.5,381.5 - parent: 1 - - uid: 6871 + rot: 1.5707963267948966 rad + pos: -112.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24797 components: - type: Transform - pos: 272.5,380.5 - parent: 1 - - uid: 6872 + rot: 1.5707963267948966 rad + pos: -108.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24798 components: - type: Transform - pos: 272.5,384.5 - parent: 1 - - uid: 6873 + rot: 1.5707963267948966 rad + pos: -113.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24799 components: - type: Transform - pos: 271.5,381.5 - parent: 1 - - uid: 6874 + rot: -1.5707963267948966 rad + pos: -114.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24805 components: - type: Transform - pos: 273.5,383.5 - parent: 1 - - uid: 6875 + rot: -1.5707963267948966 rad + pos: -86.5,-5.5 + parent: 2 + - uid: 24886 components: - type: Transform - pos: 278.5,375.5 - parent: 1 - - uid: 6876 + rot: 3.141592653589793 rad + pos: -120.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24902 components: - type: Transform - pos: 278.5,374.5 - parent: 1 - - uid: 6877 + pos: -121.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24961 components: - type: Transform - pos: 280.5,374.5 - parent: 1 - - uid: 6878 + pos: -121.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24963 components: - type: Transform - pos: 281.5,374.5 - parent: 1 - - uid: 6879 + rot: 1.5707963267948966 rad + pos: -124.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25057 components: - type: Transform - pos: 279.5,374.5 - parent: 1 - - uid: 6880 + rot: -1.5707963267948966 rad + pos: -106.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25058 components: - type: Transform - pos: 281.5,373.5 - parent: 1 - - uid: 6881 + rot: -1.5707963267948966 rad + pos: -105.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25059 components: - type: Transform - pos: 282.5,374.5 - parent: 1 - - uid: 6882 + rot: -1.5707963267948966 rad + pos: -115.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25060 components: - type: Transform - pos: 283.5,374.5 - parent: 1 - - uid: 6883 + rot: -1.5707963267948966 rad + pos: -116.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25061 components: - type: Transform - pos: 286.5,374.5 - parent: 1 - - uid: 6884 + rot: -1.5707963267948966 rad + pos: -117.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25062 components: - type: Transform - pos: 287.5,374.5 - parent: 1 - - uid: 6885 + rot: -1.5707963267948966 rad + pos: -118.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25063 components: - type: Transform - pos: 289.5,374.5 - parent: 1 - - uid: 6886 + rot: -1.5707963267948966 rad + pos: -119.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25064 components: - type: Transform - pos: 289.5,375.5 - parent: 1 - - uid: 6887 + rot: -1.5707963267948966 rad + pos: -107.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25065 components: - type: Transform - pos: 287.5,373.5 - parent: 1 - - uid: 6888 + rot: -1.5707963267948966 rad + pos: -108.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25066 components: - type: Transform - pos: 287.5,372.5 - parent: 1 - - uid: 6889 + rot: -1.5707963267948966 rad + pos: -109.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25067 components: - type: Transform - pos: 289.5,371.5 - parent: 1 - - uid: 6890 + rot: -1.5707963267948966 rad + pos: -110.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25068 components: - type: Transform - pos: 291.5,371.5 - parent: 1 - - uid: 6891 + rot: -1.5707963267948966 rad + pos: -111.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25069 components: - type: Transform - pos: 291.5,372.5 - parent: 1 - - uid: 6892 + rot: -1.5707963267948966 rad + pos: -112.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25070 components: - type: Transform - pos: 290.5,370.5 - parent: 1 - - uid: 6893 + rot: -1.5707963267948966 rad + pos: -113.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25071 components: - type: Transform - pos: 290.5,369.5 - parent: 1 - - uid: 6894 + rot: -1.5707963267948966 rad + pos: -114.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25079 components: - type: Transform - pos: 293.5,375.5 - parent: 1 - - uid: 6895 + pos: -120.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25080 components: - type: Transform - pos: 295.5,375.5 - parent: 1 - - uid: 6896 + pos: -120.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25081 components: - type: Transform - pos: 298.5,378.5 - parent: 1 - - uid: 6897 + pos: -120.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25082 components: - type: Transform - pos: 299.5,378.5 - parent: 1 - - uid: 6898 + pos: -120.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25083 components: - type: Transform - pos: 320.5,382.5 - parent: 1 - - uid: 6899 + pos: -120.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25084 components: - type: Transform - pos: 301.5,380.5 - parent: 1 - - uid: 6900 + pos: -120.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25085 components: - type: Transform - pos: 303.5,380.5 - parent: 1 - - uid: 6901 + pos: -120.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25086 components: - type: Transform - pos: 322.5,382.5 - parent: 1 - - uid: 6902 + rot: 3.141592653589793 rad + pos: -120.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25087 components: - type: Transform - pos: 323.5,382.5 - parent: 1 - - uid: 6903 + pos: -120.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25088 components: - type: Transform - pos: 324.5,382.5 - parent: 1 - - uid: 6904 + pos: -121.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25089 components: - type: Transform - pos: 321.5,382.5 - parent: 1 - - uid: 6905 + pos: -120.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25144 components: - type: Transform - pos: 323.5,383.5 - parent: 1 - - uid: 6906 + pos: -121.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25146 components: - type: Transform - pos: 320.5,384.5 - parent: 1 - - uid: 6907 + rot: -1.5707963267948966 rad + pos: -119.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25147 components: - type: Transform - pos: 327.5,382.5 - parent: 1 - - uid: 6908 + pos: -120.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25149 components: - type: Transform - pos: 329.5,382.5 - parent: 1 - - uid: 6909 + rot: 3.141592653589793 rad + pos: -122.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25151 components: - type: Transform - pos: 328.5,382.5 - parent: 1 - - uid: 6910 + pos: -121.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25154 components: - type: Transform - pos: 328.5,383.5 - parent: 1 - - uid: 6911 + rot: 3.141592653589793 rad + pos: -120.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25164 components: - type: Transform - pos: 328.5,384.5 - parent: 1 - - uid: 6912 + rot: 1.5707963267948966 rad + pos: -121.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25172 components: - type: Transform - pos: 331.5,382.5 - parent: 1 - - uid: 6913 + rot: 3.141592653589793 rad + pos: -121.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25173 components: - type: Transform - pos: 332.5,382.5 - parent: 1 - - uid: 6914 + pos: -121.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25174 components: - type: Transform - pos: 328.5,381.5 - parent: 1 - - uid: 6915 + pos: -121.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25175 components: - type: Transform - pos: 328.5,380.5 - parent: 1 - - uid: 6916 + pos: -121.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25183 components: - type: Transform - pos: 328.5,378.5 - parent: 1 - - uid: 6917 + pos: -120.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25188 components: - type: Transform - pos: 327.5,376.5 - parent: 1 - - uid: 6918 + rot: -1.5707963267948966 rad + pos: -116.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25189 components: - type: Transform - pos: 329.5,375.5 - parent: 1 - - uid: 6919 + rot: -1.5707963267948966 rad + pos: -118.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25191 components: - type: Transform - pos: 329.5,374.5 - parent: 1 - - uid: 6920 + rot: -1.5707963267948966 rad + pos: -117.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25195 components: - type: Transform - pos: 328.5,374.5 - parent: 1 - - uid: 6921 + rot: 1.5707963267948966 rad + pos: -120.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25196 components: - type: Transform - pos: 330.5,374.5 - parent: 1 - - uid: 6922 + rot: -1.5707963267948966 rad + pos: -119.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25197 components: - type: Transform - pos: 332.5,375.5 - parent: 1 - - uid: 6923 + rot: 3.141592653589793 rad + pos: -121.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25204 components: - type: Transform - pos: 334.5,375.5 - parent: 1 - - uid: 6924 + pos: -120.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25206 components: - type: Transform - pos: 333.5,375.5 - parent: 1 - - uid: 6925 + rot: 3.141592653589793 rad + pos: -120.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25242 components: - type: Transform - pos: 334.5,376.5 - parent: 1 - - uid: 6926 + rot: 1.5707963267948966 rad + pos: -119.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25243 components: - type: Transform - pos: 336.5,375.5 - parent: 1 - - uid: 6927 + rot: 1.5707963267948966 rad + pos: -121.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25246 components: - type: Transform - pos: 343.5,380.5 - parent: 1 - - uid: 6928 + pos: -118.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25247 components: - type: Transform - pos: 341.5,376.5 - parent: 1 - - uid: 6929 + pos: -120.5,-81.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25251 components: - type: Transform - pos: 343.5,376.5 - parent: 1 - - uid: 6930 + pos: -118.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25252 components: - type: Transform - pos: 342.5,376.5 - parent: 1 - - uid: 6931 + pos: -118.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25253 components: - type: Transform - pos: 343.5,375.5 - parent: 1 - - uid: 6932 + pos: -118.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25254 components: - type: Transform - pos: 345.5,375.5 - parent: 1 - - uid: 6933 + pos: -122.5,-83.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25255 components: - type: Transform - pos: 344.5,375.5 - parent: 1 - - uid: 6934 + pos: -122.5,-84.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25260 components: - type: Transform - pos: 348.5,372.5 - parent: 1 - - uid: 6935 + pos: -122.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25261 components: - type: Transform - pos: 349.5,372.5 - parent: 1 - - uid: 6936 + rot: -1.5707963267948966 rad + pos: -120.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25262 components: - type: Transform - pos: 350.5,372.5 - parent: 1 - - uid: 6937 + rot: -1.5707963267948966 rad + pos: -119.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25444 components: - type: Transform - pos: 350.5,373.5 - parent: 1 - - uid: 6938 + rot: -1.5707963267948966 rad + pos: -80.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25547 components: - type: Transform - pos: 344.5,380.5 - parent: 1 - - uid: 6939 + rot: -1.5707963267948966 rad + pos: -97.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25548 components: - type: Transform - pos: 345.5,380.5 - parent: 1 - - uid: 6940 + rot: -1.5707963267948966 rad + pos: -96.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25549 components: - type: Transform - pos: 346.5,380.5 - parent: 1 - - uid: 6941 + rot: -1.5707963267948966 rad + pos: -95.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25550 components: - type: Transform - pos: 347.5,380.5 - parent: 1 - - uid: 6942 + rot: -1.5707963267948966 rad + pos: -104.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25822 components: - type: Transform - pos: 348.5,380.5 - parent: 1 - - uid: 6943 + rot: -1.5707963267948966 rad + pos: -23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25948 components: - type: Transform - pos: 349.5,380.5 - parent: 1 - - uid: 6944 + rot: 1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26101 components: - type: Transform - pos: 345.5,379.5 - parent: 1 - - uid: 6945 + rot: -1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26103 components: - type: Transform - pos: 349.5,370.5 - parent: 1 - - uid: 6946 + pos: -25.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26104 components: - type: Transform - pos: 349.5,368.5 - parent: 1 - - uid: 6947 + rot: -1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26105 components: - type: Transform - pos: 349.5,369.5 - parent: 1 - - uid: 6948 + rot: -1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26106 components: - type: Transform - pos: 348.5,368.5 - parent: 1 - - uid: 6949 + rot: -1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26114 components: - type: Transform - pos: 348.5,366.5 - parent: 1 - - uid: 6950 + rot: -1.5707963267948966 rad + pos: -108.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26115 components: - type: Transform - pos: 348.5,364.5 - parent: 1 - - uid: 6951 + rot: -1.5707963267948966 rad + pos: -107.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26116 components: - type: Transform - pos: 348.5,365.5 - parent: 1 - - uid: 6952 + rot: -1.5707963267948966 rad + pos: -106.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26117 components: - type: Transform - pos: 347.5,365.5 - parent: 1 - - uid: 6953 + rot: -1.5707963267948966 rad + pos: -105.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 26178 components: - type: Transform - pos: 346.5,363.5 - parent: 1 - - uid: 6954 + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 13 components: - type: Transform - pos: 346.5,362.5 - parent: 1 - - uid: 6955 + rot: 3.141592653589793 rad + pos: -121.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 265 components: - type: Transform - pos: 346.5,361.5 - parent: 1 - - uid: 6956 + pos: -120.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 571 components: - type: Transform - pos: 347.5,362.5 - parent: 1 - - uid: 6957 + rot: 3.141592653589793 rad + pos: -140.5,-3.5 + parent: 2 + - uid: 1754 components: - type: Transform - pos: 343.5,361.5 - parent: 1 - - uid: 6958 + rot: -1.5707963267948966 rad + pos: -26.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2274 components: - type: Transform - pos: 342.5,361.5 - parent: 1 - - uid: 6959 + rot: 1.5707963267948966 rad + pos: -120.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2464 components: - type: Transform - pos: 342.5,360.5 - parent: 1 - - uid: 6960 + pos: -145.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2693 components: - type: Transform - pos: 342.5,358.5 - parent: 1 - - uid: 6961 + rot: 3.141592653589793 rad + pos: -121.5,10.5 + parent: 2 + - uid: 3441 components: - type: Transform - pos: 342.5,359.5 - parent: 1 - - uid: 6962 + rot: -1.5707963267948966 rad + pos: -46.5,-27.5 + parent: 2 + - uid: 3621 components: - type: Transform - pos: 340.5,358.5 - parent: 1 - - uid: 6963 + rot: 3.141592653589793 rad + pos: -63.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3717 components: - type: Transform - pos: 340.5,357.5 - parent: 1 - - uid: 6964 + rot: 3.141592653589793 rad + pos: -64.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4091 components: - type: Transform - pos: 339.5,357.5 - parent: 1 - - uid: 6965 + rot: 3.141592653589793 rad + pos: -141.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4102 components: - type: Transform - pos: 338.5,357.5 - parent: 1 - - uid: 6966 + rot: 1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 2 + - uid: 4213 components: - type: Transform - pos: 337.5,359.5 - parent: 1 - - uid: 6967 + rot: 3.141592653589793 rad + pos: -24.5,-29.5 + parent: 2 + - uid: 4386 components: - type: Transform - pos: 339.5,356.5 - parent: 1 - - uid: 6968 + rot: -1.5707963267948966 rad + pos: -94.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4465 components: - type: Transform - pos: 335.5,359.5 - parent: 1 - - uid: 6969 + pos: -124.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4677 components: - type: Transform - pos: 334.5,359.5 - parent: 1 - - uid: 6970 + pos: -103.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4750 components: - type: Transform - pos: 334.5,360.5 - parent: 1 - - uid: 6971 + pos: -125.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4822 components: - type: Transform - pos: 334.5,361.5 - parent: 1 - - uid: 6972 + rot: -1.5707963267948966 rad + pos: -120.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4835 components: - type: Transform - pos: 333.5,361.5 - parent: 1 - - uid: 6973 + rot: -1.5707963267948966 rad + pos: -43.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4837 components: - type: Transform - pos: 332.5,361.5 - parent: 1 - - uid: 6974 + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4896 components: - type: Transform - pos: 331.5,361.5 - parent: 1 - - uid: 6975 + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4979 components: - type: Transform - pos: 329.5,361.5 - parent: 1 - - uid: 6976 + rot: -1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4980 components: - type: Transform - pos: 330.5,361.5 - parent: 1 - - uid: 6977 + rot: -1.5707963267948966 rad + pos: -48.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5044 components: - type: Transform - pos: 331.5,360.5 - parent: 1 - - uid: 6978 + rot: 1.5707963267948966 rad + pos: -94.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5082 components: - type: Transform - pos: 328.5,364.5 - parent: 1 - - uid: 6979 + rot: 1.5707963267948966 rad + pos: -123.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5336 components: - type: Transform - pos: 328.5,372.5 - parent: 1 - - uid: 6980 + rot: 3.141592653589793 rad + pos: -110.5,7.5 + parent: 2 + - uid: 5413 components: - type: Transform - pos: 329.5,364.5 - parent: 1 - - uid: 6981 + pos: -124.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6008 components: - type: Transform - pos: 330.5,364.5 - parent: 1 - - uid: 6982 + rot: -1.5707963267948966 rad + pos: -87.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6026 components: - type: Transform - pos: 327.5,364.5 - parent: 1 - - uid: 6983 + rot: 3.141592653589793 rad + pos: -27.5,-67.5 + parent: 2 + - uid: 6039 components: - type: Transform - pos: 327.5,363.5 - parent: 1 - - uid: 6984 + rot: 1.5707963267948966 rad + pos: -148.5,2.5 + parent: 2 + - uid: 6040 components: - type: Transform - pos: 328.5,366.5 - parent: 1 - - uid: 6985 + rot: -1.5707963267948966 rad + pos: -146.5,2.5 + parent: 2 + - uid: 6041 components: - type: Transform - pos: 328.5,368.5 - parent: 1 - - uid: 6986 + rot: 1.5707963267948966 rad + pos: -148.5,1.5 + parent: 2 + - uid: 6042 components: - type: Transform - pos: 328.5,367.5 - parent: 1 - - uid: 6987 + rot: -1.5707963267948966 rad + pos: -146.5,1.5 + parent: 2 + - uid: 6102 components: - type: Transform - pos: 327.5,368.5 - parent: 1 - - uid: 6988 + rot: 3.141592653589793 rad + pos: -149.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6966 components: - type: Transform - pos: 327.5,369.5 - parent: 1 - - uid: 6989 + rot: 1.5707963267948966 rad + pos: -109.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7048 components: - type: Transform - pos: 324.5,370.5 - parent: 1 - - uid: 6990 + pos: -118.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7055 components: - type: Transform - pos: 323.5,370.5 - parent: 1 - - uid: 6991 + pos: -120.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7078 components: - type: Transform - pos: 324.5,371.5 - parent: 1 - - uid: 6992 + rot: 1.5707963267948966 rad + pos: -105.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8036 components: - type: Transform - pos: 328.5,371.5 - parent: 1 - - uid: 6993 + rot: 3.141592653589793 rad + pos: -117.5,3.5 + parent: 2 + - uid: 8049 components: - type: Transform - pos: 327.5,371.5 - parent: 1 - - uid: 6994 + rot: 3.141592653589793 rad + pos: -130.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8599 components: - type: Transform - pos: 352.5,378.5 - parent: 1 - - uid: 6995 + rot: 3.141592653589793 rad + pos: -21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8600 components: - type: Transform - pos: 363.5,377.5 - parent: 1 - - uid: 6996 + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8828 components: - type: Transform - pos: 372.5,377.5 - parent: 1 - - uid: 6997 + pos: -35.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8994 components: - type: Transform - pos: 376.5,370.5 - parent: 1 - - uid: 6998 + rot: 3.141592653589793 rad + pos: -122.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8999 components: - type: Transform - pos: 377.5,372.5 - parent: 1 - - uid: 6999 + rot: 3.141592653589793 rad + pos: -116.5,14.5 + parent: 2 + - uid: 9112 components: - type: Transform - pos: 378.5,370.5 - parent: 1 - - uid: 7000 + rot: -1.5707963267948966 rad + pos: -94.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9139 components: - type: Transform - pos: 379.5,370.5 - parent: 1 - - uid: 7001 + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9147 components: - type: Transform - pos: 377.5,370.5 - parent: 1 - - uid: 7002 + rot: 3.141592653589793 rad + pos: -137.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9151 components: - type: Transform - pos: 380.5,370.5 - parent: 1 - - uid: 7003 + pos: -30.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9154 components: - type: Transform - pos: 380.5,371.5 - parent: 1 - - uid: 7004 + pos: -41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9193 components: - type: Transform - pos: 382.5,371.5 - parent: 1 - - uid: 7005 + rot: 1.5707963267948966 rad + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9234 components: - type: Transform - pos: 382.5,370.5 - parent: 1 - - uid: 7006 + rot: 1.5707963267948966 rad + pos: -57.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9308 components: - type: Transform - pos: 383.5,370.5 - parent: 1 - - uid: 7007 + rot: 1.5707963267948966 rad + pos: -76.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9309 components: - type: Transform - pos: 383.5,369.5 - parent: 1 - - uid: 7008 + pos: -68.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9334 components: - type: Transform - pos: 383.5,368.5 - parent: 1 - - uid: 7009 + pos: -81.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9358 components: - type: Transform - pos: 384.5,370.5 - parent: 1 - - uid: 7010 + rot: 1.5707963267948966 rad + pos: -27.5,-64.5 + parent: 2 + - uid: 9365 components: - type: Transform - pos: 385.5,370.5 - parent: 1 - - uid: 7011 + rot: 3.141592653589793 rad + pos: -25.5,-64.5 + parent: 2 + - uid: 9459 components: - type: Transform - pos: 385.5,372.5 - parent: 1 - - uid: 7012 + rot: 3.141592653589793 rad + pos: -100.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9475 components: - type: Transform - pos: 385.5,371.5 - parent: 1 - - uid: 7013 + rot: 1.5707963267948966 rad + pos: -134.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9494 components: - type: Transform - pos: 386.5,366.5 - parent: 1 - - uid: 7014 + rot: 3.141592653589793 rad + pos: -49.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9495 components: - type: Transform - pos: 386.5,364.5 - parent: 1 - - uid: 7015 + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9548 components: - type: Transform - pos: 386.5,363.5 - parent: 1 - - uid: 7016 + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9562 components: - type: Transform - pos: 386.5,365.5 - parent: 1 - - uid: 7017 + rot: 1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9603 components: - type: Transform - pos: 385.5,365.5 - parent: 1 - - uid: 7018 + rot: -1.5707963267948966 rad + pos: -18.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9716 components: - type: Transform - pos: 384.5,365.5 - parent: 1 - - uid: 7019 + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9719 components: - type: Transform - pos: 387.5,363.5 - parent: 1 - - uid: 7020 + rot: 1.5707963267948966 rad + pos: -75.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9720 components: - type: Transform - pos: 388.5,361.5 - parent: 1 - - uid: 7021 + rot: 1.5707963267948966 rad + pos: -38.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9779 components: - type: Transform - pos: 388.5,360.5 - parent: 1 - - uid: 7022 + rot: -1.5707963267948966 rad + pos: -58.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10026 components: - type: Transform - pos: 388.5,359.5 - parent: 1 - - uid: 7023 + rot: -1.5707963267948966 rad + pos: -92.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10031 components: - type: Transform - pos: 387.5,359.5 - parent: 1 - - uid: 7026 + rot: 1.5707963267948966 rad + pos: -93.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10033 components: - type: Transform - pos: 390.5,357.5 - parent: 1 - - uid: 7027 + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10042 components: - type: Transform - pos: 390.5,358.5 - parent: 1 - - uid: 7028 + rot: 1.5707963267948966 rad + pos: -67.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10043 components: - type: Transform - pos: 392.5,365.5 - parent: 1 - - uid: 7029 + rot: -1.5707963267948966 rad + pos: -66.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10050 components: - type: Transform - pos: 391.5,360.5 - parent: 1 - - uid: 7030 + rot: -1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10052 components: - type: Transform - pos: 392.5,360.5 - parent: 1 - - uid: 7031 + rot: 1.5707963267948966 rad + pos: -66.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10053 components: - type: Transform - pos: 392.5,361.5 - parent: 1 - - uid: 7032 + rot: 1.5707963267948966 rad + pos: -67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10121 components: - type: Transform - pos: 392.5,362.5 - parent: 1 - - uid: 7033 + rot: 1.5707963267948966 rad + pos: -71.5,-63.5 + parent: 2 + - uid: 10160 components: - type: Transform - pos: 392.5,366.5 - parent: 1 - - uid: 7034 + rot: -1.5707963267948966 rad + pos: -109.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10200 components: - type: Transform - pos: 391.5,366.5 - parent: 1 - - uid: 7035 + rot: -1.5707963267948966 rad + pos: -104.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10212 components: - type: Transform - pos: 390.5,366.5 - parent: 1 - - uid: 7036 + pos: -66.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10213 components: - type: Transform - pos: 394.5,365.5 - parent: 1 - - uid: 7037 + pos: -55.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10221 components: - type: Transform - pos: 394.5,364.5 - parent: 1 - - uid: 7038 + pos: -60.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10225 components: - type: Transform - pos: 394.5,363.5 - parent: 1 - - uid: 7039 + pos: -62.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10226 components: - type: Transform - pos: 395.5,363.5 - parent: 1 - - uid: 7040 + rot: 1.5707963267948966 rad + pos: -67.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10227 components: - type: Transform - pos: 396.5,363.5 - parent: 1 - - uid: 7041 + pos: -56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10250 components: - type: Transform - pos: 396.5,364.5 - parent: 1 - - uid: 7042 + rot: 1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10264 components: - type: Transform - pos: 397.5,363.5 - parent: 1 - - uid: 7045 + rot: -1.5707963267948966 rad + pos: -137.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10283 components: - type: Transform - pos: 389.5,354.5 - parent: 1 - - uid: 7046 + rot: -1.5707963267948966 rad + pos: -55.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10284 components: - type: Transform - pos: 389.5,352.5 - parent: 1 - - uid: 7047 + rot: 1.5707963267948966 rad + pos: -55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10294 components: - type: Transform - pos: 389.5,353.5 - parent: 1 - - uid: 7048 + rot: 1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10295 components: - type: Transform - pos: 390.5,352.5 - parent: 1 - - uid: 7049 + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10302 components: - type: Transform - pos: 391.5,352.5 - parent: 1 - - uid: 7050 + rot: -1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10313 components: - type: Transform - pos: 391.5,351.5 - parent: 1 - - uid: 7051 + pos: -51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10314 components: - type: Transform - pos: 392.5,351.5 - parent: 1 - - uid: 7052 + rot: 3.141592653589793 rad + pos: -51.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10319 components: - type: Transform - pos: 393.5,348.5 - parent: 1 - - uid: 7053 + rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10330 components: - type: Transform - pos: 395.5,348.5 - parent: 1 - - uid: 7054 + pos: -46.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10340 components: - type: Transform - pos: 396.5,348.5 - parent: 1 - - uid: 7055 + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10342 components: - type: Transform - pos: 397.5,347.5 - parent: 1 - - uid: 7056 + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10370 components: - type: Transform - pos: 396.5,347.5 - parent: 1 - - uid: 7057 + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10387 components: - type: Transform - pos: 397.5,346.5 - parent: 1 - - uid: 7058 + rot: 3.141592653589793 rad + pos: -45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10395 components: - type: Transform - pos: 397.5,345.5 - parent: 1 - - uid: 7059 + pos: -51.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10401 components: - type: Transform - pos: 406.5,344.5 - parent: 1 - - uid: 7060 + rot: 3.141592653589793 rad + pos: -49.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10408 components: - type: Transform - pos: 396.5,343.5 - parent: 1 - - uid: 7061 + pos: -44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10416 components: - type: Transform - pos: 395.5,343.5 - parent: 1 - - uid: 7062 + rot: 3.141592653589793 rad + pos: -42.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10485 components: - type: Transform - pos: 396.5,342.5 - parent: 1 - - uid: 7063 + rot: -1.5707963267948966 rad + pos: -104.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10512 components: - type: Transform - pos: 398.5,342.5 - parent: 1 - - uid: 7064 + pos: -44.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10513 components: - type: Transform - pos: 400.5,342.5 - parent: 1 - - uid: 7065 + rot: 3.141592653589793 rad + pos: -48.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10529 components: - type: Transform - pos: 399.5,342.5 - parent: 1 - - uid: 7066 + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10750 components: - type: Transform - pos: 398.5,343.5 - parent: 1 - - uid: 7067 + pos: -101.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10786 components: - type: Transform - pos: 401.5,345.5 - parent: 1 - - uid: 7068 + rot: 3.141592653589793 rad + pos: -85.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10914 components: - type: Transform - pos: 402.5,345.5 - parent: 1 - - uid: 7069 + rot: -1.5707963267948966 rad + pos: -66.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11086 components: - type: Transform - pos: 403.5,345.5 - parent: 1 - - uid: 7070 + rot: 3.141592653589793 rad + pos: -28.5,-67.5 + parent: 2 + - uid: 11132 components: - type: Transform - pos: 403.5,346.5 - parent: 1 - - uid: 7071 + rot: 3.141592653589793 rad + pos: -104.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11139 components: - type: Transform - pos: 403.5,347.5 - parent: 1 - - uid: 7072 + rot: 3.141592653589793 rad + pos: -66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11155 components: - type: Transform - pos: 404.5,347.5 - parent: 1 - - uid: 7073 + rot: 1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11172 components: - type: Transform - pos: 402.5,342.5 - parent: 1 - - uid: 7074 + rot: 3.141592653589793 rad + pos: -48.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11210 components: - type: Transform - pos: 404.5,342.5 - parent: 1 - - uid: 7075 + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11227 components: - type: Transform - pos: 405.5,342.5 - parent: 1 - - uid: 7076 + rot: 1.5707963267948966 rad + pos: -39.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11257 components: - type: Transform - pos: 403.5,342.5 - parent: 1 - - uid: 7077 + rot: -1.5707963267948966 rad + pos: -75.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11276 components: - type: Transform - pos: 400.5,340.5 - parent: 1 - - uid: 7078 + rot: 1.5707963267948966 rad + pos: -104.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11278 components: - type: Transform - pos: 402.5,341.5 - parent: 1 - - uid: 7079 + rot: 3.141592653589793 rad + pos: -102.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11396 components: - type: Transform - pos: 403.5,343.5 - parent: 1 - - uid: 7080 + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11397 components: - type: Transform - pos: 408.5,344.5 - parent: 1 - - uid: 7081 + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11398 components: - type: Transform - pos: 409.5,344.5 - parent: 1 - - uid: 7082 + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11399 components: - type: Transform - pos: 407.5,344.5 - parent: 1 - - uid: 7083 + pos: -30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11576 components: - type: Transform - pos: 408.5,345.5 - parent: 1 - - uid: 7084 + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11584 components: - type: Transform - pos: 410.5,347.5 - parent: 1 - - uid: 7085 + pos: -28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11585 components: - type: Transform - pos: 410.5,346.5 - parent: 1 - - uid: 7086 + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11601 components: - type: Transform - pos: 409.5,347.5 - parent: 1 - - uid: 7087 + rot: 3.141592653589793 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11642 components: - type: Transform - pos: 407.5,362.5 - parent: 1 - - uid: 7088 + rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11646 components: - type: Transform - pos: 408.5,349.5 - parent: 1 - - uid: 7090 + rot: -1.5707963267948966 rad + pos: -43.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11647 components: - type: Transform - pos: 408.5,350.5 - parent: 1 - - uid: 7091 + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11648 components: - type: Transform - pos: 410.5,349.5 - parent: 1 - - uid: 7092 + rot: -1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11708 components: - type: Transform - pos: 411.5,347.5 - parent: 1 - - uid: 7093 + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11763 components: - type: Transform - pos: 413.5,347.5 - parent: 1 - - uid: 7094 + rot: -1.5707963267948966 rad + pos: -103.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11845 components: - type: Transform - pos: 412.5,347.5 - parent: 1 - - uid: 7095 + rot: 1.5707963267948966 rad + pos: -104.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11886 components: - type: Transform - pos: 412.5,349.5 - parent: 1 - - uid: 7096 + pos: -104.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11895 components: - type: Transform - pos: 410.5,351.5 - parent: 1 - - uid: 7097 + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11897 components: - type: Transform - pos: 410.5,353.5 - parent: 1 - - uid: 7098 + pos: -110.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11904 components: - type: Transform - pos: 410.5,354.5 - parent: 1 - - uid: 7099 + rot: 1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11913 components: - type: Transform - pos: 410.5,352.5 - parent: 1 - - uid: 7100 + rot: -1.5707963267948966 rad + pos: -28.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11921 components: - type: Transform - pos: 409.5,352.5 - parent: 1 - - uid: 7101 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11931 components: - type: Transform - pos: 411.5,354.5 - parent: 1 - - uid: 7102 + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11932 components: - type: Transform - pos: 412.5,354.5 - parent: 1 - - uid: 7103 + pos: -9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11945 components: - type: Transform - pos: 410.5,355.5 - parent: 1 - - uid: 7104 + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11946 components: - type: Transform - pos: 411.5,358.5 - parent: 1 - - uid: 7105 + rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11952 components: - type: Transform - pos: 411.5,359.5 - parent: 1 - - uid: 7106 + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11958 components: - type: Transform - pos: 411.5,357.5 - parent: 1 - - uid: 7107 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11965 components: - type: Transform - pos: 410.5,359.5 - parent: 1 - - uid: 7108 + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11966 components: - type: Transform - pos: 408.5,359.5 - parent: 1 - - uid: 7109 + rot: 1.5707963267948966 rad + pos: -4.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11974 components: - type: Transform - pos: 408.5,360.5 - parent: 1 - - uid: 7110 + rot: -1.5707963267948966 rad + pos: -19.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12005 components: - type: Transform - pos: 402.5,362.5 - parent: 1 - - uid: 7111 + rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12006 components: - type: Transform - pos: 416.5,347.5 - parent: 1 - - uid: 7112 + rot: -1.5707963267948966 rad + pos: -38.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12007 components: - type: Transform - pos: 417.5,347.5 - parent: 1 - - uid: 7113 + rot: 1.5707963267948966 rad + pos: -38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12121 components: - type: Transform - pos: 418.5,347.5 - parent: 1 - - uid: 7114 + pos: -22.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12122 components: - type: Transform - pos: 419.5,347.5 - parent: 1 - - uid: 7115 + rot: 1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12142 components: - type: Transform - pos: 420.5,347.5 - parent: 1 - - uid: 7116 + rot: 1.5707963267948966 rad + pos: -103.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12150 components: - type: Transform - pos: 415.5,347.5 - parent: 1 - - uid: 7117 + rot: -1.5707963267948966 rad + pos: -105.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12161 components: - type: Transform - pos: 417.5,348.5 - parent: 1 - - uid: 7118 + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12166 components: - type: Transform - pos: 415.5,346.5 - parent: 1 - - uid: 7119 + rot: 1.5707963267948966 rad + pos: -105.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12171 components: - type: Transform - pos: 415.5,345.5 - parent: 1 - - uid: 7120 + rot: -1.5707963267948966 rad + pos: -19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12237 components: - type: Transform - pos: 414.5,345.5 - parent: 1 - - uid: 7121 + pos: -45.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12248 components: - type: Transform - pos: 417.5,345.5 - parent: 1 - - uid: 7122 + rot: 1.5707963267948966 rad + pos: -37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12256 components: - type: Transform - pos: 419.5,345.5 - parent: 1 - - uid: 7123 + pos: -33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12266 components: - type: Transform - pos: 422.5,347.5 - parent: 1 - - uid: 7124 + rot: 1.5707963267948966 rad + pos: -37.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12272 components: - type: Transform - pos: 424.5,347.5 - parent: 1 - - uid: 7125 + rot: 1.5707963267948966 rad + pos: -58.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12275 components: - type: Transform - pos: 423.5,347.5 - parent: 1 - - uid: 7126 + pos: -30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12278 components: - type: Transform - pos: 420.5,348.5 - parent: 1 - - uid: 7127 + pos: -28.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12286 components: - type: Transform - pos: 420.5,349.5 - parent: 1 - - uid: 7128 + rot: 1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12287 components: - type: Transform - pos: 425.5,348.5 - parent: 1 - - uid: 7129 + rot: 1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12288 components: - type: Transform - pos: 426.5,348.5 - parent: 1 - - uid: 7130 + rot: -1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12296 components: - type: Transform - pos: 427.5,348.5 - parent: 1 - - uid: 7131 + rot: 3.141592653589793 rad + pos: -53.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12297 components: - type: Transform - pos: 424.5,348.5 - parent: 1 - - uid: 7132 + rot: -1.5707963267948966 rad + pos: -58.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12308 components: - type: Transform - pos: 428.5,351.5 - parent: 1 - - uid: 7134 + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12323 components: - type: Transform - pos: 428.5,354.5 - parent: 1 - - uid: 7135 + rot: 1.5707963267948966 rad + pos: -104.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12324 components: - type: Transform - pos: 428.5,356.5 - parent: 1 - - uid: 7136 + rot: 3.141592653589793 rad + pos: -45.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12332 components: - type: Transform - pos: 428.5,357.5 - parent: 1 - - uid: 7137 + rot: -1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12368 components: - type: Transform - pos: 428.5,358.5 - parent: 1 - - uid: 7138 + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12391 components: - type: Transform - pos: 428.5,355.5 - parent: 1 - - uid: 7139 + rot: 3.141592653589793 rad + pos: -25.5,-29.5 + parent: 2 + - uid: 12398 components: - type: Transform - pos: 427.5,355.5 - parent: 1 - - uid: 7140 + rot: 3.141592653589793 rad + pos: -22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12400 components: - type: Transform - pos: 429.5,358.5 - parent: 1 - - uid: 7142 + rot: 3.141592653589793 rad + pos: -22.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12404 components: - type: Transform - pos: 429.5,360.5 - parent: 1 - - uid: 7143 + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12409 components: - type: Transform - pos: 428.5,362.5 - parent: 1 - - uid: 7144 + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12412 components: - type: Transform - pos: 427.5,364.5 - parent: 1 - - uid: 7145 + pos: -24.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12416 components: - type: Transform - pos: 427.5,365.5 - parent: 1 - - uid: 7146 + pos: -20.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12458 components: - type: Transform - pos: 425.5,366.5 - parent: 1 - - uid: 7147 + rot: 3.141592653589793 rad + pos: -57.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12461 components: - type: Transform - pos: 428.5,366.5 - parent: 1 - - uid: 7148 + pos: -27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12475 components: - type: Transform - pos: 426.5,368.5 - parent: 1 - - uid: 7149 + rot: 3.141592653589793 rad + pos: -68.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12476 components: - type: Transform - pos: 428.5,368.5 - parent: 1 - - uid: 7153 + rot: 1.5707963267948966 rad + pos: -28.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12483 components: - type: Transform - pos: 432.5,368.5 - parent: 1 - - uid: 7154 + rot: 1.5707963267948966 rad + pos: -64.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12485 components: - type: Transform - pos: 427.5,368.5 - parent: 1 - - uid: 7158 + rot: 3.141592653589793 rad + pos: -53.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12486 components: - type: Transform - pos: 433.5,370.5 - parent: 1 - - uid: 7159 + rot: 3.141592653589793 rad + pos: -51.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12487 components: - type: Transform - pos: 432.5,370.5 - parent: 1 - - uid: 7160 + rot: 3.141592653589793 rad + pos: -55.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12488 components: - type: Transform - pos: 435.5,370.5 - parent: 1 - - uid: 7161 + pos: -49.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12489 components: - type: Transform - pos: 437.5,370.5 - parent: 1 - - uid: 7162 + pos: -46.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12505 components: - type: Transform - pos: 436.5,370.5 - parent: 1 - - uid: 7163 + pos: -59.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12509 components: - type: Transform - pos: 434.5,368.5 - parent: 1 - - uid: 7164 + rot: 3.141592653589793 rad + pos: -37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12510 components: - type: Transform - pos: 435.5,368.5 - parent: 1 - - uid: 7165 + rot: 3.141592653589793 rad + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12528 components: - type: Transform - pos: 437.5,368.5 - parent: 1 - - uid: 7166 + rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12582 components: - type: Transform - pos: 436.5,368.5 - parent: 1 - - uid: 7167 + rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12589 components: - type: Transform - pos: 439.5,369.5 - parent: 1 - - uid: 7170 + rot: 1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12619 components: - type: Transform - pos: 426.5,370.5 - parent: 1 - - uid: 7171 + pos: -22.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12665 components: - type: Transform - pos: 439.5,373.5 - parent: 1 - - uid: 7172 + pos: -44.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12666 components: - type: Transform - pos: 436.5,374.5 - parent: 1 - - uid: 7173 + pos: -45.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12682 components: - type: Transform - pos: 432.5,376.5 - parent: 1 - - uid: 7174 + pos: -48.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12687 components: - type: Transform - pos: 433.5,376.5 - parent: 1 - - uid: 7175 + pos: -48.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12773 components: - type: Transform - pos: 434.5,376.5 - parent: 1 - - uid: 7176 + rot: 1.5707963267948966 rad + pos: -42.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12782 components: - type: Transform - pos: 431.5,376.5 - parent: 1 - - uid: 7177 + rot: 3.141592653589793 rad + pos: -11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12786 components: - type: Transform - pos: 437.5,376.5 - parent: 1 - - uid: 7178 + rot: 1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12796 components: - type: Transform - pos: 438.5,376.5 - parent: 1 - - uid: 7179 + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12890 components: - type: Transform - pos: 430.5,378.5 - parent: 1 - - uid: 7180 + rot: 3.141592653589793 rad + pos: -85.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12893 components: - type: Transform - pos: 432.5,378.5 - parent: 1 - - uid: 7181 + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12899 components: - type: Transform - pos: 431.5,378.5 - parent: 1 - - uid: 7182 + rot: 3.141592653589793 rad + pos: -29.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12900 components: - type: Transform - pos: 436.5,378.5 - parent: 1 - - uid: 7183 + rot: -1.5707963267948966 rad + pos: -41.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12946 components: - type: Transform - pos: 438.5,378.5 - parent: 1 - - uid: 7184 + pos: -91.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13028 components: - type: Transform - pos: 437.5,378.5 - parent: 1 - - uid: 7186 + pos: -18.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13045 components: - type: Transform - pos: 439.5,380.5 - parent: 1 - - uid: 7187 + rot: 3.141592653589793 rad + pos: -89.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13171 components: - type: Transform - pos: 439.5,397.5 - parent: 1 - - uid: 7188 + rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13178 components: - type: Transform - pos: 440.5,392.5 - parent: 1 - - uid: 7189 + rot: 1.5707963267948966 rad + pos: -74.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13179 components: - type: Transform - pos: 439.5,392.5 - parent: 1 - - uid: 7190 + rot: 3.141592653589793 rad + pos: -84.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13181 components: - type: Transform - pos: 438.5,396.5 - parent: 1 - - uid: 7191 + rot: -1.5707963267948966 rad + pos: -66.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13211 components: - type: Transform - pos: 438.5,395.5 - parent: 1 - - uid: 7192 + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13255 components: - type: Transform - pos: 438.5,397.5 - parent: 1 - - uid: 7193 + rot: 1.5707963267948966 rad + pos: -75.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13256 components: - type: Transform - pos: 438.5,398.5 - parent: 1 - - uid: 7194 + rot: 1.5707963267948966 rad + pos: -74.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13258 components: - type: Transform - pos: 438.5,401.5 - parent: 1 - - uid: 7195 + rot: -1.5707963267948966 rad + pos: -42.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13449 components: - type: Transform - pos: 438.5,402.5 - parent: 1 - - uid: 7196 + rot: 3.141592653589793 rad + pos: -79.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13487 components: - type: Transform - pos: 438.5,403.5 - parent: 1 - - uid: 7197 + pos: -103.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13617 components: - type: Transform - pos: 437.5,401.5 - parent: 1 - - uid: 7198 + rot: 3.141592653589793 rad + pos: -133.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13631 components: - type: Transform - pos: 438.5,404.5 - parent: 1 - - uid: 7199 + rot: 1.5707963267948966 rad + pos: -103.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13687 components: - type: Transform - pos: 437.5,404.5 - parent: 1 - - uid: 7200 + rot: 3.141592653589793 rad + pos: -135.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13714 components: - type: Transform - pos: 438.5,400.5 - parent: 1 - - uid: 7201 + pos: -91.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13717 components: - type: Transform - pos: 447.5,394.5 - parent: 1 - - uid: 7202 + rot: -1.5707963267948966 rad + pos: -142.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13825 components: - type: Transform - pos: 446.5,397.5 - parent: 1 - - uid: 7203 + rot: 3.141592653589793 rad + pos: -139.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14136 components: - type: Transform - pos: 447.5,397.5 - parent: 1 - - uid: 7204 + rot: 3.141592653589793 rad + pos: -85.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14178 components: - type: Transform - pos: 445.5,397.5 - parent: 1 - - uid: 7205 + pos: -81.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14190 components: - type: Transform - pos: 447.5,398.5 - parent: 1 - - uid: 7206 + rot: 1.5707963267948966 rad + pos: -81.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14290 components: - type: Transform - pos: 448.5,398.5 - parent: 1 - - uid: 7207 + rot: -1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14296 components: - type: Transform - pos: 446.5,400.5 - parent: 1 - - uid: 7208 + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14731 components: - type: Transform - pos: 446.5,396.5 - parent: 1 - - uid: 7209 + rot: -1.5707963267948966 rad + pos: -91.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14733 components: - type: Transform - pos: 446.5,395.5 - parent: 1 - - uid: 7210 + rot: 1.5707963267948966 rad + pos: -91.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14737 components: - type: Transform - pos: 446.5,394.5 - parent: 1 - - uid: 7211 + rot: 1.5707963267948966 rad + pos: -90.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14789 components: - type: Transform - pos: 446.5,393.5 - parent: 1 - - uid: 7212 + rot: -1.5707963267948966 rad + pos: -50.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14797 components: - type: Transform - pos: 444.5,392.5 - parent: 1 - - uid: 7213 + rot: 1.5707963267948966 rad + pos: -51.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14800 components: - type: Transform - pos: 445.5,391.5 - parent: 1 - - uid: 7214 + rot: -1.5707963267948966 rad + pos: -53.5,-45.5 + parent: 2 + - uid: 14831 components: - type: Transform - pos: 451.5,397.5 - parent: 1 - - uid: 7215 + rot: -1.5707963267948966 rad + pos: -93.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14836 components: - type: Transform - pos: 452.5,399.5 - parent: 1 - - uid: 7216 + rot: 1.5707963267948966 rad + pos: -87.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14852 components: - type: Transform - pos: 454.5,396.5 - parent: 1 - - uid: 7217 + pos: -62.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14855 components: - type: Transform - pos: 454.5,397.5 - parent: 1 - - uid: 7218 + rot: 3.141592653589793 rad + pos: -60.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14879 components: - type: Transform - pos: 455.5,396.5 - parent: 1 - - uid: 7219 + rot: 1.5707963267948966 rad + pos: -104.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14890 components: - type: Transform - pos: 455.5,395.5 - parent: 1 - - uid: 7220 + pos: -115.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14910 components: - type: Transform - pos: 455.5,394.5 - parent: 1 - - uid: 7221 + rot: 1.5707963267948966 rad + pos: -119.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14932 components: - type: Transform - pos: 456.5,396.5 - parent: 1 - - uid: 7222 + rot: 3.141592653589793 rad + pos: -123.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14957 components: - type: Transform - pos: 457.5,397.5 - parent: 1 - - uid: 7223 + rot: -1.5707963267948966 rad + pos: -57.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14965 components: - type: Transform - pos: 457.5,398.5 - parent: 1 - - uid: 7224 + rot: 3.141592653589793 rad + pos: -60.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14969 components: - type: Transform - pos: 456.5,398.5 - parent: 1 - - uid: 7225 + pos: -62.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15024 components: - type: Transform - pos: 458.5,398.5 - parent: 1 - - uid: 7226 + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15025 components: - type: Transform - pos: 459.5,398.5 - parent: 1 - - uid: 7227 + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15071 components: - type: Transform - pos: 462.5,419.5 - parent: 1 - - uid: 7228 + rot: 3.141592653589793 rad + pos: -65.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15072 components: - type: Transform - pos: 458.5,396.5 - parent: 1 - - uid: 7229 + pos: -65.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15074 components: - type: Transform - pos: 461.5,396.5 - parent: 1 - - uid: 7230 + pos: -98.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15077 components: - type: Transform - pos: 461.5,395.5 - parent: 1 - - uid: 7231 + pos: -151.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15089 components: - type: Transform - pos: 461.5,397.5 - parent: 1 - - uid: 7232 + pos: -95.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15120 components: - type: Transform - pos: 463.5,398.5 - parent: 1 - - uid: 7233 + rot: -1.5707963267948966 rad + pos: -50.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15131 components: - type: Transform - pos: 462.5,398.5 - parent: 1 - - uid: 7234 + pos: -94.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15155 components: - type: Transform - pos: 463.5,400.5 - parent: 1 - - uid: 7235 + rot: 3.141592653589793 rad + pos: -67.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15162 components: - type: Transform - pos: 463.5,399.5 - parent: 1 - - uid: 7236 + rot: 1.5707963267948966 rad + pos: -88.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15165 components: - type: Transform - pos: 463.5,397.5 - parent: 1 - - uid: 7237 + rot: 3.141592653589793 rad + pos: -119.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15186 components: - type: Transform - pos: 465.5,398.5 - parent: 1 - - uid: 7239 + rot: 3.141592653589793 rad + pos: -66.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15187 components: - type: Transform - pos: 465.5,397.5 - parent: 1 - - uid: 7241 + rot: 3.141592653589793 rad + pos: -61.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15190 components: - type: Transform - pos: 465.5,394.5 - parent: 1 - - uid: 7242 + rot: 3.141592653589793 rad + pos: -60.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15204 components: - type: Transform - pos: 467.5,394.5 - parent: 1 - - uid: 7243 + pos: -64.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15208 components: - type: Transform - pos: 468.5,394.5 - parent: 1 - - uid: 7244 + rot: 3.141592653589793 rad + pos: -66.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15226 components: - type: Transform - pos: 466.5,394.5 - parent: 1 - - uid: 7246 + pos: -119.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15270 components: - type: Transform - pos: 467.5,396.5 - parent: 1 - - uid: 7247 + rot: 1.5707963267948966 rad + pos: -94.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15350 components: - type: Transform - pos: 469.5,396.5 - parent: 1 - - uid: 7248 + rot: 1.5707963267948966 rad + pos: -30.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15409 components: - type: Transform - pos: 468.5,396.5 - parent: 1 - - uid: 7249 + pos: -127.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15424 components: - type: Transform - pos: 471.5,396.5 - parent: 1 - - uid: 7250 + rot: 3.141592653589793 rad + pos: -127.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15428 components: - type: Transform - pos: 471.5,394.5 - parent: 1 - - uid: 7251 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15449 components: - type: Transform - pos: 471.5,393.5 - parent: 1 - - uid: 7252 + rot: 1.5707963267948966 rad + pos: -41.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15620 components: - type: Transform - pos: 471.5,395.5 - parent: 1 - - uid: 7253 + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15621 components: - type: Transform - pos: 472.5,393.5 - parent: 1 - - uid: 7254 + rot: 1.5707963267948966 rad + pos: -43.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15625 components: - type: Transform - pos: 474.5,393.5 - parent: 1 - - uid: 7255 + rot: 1.5707963267948966 rad + pos: -105.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15628 components: - type: Transform - pos: 473.5,393.5 - parent: 1 - - uid: 7256 + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15629 components: - type: Transform - pos: 472.5,396.5 - parent: 1 - - uid: 7257 + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15631 components: - type: Transform - pos: 470.5,397.5 - parent: 1 - - uid: 7258 + rot: 3.141592653589793 rad + pos: -60.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15671 components: - type: Transform - pos: 468.5,399.5 - parent: 1 - - uid: 7259 + rot: 3.141592653589793 rad + pos: -62.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15678 components: - type: Transform - pos: 467.5,399.5 - parent: 1 - - uid: 7260 + rot: 3.141592653589793 rad + pos: -65.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15860 components: - type: Transform - pos: 468.5,400.5 - parent: 1 - - uid: 7261 + rot: 1.5707963267948966 rad + pos: -96.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15904 components: - type: Transform - pos: 468.5,401.5 - parent: 1 - - uid: 7263 + pos: -53.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15925 components: - type: Transform - pos: 464.5,402.5 - parent: 1 - - uid: 7264 + pos: -57.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15926 components: - type: Transform - pos: 464.5,403.5 - parent: 1 - - uid: 7265 + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15930 components: - type: Transform - pos: 466.5,403.5 - parent: 1 - - uid: 7267 + pos: -64.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15959 components: - type: Transform - pos: 468.5,407.5 - parent: 1 - - uid: 7268 + rot: 1.5707963267948966 rad + pos: -75.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15967 components: - type: Transform - pos: 468.5,406.5 - parent: 1 - - uid: 7269 + rot: -1.5707963267948966 rad + pos: -93.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16062 components: - type: Transform - pos: 466.5,406.5 - parent: 1 - - uid: 7270 + pos: -80.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16116 components: - type: Transform - pos: 466.5,407.5 - parent: 1 - - uid: 7271 + pos: -82.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16152 components: - type: Transform - pos: 469.5,404.5 - parent: 1 - - uid: 7274 + pos: -72.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16176 components: - type: Transform - pos: 468.5,409.5 - parent: 1 - - uid: 7275 + rot: 3.141592653589793 rad + pos: -68.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16207 components: - type: Transform - pos: 469.5,409.5 - parent: 1 - - uid: 7276 + rot: 3.141592653589793 rad + pos: -65.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16530 components: - type: Transform - pos: 467.5,411.5 - parent: 1 - - uid: 7277 + rot: 1.5707963267948966 rad + pos: -96.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16553 components: - type: Transform - pos: 468.5,411.5 - parent: 1 - - uid: 7278 + rot: 3.141592653589793 rad + pos: -55.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16741 components: - type: Transform - pos: 469.5,411.5 - parent: 1 - - uid: 7283 + rot: 1.5707963267948966 rad + pos: -65.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16804 components: - type: Transform - pos: 473.5,410.5 - parent: 1 - - uid: 7284 + rot: 3.141592653589793 rad + pos: -68.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16878 components: - type: Transform - pos: 473.5,409.5 - parent: 1 - - uid: 7285 + pos: -67.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16881 components: - type: Transform - pos: 472.5,409.5 - parent: 1 - - uid: 7286 + pos: -26.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16882 components: - type: Transform - pos: 471.5,407.5 - parent: 1 - - uid: 7287 + rot: 1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16943 components: - type: Transform - pos: 464.5,412.5 - parent: 1 - - uid: 7288 + rot: -1.5707963267948966 rad + pos: -67.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17150 components: - type: Transform - pos: 463.5,412.5 - parent: 1 - - uid: 7289 + rot: 1.5707963267948966 rad + pos: -25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17166 components: - type: Transform - pos: 464.5,415.5 - parent: 1 - - uid: 7290 + pos: -85.5,1.5 + parent: 2 + - uid: 17299 components: - type: Transform - pos: 464.5,416.5 - parent: 1 - - uid: 7291 + rot: -1.5707963267948966 rad + pos: -141.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17302 components: - type: Transform - pos: 463.5,415.5 - parent: 1 - - uid: 7292 + pos: -141.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17310 components: - type: Transform - pos: 476.5,411.5 - parent: 1 - - uid: 7293 + rot: -1.5707963267948966 rad + pos: -141.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17311 components: - type: Transform - pos: 475.5,411.5 - parent: 1 - - uid: 7294 + rot: 3.141592653589793 rad + pos: -138.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17614 components: - type: Transform - pos: 476.5,410.5 - parent: 1 - - uid: 7295 + rot: -1.5707963267948966 rad + pos: -15.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17638 components: - type: Transform - pos: 476.5,408.5 - parent: 1 - - uid: 7296 + rot: -1.5707963267948966 rad + pos: -15.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17809 components: - type: Transform - pos: 476.5,409.5 - parent: 1 - - uid: 7298 + rot: -1.5707963267948966 rad + pos: -65.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17863 components: - type: Transform - pos: 479.5,408.5 - parent: 1 - - uid: 7299 + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17864 components: - type: Transform - pos: 480.5,408.5 - parent: 1 - - uid: 7301 + rot: 3.141592653589793 rad + pos: -18.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17871 components: - type: Transform - pos: 482.5,408.5 - parent: 1 - - uid: 7302 + pos: -109.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17879 components: - type: Transform - pos: 483.5,408.5 - parent: 1 - - uid: 7304 + pos: -99.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17884 components: - type: Transform - pos: 484.5,408.5 - parent: 1 - - uid: 7307 + rot: -1.5707963267948966 rad + pos: -94.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17887 components: - type: Transform - pos: 478.5,411.5 - parent: 1 - - uid: 7309 + rot: -1.5707963267948966 rad + pos: -96.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17895 components: - type: Transform - pos: 474.5,407.5 - parent: 1 - - uid: 7310 + rot: 1.5707963267948966 rad + pos: -96.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17930 components: - type: Transform - pos: 474.5,406.5 - parent: 1 - - uid: 7311 + rot: 1.5707963267948966 rad + pos: -96.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17936 components: - type: Transform - pos: 475.5,406.5 - parent: 1 - - uid: 7312 + pos: -95.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17937 components: - type: Transform - pos: 475.5,405.5 - parent: 1 - - uid: 7313 + rot: 3.141592653589793 rad + pos: -94.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17941 components: - type: Transform - pos: 481.5,406.5 - parent: 1 - - uid: 7314 + pos: -90.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17952 components: - type: Transform - pos: 483.5,406.5 - parent: 1 - - uid: 7315 + pos: -92.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17963 components: - type: Transform - pos: 484.5,406.5 - parent: 1 - - uid: 7316 + rot: 3.141592653589793 rad + pos: -90.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17972 components: - type: Transform - pos: 485.5,406.5 - parent: 1 - - uid: 7317 + rot: 3.141592653589793 rad + pos: -92.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17977 components: - type: Transform - pos: 486.5,406.5 - parent: 1 - - uid: 7318 + rot: 3.141592653589793 rad + pos: -91.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17983 components: - type: Transform - pos: 487.5,406.5 - parent: 1 - - uid: 7319 + pos: -88.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17991 components: - type: Transform - pos: 488.5,406.5 - parent: 1 - - uid: 7320 + rot: 1.5707963267948966 rad + pos: -96.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17998 components: - type: Transform - pos: 482.5,406.5 - parent: 1 - - uid: 7321 + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18000 components: - type: Transform - pos: 486.5,407.5 - parent: 1 - - uid: 7322 + pos: -91.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18003 components: - type: Transform - pos: 489.5,408.5 - parent: 1 - - uid: 7323 + rot: 1.5707963267948966 rad + pos: -92.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18011 components: - type: Transform - pos: 490.5,408.5 - parent: 1 - - uid: 7324 + rot: 1.5707963267948966 rad + pos: -91.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18014 components: - type: Transform - pos: 490.5,406.5 - parent: 1 - - uid: 7325 + rot: 3.141592653589793 rad + pos: -86.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18030 components: - type: Transform - pos: 491.5,406.5 - parent: 1 - - uid: 7326 + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18049 components: - type: Transform - pos: 493.5,406.5 - parent: 1 - - uid: 7327 + rot: -1.5707963267948966 rad + pos: -81.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18054 components: - type: Transform - pos: 494.5,406.5 - parent: 1 - - uid: 7328 + rot: 1.5707963267948966 rad + pos: -82.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18062 components: - type: Transform - pos: 492.5,406.5 - parent: 1 - - uid: 7329 + rot: 3.141592653589793 rad + pos: -82.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18085 components: - type: Transform - pos: 494.5,404.5 - parent: 1 - - uid: 7330 + rot: 3.141592653589793 rad + pos: -114.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18101 components: - type: Transform - pos: 494.5,403.5 - parent: 1 - - uid: 7331 + rot: 1.5707963267948966 rad + pos: -92.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18130 components: - type: Transform - pos: 494.5,405.5 - parent: 1 - - uid: 7332 + rot: 3.141592653589793 rad + pos: -62.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18144 components: - type: Transform - pos: 496.5,403.5 - parent: 1 - - uid: 7333 + rot: 3.141592653589793 rad + pos: -24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18176 components: - type: Transform - pos: 496.5,402.5 - parent: 1 - - uid: 7334 + rot: -1.5707963267948966 rad + pos: -95.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18186 components: - type: Transform - pos: 496.5,404.5 - parent: 1 - - uid: 7339 + rot: 1.5707963267948966 rad + pos: -99.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18198 components: - type: Transform - pos: 493.5,401.5 - parent: 1 - - uid: 7340 + rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18208 components: - type: Transform - pos: 495.5,408.5 - parent: 1 - - uid: 7341 + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18379 components: - type: Transform - pos: 496.5,408.5 - parent: 1 - - uid: 7342 + pos: -122.5,12.5 + parent: 2 + - uid: 18694 components: - type: Transform - pos: 496.5,407.5 - parent: 1 - - uid: 7343 + rot: -1.5707963267948966 rad + pos: -83.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18811 components: - type: Transform - pos: 497.5,407.5 - parent: 1 - - uid: 7344 + rot: 3.141592653589793 rad + pos: -103.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18837 components: - type: Transform - pos: 488.5,404.5 - parent: 1 - - uid: 7345 + rot: 3.141592653589793 rad + pos: -88.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18845 components: - type: Transform - pos: 460.5,419.5 - parent: 1 - - uid: 7346 + rot: 1.5707963267948966 rad + pos: -114.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18864 components: - type: Transform - pos: 458.5,419.5 - parent: 1 - - uid: 7347 + rot: -1.5707963267948966 rad + pos: -109.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18865 components: - type: Transform - pos: 459.5,419.5 - parent: 1 - - uid: 7348 + rot: 3.141592653589793 rad + pos: -110.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18876 components: - type: Transform - pos: 458.5,420.5 - parent: 1 - - uid: 7349 + pos: -126.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18886 components: - type: Transform - pos: 457.5,420.5 - parent: 1 - - uid: 7350 + rot: -1.5707963267948966 rad + pos: -114.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18911 components: - type: Transform - pos: 455.5,420.5 - parent: 1 - - uid: 7351 + rot: 1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18936 components: - type: Transform - pos: 453.5,425.5 - parent: 1 - - uid: 7352 + rot: -1.5707963267948966 rad + pos: -140.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18937 components: - type: Transform - pos: 451.5,425.5 - parent: 1 - - uid: 7353 + rot: -1.5707963267948966 rad + pos: -99.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18953 components: - type: Transform - pos: 450.5,425.5 - parent: 1 - - uid: 7354 + pos: -85.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18954 components: - type: Transform - pos: 452.5,425.5 - parent: 1 - - uid: 7355 + pos: -90.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18967 components: - type: Transform - pos: 448.5,425.5 - parent: 1 - - uid: 7386 + pos: -98.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,421.5 - parent: 1 - - uid: 7387 + pos: -137.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,422.5 - parent: 1 - - uid: 7990 + rot: -1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19349 components: - type: Transform - pos: 323.5,446.5 - parent: 1 - - uid: 8033 + pos: -84.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19350 components: - type: Transform - pos: 324.5,447.5 - parent: 1 - - uid: 8034 + rot: 3.141592653589793 rad + pos: -87.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19574 components: - type: Transform - pos: 325.5,446.5 - parent: 1 - - uid: 8035 + rot: -1.5707963267948966 rad + pos: -94.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19662 components: - type: Transform - pos: 326.5,447.5 - parent: 1 - - uid: 8036 + pos: -89.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19663 components: - type: Transform - pos: 327.5,446.5 - parent: 1 - - uid: 8037 + pos: -88.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19691 components: - type: Transform - pos: 327.5,445.5 - parent: 1 - - uid: 8038 + rot: 1.5707963267948966 rad + pos: -86.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19697 components: - type: Transform - pos: 327.5,443.5 - parent: 1 - - uid: 8056 + pos: -91.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19718 components: - type: Transform - pos: 354.5,441.5 - parent: 1 - - uid: 8057 + rot: -1.5707963267948966 rad + pos: -94.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20038 components: - type: Transform - pos: 356.5,441.5 - parent: 1 - - uid: 8058 + rot: 3.141592653589793 rad + pos: -110.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20046 components: - type: Transform - pos: 357.5,441.5 - parent: 1 - - uid: 8059 + pos: -114.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20047 components: - type: Transform - pos: 355.5,441.5 - parent: 1 - - uid: 8061 + rot: 3.141592653589793 rad + pos: -120.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20072 components: - type: Transform - pos: 359.5,440.5 - parent: 1 - - uid: 8067 + rot: -1.5707963267948966 rad + pos: -115.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20105 components: - type: Transform - pos: 359.5,435.5 - parent: 1 - - uid: 8070 + pos: -121.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20111 components: - type: Transform - pos: 361.5,442.5 - parent: 1 - - uid: 8071 + rot: -1.5707963267948966 rad + pos: -113.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20122 components: - type: Transform - pos: 362.5,442.5 - parent: 1 - - uid: 8072 + rot: -1.5707963267948966 rad + pos: -113.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20123 components: - type: Transform - pos: 363.5,442.5 - parent: 1 - - uid: 8073 + rot: -1.5707963267948966 rad + pos: -115.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20128 components: - type: Transform - pos: 364.5,442.5 - parent: 1 - - uid: 8074 + rot: 3.141592653589793 rad + pos: -119.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20168 components: - type: Transform - pos: 362.5,443.5 - parent: 1 - - uid: 8076 + pos: -125.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20188 components: - type: Transform - pos: 363.5,441.5 - parent: 1 - - uid: 8077 + rot: 3.141592653589793 rad + pos: -103.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20192 components: - type: Transform - pos: 363.5,440.5 - parent: 1 - - uid: 8078 + rot: -1.5707963267948966 rad + pos: -104.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20201 components: - type: Transform - pos: 362.5,440.5 - parent: 1 - - uid: 8079 + rot: 3.141592653589793 rad + pos: -125.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20206 components: - type: Transform - pos: 380.5,444.5 - parent: 1 - - uid: 8080 + rot: 3.141592653589793 rad + pos: -129.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20224 components: - type: Transform - pos: 365.5,440.5 - parent: 1 - - uid: 8081 + rot: 1.5707963267948966 rad + pos: -30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20236 components: - type: Transform - pos: 367.5,440.5 - parent: 1 - - uid: 8082 + pos: -135.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20239 components: - type: Transform - pos: 368.5,440.5 - parent: 1 - - uid: 8083 + pos: -134.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20256 components: - type: Transform - pos: 366.5,440.5 - parent: 1 - - uid: 8084 + rot: 3.141592653589793 rad + pos: -129.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20358 components: - type: Transform - pos: 367.5,442.5 - parent: 1 - - uid: 8085 + rot: -1.5707963267948966 rad + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20523 components: - type: Transform - pos: 367.5,441.5 - parent: 1 - - uid: 8086 + rot: 1.5707963267948966 rad + pos: -82.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20548 components: - type: Transform - pos: 366.5,442.5 - parent: 1 - - uid: 8087 + rot: 1.5707963267948966 rad + pos: -76.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20550 components: - type: Transform - pos: 366.5,443.5 - parent: 1 - - uid: 8088 + rot: 3.141592653589793 rad + pos: -72.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20565 components: - type: Transform - pos: 369.5,442.5 - parent: 1 - - uid: 8090 + rot: 3.141592653589793 rad + pos: -71.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20586 components: - type: Transform rot: 1.5707963267948966 rad - pos: 426.5,424.5 - parent: 1 - - uid: 8091 - components: - - type: Transform - pos: 372.5,442.5 - parent: 1 - - uid: 8092 + pos: -55.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20587 components: - type: Transform - pos: 373.5,442.5 - parent: 1 - - uid: 8093 + rot: 1.5707963267948966 rad + pos: -54.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20846 components: - type: Transform - pos: 373.5,443.5 - parent: 1 - - uid: 8094 + anchored: False + rot: 3.141592653589793 rad + pos: -20.5,-54.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 20961 components: - type: Transform - pos: 373.5,444.5 - parent: 1 - - uid: 8095 + rot: 3.141592653589793 rad + pos: -107.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22208 components: - type: Transform - pos: 374.5,444.5 - parent: 1 - - uid: 8096 + rot: 1.5707963267948966 rad + pos: -104.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,425.5 - parent: 1 - - uid: 8097 + rot: -1.5707963267948966 rad + pos: -134.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23116 components: - type: Transform - pos: 370.5,439.5 - parent: 1 - - uid: 8098 + pos: -137.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23128 components: - type: Transform - pos: 374.5,440.5 - parent: 1 - - uid: 8099 + rot: 3.141592653589793 rad + pos: -29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23199 components: - type: Transform - pos: 375.5,440.5 - parent: 1 - - uid: 8100 + rot: 1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23200 components: - type: Transform - pos: 378.5,442.5 - parent: 1 - - uid: 8101 + rot: 3.141592653589793 rad + pos: -88.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23243 components: - type: Transform - pos: 375.5,441.5 - parent: 1 - - uid: 8102 + pos: -24.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23289 components: - type: Transform - pos: 376.5,444.5 - parent: 1 - - uid: 8103 + rot: -1.5707963267948966 rad + pos: -94.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23290 components: - type: Transform - pos: 381.5,444.5 - parent: 1 - - uid: 8104 + rot: 1.5707963267948966 rad + pos: -93.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23494 components: - type: Transform - pos: 382.5,442.5 - parent: 1 - - uid: 8105 + pos: -132.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23606 components: - type: Transform - pos: 383.5,442.5 - parent: 1 - - uid: 8106 + rot: 3.141592653589793 rad + pos: -71.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23621 components: - type: Transform - pos: 384.5,442.5 - parent: 1 - - uid: 8107 + rot: 3.141592653589793 rad + pos: -47.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23642 components: - type: Transform - pos: 385.5,442.5 - parent: 1 - - uid: 8108 + pos: -53.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23924 components: - type: Transform - pos: 385.5,443.5 - parent: 1 - - uid: 8109 + rot: 3.141592653589793 rad + pos: -34.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24014 components: - type: Transform - pos: 387.5,444.5 - parent: 1 - - uid: 8110 + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24024 components: - type: Transform - pos: 383.5,445.5 - parent: 1 - - uid: 8111 + pos: -23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24582 components: - type: Transform - pos: 388.5,442.5 - parent: 1 - - uid: 8112 + rot: 1.5707963267948966 rad + pos: -68.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24677 components: - type: Transform - pos: 389.5,442.5 - parent: 1 - - uid: 8113 + pos: -70.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24683 components: - type: Transform - pos: 386.5,441.5 - parent: 1 - - uid: 8114 + pos: -35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24687 components: - type: Transform - pos: 391.5,442.5 - parent: 1 - - uid: 8115 + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24707 components: - type: Transform - pos: 391.5,443.5 - parent: 1 - - uid: 8116 + rot: 3.141592653589793 rad + pos: -36.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24716 components: - type: Transform - pos: 390.5,443.5 - parent: 1 - - uid: 8117 + rot: 3.141592653589793 rad + pos: -35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24717 components: - type: Transform - pos: 390.5,444.5 - parent: 1 - - uid: 8118 + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24721 components: - type: Transform - pos: 389.5,444.5 - parent: 1 - - uid: 8119 + rot: 1.5707963267948966 rad + pos: -76.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24763 components: - type: Transform - pos: 404.5,430.5 - parent: 1 - - uid: 8120 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24764 components: - type: Transform - pos: 391.5,446.5 - parent: 1 - - uid: 8121 + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24788 components: - type: Transform - pos: 392.5,446.5 - parent: 1 - - uid: 8122 + rot: 3.141592653589793 rad + pos: -108.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24895 components: - type: Transform - pos: 392.5,445.5 - parent: 1 - - uid: 8123 + rot: 1.5707963267948966 rad + pos: -120.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25142 components: - type: Transform - pos: 392.5,447.5 - parent: 1 - - uid: 8124 + rot: -1.5707963267948966 rad + pos: -121.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25152 components: - type: Transform - pos: 394.5,444.5 - parent: 1 - - uid: 8125 + pos: -123.5,-67.5 + parent: 2 + - uid: 25153 components: - type: Transform - pos: 395.5,444.5 - parent: 1 - - uid: 8126 + rot: 3.141592653589793 rad + pos: -121.5,-79.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25157 components: - type: Transform - pos: 395.5,443.5 - parent: 1 - - uid: 8127 + rot: 3.141592653589793 rad + pos: -123.5,-68.5 + parent: 2 + - uid: 25193 components: - type: Transform - pos: 392.5,441.5 - parent: 1 - - uid: 8128 + rot: -1.5707963267948966 rad + pos: -120.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25194 components: - type: Transform - pos: 393.5,441.5 - parent: 1 - - uid: 8129 + rot: 1.5707963267948966 rad + pos: -121.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25237 components: - type: Transform - pos: 393.5,440.5 - parent: 1 - - uid: 8130 + rot: 1.5707963267948966 rad + pos: -122.5,-82.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26102 components: - type: Transform - pos: 398.5,442.5 - parent: 1 - - uid: 8131 + pos: -25.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 1786 components: - type: Transform - pos: 400.5,442.5 - parent: 1 - - uid: 8132 + pos: -148.5,-47.5 + parent: 2 + - uid: 2375 components: - type: Transform - pos: 401.5,442.5 - parent: 1 - - uid: 8133 + pos: -121.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2449 components: - type: Transform - pos: 402.5,442.5 - parent: 1 - - uid: 8134 + pos: -146.5,-47.5 + parent: 2 + - uid: 4918 components: - type: Transform - pos: 403.5,442.5 - parent: 1 - - uid: 8135 + rot: -1.5707963267948966 rad + pos: -136.5,-6.5 + parent: 2 + - uid: 5559 components: - type: Transform - pos: 404.5,442.5 - parent: 1 - - uid: 8136 + rot: -1.5707963267948966 rad + pos: -108.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5614 components: - type: Transform - pos: 405.5,442.5 - parent: 1 - - uid: 8137 + pos: -110.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6030 components: - type: Transform - pos: 406.5,442.5 - parent: 1 - - uid: 8138 + rot: 1.5707963267948966 rad + pos: -29.5,-67.5 + parent: 2 + - uid: 7368 components: - type: Transform - pos: 399.5,442.5 - parent: 1 - - uid: 8139 + rot: 3.141592653589793 rad + pos: -140.5,-48.5 + parent: 2 + - uid: 8850 components: - type: Transform - pos: 401.5,443.5 - parent: 1 - - uid: 8140 + rot: 3.141592653589793 rad + pos: -21.5,-57.5 + parent: 2 + - uid: 8881 components: - type: Transform - pos: 397.5,444.5 - parent: 1 - - uid: 8141 + rot: 3.141592653589793 rad + pos: -22.5,-57.5 + parent: 2 + - uid: 9511 components: - type: Transform - pos: 398.5,444.5 - parent: 1 - - uid: 8142 + pos: -122.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10124 components: - type: Transform - pos: 403.5,446.5 - parent: 1 - - uid: 8143 + pos: -71.5,-62.5 + parent: 2 + - uid: 13663 components: - type: Transform - pos: 403.5,445.5 - parent: 1 - - uid: 8144 + rot: 1.5707963267948966 rad + pos: -141.5,-47.5 + parent: 2 + - uid: 13693 components: - type: Transform - pos: 406.5,444.5 - parent: 1 - - uid: 8145 + rot: 3.141592653589793 rad + pos: -146.5,-43.5 + parent: 2 + - uid: 13716 components: - type: Transform - pos: 407.5,444.5 - parent: 1 - - uid: 8146 + rot: 3.141592653589793 rad + pos: -148.5,-43.5 + parent: 2 + - uid: 13724 components: - type: Transform - pos: 409.5,442.5 - parent: 1 - - uid: 8147 + pos: -140.5,-46.5 + parent: 2 + - uid: 17125 components: - type: Transform - pos: 410.5,442.5 - parent: 1 - - uid: 8148 + pos: -72.5,-62.5 + parent: 2 + - uid: 17227 components: - type: Transform - pos: 410.5,443.5 - parent: 1 - - uid: 8149 + pos: -24.5,-63.5 + parent: 2 + - uid: 17228 components: - type: Transform - pos: 411.5,442.5 - parent: 1 - - uid: 8150 + pos: -25.5,-63.5 + parent: 2 + - uid: 19519 components: - type: Transform - pos: 412.5,444.5 - parent: 1 - - uid: 8151 + rot: -1.5707963267948966 rad + pos: -115.5,15.5 + parent: 2 + - uid: 19730 components: - type: Transform - pos: 413.5,444.5 - parent: 1 - - uid: 8152 + pos: -70.5,-62.5 + parent: 2 + - uid: 20031 components: - type: Transform - pos: 414.5,444.5 - parent: 1 - - uid: 8153 + rot: -1.5707963267948966 rad + pos: -108.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21069 components: - type: Transform - pos: 408.5,445.5 - parent: 1 - - uid: 8154 + rot: -1.5707963267948966 rad + pos: -115.5,14.5 + parent: 2 + - uid: 21728 components: - type: Transform - pos: 414.5,442.5 - parent: 1 - - uid: 8155 + rot: -1.5707963267948966 rad + pos: -122.5,21.5 + parent: 2 + - uid: 21729 components: - type: Transform - pos: 414.5,441.5 - parent: 1 - - uid: 8156 + pos: -123.5,22.5 + parent: 2 + - uid: 21730 components: - type: Transform - pos: 414.5,440.5 - parent: 1 - - uid: 8157 + rot: 3.141592653589793 rad + pos: -123.5,20.5 + parent: 2 + - uid: 21731 components: - type: Transform - pos: 413.5,441.5 - parent: 1 - - uid: 8158 + rot: 1.5707963267948966 rad + pos: -123.5,19.5 + parent: 2 + - uid: 21732 components: - type: Transform - pos: 411.5,440.5 - parent: 1 - - uid: 8159 + pos: -122.5,20.5 + parent: 2 + - uid: 21733 components: - type: Transform - pos: 412.5,439.5 - parent: 1 - - uid: 8160 + rot: -1.5707963267948966 rad + pos: -121.5,19.5 + parent: 2 + - uid: 21734 components: - type: Transform - pos: 412.5,438.5 - parent: 1 - - uid: 8161 + rot: 1.5707963267948966 rad + pos: -122.5,22.5 + parent: 2 + - uid: 25161 components: - type: Transform - pos: 409.5,437.5 - parent: 1 - - uid: 8162 + rot: 1.5707963267948966 rad + pos: -124.5,-67.5 + parent: 2 + - uid: 25205 components: - type: Transform - pos: 410.5,437.5 - parent: 1 - - uid: 8163 + rot: 1.5707963267948966 rad + pos: -124.5,-68.5 + parent: 2 + - uid: 25236 components: - type: Transform - pos: 410.5,436.5 - parent: 1 - - uid: 8164 + rot: 1.5707963267948966 rad + pos: -123.5,-66.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 5096 components: - type: Transform - pos: 411.5,437.5 - parent: 1 - - uid: 8165 + rot: 3.141592653589793 rad + pos: -118.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8843 components: - type: Transform - pos: 412.5,436.5 - parent: 1 - - uid: 8166 + rot: 3.141592653589793 rad + pos: -22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8845 components: - type: Transform - pos: 411.5,434.5 - parent: 1 - - uid: 8167 + pos: -21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9432 components: - type: Transform - pos: 412.5,434.5 - parent: 1 - - uid: 8168 + pos: -109.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9568 components: - type: Transform - pos: 413.5,434.5 - parent: 1 - - uid: 8169 + pos: -110.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9971 components: - type: Transform - pos: 413.5,433.5 - parent: 1 - - uid: 8170 + rot: -1.5707963267948966 rad + pos: -107.5,-5.5 + parent: 2 + - uid: 10127 components: - type: Transform - pos: 407.5,435.5 - parent: 1 - - uid: 8171 + rot: -1.5707963267948966 rad + pos: -107.5,-3.5 + parent: 2 + - uid: 12036 components: - type: Transform - pos: 407.5,434.5 - parent: 1 - - uid: 8172 + rot: 1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13563 components: - type: Transform - pos: 406.5,434.5 - parent: 1 - - uid: 8173 + rot: -1.5707963267948966 rad + pos: -107.5,-4.5 + parent: 2 + - uid: 14146 components: - type: Transform - pos: 405.5,434.5 - parent: 1 - - uid: 8174 + rot: -1.5707963267948966 rad + pos: -117.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14492 components: - type: Transform - pos: 406.5,433.5 - parent: 1 - - uid: 8175 + pos: -120.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16093 components: - type: Transform - pos: 408.5,432.5 - parent: 1 - - uid: 8176 + pos: -118.5,-0.5 + parent: 2 + - uid: 16094 components: - type: Transform - pos: 408.5,430.5 - parent: 1 - - uid: 8177 + rot: -1.5707963267948966 rad + pos: -115.5,3.5 + parent: 2 + - uid: 16452 components: - type: Transform - pos: 408.5,431.5 - parent: 1 - - uid: 8178 + pos: -120.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16462 components: - type: Transform - pos: 408.5,429.5 - parent: 1 - - uid: 8179 + pos: -72.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17483 components: - type: Transform - pos: 408.5,428.5 - parent: 1 - - uid: 8180 + rot: 3.141592653589793 rad + pos: -71.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18370 components: - type: Transform - pos: 409.5,430.5 - parent: 1 - - uid: 8181 + rot: -1.5707963267948966 rad + pos: -115.5,9.5 + parent: 2 + - uid: 18907 components: - type: Transform - pos: 412.5,430.5 - parent: 1 - - uid: 8182 + rot: 1.5707963267948966 rad + pos: -117.5,14.5 + parent: 2 + - uid: 18908 components: - type: Transform - pos: 414.5,430.5 - parent: 1 - - uid: 8183 + rot: -1.5707963267948966 rad + pos: -122.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19089 components: - type: Transform - pos: 413.5,430.5 - parent: 1 - - uid: 8184 + rot: 1.5707963267948966 rad + pos: -123.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 19514 components: - type: Transform - pos: 415.5,430.5 - parent: 1 - - uid: 8185 + rot: -1.5707963267948966 rad + pos: -122.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21718 components: - type: Transform - pos: 414.5,431.5 - parent: 1 - - uid: 8186 + rot: 1.5707963267948966 rad + pos: -123.5,6.5 + parent: 2 + - uid: 21721 components: - type: Transform - pos: 413.5,429.5 - parent: 1 - - uid: 8187 + rot: 1.5707963267948966 rad + pos: -123.5,12.5 + parent: 2 + - uid: 21722 components: - type: Transform - pos: 405.5,430.5 - parent: 1 - - uid: 8188 + rot: 1.5707963267948966 rad + pos: -123.5,2.5 + parent: 2 + - uid: 21776 components: - type: Transform - pos: 403.5,430.5 - parent: 1 - - uid: 8189 + rot: 1.5707963267948966 rad + pos: -123.5,8.5 + parent: 2 + - uid: 21777 components: - type: Transform - pos: 405.5,431.5 - parent: 1 - - uid: 8190 + rot: 1.5707963267948966 rad + pos: -123.5,4.5 + parent: 2 + - uid: 21779 components: - type: Transform - pos: 402.5,428.5 - parent: 1 - - uid: 8191 + rot: 1.5707963267948966 rad + pos: -123.5,10.5 + parent: 2 + - uid: 22809 components: - type: Transform - pos: 399.5,428.5 - parent: 1 - - uid: 8192 + rot: 1.5707963267948966 rad + pos: -122.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25077 components: - type: Transform - pos: 398.5,428.5 - parent: 1 - - uid: 8193 + rot: 1.5707963267948966 rad + pos: -122.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 1385 components: - type: Transform - pos: 401.5,431.5 - parent: 1 - - uid: 8194 + rot: 3.141592653589793 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 3439 components: - type: Transform - pos: 400.5,430.5 - parent: 1 - - uid: 8195 + pos: -46.5,-26.5 + parent: 2 + - uid: 4031 components: - type: Transform - pos: 377.5,432.5 - parent: 1 - - uid: 8196 + pos: -24.5,-28.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 73.15 + - uid: 6029 components: - type: Transform - pos: 396.5,428.5 - parent: 1 - - uid: 8197 + pos: -28.5,-66.5 + parent: 2 + - uid: 13174 components: - type: Transform - pos: 395.5,428.5 - parent: 1 - - uid: 8198 + rot: 3.141592653589793 rad + pos: -85.5,-7.5 + parent: 2 + - uid: 18802 components: - type: Transform - pos: 395.5,429.5 - parent: 1 - - uid: 8199 + pos: -115.5,11.5 + parent: 2 + - uid: 18803 components: - type: Transform - pos: 395.5,427.5 - parent: 1 - - uid: 8200 + pos: -116.5,11.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 18804 components: - type: Transform - pos: 399.5,427.5 - parent: 1 - - uid: 8201 + pos: -117.5,11.5 + parent: 2 +- proto: GasValve + entities: + - uid: 11046 components: - type: Transform - pos: 393.5,427.5 - parent: 1 - - uid: 8202 + rot: -1.5707963267948966 rad + pos: -26.5,-68.5 + parent: 2 + - uid: 13652 components: - type: Transform - pos: 390.5,427.5 - parent: 1 - - uid: 8203 + pos: -119.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13705 components: - type: Transform - pos: 391.5,427.5 - parent: 1 - - uid: 8204 + pos: -120.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16157 components: - type: Transform - pos: 391.5,428.5 - parent: 1 - - uid: 8205 + pos: -140.5,-2.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 275 components: - type: Transform - pos: 391.5,430.5 - parent: 1 - - uid: 8206 + pos: -85.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20303 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 457 components: - type: Transform - pos: 391.5,429.5 - parent: 1 - - uid: 8207 + rot: 1.5707963267948966 rad + pos: -105.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 748 components: - type: Transform - pos: 392.5,429.5 - parent: 1 - - uid: 8208 + pos: -104.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 860 components: - type: Transform - pos: 393.5,431.5 - parent: 1 - - uid: 8209 + rot: 3.141592653589793 rad + pos: -29.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8411 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 940 components: - type: Transform - pos: 393.5,432.5 - parent: 1 - - uid: 8210 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2451 components: - type: Transform - pos: 393.5,433.5 - parent: 1 - - uid: 8211 + rot: 1.5707963267948966 rad + pos: -152.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3864 components: - type: Transform - pos: 394.5,433.5 - parent: 1 - - uid: 8212 + rot: 3.141592653589793 rad + pos: -53.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15364 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4332 components: - type: Transform - pos: 391.5,433.5 - parent: 1 - - uid: 8213 + pos: -33.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20216 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4806 components: - type: Transform - pos: 391.5,435.5 - parent: 1 - - uid: 8214 + rot: 1.5707963267948966 rad + pos: -126.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4910 components: - type: Transform - pos: 391.5,434.5 - parent: 1 - - uid: 8215 + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5384 components: - type: Transform - pos: 392.5,435.5 - parent: 1 - - uid: 8216 + rot: 3.141592653589793 rad + pos: -118.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19284 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 5622 components: - type: Transform - pos: 393.5,435.5 - parent: 1 - - uid: 8217 + rot: 1.5707963267948966 rad + pos: -126.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6023 components: - type: Transform - pos: 393.5,436.5 - parent: 1 - - uid: 8218 + rot: 3.141592653589793 rad + pos: -145.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7787 components: - type: Transform - pos: 394.5,439.5 - parent: 1 - - uid: 8219 + pos: -18.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11722 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7825 components: - type: Transform - pos: 394.5,438.5 - parent: 1 - - uid: 8220 + rot: 1.5707963267948966 rad + pos: -136.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7846 components: - type: Transform - pos: 391.5,437.5 - parent: 1 - - uid: 8221 + rot: 3.141592653589793 rad + pos: -141.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9330 components: - type: Transform - pos: 389.5,436.5 - parent: 1 - - uid: 8222 + rot: 3.141592653589793 rad + pos: -137.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 346 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9476 components: - type: Transform - pos: 389.5,435.5 - parent: 1 - - uid: 8223 + pos: -82.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9624 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9730 components: - type: Transform - pos: 388.5,435.5 - parent: 1 - - uid: 8224 + pos: -48.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10012 components: - type: Transform - pos: 389.5,437.5 - parent: 1 - - uid: 8225 + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10020 components: - type: Transform - pos: 386.5,435.5 - parent: 1 - - uid: 8226 + rot: 3.141592653589793 rad + pos: -62.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10038 components: - type: Transform - pos: 384.5,435.5 - parent: 1 - - uid: 8227 + rot: -1.5707963267948966 rad + pos: -66.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3287 + - 3288 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10072 components: - type: Transform - pos: 385.5,435.5 - parent: 1 - - uid: 8228 + rot: 1.5707963267948966 rad + pos: -73.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10085 components: - type: Transform - pos: 383.5,435.5 - parent: 1 - - uid: 8229 + rot: 3.141592653589793 rad + pos: -137.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10105 components: - type: Transform - pos: 383.5,436.5 - parent: 1 - - uid: 8230 + pos: -68.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10133 components: - type: Transform - pos: 382.5,435.5 - parent: 1 - - uid: 8231 + pos: -26.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25644 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10148 components: - type: Transform - pos: 381.5,433.5 - parent: 1 - - uid: 8232 + pos: -130.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19281 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10207 components: - type: Transform - pos: 380.5,435.5 - parent: 1 - - uid: 8233 + pos: -67.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10208 components: - type: Transform - pos: 379.5,435.5 - parent: 1 - - uid: 8234 + pos: -55.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10251 components: - type: Transform - pos: 378.5,437.5 - parent: 1 - - uid: 8235 + rot: -1.5707963267948966 rad + pos: -55.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3287 + - 3288 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10273 components: - type: Transform - pos: 376.5,435.5 - parent: 1 - - uid: 8236 + pos: -62.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3287 + - 3288 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10315 components: - type: Transform - pos: 375.5,435.5 - parent: 1 - - uid: 8237 + pos: -51.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11242 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10331 components: - type: Transform - pos: 375.5,434.5 - parent: 1 - - uid: 8238 + rot: 3.141592653589793 rad + pos: -46.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11243 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10337 components: - type: Transform - pos: 375.5,433.5 - parent: 1 - - uid: 8239 + rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11243 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10392 components: - type: Transform - pos: 374.5,435.5 - parent: 1 - - uid: 8240 + rot: 3.141592653589793 rad + pos: -43.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3073 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10393 components: - type: Transform - pos: 373.5,434.5 - parent: 1 - - uid: 8241 + pos: -45.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3073 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10394 components: - type: Transform - pos: 372.5,436.5 - parent: 1 - - uid: 8242 + rot: 3.141592653589793 rad + pos: -51.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3074 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10448 components: - type: Transform - pos: 371.5,436.5 - parent: 1 - - uid: 8243 + rot: -1.5707963267948966 rad + pos: -101.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16218 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10526 components: - type: Transform - pos: 373.5,438.5 - parent: 1 - - uid: 8244 + rot: -1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10628 components: - type: Transform - pos: 372.5,440.5 - parent: 1 - - uid: 8245 + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11230 components: - type: Transform - pos: 379.5,432.5 - parent: 1 - - uid: 8246 + rot: 1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11244 + - 23991 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11637 components: - type: Transform - pos: 378.5,432.5 - parent: 1 - - uid: 8247 + rot: 1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11638 components: - type: Transform - pos: 379.5,431.5 - parent: 1 - - uid: 8248 + pos: -29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11639 components: - type: Transform - pos: 379.5,429.5 - parent: 1 - - uid: 8249 + rot: 1.5707963267948966 rad + pos: -37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11640 components: - type: Transform - pos: 379.5,428.5 - parent: 1 - - uid: 8250 + pos: -34.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11656 components: - type: Transform - pos: 379.5,430.5 - parent: 1 - - uid: 8252 + pos: -102.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16218 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11730 components: - type: Transform - pos: 380.5,427.5 - parent: 1 - - uid: 8253 + rot: -1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11298 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11731 components: - type: Transform - pos: 377.5,427.5 - parent: 1 - - uid: 8254 + rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11298 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11885 components: - type: Transform - pos: 380.5,430.5 - parent: 1 - - uid: 8255 + rot: 3.141592653589793 rad + pos: -25.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11896 components: - type: Transform - pos: 377.5,430.5 - parent: 1 - - uid: 8256 + pos: -11.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - 26179 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11972 components: - type: Transform - pos: 382.5,428.5 - parent: 1 - - uid: 8257 + rot: 3.141592653589793 rad + pos: -11.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11976 components: - type: Transform - pos: 386.5,425.5 - parent: 1 - - uid: 8258 + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11977 components: - type: Transform - pos: 388.5,425.5 - parent: 1 - - uid: 8259 + rot: -1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11978 components: - type: Transform - pos: 387.5,425.5 - parent: 1 - - uid: 8260 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11979 components: - type: Transform - pos: 388.5,423.5 - parent: 1 - - uid: 8261 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12000 components: - type: Transform - pos: 374.5,426.5 - parent: 1 - - uid: 8262 + pos: -22.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12001 components: - type: Transform - pos: 366.5,426.5 - parent: 1 - - uid: 8263 + rot: 3.141592653589793 rad + pos: -22.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12029 components: - type: Transform - pos: 368.5,426.5 - parent: 1 - - uid: 8264 + pos: -17.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12035 components: - type: Transform - pos: 369.5,426.5 - parent: 1 - - uid: 8265 + rot: -1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12047 components: - type: Transform - pos: 367.5,426.5 - parent: 1 - - uid: 8266 + rot: 1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12250 components: - type: Transform - pos: 372.5,425.5 - parent: 1 - - uid: 8267 + rot: 1.5707963267948966 rad + pos: -39.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12270 components: - type: Transform - pos: 371.5,423.5 - parent: 1 - - uid: 8268 + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9162 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12298 components: - type: Transform - pos: 365.5,428.5 - parent: 1 - - uid: 8269 + rot: -1.5707963267948966 rad + pos: -53.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9346 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12344 components: - type: Transform - pos: 365.5,429.5 - parent: 1 - - uid: 8270 + pos: -17.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24043 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12378 components: - type: Transform - pos: 366.5,429.5 - parent: 1 - - uid: 8271 + rot: -1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12399 components: - type: Transform - pos: 364.5,430.5 - parent: 1 - - uid: 8272 + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12428 components: - type: Transform - pos: 365.5,432.5 - parent: 1 - - uid: 8273 + rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12513 components: - type: Transform - pos: 364.5,432.5 - parent: 1 - - uid: 8274 + rot: 3.141592653589793 rad + pos: -38.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12517 components: - type: Transform - pos: 363.5,432.5 - parent: 1 - - uid: 8275 + pos: -34.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12570 components: - type: Transform - pos: 362.5,427.5 - parent: 1 - - uid: 8276 + pos: -21.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9146 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12616 components: - type: Transform - pos: 386.5,427.5 - parent: 1 - - uid: 8277 + rot: 1.5707963267948966 rad + pos: -23.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12617 components: - type: Transform - pos: 403.5,439.5 - parent: 1 - - uid: 8278 + rot: -1.5707963267948966 rad + pos: -19.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12618 components: - type: Transform - pos: 402.5,439.5 - parent: 1 - - uid: 8279 + rot: -1.5707963267948966 rad + pos: -19.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12624 components: - type: Transform - pos: 418.5,445.5 - parent: 1 - - uid: 8280 + rot: 1.5707963267948966 rad + pos: -26.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12774 components: - type: Transform - pos: 400.5,444.5 - parent: 1 - - uid: 8281 + rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12775 components: - type: Transform - pos: 418.5,446.5 - parent: 1 - - uid: 8282 + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12845 components: - type: Transform - pos: 419.5,446.5 - parent: 1 - - uid: 8283 + rot: 3.141592653589793 rad + pos: -15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13021 components: - type: Transform - pos: 419.5,447.5 - parent: 1 - - uid: 8284 + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26179 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13023 components: - type: Transform - pos: 420.5,447.5 - parent: 1 - - uid: 8285 + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13223 components: - type: Transform - pos: 421.5,447.5 - parent: 1 - - uid: 8286 + rot: 3.141592653589793 rad + pos: -91.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13685 components: - type: Transform - pos: 416.5,444.5 - parent: 1 - - uid: 8287 + rot: 3.141592653589793 rad + pos: -84.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13713 components: - type: Transform - pos: 424.5,450.5 - parent: 1 - - uid: 8288 + rot: 3.141592653589793 rad + pos: -92.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13824 components: - type: Transform - pos: 425.5,448.5 - parent: 1 - - uid: 8289 + rot: 1.5707963267948966 rad + pos: -142.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17332 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13947 components: - type: Transform - pos: 425.5,447.5 - parent: 1 - - uid: 8290 + rot: 1.5707963267948966 rad + pos: -140.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14196 components: - type: Transform - pos: 426.5,448.5 - parent: 1 - - uid: 8291 + rot: 1.5707963267948966 rad + pos: -84.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14197 components: - type: Transform - pos: 427.5,448.5 - parent: 1 - - uid: 8292 + pos: -88.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14828 components: - type: Transform - pos: 427.5,449.5 - parent: 1 - - uid: 8293 + rot: -1.5707963267948966 rad + pos: -50.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15140 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14847 components: - type: Transform - pos: 427.5,447.5 - parent: 1 - - uid: 8294 + rot: 3.141592653589793 rad + pos: -99.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14854 components: - type: Transform - pos: 427.5,446.5 - parent: 1 - - uid: 8295 + rot: 3.141592653589793 rad + pos: -62.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14863 components: - type: Transform - pos: 434.5,440.5 - parent: 1 - - uid: 8296 + rot: 1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9348 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14934 components: - type: Transform - pos: 428.5,444.5 - parent: 1 - - uid: 8297 + rot: 3.141592653589793 rad + pos: -126.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14955 components: - type: Transform - pos: 429.5,444.5 - parent: 1 - - uid: 8298 + rot: 1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14981 components: - type: Transform - pos: 430.5,444.5 - parent: 1 - - uid: 8299 + pos: -130.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15021 components: - type: Transform - pos: 429.5,445.5 - parent: 1 - - uid: 8300 + rot: 3.141592653589793 rad + pos: -70.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24742 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15036 components: - type: Transform - pos: 430.5,442.5 - parent: 1 - - uid: 8301 + rot: 1.5707963267948966 rad + pos: -112.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17849 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15037 components: - type: Transform - pos: 432.5,441.5 - parent: 1 - - uid: 8302 + pos: -70.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9253 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15048 components: - type: Transform - pos: 432.5,442.5 - parent: 1 - - uid: 8303 + rot: 3.141592653589793 rad + pos: -101.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21036 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15079 components: - type: Transform - pos: 436.5,440.5 - parent: 1 - - uid: 8304 + rot: 1.5707963267948966 rad + pos: -46.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15412 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15121 components: - type: Transform - pos: 435.5,440.5 - parent: 1 - - uid: 8305 + pos: -45.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15413 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15176 components: - type: Transform - pos: 439.5,440.5 - parent: 1 - - uid: 8306 + rot: -1.5707963267948966 rad + pos: -60.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15184 components: - type: Transform - pos: 440.5,440.5 - parent: 1 - - uid: 8308 + pos: -66.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15351 components: - type: Transform - pos: 444.5,440.5 - parent: 1 - - uid: 8309 + rot: -1.5707963267948966 rad + pos: -29.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15368 components: - type: Transform - pos: 445.5,440.5 - parent: 1 - - uid: 8310 + pos: -71.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15369 components: - type: Transform - pos: 442.5,439.5 - parent: 1 - - uid: 8311 + rot: 3.141592653589793 rad + pos: -71.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15370 components: - type: Transform - pos: 442.5,438.5 - parent: 1 - - uid: 8312 + rot: 3.141592653589793 rad + pos: -57.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15371 components: - type: Transform - pos: 443.5,438.5 - parent: 1 - - uid: 8313 + pos: -57.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15462 components: - type: Transform - pos: 444.5,438.5 - parent: 1 - - uid: 8314 + rot: 3.141592653589793 rad + pos: -151.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15582 components: - type: Transform - pos: 444.5,437.5 - parent: 1 - - uid: 8315 + pos: -141.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19293 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15676 components: - type: Transform - pos: 446.5,438.5 - parent: 1 - - uid: 8316 + pos: -65.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15795 components: - type: Transform - pos: 447.5,438.5 - parent: 1 - - uid: 8317 + pos: -37.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16034 components: - type: Transform - pos: 440.5,438.5 - parent: 1 - - uid: 8318 + rot: -1.5707963267948966 rad + pos: -76.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18705 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16201 components: - type: Transform - pos: 439.5,438.5 - parent: 1 - - uid: 8319 + rot: -1.5707963267948966 rad + pos: -102.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16901 components: - type: Transform - pos: 438.5,438.5 - parent: 1 - - uid: 8321 + rot: 3.141592653589793 rad + pos: -35.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17091 components: - type: Transform - pos: 435.5,438.5 - parent: 1 - - uid: 8322 + pos: -115.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19277 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17241 components: - type: Transform - pos: 432.5,439.5 - parent: 1 - - uid: 8323 + rot: -1.5707963267948966 rad + pos: -95.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18706 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17303 components: - type: Transform - pos: 432.5,438.5 - parent: 1 - - uid: 8324 + rot: 1.5707963267948966 rad + pos: -142.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17426 components: - type: Transform - pos: 432.5,437.5 - parent: 1 - - uid: 8325 + rot: 1.5707963267948966 rad + pos: -69.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9253 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17444 components: - type: Transform - pos: 441.5,436.5 - parent: 1 - - uid: 8326 + pos: -19.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24026 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17632 components: - type: Transform - pos: 434.5,435.5 - parent: 1 - - uid: 8327 + rot: 1.5707963267948966 rad + pos: -18.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17853 components: - type: Transform - pos: 433.5,435.5 - parent: 1 - - uid: 8328 + rot: 1.5707963267948966 rad + pos: -99.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17855 components: - type: Transform - pos: 434.5,436.5 - parent: 1 - - uid: 8329 + rot: 1.5707963267948966 rad + pos: -99.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17865 components: - type: Transform - pos: 431.5,433.5 - parent: 1 - - uid: 8330 + rot: -1.5707963267948966 rad + pos: -109.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17896 components: - type: Transform - pos: 431.5,432.5 - parent: 1 - - uid: 8331 + rot: -1.5707963267948966 rad + pos: -93.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17922 components: - type: Transform - pos: 431.5,431.5 - parent: 1 - - uid: 8332 + rot: -1.5707963267948966 rad + pos: -95.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17959 components: - type: Transform - pos: 432.5,432.5 - parent: 1 - - uid: 8334 + pos: -88.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17967 components: - type: Transform - pos: 444.5,432.5 - parent: 1 - - uid: 8335 + pos: -90.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17988 components: - type: Transform - pos: 444.5,433.5 - parent: 1 - - uid: 8336 + pos: -92.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18696 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18012 components: - type: Transform - pos: 446.5,432.5 - parent: 1 - - uid: 8337 + pos: -86.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18696 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18037 components: - type: Transform - pos: 446.5,431.5 - parent: 1 - - uid: 8338 + pos: -88.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18038 components: - type: Transform - pos: 446.5,430.5 - parent: 1 - - uid: 8339 + rot: -1.5707963267948966 rad + pos: -80.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18060 components: - type: Transform - pos: 447.5,431.5 - parent: 1 - - uid: 8340 + rot: 3.141592653589793 rad + pos: -83.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18704 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18100 components: - type: Transform - pos: 446.5,435.5 - parent: 1 - - uid: 8341 + rot: 3.141592653589793 rad + pos: -46.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18158 components: - type: Transform - pos: 446.5,436.5 - parent: 1 - - uid: 8342 + rot: 3.141592653589793 rad + pos: -33.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18169 components: - type: Transform - pos: 445.5,435.5 - parent: 1 - - uid: 8344 + rot: 3.141592653589793 rad + pos: -49.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18170 components: - type: Transform - pos: 446.5,428.5 - parent: 1 - - uid: 8345 + pos: -55.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18183 components: - type: Transform - pos: 444.5,428.5 - parent: 1 - - uid: 8346 + rot: -1.5707963267948966 rad + pos: -98.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18698 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18200 components: - type: Transform - pos: 443.5,428.5 - parent: 1 - - uid: 8347 + rot: 3.141592653589793 rad + pos: -114.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18711 components: - type: Transform - pos: 444.5,429.5 - parent: 1 - - uid: 8348 + rot: 1.5707963267948966 rad + pos: -92.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18760 components: - type: Transform - pos: 446.5,426.5 - parent: 1 - - uid: 8349 + rot: 3.141592653589793 rad + pos: -85.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18821 components: - type: Transform - pos: 446.5,425.5 - parent: 1 - - uid: 8350 + rot: 3.141592653589793 rad + pos: -90.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18852 components: - type: Transform - pos: 446.5,424.5 - parent: 1 - - uid: 8351 + rot: 3.141592653589793 rad + pos: -111.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19278 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18875 components: - type: Transform - pos: 444.5,424.5 - parent: 1 - - uid: 8352 + pos: -125.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18879 components: - type: Transform - pos: 444.5,423.5 - parent: 1 - - uid: 8353 + rot: 3.141592653589793 rad + pos: -98.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18892 components: - type: Transform - pos: 443.5,423.5 - parent: 1 - - uid: 8354 + rot: -1.5707963267948966 rad + pos: -114.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19282 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18910 components: - type: Transform - pos: 444.5,422.5 - parent: 1 - - uid: 8355 + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18915 components: - type: Transform - pos: 441.5,418.5 - parent: 1 - - uid: 8356 + pos: -99.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18919 components: - type: Transform - pos: 441.5,417.5 - parent: 1 - - uid: 8357 + rot: 1.5707963267948966 rad + pos: -116.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18932 components: - type: Transform - pos: 441.5,416.5 - parent: 1 - - uid: 8358 + rot: 3.141592653589793 rad + pos: -62.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18935 components: - type: Transform - pos: 440.5,418.5 - parent: 1 - - uid: 8359 + rot: -1.5707963267948966 rad + pos: -63.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18955 components: - type: Transform - pos: 433.5,426.5 - parent: 1 - - uid: 8360 + rot: 1.5707963267948966 rad + pos: -92.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18956 components: - type: Transform - pos: 430.5,422.5 - parent: 1 - - uid: 8361 + rot: 1.5707963267948966 rad + pos: -99.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18957 components: - type: Transform - pos: 430.5,424.5 - parent: 1 - - uid: 8362 + rot: 3.141592653589793 rad + pos: -115.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18968 components: - type: Transform - pos: 430.5,423.5 - parent: 1 - - uid: 8363 + rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18979 components: - type: Transform - pos: 431.5,424.5 - parent: 1 - - uid: 8364 + rot: 3.141592653589793 rad + pos: -109.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18982 components: - type: Transform - pos: 429.5,422.5 - parent: 1 - - uid: 8365 + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18985 components: - type: Transform - pos: 427.5,422.5 - parent: 1 - - uid: 8366 + pos: -119.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19282 + - 9164 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 18989 components: - type: Transform - pos: 428.5,422.5 - parent: 1 - - uid: 8367 + pos: -25.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19319 components: - type: Transform - pos: 424.5,422.5 - parent: 1 - - uid: 8372 + rot: 1.5707963267948966 rad + pos: -154.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19556 components: - type: Transform - pos: 433.5,427.5 - parent: 1 - - uid: 8373 + pos: -137.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19571 components: - type: Transform - pos: 429.5,429.5 - parent: 1 - - uid: 8374 + rot: 1.5707963267948966 rad + pos: -95.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23400 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19652 components: - type: Transform - pos: 430.5,429.5 - parent: 1 - - uid: 8375 + rot: 3.141592653589793 rad + pos: -89.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19806 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19687 components: - type: Transform - pos: 431.5,429.5 - parent: 1 - - uid: 8376 + rot: 1.5707963267948966 rad + pos: -88.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19714 components: - type: Transform - pos: 432.5,429.5 - parent: 1 - - uid: 8377 + pos: -87.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19717 components: - type: Transform - pos: 428.5,428.5 - parent: 1 - - uid: 8378 + rot: 1.5707963267948966 rad + pos: -95.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19726 components: - type: Transform - pos: 431.5,428.5 - parent: 1 - - uid: 8379 + rot: 3.141592653589793 rad + pos: -91.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19727 components: - type: Transform - pos: 434.5,429.5 - parent: 1 - - uid: 8380 + pos: -94.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19755 components: - type: Transform - pos: 455.5,376.5 - parent: 1 - - uid: 8381 + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7346 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19891 components: - type: Transform - pos: 477.5,395.5 - parent: 1 - - uid: 8382 + rot: 3.141592653589793 rad + pos: -59.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20044 components: - type: Transform - pos: 479.5,395.5 - parent: 1 - - uid: 8383 + rot: 3.141592653589793 rad + pos: -114.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20316 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20066 components: - type: Transform - pos: 480.5,395.5 - parent: 1 - - uid: 8384 + pos: -115.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20074 components: - type: Transform - pos: 478.5,395.5 - parent: 1 - - uid: 8385 + rot: 3.141592653589793 rad + pos: -121.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21473 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20120 components: - type: Transform - pos: 477.5,396.5 - parent: 1 - - uid: 8386 + rot: 3.141592653589793 rad + pos: -115.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20367 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20154 components: - type: Transform - pos: 476.5,399.5 - parent: 1 - - uid: 8387 + pos: -121.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20190 components: - type: Transform - pos: 476.5,398.5 - parent: 1 - - uid: 8388 + pos: -129.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20193 components: - type: Transform - pos: 475.5,398.5 - parent: 1 - - uid: 8389 + rot: 3.141592653589793 rad + pos: -104.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20203 components: - type: Transform - pos: 479.5,397.5 - parent: 1 - - uid: 8390 + pos: -135.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20252 components: - type: Transform - pos: 480.5,397.5 - parent: 1 - - uid: 8391 + rot: 3.141592653589793 rad + pos: -135.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20372 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20375 components: - type: Transform - pos: 483.5,395.5 - parent: 1 - - uid: 8392 + rot: 3.141592653589793 rad + pos: -125.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20318 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20527 components: - type: Transform - pos: 484.5,395.5 - parent: 1 - - uid: 8393 + rot: 3.141592653589793 rad + pos: -82.5,-80.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 20534 components: - type: Transform - pos: 484.5,396.5 - parent: 1 - - uid: 8394 + pos: -82.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21363 components: - type: Transform - pos: 485.5,395.5 - parent: 1 - - uid: 8395 + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22990 components: - type: Transform - pos: 482.5,392.5 - parent: 1 - - uid: 8396 + rot: -1.5707963267948966 rad + pos: -24.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23174 components: - type: Transform - pos: 483.5,392.5 - parent: 1 - - uid: 8397 + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23320 components: - type: Transform - pos: 477.5,393.5 - parent: 1 - - uid: 8398 + rot: 1.5707963267948966 rad + pos: -95.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 374 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23368 components: - type: Transform - pos: 476.5,393.5 - parent: 1 - - uid: 8399 + rot: 1.5707963267948966 rad + pos: -71.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 461 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23614 components: - type: Transform - pos: 474.5,391.5 - parent: 1 - - uid: 8400 + rot: 1.5707963267948966 rad + pos: -95.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14861 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 23677 components: - type: Transform - pos: 456.5,376.5 - parent: 1 - - uid: 8401 + rot: 3.141592653589793 rad + pos: -53.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24249 components: - type: Transform - pos: 459.5,376.5 - parent: 1 - - uid: 8403 + rot: 3.141592653589793 rad + pos: -17.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24570 components: - type: Transform - pos: 459.5,378.5 - parent: 1 - - uid: 8404 + rot: -1.5707963267948966 rad + pos: -74.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24681 components: - type: Transform - pos: 458.5,378.5 - parent: 1 - - uid: 8405 + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24682 components: - type: Transform - pos: 457.5,378.5 - parent: 1 - - uid: 8406 + rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24719 components: - type: Transform - pos: 458.5,376.5 - parent: 1 - - uid: 8407 + rot: -1.5707963267948966 rad + pos: -75.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24720 components: - type: Transform - pos: 461.5,376.5 - parent: 1 - - uid: 8408 + rot: 1.5707963267948966 rad + pos: -57.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24742 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24782 components: - type: Transform - pos: 460.5,378.5 - parent: 1 - - uid: 8409 + pos: -36.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24783 components: - type: Transform - pos: 463.5,378.5 - parent: 1 - - uid: 8410 + pos: -22.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24787 components: - type: Transform - pos: 464.5,378.5 - parent: 1 - - uid: 8411 + rot: -1.5707963267948966 rad + pos: -105.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24800 components: - type: Transform - pos: 465.5,378.5 - parent: 1 - - uid: 8413 + pos: -96.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 24899 components: - type: Transform - pos: 467.5,376.5 - parent: 1 - - uid: 8414 + pos: -120.5,-67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25270 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25090 components: - type: Transform - pos: 468.5,376.5 - parent: 1 - - uid: 8416 + rot: -1.5707963267948966 rad + pos: -118.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25264 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25091 components: - type: Transform - pos: 467.5,378.5 - parent: 1 - - uid: 8417 + rot: 1.5707963267948966 rad + pos: -122.5,-80.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25163 components: - type: Transform - pos: 470.5,378.5 - parent: 1 - - uid: 8418 + rot: -1.5707963267948966 rad + pos: -115.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25177 components: - type: Transform - pos: 470.5,379.5 - parent: 1 - - uid: 8419 + rot: 1.5707963267948966 rad + pos: -121.5,-71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25280 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25248 components: - type: Transform - pos: 470.5,380.5 - parent: 1 - - uid: 8420 + rot: -1.5707963267948966 rad + pos: -119.5,-82.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25257 components: - type: Transform - pos: 471.5,380.5 - parent: 1 - - uid: 8421 + rot: 3.141592653589793 rad + pos: -118.5,-85.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25632 components: - type: Transform - pos: 469.5,380.5 - parent: 1 - - uid: 8422 + rot: 1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24037 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 466 components: - type: Transform - pos: 471.5,376.5 - parent: 1 - - uid: 8423 + pos: -53.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 853 components: - type: Transform - pos: 470.5,376.5 - parent: 1 - - uid: 8424 + pos: -24.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8411 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 components: - type: Transform - pos: 463.5,376.5 - parent: 1 - - uid: 8425 + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1589 components: - type: Transform - pos: 454.5,371.5 - parent: 1 - - uid: 8426 + pos: -51.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2444 components: - type: Transform - pos: 454.5,370.5 - parent: 1 - - uid: 8427 + rot: 1.5707963267948966 rad + pos: -152.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3320 components: - type: Transform - pos: 453.5,368.5 - parent: 1 - - uid: 8428 + pos: -94.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4826 components: - type: Transform - pos: 454.5,368.5 - parent: 1 - - uid: 8429 + rot: 1.5707963267948966 rad + pos: -126.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5330 components: - type: Transform - pos: 455.5,368.5 - parent: 1 - - uid: 8430 + rot: 1.5707963267948966 rad + pos: -111.5,7.5 + parent: 2 + - uid: 5331 components: - type: Transform - pos: 455.5,367.5 - parent: 1 - - uid: 8431 + rot: 1.5707963267948966 rad + pos: -111.5,9.5 + parent: 2 + - uid: 5332 components: - type: Transform - pos: 456.5,368.5 - parent: 1 - - uid: 8432 + rot: 1.5707963267948966 rad + pos: -111.5,8.5 + parent: 2 + - uid: 5333 components: - type: Transform - pos: 458.5,370.5 - parent: 1 - - uid: 8433 + rot: -1.5707963267948966 rad + pos: -109.5,9.5 + parent: 2 + - uid: 5334 components: - type: Transform - pos: 459.5,370.5 - parent: 1 - - uid: 8436 + rot: -1.5707963267948966 rad + pos: -109.5,7.5 + parent: 2 + - uid: 5335 components: - type: Transform - pos: 459.5,368.5 - parent: 1 - - uid: 8437 + rot: -1.5707963267948966 rad + pos: -109.5,8.5 + parent: 2 + - uid: 5626 components: - type: Transform - pos: 461.5,368.5 - parent: 1 - - uid: 8438 + rot: 3.141592653589793 rad + pos: -124.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6024 components: - type: Transform - pos: 462.5,368.5 - parent: 1 - - uid: 8439 + pos: -149.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6035 components: - type: Transform - pos: 460.5,368.5 - parent: 1 - - uid: 8441 + rot: -1.5707963267948966 rad + pos: -26.5,-66.5 + parent: 2 + - uid: 7653 components: - type: Transform - pos: 465.5,370.5 - parent: 1 - - uid: 8442 + pos: -27.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7776 components: - type: Transform - pos: 462.5,370.5 - parent: 1 - - uid: 8443 + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7346 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8885 components: - type: Transform - pos: 463.5,370.5 - parent: 1 - - uid: 8444 + rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8934 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8943 components: - type: Transform - pos: 459.5,366.5 - parent: 1 - - uid: 8445 + rot: -1.5707963267948966 rad + pos: -26.5,-67.5 + parent: 2 + - uid: 9250 components: - type: Transform - pos: 465.5,368.5 - parent: 1 - - uid: 8446 + rot: 3.141592653589793 rad + pos: -67.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24742 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9311 components: - type: Transform - pos: 467.5,368.5 - parent: 1 - - uid: 8447 + pos: -65.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9371 components: - type: Transform - pos: 466.5,368.5 - parent: 1 - - uid: 8448 + pos: -25.5,-67.5 + parent: 2 + - uid: 10013 components: - type: Transform - pos: 469.5,368.5 - parent: 1 - - uid: 8449 + rot: 1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10021 components: - type: Transform - pos: 469.5,370.5 - parent: 1 - - uid: 8450 + rot: 3.141592653589793 rad + pos: -60.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10071 components: - type: Transform - pos: 471.5,370.5 - parent: 1 - - uid: 8451 + rot: 1.5707963267948966 rad + pos: -73.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10209 components: - type: Transform - pos: 470.5,370.5 - parent: 1 - - uid: 8452 + rot: 1.5707963267948966 rad + pos: -68.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10210 components: - type: Transform - pos: 470.5,371.5 - parent: 1 - - uid: 8453 + rot: -1.5707963267948966 rad + pos: -54.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10316 components: - type: Transform - pos: 470.5,373.5 - parent: 1 - - uid: 8454 + rot: 3.141592653589793 rad + pos: -51.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11242 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10317 components: - type: Transform - pos: 467.5,370.5 - parent: 1 - - uid: 8455 + pos: -45.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11243 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10318 components: - type: Transform - pos: 473.5,370.5 - parent: 1 - - uid: 8456 + rot: 3.141592653589793 rad + pos: -45.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11243 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10350 components: - type: Transform - pos: 471.5,367.5 - parent: 1 - - uid: 8457 + rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10402 components: - type: Transform - pos: 472.5,367.5 - parent: 1 - - uid: 8458 + pos: -49.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3074 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10410 components: - type: Transform - pos: 459.5,365.5 - parent: 1 - - uid: 8459 + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3073 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10411 components: - type: Transform - pos: 456.5,364.5 - parent: 1 - - uid: 8460 + pos: -42.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3073 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10556 components: - type: Transform - pos: 457.5,364.5 - parent: 1 - - uid: 8461 + rot: 3.141592653589793 rad + pos: -98.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16218 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11107 components: - type: Transform - pos: 459.5,362.5 - parent: 1 - - uid: 8462 + rot: 1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11231 components: - type: Transform - pos: 462.5,362.5 - parent: 1 - - uid: 8463 + rot: -1.5707963267948966 rad + pos: -59.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11244 + - 23991 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11346 components: - type: Transform - pos: 463.5,362.5 - parent: 1 - - uid: 8464 + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11706 components: - type: Transform - pos: 461.5,362.5 - parent: 1 - - uid: 8465 + rot: 1.5707963267948966 rad + pos: -34.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11765 components: - type: Transform - pos: 461.5,361.5 - parent: 1 - - uid: 8466 + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11298 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11766 components: - type: Transform - pos: 461.5,365.5 - parent: 1 - - uid: 8467 + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11298 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11803 components: - type: Transform - pos: 463.5,364.5 - parent: 1 - - uid: 8468 + pos: -3.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - 26179 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11829 components: - type: Transform - pos: 464.5,364.5 - parent: 1 - - uid: 8469 + rot: 3.141592653589793 rad + pos: -108.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17849 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11883 components: - type: Transform - pos: 466.5,362.5 - parent: 1 - - uid: 8470 + pos: -25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11898 components: - type: Transform - pos: 467.5,362.5 - parent: 1 - - uid: 8471 + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11975 components: - type: Transform - pos: 468.5,362.5 - parent: 1 - - uid: 8472 + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12267 components: - type: Transform - pos: 469.5,362.5 - parent: 1 - - uid: 8473 + rot: -1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12269 components: - type: Transform - pos: 467.5,360.5 - parent: 1 - - uid: 8474 + rot: -1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9162 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12271 components: - type: Transform - pos: 468.5,363.5 - parent: 1 - - uid: 8475 + rot: -1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25644 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12307 components: - type: Transform - pos: 472.5,362.5 - parent: 1 - - uid: 8476 + rot: 3.141592653589793 rad + pos: -21.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24043 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12379 components: - type: Transform - pos: 473.5,362.5 - parent: 1 - - uid: 8477 + rot: 3.141592653589793 rad + pos: -33.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12407 components: - type: Transform - pos: 471.5,364.5 - parent: 1 - - uid: 8478 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12419 components: - type: Transform - pos: 472.5,364.5 - parent: 1 - - uid: 8479 + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15359 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12429 components: - type: Transform - pos: 473.5,364.5 - parent: 1 - - uid: 8480 + pos: -18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12481 components: - type: Transform - pos: 475.5,362.5 - parent: 1 - - uid: 10297 + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,366.5 - parent: 1 - - uid: 10298 + pos: -34.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,367.5 - parent: 1 - - uid: 10299 + pos: -26.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9146 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12614 components: - type: Transform rot: -1.5707963267948966 rad - pos: 375.5,398.5 - parent: 1 - - uid: 10300 + pos: -17.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12615 components: - type: Transform rot: -1.5707963267948966 rad - pos: 376.5,398.5 - parent: 1 - - uid: 10301 + pos: -17.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,398.5 - parent: 1 - - uid: 10302 + rot: 1.5707963267948966 rad + pos: -26.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8947 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 381.5,398.5 - parent: 1 - - uid: 10303 + pos: -7.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 381.5,401.5 - parent: 1 - - uid: 10304 + pos: -9.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 26179 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13212 components: - type: Transform rot: -1.5707963267948966 rad - pos: 380.5,401.5 - parent: 1 - - uid: 10305 + pos: -9.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11837 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,401.5 - parent: 1 - - uid: 10306 + rot: 1.5707963267948966 rad + pos: -22.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,401.5 - parent: 1 - - uid: 10307 + rot: 1.5707963267948966 rad + pos: -29.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,401.5 - parent: 1 - - uid: 10308 + pos: -22.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8941 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,398.5 - parent: 1 - - uid: 10309 + pos: -82.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,398.5 - parent: 1 - - uid: 10310 + pos: -90.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 404.5,401.5 - parent: 1 - - uid: 10313 + pos: -85.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14195 components: - type: Transform rot: -1.5707963267948966 rad - pos: 359.5,394.5 - parent: 1 - - uid: 10314 + pos: -80.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 361.5,394.5 - parent: 1 - - uid: 10315 + pos: -46.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15413 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,427.5 - parent: 1 - - uid: 10316 + pos: -90.5,-42.5 + parent: 2 + - uid: 14840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,427.5 - parent: 1 - - uid: 10317 + rot: 1.5707963267948966 rad + pos: -99.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21036 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,427.5 - parent: 1 - - uid: 10318 + pos: -60.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,423.5 - parent: 1 - - uid: 10319 + rot: 1.5707963267948966 rad + pos: -46.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9348 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,423.5 - parent: 1 - - uid: 10320 + rot: 1.5707963267948966 rad + pos: -122.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,423.5 - parent: 1 - - uid: 10321 + rot: 1.5707963267948966 rad + pos: -130.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,423.5 - parent: 1 - - uid: 10322 + rot: 3.141592653589793 rad + pos: -44.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15412 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,423.5 - parent: 1 - - uid: 10323 + pos: -103.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,423.5 - parent: 1 - - uid: 10324 + rot: 1.5707963267948966 rad + pos: -52.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15364 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 423.5,425.5 - parent: 1 - - uid: 10325 + pos: -93.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 448.5,413.5 - parent: 1 - - uid: 11306 + pos: -105.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15175 components: - type: Transform - pos: 411.5,412.5 - parent: 1 - - uid: 11307 + pos: -60.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15183 components: - type: Transform - pos: 412.5,412.5 - parent: 1 - - uid: 11308 + pos: -66.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15352 components: - type: Transform - pos: 413.5,412.5 - parent: 1 - - uid: 11309 + pos: -29.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15348 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15372 components: - type: Transform - pos: 418.5,412.5 - parent: 1 - - uid: 11882 + rot: 1.5707963267948966 rad + pos: -71.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,390.5 - parent: 1 - - uid: 11883 + rot: 1.5707963267948966 rad + pos: -71.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15374 components: - type: Transform rot: -1.5707963267948966 rad - pos: 424.5,390.5 - parent: 1 - - uid: 12232 + pos: -57.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,361.5 - parent: 1 - - uid: 12679 + rot: -1.5707963267948966 rad + pos: -57.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15415 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,415.5 - parent: 1 - - uid: 12924 + rot: 3.141592653589793 rad + pos: -109.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16293 components: - type: Transform - pos: 353.5,389.5 - parent: 1 - - uid: 13308 + rot: 3.141592653589793 rad + pos: -57.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16386 components: - type: Transform rot: 1.5707963267948966 rad - pos: 443.5,403.5 - parent: 1 - - uid: 13949 + pos: -143.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16455 components: - type: Transform - pos: 413.5,381.5 - parent: 1 - - uid: 14592 + rot: 3.141592653589793 rad + pos: -142.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 927 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16475 components: - type: Transform - pos: 414.5,366.5 - parent: 1 - - uid: 14931 + rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,378.5 - parent: 1 - - uid: 14932 + pos: -139.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17332 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,378.5 - parent: 1 - - uid: 14933 + pos: -107.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,378.5 - parent: 1 - - uid: 14940 + pos: -36.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,448.5 - parent: 1 - - uid: 14941 + rot: 3.141592653589793 rad + pos: -120.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19284 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 332.5,447.5 - parent: 1 - - uid: 14974 + pos: -67.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9253 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17415 components: - type: Transform - pos: 414.5,373.5 - parent: 1 - - uid: 15024 + pos: -21.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11722 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,451.5 - parent: 1 - - uid: 15136 + rot: 3.141592653589793 rad + pos: -78.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18705 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,415.5 - parent: 1 - - uid: 15137 + pos: -69.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9253 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 412.5,415.5 - parent: 1 - - uid: 15138 + pos: -99.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,415.5 - parent: 1 - - uid: 15139 + rot: 3.141592653589793 rad + pos: -99.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17858 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,415.5 - parent: 1 - - uid: 15141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,452.5 - parent: 1 - - uid: 15146 + pos: -99.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,454.5 - parent: 1 - - uid: 15148 + pos: -100.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18698 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17897 components: - type: Transform rot: -1.5707963267948966 rad - pos: 335.5,454.5 - parent: 1 - - uid: 15223 + pos: -93.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,454.5 - parent: 1 - - uid: 15293 + rot: 1.5707963267948966 rad + pos: -96.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18699 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 337.5,454.5 - parent: 1 - - uid: 15296 + pos: -86.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17989 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,454.5 - parent: 1 - - uid: 15847 - components: - - type: Transform - pos: 510.5,383.5 - parent: 1 - - uid: 16167 + pos: -90.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18696 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 16114 - - uid: 16168 + pos: -95.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18706 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 16114 - - uid: 16169 + rot: 3.141592653589793 rad + pos: -89.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18696 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 16114 - - uid: 16170 + rot: 3.141592653589793 rad + pos: -88.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 16114 - - uid: 16171 + pos: -80.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18697 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 16114 - - uid: 16172 + pos: -108.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19277 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18072 components: - type: Transform - pos: 2.5,3.5 - parent: 16114 - - uid: 16173 + rot: 1.5707963267948966 rad + pos: -81.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18704 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18116 components: - type: Transform - pos: 2.5,2.5 - parent: 16114 - - uid: 16174 + rot: 3.141592653589793 rad + pos: -48.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18129 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 16114 - - uid: 16944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,420.5 - parent: 1 - - uid: 17513 + pos: -67.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 505.5,378.5 - parent: 1 - - uid: 17661 + rot: 3.141592653589793 rad + pos: -95.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18698 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 508.5,379.5 - parent: 1 - - uid: 17935 + pos: -22.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 508.5,378.5 - parent: 1 - - uid: 18345 + pos: -47.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18166 components: - type: Transform - pos: 434.5,395.5 - parent: 1 - - uid: 18346 + rot: 3.141592653589793 rad + pos: -90.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18701 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18201 components: - type: Transform - pos: 434.5,396.5 - parent: 1 - - uid: 18376 + rot: 3.141592653589793 rad + pos: -112.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18723 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18203 components: - type: Transform - pos: 432.5,389.5 - parent: 1 - - uid: 18377 + rot: 1.5707963267948966 rad + pos: -76.5,-57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9273 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 431.5,390.5 - parent: 1 - - uid: 18581 + rot: 1.5707963267948966 rad + pos: -105.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 428 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18364 components: - type: Transform - pos: 352.5,407.5 - parent: 1 - - uid: 20067 + pos: -87.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18807 components: - type: Transform rot: 3.141592653589793 rad - pos: 333.5,439.5 - parent: 1 - - uid: 20068 + pos: -140.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 346 + - uid: 18843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,439.5 - parent: 1 - - uid: 20069 + rot: -1.5707963267948966 rad + pos: -113.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19278 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,441.5 - parent: 1 - - uid: 20070 + rot: -1.5707963267948966 rad + pos: -109.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19278 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,443.5 - parent: 1 - - uid: 20166 + rot: 1.5707963267948966 rad + pos: -115.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18893 components: - type: Transform - pos: 329.5,445.5 - parent: 1 - - uid: 20178 + rot: -1.5707963267948966 rad + pos: -108.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19282 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18939 components: - type: Transform - pos: 344.5,446.5 - parent: 1 - - uid: 20180 + pos: -80.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18959 components: - type: Transform - pos: 344.5,447.5 - parent: 1 - - uid: 20395 + pos: -123.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18965 components: - type: Transform - pos: 3.5,-0.5 - parent: 20181 - - uid: 20396 + rot: 1.5707963267948966 rad + pos: -139.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19293 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 18978 components: - type: Transform - pos: 1.5,-0.5 - parent: 20181 - - uid: 20397 + rot: -1.5707963267948966 rad + pos: -96.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19029 components: - type: Transform - pos: -0.5,-0.5 - parent: 20181 - - uid: 20398 + rot: 3.141592653589793 rad + pos: -36.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20216 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19305 components: - type: Transform - pos: -2.5,3.5 - parent: 20181 - - uid: 20399 + rot: 3.141592653589793 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19342 components: - type: Transform - pos: 8.5,-2.5 - parent: 20181 - - uid: 20400 + pos: -60.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19347 components: - type: Transform - pos: 8.5,-1.5 - parent: 20181 - - uid: 20401 + pos: -33.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,0.5 - parent: 20181 - - uid: 20402 + rot: -1.5707963267948966 rad + pos: -86.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19558 components: - type: Transform - pos: -3.5,2.5 - parent: 20181 - - uid: 20403 + rot: -1.5707963267948966 rad + pos: -87.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19563 components: - type: Transform - pos: -3.5,1.5 - parent: 20181 - - uid: 20404 + pos: -108.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19653 components: - type: Transform - pos: -2.5,0.5 - parent: 20181 - - uid: 20405 + rot: 3.141592653589793 rad + pos: -88.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19806 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19689 components: - type: Transform - pos: -3.5,0.5 - parent: 20181 - - uid: 20692 + rot: -1.5707963267948966 rad + pos: -84.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 19713 components: - type: Transform - pos: 3.5,-0.5 - parent: 20527 - - uid: 20693 + pos: -86.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19798 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20045 components: - type: Transform - pos: 4.5,-0.5 - parent: 20527 - - uid: 20694 + pos: -120.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20316 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20079 components: - type: Transform - pos: 5.5,0.5 - parent: 20527 - - uid: 20695 + rot: 3.141592653589793 rad + pos: -132.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20372 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20104 components: - type: Transform - pos: 5.5,1.5 - parent: 20527 - - uid: 20696 + rot: 3.141592653589793 rad + pos: -119.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21473 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20118 components: - type: Transform - pos: 6.5,1.5 - parent: 20527 - - uid: 20697 + pos: -113.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20119 components: - type: Transform - pos: 7.5,1.5 - parent: 20527 - - uid: 20698 + rot: 3.141592653589793 rad + pos: -113.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20367 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20153 components: - type: Transform - pos: 0.5,-0.5 - parent: 20527 - - uid: 20699 + pos: -119.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20251 components: - type: Transform - pos: -1.5,2.5 - parent: 20527 - - uid: 20700 + rot: -1.5707963267948966 rad + pos: -133.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20372 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20304 components: - type: Transform - pos: -1.5,4.5 - parent: 20527 - - uid: 20701 + rot: 1.5707963267948966 rad + pos: -83.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20303 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20361 components: - type: Transform - pos: -1.5,3.5 - parent: 20527 - - uid: 20702 + pos: -125.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20362 components: - type: Transform - pos: -0.5,5.5 - parent: 20527 - - uid: 20703 + pos: -133.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25886 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 20374 components: - type: Transform - pos: 2.5,2.5 - parent: 20527 - - uid: 20704 + pos: -129.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20318 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22162 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 20527 - - uid: 20705 + pos: -91.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14861 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 22218 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 20527 - - uid: 20706 + pos: -101.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16218 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 20527 - - uid: 20707 - components: - - type: Transform - pos: 5.5,2.5 - parent: 20527 - - uid: 20806 - components: - - type: Transform - pos: 344.5,448.5 - parent: 1 - - uid: 20808 - components: - - type: Transform - pos: 344.5,449.5 - parent: 1 - - uid: 20827 + pos: -91.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 374 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23678 components: - type: Transform - pos: 344.5,451.5 - parent: 1 - - uid: 20828 + pos: -47.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23679 components: - type: Transform - pos: 344.5,452.5 - parent: 1 - - uid: 20829 + pos: -71.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 23681 + - 12769 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23776 components: - type: Transform - pos: 343.5,452.5 - parent: 1 - - uid: 20830 + pos: -34.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 20948 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23867 components: - type: Transform - pos: 342.5,454.5 - parent: 1 - - uid: 20831 + pos: -63.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12151 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 23872 components: - type: Transform - pos: 338.5,456.5 - parent: 1 - - uid: 20834 + rot: 1.5707963267948966 rad + pos: -71.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 461 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24020 components: - type: Transform rot: -1.5707963267948966 rad - pos: 508.5,381.5 - parent: 1 - - uid: 20835 + pos: -19.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24026 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24023 components: - type: Transform - pos: 337.5,456.5 - parent: 1 - - uid: 20838 + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24047 components: - type: Transform - pos: 336.5,456.5 - parent: 1 - - uid: 20841 + rot: -1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 4214 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24250 components: - type: Transform - pos: 334.5,456.5 - parent: 1 - - uid: 20842 + rot: -1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24558 components: - type: Transform - pos: 333.5,456.5 - parent: 1 - - uid: 20843 + pos: -89.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25887 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24569 components: - type: Transform - pos: 332.5,456.5 - parent: 1 - - uid: 20844 + rot: 1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1848 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24656 components: - type: Transform - pos: 330.5,454.5 - parent: 1 - - uid: 20846 + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9167 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24680 components: - type: Transform - pos: 330.5,453.5 - parent: 1 - - uid: 20847 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24693 components: - type: Transform - pos: 330.5,452.5 - parent: 1 - - uid: 20848 + pos: -36.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22168 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24722 components: - type: Transform - pos: 330.5,451.5 - parent: 1 - - uid: 20849 + rot: 1.5707963267948966 rad + pos: -57.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24742 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 24779 components: - type: Transform - pos: 330.5,450.5 - parent: 1 - - uid: 20855 + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19910 + - 12768 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25150 components: - type: Transform - pos: 330.5,449.5 - parent: 1 - - uid: 20858 + rot: -1.5707963267948966 rad + pos: -121.5,-82.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25190 components: - type: Transform - pos: 330.5,447.5 - parent: 1 - - uid: 20860 + rot: -1.5707963267948966 rad + pos: -119.5,-73.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25280 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25192 components: - type: Transform - pos: 329.5,449.5 - parent: 1 - - uid: 20865 + rot: -1.5707963267948966 rad + pos: -120.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25270 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25235 components: - type: Transform - pos: 329.5,454.5 - parent: 1 - - uid: 20873 + rot: 1.5707963267948966 rad + pos: -122.5,-77.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25264 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 500.5,379.5 - parent: 1 - - uid: 21061 + rot: 3.141592653589793 rad + pos: -118.5,-80.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 501.5,378.5 - parent: 1 - - uid: 21062 + rot: 3.141592653589793 rad + pos: -122.5,-85.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 25258 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,402.5 - parent: 1 - - uid: 21186 + rot: 1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 24037 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 503.5,378.5 - parent: 1 - - uid: 21188 + pos: -53.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9346 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 26087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,378.5 - parent: 1 - - uid: 21189 + rot: 1.5707963267948966 rad + pos: -51.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 572 components: + - type: MetaData + name: volumetric gas pump (Atmos to Space) - type: Transform rot: -1.5707963267948966 rad - pos: 500.5,380.5 - parent: 1 - - uid: 21190 + pos: -139.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - type: Label + currentLabel: Atmos to Space + - type: NameModifier + baseName: volumetric gas pump + - uid: 644 components: + - type: MetaData + name: volumetric gas pump (TEG to Space) - type: Transform - rot: -1.5707963267948966 rad - pos: 500.5,381.5 - parent: 1 - - uid: 21277 + rot: 1.5707963267948966 rad + pos: -141.5,-3.5 + parent: 2 + - type: Label + currentLabel: TEG to Space + - type: NameModifier + baseName: volumetric gas pump + - uid: 1673 components: - type: Transform rot: 3.141592653589793 rad - pos: 314.5,422.5 - parent: 1 - - uid: 21278 + pos: -148.5,-42.5 + parent: 2 + - uid: 2448 components: - type: Transform rot: 3.141592653589793 rad - pos: 313.5,422.5 - parent: 1 - - uid: 21296 - components: - - type: Transform - pos: 2.5,22.5 - parent: 5072 - - uid: 21312 + pos: -146.5,-48.5 + parent: 2 + - uid: 2452 components: - type: Transform - pos: 4.5,22.5 - parent: 5072 - - uid: 21347 + pos: -146.5,-42.5 + parent: 2 + - uid: 2454 components: - type: Transform - pos: 2.5,26.5 - parent: 5072 - - uid: 21393 + pos: -148.5,-48.5 + parent: 2 + - uid: 5688 components: + - type: MetaData + name: volumetric gas pump (Atmos to TEG) - type: Transform - pos: 4.5,26.5 - parent: 5072 - - uid: 21404 + rot: -1.5707963267948966 rad + pos: -141.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: Atmos to TEG + - type: NameModifier + baseName: volumetric gas pump + - uid: 6017 components: + - type: MetaData + name: volumetric gas pump (Burn Chamber Out) - type: Transform - pos: 6.5,19.5 - parent: 5072 - - uid: 21631 + pos: -150.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Label + currentLabel: Burn Chamber Out + - type: NameModifier + baseName: volumetric gas pump + - uid: 6065 components: + - type: MetaData + name: volumetric gas pump (Burn Chamber In) - type: Transform - pos: 15.5,21.5 - parent: 5072 - - uid: 21645 + rot: 3.141592653589793 rad + pos: -144.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - type: Label + currentLabel: Burn Chamber In + - type: NameModifier + baseName: volumetric gas pump + - uid: 6066 components: - - type: Transform - pos: 15.5,20.5 - parent: 5072 - - uid: 21653 + - type: MetaData + name: volumetric gas pump (Burn Chamber Radiator) + - type: Transform + pos: -148.5,-2.5 + parent: 2 + - type: Label + currentLabel: Burn Chamber Radiator + - type: NameModifier + baseName: volumetric gas pump + - uid: 6067 components: + - type: MetaData + name: volumetric gas pump (Burn Chamber Radiator) - type: Transform - pos: 10.5,29.5 - parent: 5072 - - uid: 21665 + rot: 3.141592653589793 rad + pos: -146.5,-2.5 + parent: 2 + - type: Label + currentLabel: Burn Chamber Radiator + - type: NameModifier + baseName: volumetric gas pump + - uid: 6073 components: + - type: MetaData + name: volumetric gas pump (Space Radiator Out) - type: Transform - pos: 9.5,31.5 - parent: 5072 - - uid: 21743 + rot: 3.141592653589793 rad + pos: -144.5,-12.5 + parent: 2 + - type: Label + currentLabel: Space Radiator Out + - type: NameModifier + baseName: volumetric gas pump + - uid: 6074 components: - - type: Transform - pos: -7.5,30.5 - parent: 5072 - - uid: 21764 + - type: MetaData + name: volumetric gas pump (Space Radiator In) + - type: Transform + pos: -150.5,-12.5 + parent: 2 + - type: Label + currentLabel: Space Radiator In + - type: NameModifier + baseName: volumetric gas pump + - uid: 16202 components: - type: Transform - pos: -5.5,30.5 - parent: 5072 - - uid: 21773 + rot: 1.5707963267948966 rad + pos: -115.5,7.5 + parent: 2 + - uid: 18905 components: - type: Transform - pos: -1.5,27.5 - parent: 5072 - - uid: 21789 + rot: 1.5707963267948966 rad + pos: -115.5,1.5 + parent: 2 + - uid: 22955 components: - type: Transform - pos: -0.5,27.5 - parent: 5072 - - uid: 21829 + rot: -1.5707963267948966 rad + pos: -148.5,-8.5 + parent: 2 + - uid: 22956 components: - type: Transform - pos: 0.5,33.5 - parent: 5072 - - uid: 21836 + rot: 1.5707963267948966 rad + pos: -146.5,-6.5 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 7366 components: - type: Transform - pos: 2.5,33.5 - parent: 5072 - - uid: 21839 + pos: -149.92545,-42.395725 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 4426 components: - type: Transform - pos: 3.5,33.5 - parent: 5072 - - uid: 21843 + pos: -44.5,-72.5 + parent: 2 +- proto: Girder + entities: + - uid: 15066 components: - type: Transform - pos: 4.5,33.5 - parent: 5072 - - uid: 21851 + rot: 3.141592653589793 rad + pos: -95.5,-49.5 + parent: 2 + - uid: 15687 components: - type: Transform - pos: 6.5,33.5 - parent: 5072 - - uid: 21852 + rot: 3.141592653589793 rad + pos: -95.5,-50.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 390 components: - type: Transform - pos: 4.5,35.5 - parent: 5072 - - uid: 21855 + pos: -48.5,-2.5 + parent: 2 +- proto: GoldDoor + entities: + - uid: 480 components: + - type: MetaData + desc: An exceptional door to an exceptional throne + name: Throneroom - type: Transform - pos: 7.5,33.5 - parent: 5072 - - uid: 21856 + pos: -45.5,-2.5 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 9480 components: - type: Transform - pos: 4.5,36.5 - parent: 5072 - - uid: 21859 + pos: -129.5,-22.5 + parent: 2 +- proto: Grille + entities: + - uid: 6 components: - type: Transform - pos: 5.5,36.5 - parent: 5072 - - uid: 21861 + pos: -69.5,4.5 + parent: 2 + - uid: 19 components: - type: Transform - pos: 6.5,36.5 - parent: 5072 - - uid: 21863 + pos: -62.5,9.5 + parent: 2 + - uid: 20 components: - type: Transform - pos: 7.5,36.5 - parent: 5072 - - uid: 21864 + pos: -61.5,9.5 + parent: 2 + - uid: 21 components: - type: Transform - pos: 1.5,36.5 - parent: 5072 - - uid: 21865 + pos: -60.5,9.5 + parent: 2 + - uid: 32 components: - type: Transform - pos: 0.5,36.5 - parent: 5072 - - uid: 21880 + pos: -69.5,6.5 + parent: 2 + - uid: 33 components: - type: Transform - pos: 17.5,20.5 - parent: 5072 - - uid: 21884 + pos: -65.5,8.5 + parent: 2 + - uid: 34 components: - type: Transform - pos: 17.5,21.5 - parent: 5072 - - uid: 21888 + pos: -66.5,8.5 + parent: 2 + - uid: 35 components: - type: Transform - pos: -10.5,32.5 - parent: 5072 - - uid: 21889 + pos: -69.5,5.5 + parent: 2 + - uid: 36 components: - type: Transform - pos: -9.5,32.5 - parent: 5072 - - uid: 21892 + pos: -58.5,9.5 + parent: 2 + - uid: 37 components: - type: Transform - pos: -5.5,32.5 - parent: 5072 - - uid: 21893 + pos: -58.5,8.5 + parent: 2 + - uid: 39 components: - type: Transform - pos: -7.5,34.5 - parent: 5072 - - uid: 21894 + pos: -64.5,9.5 + parent: 2 + - uid: 40 components: - type: Transform - pos: -4.5,32.5 - parent: 5072 - - uid: 21895 + pos: -64.5,8.5 + parent: 2 + - uid: 41 components: - type: Transform - pos: -6.5,34.5 - parent: 5072 - - uid: 21896 + pos: -56.5,8.5 + parent: 2 + - uid: 42 components: - type: Transform - pos: -7.5,35.5 - parent: 5072 - - uid: 21898 + pos: -57.5,8.5 + parent: 2 + - uid: 43 components: - type: Transform - pos: -5.5,34.5 - parent: 5072 - - uid: 21905 + pos: -53.5,6.5 + parent: 2 + - uid: 44 components: - type: Transform - pos: -0.5,33.5 - parent: 5072 - - uid: 21906 + pos: -53.5,4.5 + parent: 2 + - uid: 45 components: - type: Transform - pos: -0.5,36.5 - parent: 5072 - - uid: 21908 + pos: -53.5,5.5 + parent: 2 + - uid: 172 components: - type: Transform - pos: -1.5,36.5 - parent: 5072 - - uid: 21913 + pos: -52.5,-8.5 + parent: 2 + - uid: 173 components: - type: Transform - pos: -10.5,31.5 - parent: 5072 - - uid: 21948 + pos: -51.5,-8.5 + parent: 2 + - uid: 177 components: - type: Transform - pos: 357.5,433.5 - parent: 1 -- proto: GrilleBroken - entities: - - uid: 827 + pos: -34.5,-78.5 + parent: 2 + - uid: 333 components: - type: Transform - pos: 342.5,436.5 - parent: 1 - - uid: 1193 + pos: -28.5,22.5 + parent: 2 + - uid: 334 components: - type: Transform - pos: 421.5,375.5 - parent: 1 - - uid: 1376 + pos: -30.5,22.5 + parent: 2 + - uid: 349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 500.5,378.5 - parent: 1 - - uid: 1500 + pos: -18.5,-16.5 + parent: 2 + - uid: 388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,394.5 - parent: 1 - - uid: 1562 + rot: 1.5707963267948966 rad + pos: -139.5,-9.5 + parent: 2 + - uid: 443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 286.5,397.5 - parent: 1 - - uid: 1563 + pos: -47.5,-9.5 + parent: 2 + - uid: 464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 286.5,377.5 - parent: 1 - - uid: 1564 + pos: -126.5,-7.5 + parent: 2 + - uid: 468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 292.5,377.5 - parent: 1 - - uid: 1614 + pos: -127.5,-7.5 + parent: 2 + - uid: 476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 278.5,397.5 - parent: 1 - - uid: 3106 + pos: -125.5,-7.5 + parent: 2 + - uid: 485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,363.5 - parent: 1 - - uid: 3107 + pos: -92.5,38.5 + parent: 2 + - uid: 518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,359.5 - parent: 1 - - uid: 3108 + pos: -80.5,-17.5 + parent: 2 + - uid: 557 components: - type: Transform - pos: 390.5,359.5 - parent: 1 - - uid: 3113 + pos: -106.5,-45.5 + parent: 2 + - uid: 558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,370.5 - parent: 1 - - uid: 3822 + pos: -111.5,-45.5 + parent: 2 + - uid: 754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,370.5 - parent: 1 - - uid: 3823 + pos: -97.5,14.5 + parent: 2 + - uid: 813 components: - type: Transform - pos: 428.5,359.5 - parent: 1 - - uid: 3858 + pos: -124.5,2.5 + parent: 2 + - uid: 823 components: - type: Transform - pos: 295.5,392.5 - parent: 1 - - uid: 3863 + pos: -124.5,3.5 + parent: 2 + - uid: 922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 276.5,397.5 - parent: 1 - - uid: 4337 + pos: -110.5,-1.5 + parent: 2 + - uid: 1073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,370.5 - parent: 1 - - uid: 4338 + rot: -1.5707963267948966 rad + pos: -122.5,37.5 + parent: 2 + - uid: 1151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,367.5 - parent: 1 - - uid: 4560 + pos: -80.5,-43.5 + parent: 2 + - uid: 1186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,389.5 - parent: 1 - - uid: 4616 + pos: -48.5,-21.5 + parent: 2 + - uid: 1187 components: - type: Transform rot: -1.5707963267948966 rad - pos: 320.5,417.5 - parent: 1 - - uid: 4897 + pos: -157.5,-6.5 + parent: 2 + - uid: 1197 components: - type: Transform - pos: 344.5,450.5 - parent: 1 - - uid: 5110 + pos: -28.5,-55.5 + parent: 2 + - uid: 1322 components: - type: Transform - pos: 319.5,418.5 - parent: 1 - - uid: 5113 + pos: -97.5,-22.5 + parent: 2 + - uid: 1330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 288.5,397.5 - parent: 1 - - uid: 5114 + pos: -89.5,-26.5 + parent: 2 + - uid: 1333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 291.5,397.5 - parent: 1 - - uid: 7024 + pos: -122.5,36.5 + parent: 2 + - uid: 1405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 438.5,368.5 - parent: 1 - - uid: 7025 + pos: -31.5,-47.5 + parent: 2 + - uid: 1428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,370.5 - parent: 1 - - uid: 7044 + pos: -124.5,11.5 + parent: 2 + - uid: 1503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,368.5 - parent: 1 - - uid: 7089 + pos: -89.5,-29.5 + parent: 2 + - uid: 1504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,368.5 - parent: 1 - - uid: 7133 + pos: -89.5,-25.5 + parent: 2 + - uid: 1508 components: - type: Transform - pos: 439.5,370.5 - parent: 1 - - uid: 7141 + pos: -89.5,-28.5 + parent: 2 + - uid: 1530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,368.5 - parent: 1 - - uid: 7150 + pos: -78.5,-17.5 + parent: 2 + - uid: 1596 components: - type: Transform rot: 1.5707963267948966 rad - pos: 431.5,370.5 - parent: 1 - - uid: 7151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 465.5,396.5 - parent: 1 - - uid: 7152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 469.5,394.5 - parent: 1 - - uid: 7155 + pos: -57.5,-81.5 + parent: 2 + - uid: 1700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 470.5,393.5 - parent: 1 - - uid: 7156 + pos: -79.5,-17.5 + parent: 2 + - uid: 1701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,401.5 - parent: 1 - - uid: 7157 + pos: -78.5,-18.5 + parent: 2 + - uid: 1702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 468.5,404.5 - parent: 1 - - uid: 7168 + pos: -81.5,-17.5 + parent: 2 + - uid: 1705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 470.5,409.5 - parent: 1 - - uid: 7169 + pos: -61.5,-70.5 + parent: 2 + - uid: 1711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 470.5,411.5 - parent: 1 - - uid: 7185 + pos: -155.5,-45.5 + parent: 2 + - uid: 1800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 467.5,409.5 - parent: 1 - - uid: 7238 + rot: 3.141592653589793 rad + pos: -101.5,-11.5 + parent: 2 + - uid: 1813 components: - type: Transform rot: 3.141592653589793 rad - pos: 467.5,410.5 - parent: 1 - - uid: 7240 + pos: -157.5,-31.5 + parent: 2 + - uid: 1829 components: - type: Transform rot: 1.5707963267948966 rad - pos: 471.5,409.5 - parent: 1 - - uid: 7245 + pos: -58.5,-81.5 + parent: 2 + - uid: 1836 components: - type: Transform rot: 1.5707963267948966 rad - pos: 466.5,411.5 - parent: 1 - - uid: 7266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 481.5,408.5 - parent: 1 - - uid: 7272 + pos: -56.5,-81.5 + parent: 2 + - uid: 1861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 496.5,406.5 - parent: 1 - - uid: 7273 + pos: -34.5,-75.5 + parent: 2 + - uid: 1882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 478.5,408.5 - parent: 1 - - uid: 7279 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 495.5,405.5 - parent: 1 - - uid: 7281 + pos: -54.5,-81.5 + parent: 2 + - uid: 1904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 496.5,401.5 - parent: 1 - - uid: 7282 + rot: 1.5707963267948966 rad + pos: -55.5,-81.5 + parent: 2 + - uid: 1906 components: - type: Transform - pos: 496.5,405.5 - parent: 1 - - uid: 7297 + pos: -78.5,-19.5 + parent: 2 + - uid: 1907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 494.5,402.5 - parent: 1 - - uid: 7300 + pos: -84.5,-17.5 + parent: 2 + - uid: 1908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 494.5,401.5 - parent: 1 - - uid: 7303 + pos: -83.5,-17.5 + parent: 2 + - uid: 1909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,444.5 - parent: 1 - - uid: 7305 + pos: -82.5,-17.5 + parent: 2 + - uid: 1911 components: - type: Transform - pos: 393.5,442.5 - parent: 1 - - uid: 7306 + pos: -106.5,-5.5 + parent: 2 + - uid: 1913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,444.5 - parent: 1 - - uid: 7308 + pos: -106.5,-3.5 + parent: 2 + - uid: 1925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,439.5 - parent: 1 - - uid: 7335 + pos: -106.5,-4.5 + parent: 2 + - uid: 1971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,444.5 - parent: 1 - - uid: 7336 + pos: -111.5,-1.5 + parent: 2 + - uid: 1979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,441.5 - parent: 1 - - uid: 7337 + pos: -109.5,-1.5 + parent: 2 + - uid: 1987 components: - type: Transform - pos: 386.5,442.5 - parent: 1 - - uid: 7338 + pos: -93.5,-23.5 + parent: 2 + - uid: 1988 components: - type: Transform - pos: 385.5,444.5 - parent: 1 - - uid: 8060 + pos: -93.5,-24.5 + parent: 2 + - uid: 1989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 383.5,444.5 - parent: 1 - - uid: 8062 + pos: -93.5,-17.5 + parent: 2 + - uid: 1990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,442.5 - parent: 1 - - uid: 8063 + pos: -93.5,-22.5 + parent: 2 + - uid: 2052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 377.5,442.5 - parent: 1 - - uid: 8064 + pos: -95.5,-20.5 + parent: 2 + - uid: 2063 components: - type: Transform - pos: 375.5,442.5 - parent: 1 - - uid: 8065 + pos: -95.5,-16.5 + parent: 2 + - uid: 2156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 436.5,438.5 - parent: 1 - - uid: 8066 + pos: -51.5,3.5 + parent: 2 + - uid: 2261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,438.5 - parent: 1 - - uid: 8068 + pos: -157.5,-41.5 + parent: 2 + - uid: 2282 components: - type: Transform - pos: 444.5,434.5 - parent: 1 - - uid: 8069 + pos: -157.5,-42.5 + parent: 2 + - uid: 2297 components: - type: Transform - pos: 446.5,433.5 - parent: 1 - - uid: 8075 + pos: -157.5,-44.5 + parent: 2 + - uid: 2306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,422.5 - parent: 1 - - uid: 8089 + pos: -126.5,-52.5 + parent: 2 + - uid: 2426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,423.5 - parent: 1 - - uid: 8307 + pos: -31.5,-30.5 + parent: 2 + - uid: 2456 components: - type: Transform rot: -1.5707963267948966 rad - pos: 460.5,370.5 - parent: 1 - - uid: 8320 - components: - - type: Transform - pos: 460.5,369.5 - parent: 1 - - uid: 8333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,369.5 - parent: 1 - - uid: 8369 - components: - - type: Transform - pos: 422.5,369.5 - parent: 1 - - uid: 8440 + pos: -155.5,-46.5 + parent: 2 + - uid: 2571 components: - type: Transform - pos: 421.5,380.5 - parent: 1 - - uid: 10332 + pos: -106.5,-61.5 + parent: 2 + - uid: 2574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 278.5,377.5 - parent: 1 - - uid: 15329 + pos: -56.5,-68.5 + parent: 2 + - uid: 2593 components: - type: Transform - pos: 275.5,388.5 - parent: 1 - - uid: 15331 + pos: -106.5,-63.5 + parent: 2 + - uid: 2594 components: - type: Transform - pos: 275.5,394.5 - parent: 1 - - uid: 15395 + pos: -90.5,-36.5 + parent: 2 + - uid: 2596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 283.5,377.5 - parent: 1 - - uid: 15396 + pos: -78.5,-42.5 + parent: 2 + - uid: 2599 components: - type: Transform - pos: 275.5,381.5 - parent: 1 - - uid: 15398 + pos: -108.5,-61.5 + parent: 2 + - uid: 2601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 275.5,383.5 - parent: 1 - - uid: 17578 + pos: -78.5,-43.5 + parent: 2 + - uid: 2605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 502.5,378.5 - parent: 1 - - uid: 17977 + pos: -57.5,-68.5 + parent: 2 + - uid: 2610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 488.5,405.5 - parent: 1 - - uid: 17978 + pos: -60.5,-68.5 + parent: 2 + - uid: 2672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 491.5,405.5 - parent: 1 - - uid: 18201 + pos: -121.5,-15.5 + parent: 2 + - uid: 2816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 489.5,406.5 - parent: 1 - - uid: 18531 + pos: -65.5,-11.5 + parent: 2 + - uid: 2817 components: - type: Transform - pos: 488.5,405.5 - parent: 1 - - uid: 18722 + pos: -65.5,-12.5 + parent: 2 + - uid: 2819 components: - type: Transform - pos: 424.5,379.5 - parent: 1 - - uid: 19408 + pos: -64.5,-13.5 + parent: 2 + - uid: 2820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 489.5,406.5 - parent: 1 - - uid: 19409 + pos: -63.5,-13.5 + parent: 2 + - uid: 2821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 480.5,406.5 - parent: 1 - - uid: 19410 + pos: -62.5,-13.5 + parent: 2 + - uid: 2822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 481.5,405.5 - parent: 1 - - uid: 19411 + pos: -60.5,-13.5 + parent: 2 + - uid: 2823 components: - type: Transform - pos: 486.5,408.5 - parent: 1 - - uid: 19412 + pos: -59.5,-13.5 + parent: 2 + - uid: 2824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 480.5,407.5 - parent: 1 - - uid: 19413 + pos: -58.5,-13.5 + parent: 2 + - uid: 2826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 485.5,408.5 - parent: 1 - - uid: 19414 + pos: -57.5,-12.5 + parent: 2 + - uid: 2827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 488.5,408.5 - parent: 1 - - uid: 19415 + pos: -57.5,-11.5 + parent: 2 + - uid: 2858 components: - type: Transform - pos: 483.5,407.5 - parent: 1 - - uid: 19416 + pos: -50.5,3.5 + parent: 2 + - uid: 2859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 476.5,406.5 - parent: 1 - - uid: 19417 + pos: -49.5,3.5 + parent: 2 + - uid: 2860 components: - type: Transform - pos: 474.5,408.5 - parent: 1 - - uid: 19418 + pos: -45.5,3.5 + parent: 2 + - uid: 2861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 477.5,408.5 - parent: 1 - - uid: 19419 + pos: -44.5,3.5 + parent: 2 + - uid: 2862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 468.5,405.5 - parent: 1 - - uid: 19420 + pos: -43.5,3.5 + parent: 2 + - uid: 2940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 474.5,409.5 - parent: 1 - - uid: 19421 + pos: -48.5,-8.5 + parent: 2 + - uid: 2944 components: - type: Transform - pos: 473.5,411.5 - parent: 1 - - uid: 19422 + pos: -52.5,-10.5 + parent: 2 + - uid: 2945 components: - type: Transform - pos: 466.5,408.5 - parent: 1 - - uid: 19423 + pos: -50.5,-10.5 + parent: 2 + - uid: 2946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 467.5,406.5 - parent: 1 - - uid: 19424 + pos: -51.5,-10.5 + parent: 2 + - uid: 2961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 466.5,405.5 - parent: 1 - - uid: 19425 + pos: -50.5,-8.5 + parent: 2 + - uid: 3017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 467.5,406.5 - parent: 1 - - uid: 19426 + pos: -63.5,4.5 + parent: 2 + - uid: 3020 components: - type: Transform - pos: 468.5,402.5 - parent: 1 - - uid: 19427 + pos: -8.5,5.5 + parent: 2 + - uid: 3023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 467.5,403.5 - parent: 1 - - uid: 19428 + pos: -59.5,4.5 + parent: 2 + - uid: 3024 components: - type: Transform - pos: 463.5,401.5 - parent: 1 - - uid: 19429 + pos: -59.5,2.5 + parent: 2 + - uid: 3025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,399.5 - parent: 1 - - uid: 19430 + pos: -63.5,2.5 + parent: 2 + - uid: 3052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 466.5,399.5 - parent: 1 - - uid: 19431 + pos: -121.5,-16.5 + parent: 2 + - uid: 3256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 467.5,398.5 - parent: 1 - - uid: 19432 + pos: -69.5,-6.5 + parent: 2 + - uid: 3257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 466.5,396.5 - parent: 1 - - uid: 19433 + pos: -70.5,-6.5 + parent: 2 + - uid: 3258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 475.5,393.5 - parent: 1 - - uid: 19434 + pos: -72.5,-6.5 + parent: 2 + - uid: 3259 components: - type: Transform - pos: 474.5,392.5 - parent: 1 - - uid: 19435 + pos: -73.5,-6.5 + parent: 2 + - uid: 3260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 477.5,392.5 - parent: 1 - - uid: 19436 + pos: -74.5,-6.5 + parent: 2 + - uid: 3261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 478.5,394.5 - parent: 1 - - uid: 19437 + pos: -75.5,-6.5 + parent: 2 + - uid: 3262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 476.5,395.5 - parent: 1 - - uid: 19438 + pos: -76.5,-6.5 + parent: 2 + - uid: 3263 components: - type: Transform - pos: 477.5,397.5 - parent: 1 - - uid: 19439 + pos: -77.5,-6.5 + parent: 2 + - uid: 3264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 473.5,396.5 - parent: 1 - - uid: 19440 + pos: -71.5,-6.5 + parent: 2 + - uid: 3265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 460.5,398.5 - parent: 1 - - uid: 19441 + pos: -77.5,-5.5 + parent: 2 + - uid: 3266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 459.5,396.5 - parent: 1 - - uid: 19442 + pos: -77.5,-4.5 + parent: 2 + - uid: 3267 components: - type: Transform - pos: 457.5,399.5 - parent: 1 - - uid: 19443 + pos: -77.5,-3.5 + parent: 2 + - uid: 3268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 453.5,396.5 - parent: 1 - - uid: 19444 + pos: -77.5,-1.5 + parent: 2 + - uid: 3269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 449.5,397.5 - parent: 1 - - uid: 19445 + pos: -77.5,-0.5 + parent: 2 + - uid: 3270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 449.5,398.5 - parent: 1 - - uid: 19446 + pos: -77.5,0.5 + parent: 2 + - uid: 3271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,392.5 - parent: 1 - - uid: 19447 + pos: -77.5,1.5 + parent: 2 + - uid: 3272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,394.5 - parent: 1 - - uid: 19448 + pos: -77.5,-2.5 + parent: 2 + - uid: 3273 components: - type: Transform - pos: 445.5,392.5 - parent: 1 - - uid: 19449 + pos: -76.5,1.5 + parent: 2 + - uid: 3274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,378.5 - parent: 1 - - uid: 19450 + pos: -75.5,1.5 + parent: 2 + - uid: 3275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,376.5 - parent: 1 - - uid: 19451 + pos: -73.5,1.5 + parent: 2 + - uid: 3276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,377.5 - parent: 1 - - uid: 19452 + pos: -72.5,1.5 + parent: 2 + - uid: 3277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,376.5 - parent: 1 - - uid: 19453 + pos: -71.5,1.5 + parent: 2 + - uid: 3278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,376.5 - parent: 1 - - uid: 19454 + pos: -70.5,1.5 + parent: 2 + - uid: 3279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 439.5,375.5 - parent: 1 - - uid: 19455 + pos: -69.5,1.5 + parent: 2 + - uid: 3280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,370.5 - parent: 1 - - uid: 19456 + pos: -74.5,1.5 + parent: 2 + - uid: 3281 components: - type: Transform - pos: 436.5,369.5 - parent: 1 - - uid: 19457 + pos: -69.5,0.5 + parent: 2 + - uid: 3282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,365.5 - parent: 1 - - uid: 19458 + pos: -69.5,-0.5 + parent: 2 + - uid: 3283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,363.5 - parent: 1 - - uid: 19459 + pos: -69.5,-4.5 + parent: 2 + - uid: 3284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,362.5 - parent: 1 - - uid: 19460 + pos: -69.5,-5.5 + parent: 2 + - uid: 3301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,365.5 - parent: 1 - - uid: 19461 + pos: -53.5,-81.5 + parent: 2 + - uid: 3514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,358.5 - parent: 1 - - uid: 19462 + pos: -55.5,-47.5 + parent: 2 + - uid: 3551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,360.5 - parent: 1 - - uid: 19463 + pos: -55.5,-44.5 + parent: 2 + - uid: 3633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,355.5 - parent: 1 - - uid: 19464 + pos: -75.5,-47.5 + parent: 2 + - uid: 3686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,353.5 - parent: 1 - - uid: 19465 + pos: -56.5,-72.5 + parent: 2 + - uid: 3699 components: - type: Transform - pos: 428.5,352.5 - parent: 1 - - uid: 19466 + pos: -56.5,-70.5 + parent: 2 + - uid: 3708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,350.5 - parent: 1 - - uid: 19467 + pos: -75.5,-45.5 + parent: 2 + - uid: 3731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,348.5 - parent: 1 - - uid: 19468 + pos: -57.5,-73.5 + parent: 2 + - uid: 3745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,347.5 - parent: 1 - - uid: 19469 + pos: -9.5,5.5 + parent: 2 + - uid: 3747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,346.5 - parent: 1 - - uid: 19470 + pos: -7.5,5.5 + parent: 2 + - uid: 3824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,345.5 - parent: 1 - - uid: 19471 + pos: -48.5,-19.5 + parent: 2 + - uid: 3825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,345.5 - parent: 1 - - uid: 19472 + pos: -48.5,-20.5 + parent: 2 + - uid: 3826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,347.5 - parent: 1 - - uid: 19473 + pos: -53.5,-17.5 + parent: 2 + - uid: 3827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,349.5 - parent: 1 - - uid: 19474 + pos: -54.5,-17.5 + parent: 2 + - uid: 3842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,348.5 - parent: 1 - - uid: 19475 + pos: -51.5,-49.5 + parent: 2 + - uid: 3909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 410.5,348.5 - parent: 1 - - uid: 19476 + pos: -35.5,-25.5 + parent: 2 + - uid: 3910 components: - type: Transform - pos: 405.5,343.5 - parent: 1 - - uid: 19477 + pos: -35.5,-23.5 + parent: 2 + - uid: 3911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,346.5 - parent: 1 - - uid: 19478 + pos: -34.5,-22.5 + parent: 2 + - uid: 3912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,344.5 - parent: 1 - - uid: 19479 + pos: -32.5,-22.5 + parent: 2 + - uid: 3913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,350.5 - parent: 1 - - uid: 19480 + pos: -35.5,-20.5 + parent: 2 + - uid: 3914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,342.5 - parent: 1 - - uid: 19481 + pos: -35.5,-18.5 + parent: 2 + - uid: 3915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,344.5 - parent: 1 - - uid: 19482 + pos: -34.5,-16.5 + parent: 2 + - uid: 3916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,345.5 - parent: 1 - - uid: 19483 + pos: -32.5,-16.5 + parent: 2 + - uid: 3917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,342.5 - parent: 1 - - uid: 19484 + pos: -33.5,-16.5 + parent: 2 + - uid: 3955 components: - type: Transform - pos: 400.5,341.5 - parent: 1 - - uid: 19485 + pos: -31.5,-17.5 + parent: 2 + - uid: 3958 components: - type: Transform - pos: 395.5,344.5 - parent: 1 - - uid: 19486 + pos: -31.5,-21.5 + parent: 2 + - uid: 3973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,343.5 - parent: 1 - - uid: 19487 + pos: -29.5,-22.5 + parent: 2 + - uid: 4008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,348.5 - parent: 1 - - uid: 19488 + pos: -93.5,-19.5 + parent: 2 + - uid: 4042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,348.5 - parent: 1 - - uid: 19489 + pos: -24.5,-40.5 + parent: 2 + - uid: 4043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,347.5 - parent: 1 - - uid: 19490 + pos: -24.5,-39.5 + parent: 2 + - uid: 4044 components: - type: Transform - pos: 389.5,355.5 - parent: 1 - - uid: 19491 + pos: -24.5,-38.5 + parent: 2 + - uid: 4045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,360.5 - parent: 1 - - uid: 19492 + pos: -24.5,-36.5 + parent: 2 + - uid: 4046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,362.5 - parent: 1 - - uid: 19493 + pos: -24.5,-35.5 + parent: 2 + - uid: 4047 components: - type: Transform - pos: 392.5,363.5 - parent: 1 - - uid: 19494 + pos: -24.5,-34.5 + parent: 2 + - uid: 4062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,363.5 - parent: 1 - - uid: 19495 + pos: -20.5,-40.5 + parent: 2 + - uid: 4064 components: - type: Transform - pos: 388.5,362.5 - parent: 1 - - uid: 19496 + pos: -20.5,-38.5 + parent: 2 + - uid: 4065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,362.5 - parent: 1 - - uid: 19497 + pos: -20.5,-36.5 + parent: 2 + - uid: 4066 components: - type: Transform - pos: 386.5,367.5 - parent: 1 - - uid: 19498 + pos: -20.5,-34.5 + parent: 2 + - uid: 4081 components: - type: Transform - pos: 391.5,367.5 - parent: 1 - - uid: 19499 + pos: -34.5,-26.5 + parent: 2 + - uid: 4085 components: - type: Transform - pos: 394.5,366.5 - parent: 1 - - uid: 19500 + pos: -33.5,-26.5 + parent: 2 + - uid: 4086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,358.5 - parent: 1 - - uid: 19501 + pos: -32.5,-26.5 + parent: 2 + - uid: 4089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,362.5 - parent: 1 - - uid: 19502 + pos: -58.5,-68.5 + parent: 2 + - uid: 4090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,359.5 - parent: 1 - - uid: 19503 + pos: -61.5,-71.5 + parent: 2 + - uid: 4098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,362.5 - parent: 1 - - uid: 19504 + pos: -61.5,-72.5 + parent: 2 + - uid: 4099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,359.5 - parent: 1 - - uid: 19505 + pos: -27.5,-42.5 + parent: 2 + - uid: 4100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,356.5 - parent: 1 - - uid: 19506 + pos: -27.5,-45.5 + parent: 2 + - uid: 4108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,352.5 - parent: 1 - - uid: 19507 + pos: -27.5,-46.5 + parent: 2 + - uid: 4110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,353.5 - parent: 1 - - uid: 19508 + pos: -27.5,-43.5 + parent: 2 + - uid: 4158 components: - type: Transform - pos: 412.5,350.5 - parent: 1 - - uid: 19509 + pos: -20.5,-50.5 + parent: 2 + - uid: 4159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,348.5 - parent: 1 - - uid: 19510 + pos: -20.5,-52.5 + parent: 2 + - uid: 4160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,348.5 - parent: 1 - - uid: 19511 + pos: -20.5,-48.5 + parent: 2 + - uid: 4161 components: - type: Transform - pos: 404.5,348.5 - parent: 1 - - uid: 19512 + pos: -20.5,-54.5 + parent: 2 + - uid: 4228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,345.5 - parent: 1 - - uid: 19513 + pos: -83.5,15.5 + parent: 2 + - uid: 4243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,370.5 - parent: 1 - - uid: 19514 + pos: -83.5,14.5 + parent: 2 + - uid: 4245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,372.5 - parent: 1 - - uid: 19515 + pos: -83.5,25.5 + parent: 2 + - uid: 4246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,370.5 - parent: 1 - - uid: 19516 + pos: -83.5,23.5 + parent: 2 + - uid: 4247 components: - type: Transform - pos: 380.5,372.5 - parent: 1 - - uid: 19517 + pos: -83.5,24.5 + parent: 2 + - uid: 4248 components: - type: Transform - pos: 377.5,371.5 - parent: 1 - - uid: 19518 + pos: -56.5,-73.5 + parent: 2 + - uid: 4261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,373.5 - parent: 1 - - uid: 19519 + pos: -58.5,-73.5 + parent: 2 + - uid: 4266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,369.5 - parent: 1 - - uid: 19520 + pos: -59.5,-68.5 + parent: 2 + - uid: 4286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,376.5 - parent: 1 - - uid: 19521 + pos: -60.5,-73.5 + parent: 2 + - uid: 4342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,377.5 - parent: 1 - - uid: 19522 + pos: -31.5,-7.5 + parent: 2 + - uid: 4343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,377.5 - parent: 1 - - uid: 19523 + pos: -31.5,-9.5 + parent: 2 + - uid: 4344 components: - type: Transform - pos: 350.5,374.5 - parent: 1 - - uid: 19524 + pos: -31.5,-8.5 + parent: 2 + - uid: 4345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,375.5 - parent: 1 - - uid: 19525 + pos: -31.5,-3.5 + parent: 2 + - uid: 4346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,379.5 - parent: 1 - - uid: 19526 + pos: -31.5,-2.5 + parent: 2 + - uid: 4347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,380.5 - parent: 1 - - uid: 19527 + pos: -31.5,-1.5 + parent: 2 + - uid: 4348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,372.5 - parent: 1 - - uid: 19528 + pos: -27.5,-3.5 + parent: 2 + - uid: 4349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,370.5 - parent: 1 - - uid: 19529 + pos: -27.5,-1.5 + parent: 2 + - uid: 4350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,376.5 - parent: 1 - - uid: 19530 + pos: -27.5,-7.5 + parent: 2 + - uid: 4351 components: - type: Transform - pos: 342.5,377.5 - parent: 1 - - uid: 19531 + pos: -27.5,-9.5 + parent: 2 + - uid: 4416 components: - type: Transform rot: 3.141592653589793 rad - pos: 341.5,375.5 - parent: 1 - - uid: 19532 + pos: -42.5,-73.5 + parent: 2 + - uid: 4428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 347.5,368.5 - parent: 1 - - uid: 19533 + pos: -53.5,-80.5 + parent: 2 + - uid: 4445 components: - type: Transform - pos: 348.5,367.5 - parent: 1 - - uid: 19534 + pos: -84.5,-6.5 + parent: 2 + - uid: 4449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,366.5 - parent: 1 - - uid: 19535 + pos: -85.5,-6.5 + parent: 2 + - uid: 4450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,358.5 - parent: 1 - - uid: 19536 + pos: -82.5,-6.5 + parent: 2 + - uid: 4485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 346.5,365.5 - parent: 1 - - uid: 19537 + pos: -82.5,0.5 + parent: 2 + - uid: 4491 components: - type: Transform - pos: 346.5,364.5 - parent: 1 - - uid: 19538 + pos: -84.5,4.5 + parent: 2 + - uid: 4493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,361.5 - parent: 1 - - uid: 19539 + pos: -85.5,4.5 + parent: 2 + - uid: 4497 components: - type: Transform - pos: 343.5,362.5 - parent: 1 - - uid: 19540 + pos: -86.5,4.5 + parent: 2 + - uid: 4502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 337.5,357.5 - parent: 1 - - uid: 19541 + pos: -82.5,2.5 + parent: 2 + - uid: 4503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,358.5 - parent: 1 - - uid: 19542 + rot: 1.5707963267948966 rad + pos: -82.5,1.5 + parent: 2 + - uid: 4542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,359.5 - parent: 1 - - uid: 19543 + pos: -97.5,9.5 + parent: 2 + - uid: 4551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,363.5 - parent: 1 - - uid: 19544 + pos: -93.5,13.5 + parent: 2 + - uid: 4607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,364.5 - parent: 1 - - uid: 19545 + pos: -101.5,-23.5 + parent: 2 + - uid: 4620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,366.5 - parent: 1 - - uid: 19546 + pos: -9.5,7.5 + parent: 2 + - uid: 4628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,367.5 - parent: 1 - - uid: 19547 + pos: -97.5,10.5 + parent: 2 + - uid: 4651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,370.5 - parent: 1 - - uid: 19548 + pos: -95.5,13.5 + parent: 2 + - uid: 4673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,370.5 - parent: 1 - - uid: 19549 + pos: -8.5,7.5 + parent: 2 + - uid: 4675 components: - type: Transform - pos: 328.5,379.5 - parent: 1 - - uid: 19550 + pos: -7.5,7.5 + parent: 2 + - uid: 4695 components: - type: Transform - pos: 329.5,376.5 - parent: 1 - - uid: 19551 + pos: -85.5,35.5 + parent: 2 + - uid: 4696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,374.5 - parent: 1 - - uid: 19552 + pos: -85.5,33.5 + parent: 2 + - uid: 4697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,375.5 - parent: 1 - - uid: 19553 + pos: -85.5,34.5 + parent: 2 + - uid: 4707 components: - type: Transform - pos: 332.5,376.5 - parent: 1 - - uid: 19554 + pos: -83.5,30.5 + parent: 2 + - uid: 4708 components: - type: Transform - pos: 334.5,377.5 - parent: 1 - - uid: 19555 + pos: -83.5,28.5 + parent: 2 + - uid: 4709 components: - type: Transform - pos: 336.5,376.5 - parent: 1 - - uid: 19556 + pos: -83.5,29.5 + parent: 2 + - uid: 4723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,379.5 - parent: 1 - - uid: 19557 + pos: -87.5,26.5 + parent: 2 + - uid: 4724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,382.5 - parent: 1 - - uid: 19558 + pos: -85.5,26.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -85.5,-37.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -61.5,-69.5 + parent: 2 + - uid: 4877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,382.5 - parent: 1 - - uid: 19559 + rot: 3.141592653589793 rad + pos: -152.5,3.5 + parent: 2 + - uid: 4921 components: - type: Transform - pos: 299.5,379.5 - parent: 1 - - uid: 19560 + pos: -152.5,-7.5 + parent: 2 + - uid: 4974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,384.5 - parent: 1 - - uid: 19561 + rot: 3.141592653589793 rad + pos: -152.5,4.5 + parent: 2 + - uid: 5037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,382.5 - parent: 1 - - uid: 19562 + rot: 3.141592653589793 rad + pos: -150.5,4.5 + parent: 2 + - uid: 5045 components: - type: Transform - pos: 320.5,383.5 - parent: 1 - - uid: 19563 + pos: -31.5,-49.5 + parent: 2 + - uid: 5105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 319.5,382.5 - parent: 1 - - uid: 19564 + pos: -59.5,-73.5 + parent: 2 + - uid: 5162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,380.5 - parent: 1 - - uid: 19565 + pos: -81.5,32.5 + parent: 2 + - uid: 5301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 300.5,380.5 - parent: 1 - - uid: 19566 + pos: -108.5,9.5 + parent: 2 + - uid: 5302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 292.5,371.5 - parent: 1 - - uid: 19567 + pos: -108.5,8.5 + parent: 2 + - uid: 5303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 288.5,371.5 - parent: 1 - - uid: 19568 + pos: -108.5,7.5 + parent: 2 + - uid: 5304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 287.5,371.5 - parent: 1 - - uid: 19569 + pos: -106.5,7.5 + parent: 2 + - uid: 5305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 272.5,379.5 - parent: 1 - - uid: 19570 + pos: -106.5,8.5 + parent: 2 + - uid: 5306 components: - type: Transform - pos: 287.5,375.5 - parent: 1 - - uid: 19571 + pos: -106.5,9.5 + parent: 2 + - uid: 5307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 284.5,374.5 - parent: 1 - - uid: 19572 + pos: -112.5,9.5 + parent: 2 + - uid: 5308 components: - type: Transform - pos: 282.5,375.5 - parent: 1 - - uid: 19573 + pos: -112.5,8.5 + parent: 2 + - uid: 5309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 273.5,382.5 - parent: 1 - - uid: 19574 + pos: -112.5,7.5 + parent: 2 + - uid: 5310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 270.5,381.5 - parent: 1 - - uid: 19575 + pos: -114.5,7.5 + parent: 2 + - uid: 5311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 272.5,393.5 - parent: 1 - - uid: 19576 + pos: -114.5,9.5 + parent: 2 + - uid: 5312 components: - type: Transform - pos: 272.5,385.5 - parent: 1 - - uid: 19577 + pos: -114.5,8.5 + parent: 2 + - uid: 5313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 277.5,399.5 - parent: 1 - - uid: 19578 + pos: -114.5,3.5 + parent: 2 + - uid: 5314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 279.5,401.5 - parent: 1 - - uid: 19579 + pos: -114.5,2.5 + parent: 2 + - uid: 5315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 287.5,401.5 - parent: 1 - - uid: 19580 + pos: -114.5,1.5 + parent: 2 + - uid: 5316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 281.5,400.5 - parent: 1 - - uid: 19581 + pos: -112.5,1.5 + parent: 2 + - uid: 5317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 283.5,401.5 - parent: 1 - - uid: 19582 + pos: -112.5,3.5 + parent: 2 + - uid: 5318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,400.5 - parent: 1 - - uid: 19583 + pos: -112.5,2.5 + parent: 2 + - uid: 5319 components: - type: Transform - pos: 291.5,402.5 - parent: 1 - - uid: 19584 + pos: -108.5,1.5 + parent: 2 + - uid: 5320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 293.5,401.5 - parent: 1 - - uid: 19585 + pos: -108.5,2.5 + parent: 2 + - uid: 5321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 294.5,405.5 - parent: 1 - - uid: 19586 + pos: -108.5,3.5 + parent: 2 + - uid: 5322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 293.5,402.5 - parent: 1 - - uid: 19587 + pos: -106.5,3.5 + parent: 2 + - uid: 5323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,404.5 - parent: 1 - - uid: 19588 + pos: -106.5,2.5 + parent: 2 + - uid: 5324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 296.5,405.5 - parent: 1 - - uid: 19589 + pos: -106.5,1.5 + parent: 2 + - uid: 5357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 297.5,405.5 - parent: 1 - - uid: 19590 + pos: -124.5,13.5 + parent: 2 + - uid: 5371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 295.5,407.5 - parent: 1 - - uid: 19591 + pos: -111.5,0.5 + parent: 2 + - uid: 5372 components: - type: Transform - pos: 292.5,409.5 - parent: 1 - - uid: 19592 + pos: -110.5,0.5 + parent: 2 + - uid: 5373 components: - type: Transform - pos: 323.5,406.5 - parent: 1 - - uid: 19593 + pos: -109.5,0.5 + parent: 2 + - uid: 5410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 300.5,405.5 - parent: 1 - - uid: 19594 + pos: -126.5,3.5 + parent: 2 + - uid: 5420 components: - type: Transform - pos: 301.5,405.5 - parent: 1 - - uid: 19595 + pos: -126.5,1.5 + parent: 2 + - uid: 5444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 303.5,403.5 - parent: 1 - - uid: 19596 + pos: -124.5,1.5 + parent: 2 + - uid: 5447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 300.5,407.5 - parent: 1 - - uid: 19597 + pos: -124.5,4.5 + parent: 2 + - uid: 5469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 297.5,407.5 - parent: 1 - - uid: 19598 + pos: -124.5,12.5 + parent: 2 + - uid: 5471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 297.5,409.5 - parent: 1 - - uid: 19599 + pos: -124.5,9.5 + parent: 2 + - uid: 5498 components: - type: Transform - pos: 298.5,412.5 - parent: 1 - - uid: 19600 + pos: -142.5,-6.5 + parent: 2 + - uid: 5519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,403.5 - parent: 1 - - uid: 19601 + pos: -138.5,-8.5 + parent: 2 + - uid: 5546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,401.5 - parent: 1 - - uid: 19602 + pos: -126.5,9.5 + parent: 2 + - uid: 5548 components: - type: Transform - pos: 310.5,402.5 - parent: 1 - - uid: 19603 + pos: -126.5,11.5 + parent: 2 + - uid: 5549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 311.5,401.5 - parent: 1 - - uid: 19604 + pos: -126.5,5.5 + parent: 2 + - uid: 5550 components: - type: Transform - pos: 312.5,402.5 - parent: 1 - - uid: 19605 + pos: -126.5,7.5 + parent: 2 + - uid: 5551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,401.5 - parent: 1 - - uid: 19606 + pos: -126.5,13.5 + parent: 2 + - uid: 5681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,401.5 - parent: 1 - - uid: 19607 + pos: -107.5,-63.5 + parent: 2 + - uid: 5682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,400.5 - parent: 1 - - uid: 19608 + pos: -56.5,-69.5 + parent: 2 + - uid: 5684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,399.5 - parent: 1 - - uid: 19609 + pos: -124.5,10.5 + parent: 2 + - uid: 5692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 317.5,403.5 - parent: 1 - - uid: 19610 + pos: -140.5,-1.5 + parent: 2 + - uid: 5696 components: - type: Transform - pos: 317.5,406.5 - parent: 1 - - uid: 19611 + pos: -108.5,-63.5 + parent: 2 + - uid: 5698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,403.5 - parent: 1 - - uid: 19612 + pos: -120.5,-7.5 + parent: 2 + - uid: 5699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,403.5 - parent: 1 - - uid: 19613 + pos: -118.5,-7.5 + parent: 2 + - uid: 5723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,408.5 - parent: 1 - - uid: 19614 + pos: -78.5,-22.5 + parent: 2 + - uid: 5726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,426.5 - parent: 1 - - uid: 19615 + pos: -78.5,-38.5 + parent: 2 + - uid: 5756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,415.5 - parent: 1 - - uid: 19616 + pos: -115.5,-19.5 + parent: 2 + - uid: 5757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 315.5,417.5 - parent: 1 - - uid: 19617 + pos: -114.5,-19.5 + parent: 2 + - uid: 5758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 314.5,417.5 - parent: 1 - - uid: 19618 + pos: -117.5,-15.5 + parent: 2 + - uid: 5759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,419.5 - parent: 1 - - uid: 19619 + pos: -117.5,-17.5 + parent: 2 + - uid: 5779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,424.5 - parent: 1 - - uid: 19620 + pos: -117.5,-40.5 + parent: 2 + - uid: 5780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,431.5 - parent: 1 - - uid: 19621 + pos: -117.5,-38.5 + parent: 2 + - uid: 5822 components: - type: Transform - pos: 310.5,431.5 - parent: 1 - - uid: 19622 + pos: -116.5,-11.5 + parent: 2 + - uid: 5824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,429.5 - parent: 1 - - uid: 19623 + pos: -116.5,-9.5 + parent: 2 + - uid: 5825 components: - type: Transform - pos: 306.5,431.5 - parent: 1 - - uid: 19624 + pos: -113.5,-9.5 + parent: 2 + - uid: 5826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,429.5 - parent: 1 - - uid: 19625 + pos: -113.5,-11.5 + parent: 2 + - uid: 5865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,430.5 - parent: 1 - - uid: 19626 + pos: -106.5,-15.5 + parent: 2 + - uid: 5866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 302.5,429.5 - parent: 1 - - uid: 19627 + pos: -106.5,-16.5 + parent: 2 + - uid: 5870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,427.5 - parent: 1 - - uid: 19628 + pos: -106.5,-17.5 + parent: 2 + - uid: 5875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 297.5,421.5 - parent: 1 - - uid: 19629 + pos: -138.5,-12.5 + parent: 2 + - uid: 5909 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,425.5 - parent: 1 - - uid: 19630 + pos: -142.5,-3.5 + parent: 2 + - uid: 5910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 299.5,424.5 - parent: 1 - - uid: 19631 + pos: -142.5,-5.5 + parent: 2 + - uid: 5913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 300.5,422.5 - parent: 1 - - uid: 19632 + pos: -142.5,-4.5 + parent: 2 + - uid: 5935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 300.5,419.5 - parent: 1 - - uid: 19633 + pos: -148.5,0.5 + parent: 2 + - uid: 5936 components: - type: Transform - pos: 299.5,420.5 - parent: 1 - - uid: 19634 + pos: -147.5,0.5 + parent: 2 + - uid: 5937 components: - type: Transform - pos: 302.5,419.5 - parent: 1 - - uid: 19635 + pos: -146.5,0.5 + parent: 2 + - uid: 5938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,418.5 - parent: 1 - - uid: 19636 + pos: -146.5,-1.5 + parent: 2 + - uid: 5939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,416.5 - parent: 1 - - uid: 19637 + pos: -147.5,-1.5 + parent: 2 + - uid: 5940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 300.5,415.5 - parent: 1 - - uid: 19638 + pos: -148.5,-1.5 + parent: 2 + - uid: 5965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 298.5,417.5 - parent: 1 - - uid: 19639 + rot: 3.141592653589793 rad + pos: -151.5,4.5 + parent: 2 + - uid: 5986 components: - type: Transform rot: 3.141592653589793 rad - pos: 297.5,418.5 - parent: 1 - - uid: 19640 + pos: -143.5,-35.5 + parent: 2 + - uid: 6028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 297.5,414.5 - parent: 1 - - uid: 19641 + pos: -34.5,-77.5 + parent: 2 + - uid: 6079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,437.5 - parent: 1 - - uid: 19642 + pos: -148.5,-13.5 + parent: 2 + - uid: 6080 components: - type: Transform - pos: 307.5,434.5 - parent: 1 - - uid: 19643 + pos: -147.5,-13.5 + parent: 2 + - uid: 6081 components: - type: Transform - pos: 307.5,437.5 - parent: 1 - - uid: 19644 + pos: -146.5,-13.5 + parent: 2 + - uid: 6113 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,435.5 - parent: 1 - - uid: 19645 + pos: -32.5,-77.5 + parent: 2 + - uid: 6121 components: - type: Transform - pos: 303.5,439.5 - parent: 1 - - uid: 19646 + pos: -155.5,-10.5 + parent: 2 + - uid: 6151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,438.5 - parent: 1 - - uid: 19647 + pos: -117.5,-23.5 + parent: 2 + - uid: 6152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,440.5 - parent: 1 - - uid: 19648 + pos: -117.5,-21.5 + parent: 2 + - uid: 6199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,444.5 - parent: 1 - - uid: 19649 + pos: -126.5,-20.5 + parent: 2 + - uid: 6200 components: - type: Transform - pos: 307.5,442.5 - parent: 1 - - uid: 19650 + pos: -126.5,-21.5 + parent: 2 + - uid: 6204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,441.5 - parent: 1 - - uid: 19651 + pos: -126.5,-23.5 + parent: 2 + - uid: 6205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,443.5 - parent: 1 - - uid: 19652 + pos: -126.5,-24.5 + parent: 2 + - uid: 6295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,445.5 - parent: 1 - - uid: 19653 + pos: -126.5,-13.5 + parent: 2 + - uid: 6304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,446.5 - parent: 1 - - uid: 19654 + pos: -121.5,-17.5 + parent: 2 + - uid: 6312 components: - type: Transform - pos: 309.5,447.5 - parent: 1 - - uid: 19655 + pos: -125.5,-13.5 + parent: 2 + - uid: 6485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 316.5,448.5 - parent: 1 - - uid: 19656 + pos: -101.5,-26.5 + parent: 2 + - uid: 6487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,448.5 - parent: 1 - - uid: 19657 + pos: -101.5,-32.5 + parent: 2 + - uid: 6489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 314.5,448.5 - parent: 1 - - uid: 19658 + pos: -101.5,-31.5 + parent: 2 + - uid: 6490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,450.5 - parent: 1 - - uid: 19659 + pos: -101.5,-30.5 + parent: 2 + - uid: 6497 components: - type: Transform - pos: 314.5,451.5 - parent: 1 - - uid: 19660 + pos: -78.5,-46.5 + parent: 2 + - uid: 6498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,447.5 - parent: 1 - - uid: 19661 + pos: -78.5,-35.5 + parent: 2 + - uid: 6500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 318.5,446.5 - parent: 1 - - uid: 19663 + pos: -78.5,-47.5 + parent: 2 + - uid: 6502 components: - type: Transform - pos: 321.5,447.5 - parent: 1 - - uid: 19664 + pos: -78.5,-39.5 + parent: 2 + - uid: 6503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,446.5 - parent: 1 - - uid: 19665 + pos: -78.5,-48.5 + parent: 2 + - uid: 6508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 323.5,448.5 - parent: 1 - - uid: 19666 + pos: -84.5,-43.5 + parent: 2 + - uid: 6510 components: - type: Transform - pos: 324.5,449.5 - parent: 1 - - uid: 19667 + pos: -97.5,-26.5 + parent: 2 + - uid: 6511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 324.5,445.5 - parent: 1 - - uid: 19668 + pos: -101.5,-22.5 + parent: 2 + - uid: 6512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,442.5 - parent: 1 - - uid: 19669 + pos: -101.5,-24.5 + parent: 2 + - uid: 6513 components: - type: Transform - pos: 323.5,441.5 - parent: 1 - - uid: 19670 + pos: -94.5,-47.5 + parent: 2 + - uid: 6537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,439.5 - parent: 1 - - uid: 19671 + pos: -89.5,-34.5 + parent: 2 + - uid: 6564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,437.5 - parent: 1 - - uid: 19672 + pos: -97.5,-30.5 + parent: 2 + - uid: 6576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,444.5 - parent: 1 - - uid: 19673 + pos: -101.5,-28.5 + parent: 2 + - uid: 6578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,446.5 - parent: 1 - - uid: 19681 + pos: -101.5,-27.5 + parent: 2 + - uid: 6584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,440.5 - parent: 1 - - uid: 19684 + pos: -89.5,-32.5 + parent: 2 + - uid: 6615 components: - type: Transform - pos: 356.5,442.5 - parent: 1 - - uid: 19685 + pos: -96.5,-36.5 + parent: 2 + - uid: 6661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,441.5 - parent: 1 - - uid: 19686 + pos: -78.5,-44.5 + parent: 2 + - uid: 6694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,440.5 - parent: 1 - - uid: 19687 + rot: -1.5707963267948966 rad + pos: -153.5,-42.5 + parent: 2 + - uid: 6702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 390.5,442.5 - parent: 1 - - uid: 19688 + pos: -155.5,-44.5 + parent: 2 + - uid: 6730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,438.5 - parent: 1 - - uid: 19689 + pos: -85.5,-39.5 + parent: 2 + - uid: 6744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,432.5 - parent: 1 - - uid: 19690 + pos: -94.5,-46.5 + parent: 2 + - uid: 6745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,434.5 - parent: 1 - - uid: 19691 + pos: -78.5,-45.5 + parent: 2 + - uid: 6752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,430.5 - parent: 1 - - uid: 19692 + pos: -94.5,-48.5 + parent: 2 + - uid: 6768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,432.5 - parent: 1 - - uid: 19693 + pos: -78.5,-20.5 + parent: 2 + - uid: 6773 components: - type: Transform - pos: 365.5,433.5 - parent: 1 - - uid: 19694 + pos: -78.5,-49.5 + parent: 2 + - uid: 6776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,426.5 - parent: 1 - - uid: 19695 + pos: -101.5,-44.5 + parent: 2 + - uid: 6793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,429.5 - parent: 1 - - uid: 19696 + pos: -78.5,-36.5 + parent: 2 + - uid: 6795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,427.5 - parent: 1 - - uid: 19697 + pos: -78.5,-40.5 + parent: 2 + - uid: 6801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,426.5 - parent: 1 - - uid: 19698 + pos: -81.5,-30.5 + parent: 2 + - uid: 6804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,427.5 - parent: 1 - - uid: 19699 + pos: -84.5,-30.5 + parent: 2 + - uid: 6808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,425.5 - parent: 1 - - uid: 19700 + pos: -82.5,-40.5 + parent: 2 + - uid: 6809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,423.5 - parent: 1 - - uid: 19701 + pos: -80.5,-30.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -78.5,-41.5 + parent: 2 + - uid: 6821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,425.5 - parent: 1 - - uid: 19702 + pos: -78.5,-21.5 + parent: 2 + - uid: 6823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,427.5 - parent: 1 - - uid: 19703 + pos: -78.5,-23.5 + parent: 2 + - uid: 6826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,436.5 - parent: 1 - - uid: 19704 + pos: -78.5,-50.5 + parent: 2 + - uid: 6844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,427.5 - parent: 1 - - uid: 19705 + pos: -94.5,-45.5 + parent: 2 + - uid: 6882 components: - type: Transform rot: 3.141592653589793 rad - pos: 382.5,427.5 - parent: 1 - - uid: 19706 + pos: -141.5,14.5 + parent: 2 + - uid: 6884 components: - type: Transform rot: 3.141592653589793 rad - pos: 386.5,426.5 - parent: 1 - - uid: 19707 + pos: -140.5,12.5 + parent: 2 + - uid: 6885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 385.5,425.5 - parent: 1 - - uid: 19708 + pos: -83.5,-30.5 + parent: 2 + - uid: 6886 components: - type: Transform - pos: 388.5,424.5 - parent: 1 - - uid: 19709 + pos: -78.5,-37.5 + parent: 2 + - uid: 6894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,425.5 - parent: 1 - - uid: 19710 + pos: -86.5,-0.5 + parent: 2 + - uid: 6948 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,426.5 - parent: 1 - - uid: 19711 + pos: -141.5,12.5 + parent: 2 + - uid: 6953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,430.5 - parent: 1 - - uid: 19712 + pos: -94.5,-44.5 + parent: 2 + - uid: 6954 components: - type: Transform - pos: 391.5,431.5 - parent: 1 - - uid: 19713 + pos: -94.5,-43.5 + parent: 2 + - uid: 6976 components: - type: Transform - pos: 377.5,431.5 - parent: 1 - - uid: 19714 + rot: 3.141592653589793 rad + pos: -140.5,14.5 + parent: 2 + - uid: 6983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,432.5 - parent: 1 - - uid: 19715 + pos: -124.5,6.5 + parent: 2 + - uid: 6984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 375.5,432.5 - parent: 1 - - uid: 19716 + pos: -124.5,7.5 + parent: 2 + - uid: 7033 components: - type: Transform - pos: 378.5,433.5 - parent: 1 - - uid: 19717 + pos: -92.5,-36.5 + parent: 2 + - uid: 7146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,433.5 - parent: 1 - - uid: 19718 + pos: -1.5,-5.5 + parent: 2 + - uid: 7150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,435.5 - parent: 1 - - uid: 19719 + pos: -0.5,-7.5 + parent: 2 + - uid: 7151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,435.5 - parent: 1 - - uid: 19720 + pos: -1.5,-14.5 + parent: 2 + - uid: 7156 components: - type: Transform - pos: 381.5,434.5 - parent: 1 - - uid: 19721 + pos: 0.5,-9.5 + parent: 2 + - uid: 7158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,435.5 - parent: 1 - - uid: 19722 + pos: -0.5,-7.5 + parent: 2 + - uid: 7161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,435.5 - parent: 1 - - uid: 19723 + pos: 0.5,-7.5 + parent: 2 + - uid: 7164 components: - type: Transform - pos: 386.5,436.5 - parent: 1 - - uid: 19724 + pos: -36.5,16.5 + parent: 2 + - uid: 7166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,437.5 - parent: 1 - - uid: 19725 + pos: 0.5,-11.5 + parent: 2 + - uid: 7168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,436.5 - parent: 1 - - uid: 19726 + pos: -1.5,-12.5 + parent: 2 + - uid: 7173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,440.5 - parent: 1 - - uid: 19727 + pos: -3.5,-5.5 + parent: 2 + - uid: 7174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,442.5 - parent: 1 - - uid: 19728 + pos: -36.5,17.5 + parent: 2 + - uid: 7184 components: - type: Transform - pos: 370.5,440.5 - parent: 1 - - uid: 19729 + pos: -0.5,-11.5 + parent: 2 + - uid: 7185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,440.5 - parent: 1 - - uid: 19730 + pos: 1.5,-11.5 + parent: 2 + - uid: 7186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,442.5 - parent: 1 - - uid: 19731 + pos: -0.5,-9.5 + parent: 2 + - uid: 7197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,440.5 - parent: 1 - - uid: 19732 + pos: -2.5,-5.5 + parent: 2 + - uid: 7199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,440.5 - parent: 1 - - uid: 19733 + pos: -1.5,-6.5 + parent: 2 + - uid: 7202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,442.5 - parent: 1 - - uid: 19734 + pos: -38.5,16.5 + parent: 2 + - uid: 7204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 381.5,442.5 - parent: 1 - - uid: 19735 + pos: -38.5,15.5 + parent: 2 + - uid: 7206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,444.5 - parent: 1 - - uid: 19736 + pos: -1.5,-13.5 + parent: 2 + - uid: 7207 components: - type: Transform - pos: 391.5,444.5 - parent: 1 - - uid: 19737 + pos: 1.5,-7.5 + parent: 2 + - uid: 7210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,446.5 - parent: 1 - - uid: 19738 + pos: -38.5,17.5 + parent: 2 + - uid: 7212 components: - type: Transform - pos: 401.5,444.5 - parent: 1 - - uid: 19739 + pos: -38.5,14.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 7221 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,444.5 - parent: 1 - - uid: 19740 + pos: -99.5,33.5 + parent: 2 + - uid: 7237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,443.5 - parent: 1 - - uid: 19741 + pos: -90.5,-52.5 + parent: 2 + - uid: 7238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,444.5 - parent: 1 - - uid: 19742 + pos: -82.5,-39.5 + parent: 2 + - uid: 7268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,442.5 - parent: 1 - - uid: 19743 + pos: -123.5,-43.5 + parent: 2 + - uid: 7269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,444.5 - parent: 1 - - uid: 19744 + pos: -123.5,-46.5 + parent: 2 + - uid: 7270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,444.5 - parent: 1 - - uid: 19745 + pos: -123.5,-44.5 + parent: 2 + - uid: 7271 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,442.5 - parent: 1 - - uid: 19746 + pos: -123.5,-47.5 + parent: 2 + - uid: 7286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,442.5 - parent: 1 - - uid: 19747 + pos: -117.5,-52.5 + parent: 2 + - uid: 7287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,444.5 - parent: 1 - - uid: 19748 + pos: -117.5,-50.5 + parent: 2 + - uid: 7364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,444.5 - parent: 1 - - uid: 19749 + rot: -1.5707963267948966 rad + pos: -130.5,-59.5 + parent: 2 + - uid: 7380 components: - type: Transform - pos: 410.5,444.5 - parent: 1 - - uid: 19750 + pos: -131.5,-44.5 + parent: 2 + - uid: 7382 components: - type: Transform - pos: 414.5,443.5 - parent: 1 - - uid: 19751 + pos: -131.5,-47.5 + parent: 2 + - uid: 7385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,441.5 - parent: 1 - - uid: 19752 + pos: -131.5,-46.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -131.5,-43.5 + parent: 2 + - uid: 7395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,440.5 - parent: 1 - - uid: 19753 + pos: -153.5,-48.5 + parent: 2 + - uid: 7462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,435.5 - parent: 1 - - uid: 19754 + pos: -151.5,26.5 + parent: 2 + - uid: 7525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,434.5 - parent: 1 - - uid: 19755 + pos: -127.5,-33.5 + parent: 2 + - uid: 7563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,433.5 - parent: 1 - - uid: 19756 + pos: -75.5,-63.5 + parent: 2 + - uid: 7567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,434.5 - parent: 1 - - uid: 19757 + pos: -140.5,-36.5 + parent: 2 + - uid: 7622 components: - type: Transform - pos: 407.5,436.5 - parent: 1 - - uid: 19758 + pos: -140.5,-54.5 + parent: 2 + - uid: 7780 components: - type: Transform - pos: 408.5,433.5 - parent: 1 - - uid: 19759 + pos: -124.5,5.5 + parent: 2 + - uid: 7896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,430.5 - parent: 1 - - uid: 19760 + pos: -83.5,38.5 + parent: 2 + - uid: 7897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,426.5 - parent: 1 - - uid: 19761 + pos: -81.5,28.5 + parent: 2 + - uid: 7905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,427.5 - parent: 1 - - uid: 19762 + pos: -84.5,38.5 + parent: 2 + - uid: 7911 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,430.5 - parent: 1 - - uid: 19763 + pos: -151.5,-47.5 + parent: 2 + - uid: 7914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,430.5 - parent: 1 - - uid: 19764 - components: - - type: Transform - pos: 402.5,429.5 - parent: 1 - - uid: 19765 + pos: -148.5,-41.5 + parent: 2 + - uid: 7916 components: - type: Transform rot: -1.5707963267948966 rad - pos: 401.5,430.5 - parent: 1 - - uid: 19766 + pos: -143.5,-43.5 + parent: 2 + - uid: 7917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,430.5 - parent: 1 - - uid: 19767 + rot: -1.5707963267948966 rad + pos: -143.5,-47.5 + parent: 2 + - uid: 7931 components: - type: Transform rot: 3.141592653589793 rad - pos: 395.5,426.5 - parent: 1 - - uid: 19768 + pos: -157.5,-19.5 + parent: 2 + - uid: 7944 components: - type: Transform - pos: 393.5,428.5 - parent: 1 - - uid: 19769 + pos: -152.5,-18.5 + parent: 2 + - uid: 7948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,427.5 - parent: 1 - - uid: 19770 + pos: -152.5,-19.5 + parent: 2 + - uid: 7970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,427.5 - parent: 1 - - uid: 19771 + pos: -151.5,-54.5 + parent: 2 + - uid: 7975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 428.5,429.5 - parent: 1 - - uid: 19772 + pos: -152.5,-54.5 + parent: 2 + - uid: 7976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,430.5 - parent: 1 - - uid: 19773 + pos: -152.5,-53.5 + parent: 2 + - uid: 7977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,432.5 - parent: 1 - - uid: 19774 + pos: -153.5,-53.5 + parent: 2 + - uid: 7979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,429.5 - parent: 1 - - uid: 19775 + pos: -153.5,-52.5 + parent: 2 + - uid: 8028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 431.5,427.5 - parent: 1 - - uid: 19776 + pos: -152.5,-14.5 + parent: 2 + - uid: 8041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 433.5,429.5 - parent: 1 - - uid: 19777 + pos: -152.5,-17.5 + parent: 2 + - uid: 8047 components: - type: Transform - pos: 433.5,428.5 - parent: 1 - - uid: 19778 + pos: -152.5,-15.5 + parent: 2 + - uid: 8054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 434.5,426.5 - parent: 1 - - uid: 19779 + pos: -131.5,-59.5 + parent: 2 + - uid: 8057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,425.5 - parent: 1 - - uid: 19780 + rot: -1.5707963267948966 rad + pos: -151.5,-46.5 + parent: 2 + - uid: 8069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 432.5,424.5 - parent: 1 - - uid: 19781 + pos: -127.5,-59.5 + parent: 2 + - uid: 8079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,425.5 - parent: 1 - - uid: 19782 + rot: -1.5707963267948966 rad + pos: -151.5,-43.5 + parent: 2 + - uid: 8088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,421.5 - parent: 1 - - uid: 19783 + pos: -154.5,-52.5 + parent: 2 + - uid: 8089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,422.5 - parent: 1 - - uid: 19784 + pos: -154.5,-51.5 + parent: 2 + - uid: 8134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,448.5 - parent: 1 - - uid: 19785 + pos: -140.5,-41.5 + parent: 2 + - uid: 8161 components: - type: Transform - pos: 431.5,434.5 - parent: 1 - - uid: 19786 + pos: -89.5,38.5 + parent: 2 + - uid: 8166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,435.5 - parent: 1 - - uid: 19787 + pos: -87.5,38.5 + parent: 2 + - uid: 8169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,436.5 - parent: 1 - - uid: 19788 + pos: -82.5,38.5 + parent: 2 + - uid: 8174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,438.5 - parent: 1 - - uid: 19789 + pos: -85.5,38.5 + parent: 2 + - uid: 8175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,440.5 - parent: 1 - - uid: 19790 + pos: -81.5,27.5 + parent: 2 + - uid: 8192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,440.5 - parent: 1 - - uid: 19791 + pos: -0.5,-15.5 + parent: 2 + - uid: 8193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,441.5 - parent: 1 - - uid: 19792 + pos: 1.5,-15.5 + parent: 2 + - uid: 8194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,441.5 - parent: 1 - - uid: 19793 + pos: 0.5,-15.5 + parent: 2 + - uid: 8207 components: - type: Transform - pos: 432.5,443.5 - parent: 1 - - uid: 19794 + pos: 1.5,-17.5 + parent: 2 + - uid: 8208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,444.5 - parent: 1 - - uid: 19795 + pos: 0.5,-17.5 + parent: 2 + - uid: 8209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,445.5 - parent: 1 - - uid: 19796 + pos: -0.5,-17.5 + parent: 2 + - uid: 8210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,448.5 - parent: 1 - - uid: 19797 + pos: -0.5,-19.5 + parent: 2 + - uid: 8211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,448.5 - parent: 1 - - uid: 19798 + pos: 0.5,-19.5 + parent: 2 + - uid: 8212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,449.5 - parent: 1 - - uid: 19799 + pos: 1.5,-19.5 + parent: 2 + - uid: 8219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,447.5 - parent: 1 - - uid: 19800 + pos: -3.5,-9.5 + parent: 2 + - uid: 8221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,444.5 - parent: 1 - - uid: 19801 + pos: -5.5,-9.5 + parent: 2 + - uid: 8225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,444.5 - parent: 1 - - uid: 19802 + pos: -9.5,-9.5 + parent: 2 + - uid: 8226 components: - type: Transform - pos: 420.5,448.5 - parent: 1 - - uid: 19803 + pos: -10.5,-9.5 + parent: 2 + - uid: 8227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,446.5 - parent: 1 - - uid: 19804 + pos: -11.5,-9.5 + parent: 2 + - uid: 8232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,431.5 - parent: 1 - - uid: 19805 + pos: -3.5,-21.5 + parent: 2 + - uid: 8233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,440.5 - parent: 1 - - uid: 19806 + pos: -2.5,-21.5 + parent: 2 + - uid: 8234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 441.5,438.5 - parent: 1 - - uid: 19807 + pos: -1.5,-21.5 + parent: 2 + - uid: 8235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,437.5 - parent: 1 - - uid: 19808 + pos: -1.5,-20.5 + parent: 2 + - uid: 8240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,436.5 - parent: 1 - - uid: 19809 + pos: -11.5,-17.5 + parent: 2 + - uid: 8245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,440.5 - parent: 1 - - uid: 19810 + pos: -7.5,-8.5 + parent: 2 + - uid: 8246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 441.5,440.5 - parent: 1 - - uid: 19811 + pos: -7.5,-6.5 + parent: 2 + - uid: 8248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,436.5 - parent: 1 - - uid: 19812 + pos: -9.5,-17.5 + parent: 2 + - uid: 8249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,438.5 - parent: 1 - - uid: 19813 + pos: -5.5,-17.5 + parent: 2 + - uid: 8250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,435.5 - parent: 1 - - uid: 19814 + pos: -3.5,-17.5 + parent: 2 + - uid: 8254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 445.5,432.5 - parent: 1 - - uid: 19815 + pos: -13.5,-64.5 + parent: 2 + - uid: 8256 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,429.5 - parent: 1 - - uid: 19816 + pos: -14.5,-69.5 + parent: 2 + - uid: 8291 components: - type: Transform - pos: 444.5,430.5 - parent: 1 - - uid: 19817 + pos: -7.5,-13.5 + parent: 2 + - uid: 8292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,427.5 - parent: 1 - - uid: 19818 + pos: -6.5,-13.5 + parent: 2 + - uid: 8294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 442.5,428.5 - parent: 1 - - uid: 19819 + pos: -8.5,-13.5 + parent: 2 + - uid: 8362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,427.5 - parent: 1 - - uid: 19820 + pos: -36.5,15.5 + parent: 2 + - uid: 8376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,425.5 - parent: 1 - - uid: 19821 + pos: -94.5,-52.5 + parent: 2 + - uid: 8384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,422.5 - parent: 1 - - uid: 19822 + pos: -29.5,26.5 + parent: 2 + - uid: 8441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,421.5 - parent: 1 - - uid: 19823 + pos: -101.5,31.5 + parent: 2 + - uid: 8513 components: - type: Transform - pos: 441.5,420.5 - parent: 1 - - uid: 19824 + pos: -33.5,-43.5 + parent: 2 + - uid: 8519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,418.5 - parent: 1 - - uid: 19825 + pos: -34.5,-34.5 + parent: 2 + - uid: 8601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,415.5 - parent: 1 - - uid: 19826 + pos: -124.5,8.5 + parent: 2 + - uid: 8614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 462.5,415.5 - parent: 1 - - uid: 19827 + rot: 3.141592653589793 rad + pos: -23.5,-27.5 + parent: 2 + - uid: 8622 components: - type: Transform rot: 3.141592653589793 rad - pos: 450.5,424.5 - parent: 1 - - uid: 19828 + pos: -25.5,-27.5 + parent: 2 + - uid: 8662 components: - type: Transform - pos: 453.5,426.5 - parent: 1 - - uid: 19829 + pos: -22.5,4.5 + parent: 2 + - uid: 8663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,424.5 - parent: 1 - - uid: 19830 + pos: -22.5,8.5 + parent: 2 + - uid: 8664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 454.5,423.5 - parent: 1 - - uid: 19831 + pos: -24.5,9.5 + parent: 2 + - uid: 8665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 454.5,420.5 - parent: 1 - - uid: 19832 + pos: -27.5,7.5 + parent: 2 + - uid: 8666 components: - type: Transform - pos: 456.5,421.5 - parent: 1 - - uid: 19833 + pos: -27.5,5.5 + parent: 2 + - uid: 8725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,419.5 - parent: 1 - - uid: 19834 + pos: -7.5,-28.5 + parent: 2 + - uid: 8726 components: - type: Transform - pos: 458.5,421.5 - parent: 1 - - uid: 19835 + pos: -7.5,-29.5 + parent: 2 + - uid: 8732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 458.5,418.5 - parent: 1 - - uid: 19836 + pos: -7.5,-30.5 + parent: 2 + - uid: 8733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 474.5,362.5 - parent: 1 - - uid: 19837 + pos: -7.5,-32.5 + parent: 2 + - uid: 8734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 462.5,412.5 - parent: 1 - - uid: 19838 + pos: -7.5,-31.5 + parent: 2 + - uid: 8884 components: - type: Transform - pos: 464.5,413.5 - parent: 1 - - uid: 19839 + pos: -82.5,-52.5 + parent: 2 + - uid: 8893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 465.5,412.5 - parent: 1 - - uid: 19840 + pos: -84.5,-52.5 + parent: 2 + - uid: 8899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 472.5,380.5 - parent: 1 - - uid: 19841 + pos: -83.5,-52.5 + parent: 2 + - uid: 8912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 471.5,378.5 - parent: 1 - - uid: 19842 + pos: -13.5,-66.5 + parent: 2 + - uid: 8936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 469.5,376.5 - parent: 1 - - uid: 19843 + pos: -86.5,-52.5 + parent: 2 + - uid: 8958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 468.5,378.5 - parent: 1 - - uid: 19844 + pos: -93.5,-52.5 + parent: 2 + - uid: 8963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,376.5 - parent: 1 - - uid: 19845 + pos: -91.5,-52.5 + parent: 2 + - uid: 8973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,378.5 - parent: 1 - - uid: 19846 + pos: -34.5,-76.5 + parent: 2 + - uid: 9022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,376.5 - parent: 1 - - uid: 19847 + pos: -31.5,-75.5 + parent: 2 + - uid: 9039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 457.5,376.5 - parent: 1 - - uid: 19848 + pos: -42.5,-65.5 + parent: 2 + - uid: 9056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 454.5,376.5 - parent: 1 - - uid: 19849 + pos: -43.5,-65.5 + parent: 2 + - uid: 9066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 456.5,378.5 - parent: 1 - - uid: 19850 + pos: -30.5,-61.5 + parent: 2 + - uid: 9084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 462.5,378.5 - parent: 1 - - uid: 19851 + pos: -90.5,38.5 + parent: 2 + - uid: 9085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 462.5,376.5 - parent: 1 - - uid: 19852 + pos: -81.5,26.5 + parent: 2 + - uid: 9089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 464.5,370.5 - parent: 1 - - uid: 19853 + pos: -111.5,10.5 + parent: 2 + - uid: 9090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 464.5,368.5 - parent: 1 - - uid: 19854 + pos: -110.5,10.5 + parent: 2 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 468.5,370.5 - parent: 1 - - uid: 19855 + pos: -109.5,10.5 + parent: 2 + - uid: 9092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 470.5,368.5 - parent: 1 - - uid: 19856 + pos: -81.5,35.5 + parent: 2 + - uid: 9125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 472.5,370.5 - parent: 1 - - uid: 19857 + pos: -81.5,31.5 + parent: 2 + - uid: 9126 components: - type: Transform - pos: 470.5,372.5 - parent: 1 - - uid: 19858 + pos: -78.5,-52.5 + parent: 2 + - uid: 9127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 468.5,368.5 - parent: 1 - - uid: 19859 + pos: -81.5,-52.5 + parent: 2 + - uid: 9136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 463.5,368.5 - parent: 1 - - uid: 19860 + pos: -81.5,19.5 + parent: 2 + - uid: 9137 components: - type: Transform - pos: 466.5,369.5 - parent: 1 - - uid: 19861 + pos: -82.5,19.5 + parent: 2 + - uid: 9138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 457.5,368.5 - parent: 1 - - uid: 19862 + pos: -83.5,19.5 + parent: 2 + - uid: 9141 components: - type: Transform - pos: 459.5,367.5 - parent: 1 - - uid: 19863 + pos: -88.5,-52.5 + parent: 2 + - uid: 9159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,370.5 - parent: 1 - - uid: 19864 + pos: -81.5,33.5 + parent: 2 + - uid: 9161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 455.5,370.5 - parent: 1 - - uid: 19865 + pos: -144.5,-19.5 + parent: 2 + - uid: 9200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,369.5 - parent: 1 - - uid: 19866 + pos: -44.5,-65.5 + parent: 2 + - uid: 9226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 458.5,366.5 - parent: 1 - - uid: 19867 + pos: -28.5,18.5 + parent: 2 + - uid: 9227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 458.5,364.5 - parent: 1 - - uid: 19868 + pos: -27.5,18.5 + parent: 2 + - uid: 9237 components: - type: Transform - pos: 459.5,363.5 - parent: 1 - - uid: 19869 + pos: -31.5,18.5 + parent: 2 + - uid: 9248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,362.5 - parent: 1 - - uid: 19870 + pos: -81.5,37.5 + parent: 2 + - uid: 9261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 462.5,364.5 - parent: 1 - - uid: 19871 + pos: -36.5,-43.5 + parent: 2 + - uid: 9263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,364.5 - parent: 1 - - uid: 19872 + pos: -81.5,36.5 + parent: 2 + - uid: 9285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,363.5 - parent: 1 - - uid: 19873 + pos: -81.5,30.5 + parent: 2 + - uid: 9298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,362.5 - parent: 1 - - uid: 19874 + pos: -30.5,18.5 + parent: 2 + - uid: 9332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 465.5,364.5 - parent: 1 - - uid: 19875 + pos: -29.5,18.5 + parent: 2 + - uid: 9458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 465.5,362.5 - parent: 1 - - uid: 19876 + pos: -97.5,-28.5 + parent: 2 + - uid: 9545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 467.5,361.5 - parent: 1 - - uid: 19877 + pos: -101.5,-39.5 + parent: 2 + - uid: 9636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 470.5,362.5 - parent: 1 - - uid: 19878 + pos: -83.5,-43.5 + parent: 2 + - uid: 9639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 471.5,362.5 - parent: 1 - - uid: 19879 + pos: -97.5,-24.5 + parent: 2 + - uid: 9933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 474.5,364.5 - parent: 1 - - uid: 19880 + pos: -74.5,-63.5 + parent: 2 + - uid: 9988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 433.5,378.5 - parent: 1 - - uid: 19881 + pos: -95.5,39.5 + parent: 2 + - uid: 9989 components: - type: Transform - pos: 425.5,381.5 - parent: 1 - - uid: 19882 + pos: -95.5,38.5 + parent: 2 + - uid: 9990 components: - type: Transform - pos: 424.5,384.5 - parent: 1 - - uid: 19883 + pos: -95.5,36.5 + parent: 2 + - uid: 9991 components: - type: Transform - pos: 429.5,384.5 - parent: 1 - - uid: 19884 + pos: -95.5,37.5 + parent: 2 + - uid: 9992 components: - type: Transform - pos: 433.5,384.5 - parent: 1 - - uid: 19885 + pos: -93.5,36.5 + parent: 2 + - uid: 9993 components: - type: Transform - pos: 432.5,386.5 - parent: 1 - - uid: 19886 + pos: -93.5,37.5 + parent: 2 + - uid: 9994 components: - type: Transform - pos: 436.5,384.5 - parent: 1 - - uid: 19887 + pos: -93.5,38.5 + parent: 2 + - uid: 9995 components: - type: Transform - pos: 435.5,389.5 - parent: 1 - - uid: 19888 + pos: -93.5,39.5 + parent: 2 + - uid: 10376 components: - type: Transform - pos: 435.5,391.5 - parent: 1 - - uid: 19889 + pos: -22.5,-18.5 + parent: 2 + - uid: 10489 components: - type: Transform - pos: 436.5,393.5 - parent: 1 - - uid: 19890 + rot: 3.141592653589793 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 10490 components: - type: Transform - pos: 435.5,395.5 - parent: 1 - - uid: 19891 + pos: -51.5,7.5 + parent: 2 + - uid: 10571 components: - type: Transform - pos: 434.5,397.5 - parent: 1 - - uid: 19892 + pos: -41.5,5.5 + parent: 2 + - uid: 10574 components: - type: Transform - pos: 433.5,399.5 - parent: 1 - - uid: 19893 + pos: -45.5,5.5 + parent: 2 + - uid: 10575 components: - type: Transform - pos: 434.5,402.5 - parent: 1 - - uid: 19894 + pos: -46.5,5.5 + parent: 2 + - uid: 10577 components: - type: Transform - pos: 433.5,404.5 - parent: 1 - - uid: 19895 + pos: -48.5,5.5 + parent: 2 + - uid: 10578 components: - type: Transform - pos: 433.5,410.5 - parent: 1 - - uid: 19896 + pos: -49.5,5.5 + parent: 2 + - uid: 10579 components: - type: Transform - pos: 432.5,413.5 - parent: 1 - - uid: 19897 + pos: -50.5,5.5 + parent: 2 + - uid: 10580 components: - type: Transform - pos: 434.5,415.5 - parent: 1 - - uid: 19898 + pos: -51.5,5.5 + parent: 2 + - uid: 10581 components: - type: Transform - pos: 434.5,418.5 - parent: 1 - - uid: 19899 + pos: -43.5,5.5 + parent: 2 + - uid: 10582 components: - type: Transform - pos: 429.5,418.5 - parent: 1 - - uid: 19900 + pos: -51.5,9.5 + parent: 2 + - uid: 10583 components: - type: Transform - pos: 432.5,419.5 - parent: 1 - - uid: 19901 + pos: -51.5,10.5 + parent: 2 + - uid: 10585 components: - type: Transform - pos: 427.5,418.5 - parent: 1 - - uid: 19902 + pos: -51.5,8.5 + parent: 2 + - uid: 10586 components: - type: Transform - pos: 425.5,418.5 - parent: 1 - - uid: 19903 + pos: -52.5,10.5 + parent: 2 + - uid: 10587 components: - type: Transform - pos: 421.5,418.5 - parent: 1 - - uid: 19904 + pos: -53.5,10.5 + parent: 2 + - uid: 10589 components: - type: Transform - pos: 421.5,422.5 - parent: 1 - - uid: 19905 + pos: -55.5,10.5 + parent: 2 + - uid: 10590 components: - type: Transform - pos: 417.5,424.5 - parent: 1 - - uid: 19906 + pos: -56.5,10.5 + parent: 2 + - uid: 10591 components: - type: Transform - pos: 418.5,425.5 - parent: 1 - - uid: 19907 + pos: -66.5,11.5 + parent: 2 + - uid: 10593 components: - type: Transform - pos: 411.5,424.5 - parent: 1 - - uid: 19908 + pos: -56.5,11.5 + parent: 2 + - uid: 10594 components: - type: Transform - pos: 407.5,424.5 - parent: 1 - - uid: 19909 + pos: -57.5,11.5 + parent: 2 + - uid: 10595 components: - type: Transform - pos: 404.5,425.5 - parent: 1 - - uid: 19910 + pos: -59.5,11.5 + parent: 2 + - uid: 10596 components: - type: Transform - pos: 402.5,426.5 - parent: 1 - - uid: 19911 + pos: -60.5,11.5 + parent: 2 + - uid: 10597 components: - type: Transform - pos: 400.5,424.5 - parent: 1 - - uid: 19912 + pos: -61.5,11.5 + parent: 2 + - uid: 10598 components: - type: Transform - pos: 395.5,424.5 - parent: 1 - - uid: 19913 + pos: -62.5,11.5 + parent: 2 + - uid: 10600 components: - type: Transform - pos: 392.5,423.5 - parent: 1 - - uid: 19914 + pos: -64.5,11.5 + parent: 2 + - uid: 10601 components: - type: Transform - pos: 392.5,421.5 - parent: 1 - - uid: 19915 + pos: -65.5,11.5 + parent: 2 + - uid: 10602 components: - type: Transform - pos: 390.5,419.5 - parent: 1 - - uid: 19916 + pos: -66.5,10.5 + parent: 2 + - uid: 10603 components: - type: Transform - pos: 361.5,416.5 - parent: 1 - - uid: 19917 + pos: -68.5,10.5 + parent: 2 + - uid: 10604 components: - type: Transform - pos: 360.5,415.5 - parent: 1 - - uid: 19919 + pos: -69.5,10.5 + parent: 2 + - uid: 10605 components: - type: Transform - pos: 359.5,407.5 - parent: 1 - - uid: 19920 + pos: -70.5,10.5 + parent: 2 + - uid: 10606 components: - type: Transform - pos: 355.5,406.5 - parent: 1 - - uid: 19921 + pos: -71.5,10.5 + parent: 2 + - uid: 10608 components: - type: Transform - pos: 354.5,408.5 - parent: 1 - - uid: 19922 + pos: -71.5,9.5 + parent: 2 + - uid: 10610 components: - type: Transform - pos: 356.5,409.5 - parent: 1 - - uid: 19923 + pos: -71.5,6.5 + parent: 2 + - uid: 10612 components: - type: Transform - pos: 355.5,411.5 - parent: 1 - - uid: 19924 + pos: -71.5,4.5 + parent: 2 + - uid: 10613 components: - type: Transform - pos: 353.5,411.5 - parent: 1 - - uid: 19925 + pos: -71.5,7.5 + parent: 2 + - uid: 10815 components: - type: Transform - pos: 356.5,417.5 - parent: 1 - - uid: 19926 + pos: -22.5,-20.5 + parent: 2 + - uid: 10999 components: - type: Transform - pos: 358.5,416.5 - parent: 1 - - uid: 19927 + pos: -20.5,-16.5 + parent: 2 + - uid: 11003 components: - type: Transform - pos: 356.5,420.5 - parent: 1 - - uid: 19928 + pos: -19.5,-16.5 + parent: 2 + - uid: 11004 components: - type: Transform - pos: 355.5,423.5 - parent: 1 - - uid: 19929 + pos: -83.5,-6.5 + parent: 2 + - uid: 11013 components: - type: Transform - pos: 358.5,422.5 - parent: 1 - - uid: 19930 + pos: -31.5,13.5 + parent: 2 + - uid: 11014 components: - type: Transform - pos: 357.5,424.5 - parent: 1 - - uid: 19931 + pos: -29.5,13.5 + parent: 2 + - uid: 11015 components: - type: Transform - pos: 358.5,426.5 - parent: 1 - - uid: 19932 + pos: -28.5,13.5 + parent: 2 + - uid: 11026 components: - type: Transform - pos: 356.5,428.5 - parent: 1 - - uid: 19933 + pos: -30.5,13.5 + parent: 2 + - uid: 11027 components: - type: Transform - pos: 354.5,429.5 - parent: 1 - - uid: 19934 + pos: -27.5,13.5 + parent: 2 + - uid: 11060 components: - type: Transform - pos: 356.5,431.5 - parent: 1 - - uid: 19935 + pos: -97.5,-32.5 + parent: 2 + - uid: 11079 components: - type: Transform - pos: 360.5,430.5 - parent: 1 - - uid: 19936 + pos: -28.5,-69.5 + parent: 2 + - uid: 11087 components: - type: Transform - pos: 353.5,434.5 - parent: 1 - - uid: 19937 + pos: -32.5,-75.5 + parent: 2 + - uid: 11089 components: - type: Transform - pos: 351.5,435.5 - parent: 1 - - uid: 19938 + pos: -32.5,-76.5 + parent: 2 + - uid: 11096 components: - type: Transform - pos: 349.5,435.5 - parent: 1 - - uid: 19939 + rot: 1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - uid: 11273 components: - type: Transform - pos: 348.5,437.5 - parent: 1 - - uid: 19940 + rot: -1.5707963267948966 rad + pos: -99.5,34.5 + parent: 2 + - uid: 11314 components: - type: Transform - pos: 345.5,437.5 - parent: 1 - - uid: 19941 + rot: 3.141592653589793 rad + pos: -143.5,4.5 + parent: 2 + - uid: 11355 components: - type: Transform - pos: 343.5,435.5 - parent: 1 - - uid: 19942 + pos: -22.5,13.5 + parent: 2 + - uid: 11357 components: - type: Transform - pos: 338.5,435.5 - parent: 1 - - uid: 19943 + pos: -22.5,11.5 + parent: 2 + - uid: 11361 components: - type: Transform - pos: 339.5,437.5 - parent: 1 - - uid: 19944 + pos: -101.5,-46.5 + parent: 2 + - uid: 11771 components: - type: Transform - pos: 348.5,438.5 - parent: 1 - - uid: 19945 + pos: -17.5,-51.5 + parent: 2 + - uid: 11772 components: - type: Transform - pos: 354.5,437.5 - parent: 1 - - uid: 19946 + pos: -19.5,-51.5 + parent: 2 + - uid: 11872 components: - type: Transform - pos: 337.5,434.5 - parent: 1 - - uid: 19947 + pos: -97.5,11.5 + parent: 2 + - uid: 11879 components: - type: Transform - pos: 334.5,434.5 - parent: 1 - - uid: 19948 + pos: -143.5,27.5 + parent: 2 + - uid: 12163 components: - type: Transform - pos: 335.5,436.5 - parent: 1 - - uid: 19950 + pos: -33.5,-45.5 + parent: 2 + - uid: 12177 components: - type: Transform - pos: 330.5,435.5 - parent: 1 - - uid: 19951 + pos: -147.5,27.5 + parent: 2 + - uid: 12381 components: - type: Transform - pos: 328.5,436.5 - parent: 1 - - uid: 19952 + rot: 1.5707963267948966 rad + pos: -104.5,28.5 + parent: 2 + - uid: 12424 components: - type: Transform - pos: 326.5,435.5 - parent: 1 - - uid: 19953 + pos: -28.5,-61.5 + parent: 2 + - uid: 12490 components: - type: Transform - pos: 327.5,441.5 - parent: 1 - - uid: 19954 + pos: -139.5,27.5 + parent: 2 + - uid: 12522 components: - type: Transform - pos: 326.5,434.5 - parent: 1 - - uid: 19955 + rot: 3.141592653589793 rad + pos: -66.5,-18.5 + parent: 2 + - uid: 12847 components: - type: Transform - pos: 324.5,432.5 - parent: 1 - - uid: 19956 + pos: -16.5,-70.5 + parent: 2 + - uid: 12848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,433.5 - parent: 1 - - uid: 19957 + pos: -14.5,-70.5 + parent: 2 + - uid: 12851 components: - type: Transform - pos: 323.5,428.5 - parent: 1 - - uid: 19958 + pos: -79.5,-52.5 + parent: 2 + - uid: 12852 components: - type: Transform - pos: 325.5,431.5 - parent: 1 - - uid: 19959 + pos: -92.5,-52.5 + parent: 2 + - uid: 12940 components: - type: Transform - pos: 334.5,392.5 - parent: 1 - - uid: 19960 + pos: -153.5,24.5 + parent: 2 + - uid: 13263 components: - type: Transform - pos: 330.5,390.5 - parent: 1 - - uid: 19961 + pos: -31.5,-36.5 + parent: 2 + - uid: 13491 components: - type: Transform - pos: 334.5,390.5 - parent: 1 - - uid: 19962 + pos: -107.5,-61.5 + parent: 2 + - uid: 13522 components: - type: Transform - pos: 336.5,385.5 - parent: 1 - - uid: 19963 + rot: 3.141592653589793 rad + pos: -138.5,12.5 + parent: 2 + - uid: 13561 components: - type: Transform - pos: 334.5,382.5 - parent: 1 - - uid: 19964 + pos: -89.5,-52.5 + parent: 2 + - uid: 13562 components: - type: Transform - pos: 338.5,382.5 - parent: 1 - - uid: 19965 + pos: -94.5,-51.5 + parent: 2 + - uid: 13567 components: - type: Transform - pos: 342.5,384.5 - parent: 1 - - uid: 19966 + pos: -80.5,-52.5 + parent: 2 + - uid: 13570 components: - type: Transform - pos: 345.5,383.5 - parent: 1 - - uid: 19967 + pos: -78.5,-51.5 + parent: 2 + - uid: 13584 components: - type: Transform - pos: 344.5,385.5 - parent: 1 - - uid: 19968 + pos: -85.5,-52.5 + parent: 2 + - uid: 13644 components: - type: Transform - pos: 348.5,385.5 - parent: 1 - - uid: 19969 + pos: -138.5,-26.5 + parent: 2 + - uid: 13787 components: - type: Transform - pos: 363.5,380.5 - parent: 1 - - uid: 19970 + rot: -1.5707963267948966 rad + pos: -157.5,0.5 + parent: 2 + - uid: 13811 components: - type: Transform - pos: 372.5,383.5 - parent: 1 - - uid: 19971 + rot: 3.141592653589793 rad + pos: -157.5,-30.5 + parent: 2 + - uid: 13812 components: - type: Transform - pos: 370.5,385.5 - parent: 1 - - uid: 20176 + rot: 3.141592653589793 rad + pos: -157.5,-25.5 + parent: 2 + - uid: 13814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,445.5 - parent: 1 - - uid: 20177 + rot: 3.141592653589793 rad + pos: -157.5,-28.5 + parent: 2 + - uid: 13815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,445.5 - parent: 1 - - uid: 20867 + rot: 3.141592653589793 rad + pos: -157.5,-29.5 + parent: 2 + - uid: 13822 components: - type: Transform rot: 3.141592653589793 rad - pos: 330.5,448.5 - parent: 1 - - uid: 20868 + pos: -123.5,-50.5 + parent: 2 + - uid: 13832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,446.5 - parent: 1 - - uid: 20879 + rot: -1.5707963267948966 rad + pos: -157.5,-2.5 + parent: 2 + - uid: 13867 components: - type: Transform - pos: 330.5,455.5 - parent: 1 - - uid: 20885 + rot: 3.141592653589793 rad + pos: -144.5,4.5 + parent: 2 + - uid: 13870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,456.5 - parent: 1 - - uid: 20886 + pos: -144.5,27.5 + parent: 2 + - uid: 13876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,456.5 - parent: 1 - - uid: 20887 + rot: -1.5707963267948966 rad + pos: -137.5,21.5 + parent: 2 + - uid: 13883 components: - type: Transform - pos: 342.5,455.5 - parent: 1 - - uid: 20922 + rot: -1.5707963267948966 rad + pos: -157.5,-13.5 + parent: 2 + - uid: 13886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,452.5 - parent: 1 - - uid: 20924 + rot: -1.5707963267948966 rad + pos: -157.5,-17.5 + parent: 2 + - uid: 13887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,445.5 - parent: 1 - - uid: 20937 + rot: -1.5707963267948966 rad + pos: -157.5,-11.5 + parent: 2 + - uid: 13889 components: - type: Transform - pos: 402.5,399.5 - parent: 1 - - uid: 20948 + rot: -1.5707963267948966 rad + pos: -157.5,-14.5 + parent: 2 + - uid: 13890 components: - type: Transform - pos: 398.5,399.5 - parent: 1 - - uid: 20973 + rot: -1.5707963267948966 rad + pos: -157.5,-7.5 + parent: 2 + - uid: 13892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,450.5 - parent: 1 - - uid: 20974 + pos: -148.5,27.5 + parent: 2 + - uid: 13893 components: - type: Transform - pos: 389.5,421.5 - parent: 1 - - uid: 21002 + rot: -1.5707963267948966 rad + pos: -143.5,-56.5 + parent: 2 + - uid: 13896 components: - type: Transform - pos: 406.5,399.5 - parent: 1 - - uid: 21016 + rot: -1.5707963267948966 rad + pos: -142.5,-57.5 + parent: 2 + - uid: 13898 components: - type: Transform rot: 3.141592653589793 rad - pos: 342.5,453.5 - parent: 1 - - uid: 21032 + pos: -142.5,-35.5 + parent: 2 + - uid: 13899 components: - type: Transform rot: 3.141592653589793 rad - pos: 338.5,455.5 - parent: 1 - - uid: 21033 + pos: -155.5,-35.5 + parent: 2 + - uid: 13900 components: - type: Transform rot: 3.141592653589793 rad - pos: 334.5,455.5 - parent: 1 - - uid: 21034 + pos: -157.5,-34.5 + parent: 2 + - uid: 13902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,452.5 - parent: 1 - - uid: 21035 + rot: 3.141592653589793 rad + pos: -157.5,-33.5 + parent: 2 + - uid: 13908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,451.5 - parent: 1 - - uid: 21202 + pos: -140.5,27.5 + parent: 2 + - uid: 13911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 504.5,378.5 - parent: 1 - - uid: 21203 + pos: -142.5,27.5 + parent: 2 + - uid: 13925 components: - type: Transform rot: 3.141592653589793 rad - pos: 508.5,380.5 - parent: 1 - - uid: 21204 + pos: -157.5,-35.5 + parent: 2 + - uid: 13927 components: - type: Transform - pos: 500.5,382.5 - parent: 1 - - uid: 21205 + pos: -157.5,-46.5 + parent: 2 + - uid: 13928 components: - type: Transform rot: 3.141592653589793 rad - pos: 500.5,382.5 - parent: 1 - - uid: 21487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,33.5 - parent: 5072 - - uid: 21534 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,33.5 - parent: 5072 - - uid: 21564 + pos: -152.5,-35.5 + parent: 2 + - uid: 13929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 5072 - - uid: 21847 + pos: -155.5,-50.5 + parent: 2 + - uid: 13930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,34.5 - parent: 5072 - - uid: 21860 + rot: -1.5707963267948966 rad + pos: -157.5,-10.5 + parent: 2 + - uid: 13931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,36.5 - parent: 5072 - - uid: 21862 + pos: -156.5,21.5 + parent: 2 + - uid: 13932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,36.5 - parent: 5072 - - uid: 21890 + pos: -157.5,-8.5 + parent: 2 + - uid: 13933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,32.5 - parent: 5072 - - uid: 21891 + pos: -157.5,-5.5 + parent: 2 + - uid: 13934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,33.5 - parent: 5072 - - uid: 21900 + pos: -157.5,-47.5 + parent: 2 + - uid: 13935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,34.5 - parent: 5072 - - uid: 21907 + rot: 3.141592653589793 rad + pos: -157.5,-36.5 + parent: 2 + - uid: 13936 components: - type: Transform - pos: -0.5,37.5 - parent: 5072 - - uid: 21926 + pos: -155.5,22.5 + parent: 2 + - uid: 13938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,33.5 - parent: 5072 - - uid: 21927 + pos: -151.5,-35.5 + parent: 2 + - uid: 13939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 5072 - - uid: 21928 + pos: -157.5,-43.5 + parent: 2 + - uid: 13940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,30.5 - parent: 5072 - - uid: 21929 + rot: 3.141592653589793 rad + pos: -157.5,-23.5 + parent: 2 + - uid: 13941 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,26.5 - parent: 5072 - - uid: 21930 + pos: -157.5,-38.5 + parent: 2 + - uid: 13942 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,25.5 - parent: 5072 - - uid: 21931 + pos: -157.5,-21.5 + parent: 2 + - uid: 13943 components: - type: Transform - pos: 2.5,23.5 - parent: 5072 -- proto: GrilleDiagonal - entities: - - uid: 2778 + rot: 3.141592653589793 rad + pos: -157.5,-24.5 + parent: 2 + - uid: 13944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,393.5 - parent: 1 - - uid: 16175 + pos: -152.5,25.5 + parent: 2 + - uid: 13945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 16114 - - uid: 16176 + pos: -150.5,27.5 + parent: 2 + - uid: 13952 components: - type: Transform - pos: -4.5,5.5 - parent: 16114 - - uid: 20406 + rot: -1.5707963267948966 rad + pos: -129.5,-59.5 + parent: 2 + - uid: 14075 components: - type: Transform - pos: -3.5,3.5 - parent: 20181 - - uid: 20708 + pos: -141.5,-37.5 + parent: 2 + - uid: 14144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 20527 - - uid: 20709 + pos: -146.5,-51.5 + parent: 2 + - uid: 14150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 20527 - - uid: 20710 + rot: -1.5707963267948966 rad + pos: -148.5,-51.5 + parent: 2 + - uid: 14174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 20527 -- proto: GunSafe - entities: - - uid: 14791 + pos: -75.5,-39.5 + parent: 2 + - uid: 14487 components: - type: Transform - pos: 506.5,382.5 - parent: 1 - - uid: 17930 + pos: -87.5,-52.5 + parent: 2 + - uid: 14489 components: - type: Transform - pos: 506.5,380.5 - parent: 1 -- proto: GunSafeLaserCarbine - entities: - - uid: 5081 + pos: -81.5,-43.5 + parent: 2 + - uid: 14569 components: - type: Transform - pos: 428.5,411.5 - parent: 1 -- proto: GunSafePistolMk58 - entities: - - uid: 10330 + pos: -64.5,-50.5 + parent: 2 + - uid: 14594 components: - type: Transform - pos: 506.5,381.5 - parent: 1 -- proto: GunSafeRifleLecter - entities: - - uid: 5077 + pos: -64.5,-36.5 + parent: 2 + - uid: 14749 components: - type: Transform - pos: 422.5,413.5 - parent: 1 -- proto: GunSafeShotgunEnforcer - entities: - - uid: 5076 + pos: -119.5,-54.5 + parent: 2 + - uid: 14818 components: - type: Transform - pos: 422.5,414.5 - parent: 1 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 6134 + pos: -43.5,-45.5 + parent: 2 + - uid: 14819 components: - type: Transform - pos: 424.5,414.5 - parent: 1 -- proto: Gyroscope - entities: - - uid: 5873 + pos: -43.5,-44.5 + parent: 2 + - uid: 14820 components: - type: Transform - pos: 310.5,384.5 - parent: 1 - - uid: 16177 + pos: -43.5,-46.5 + parent: 2 + - uid: 14860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 16114 - - uid: 20407 + rot: 3.141592653589793 rad + pos: -93.5,26.5 + parent: 2 + - uid: 14982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 20181 - - uid: 20711 + pos: -75.5,-51.5 + parent: 2 + - uid: 15004 components: - type: Transform - pos: 2.5,7.5 - parent: 20527 -- proto: GyroscopeFlatpack - entities: - - uid: 6255 + pos: -75.5,-46.5 + parent: 2 + - uid: 15302 components: - type: Transform - pos: 441.5,396.5 - parent: 1 -- proto: Handcuffs - entities: - - uid: 6110 + pos: -67.5,-34.5 + parent: 2 + - uid: 15336 components: - type: Transform - pos: 421.5,393.5 - parent: 1 - - uid: 17323 + pos: -38.5,0.5 + parent: 2 + - uid: 15699 components: - type: Transform - pos: 365.5,413.5 - parent: 1 - - uid: 17324 + pos: -42.5,5.5 + parent: 2 + - uid: 15927 components: - type: Transform - pos: 372.5,393.5 - parent: 1 - - uid: 21716 + rot: 3.141592653589793 rad + pos: -61.5,-17.5 + parent: 2 + - uid: 15957 components: - type: Transform - pos: 9.513287,30.488989 - parent: 5072 -- proto: HandHeldMassScannerEmpty - entities: - - uid: 2214 + pos: -14.5,0.5 + parent: 2 + - uid: 16295 components: - type: Transform - pos: 353.5,380.5 - parent: 1 -- proto: HandLabeler - entities: - - uid: 5948 + pos: -150.5,-19.5 + parent: 2 + - uid: 16342 components: - type: Transform - pos: 422.5,353.5 - parent: 1 - - uid: 5949 + pos: -82.5,-82.5 + parent: 2 + - uid: 16405 components: - type: Transform - pos: 425.5,357.5 - parent: 1 - - uid: 7469 + pos: -74.5,-56.5 + parent: 2 + - uid: 16808 components: - type: Transform - pos: 346.5,387.5 - parent: 1 - - uid: 21694 + pos: -147.5,-19.5 + parent: 2 + - uid: 16811 components: - type: Transform - pos: 8.041532,18.530302 - parent: 5072 - - uid: 21821 + pos: -146.5,-19.5 + parent: 2 + - uid: 16869 components: - type: Transform - pos: -2.5260825,30.718403 - parent: 5072 -- proto: HeadSkeleton - entities: - - uid: 18709 + rot: -1.5707963267948966 rad + pos: -125.5,-59.5 + parent: 2 + - uid: 16955 components: - type: Transform - pos: 425.5,380.5 - parent: 1 - - uid: 20999 + pos: -54.5,-57.5 + parent: 2 + - uid: 16956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,413.5 - parent: 1 -- proto: HeadVox - entities: - - uid: 5372 + pos: -145.5,-19.5 + parent: 2 + - uid: 16961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.77893,412.2054 - parent: 1 -- proto: HelicopterInstrument - entities: - - uid: 6631 + pos: -148.5,-19.5 + parent: 2 + - uid: 16963 components: - type: Transform - pos: 307.5,411.5 - parent: 1 -- proto: HighSecArmoryLocked - entities: - - uid: 3783 + pos: -149.5,-19.5 + parent: 2 + - uid: 16964 components: - type: Transform - pos: 425.5,410.5 - parent: 1 -- proto: HighSecCaptainLocked - entities: - - uid: 124 + pos: -124.5,-52.5 + parent: 2 + - uid: 16966 components: - type: Transform - pos: 366.5,413.5 - parent: 1 -- proto: HighSecCommandLocked - entities: - - uid: 2118 + pos: -151.5,-19.5 + parent: 2 + - uid: 17032 components: - type: Transform - pos: 367.5,418.5 - parent: 1 - - uid: 2300 + pos: -128.5,-7.5 + parent: 2 + - uid: 17043 components: - type: Transform - pos: 364.5,421.5 - parent: 1 - - uid: 3569 + pos: -68.5,-69.5 + parent: 2 + - uid: 17045 components: - type: Transform - pos: 315.5,411.5 - parent: 1 - - uid: 3584 + pos: -66.5,-70.5 + parent: 2 + - uid: 17052 components: - type: Transform - pos: 308.5,411.5 - parent: 1 - - uid: 3585 + pos: -67.5,-70.5 + parent: 2 + - uid: 17054 components: - type: Transform - pos: 306.5,411.5 - parent: 1 - - uid: 4110 + pos: -68.5,-70.5 + parent: 2 + - uid: 17060 components: - type: Transform - pos: 329.5,397.5 - parent: 1 -- proto: HolofanProjectorEmpty - entities: - - uid: 21965 + pos: -66.5,-69.5 + parent: 2 + - uid: 17065 components: - type: Transform - pos: 310.5,425.5 - parent: 1 -- proto: HolopadAiBackupPower - entities: - - uid: 22035 + rot: 1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 17066 components: - type: Transform - pos: 307.5,421.5 - parent: 1 -- proto: HolopadAiCore - entities: - - uid: 22034 + rot: 1.5707963267948966 rad + pos: -20.5,6.5 + parent: 2 + - uid: 17071 components: - type: Transform - pos: 307.5,411.5 - parent: 1 -- proto: HolopadAiEntrance - entities: - - uid: 22036 + pos: -83.5,4.5 + parent: 2 + - uid: 17077 components: - type: Transform - pos: 312.5,411.5 - parent: 1 -- proto: HolopadAiMain - entities: - - uid: 22037 + pos: -84.5,-0.5 + parent: 2 + - uid: 17124 components: - type: Transform - pos: 303.5,411.5 - parent: 1 -- proto: HolopadAiUpload - entities: - - uid: 22033 + pos: -69.5,-64.5 + parent: 2 + - uid: 17136 components: - type: Transform - pos: 307.5,407.5 - parent: 1 -- proto: HolopadCargoBay - entities: - - uid: 22054 + rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 17157 components: - type: Transform - pos: 359.5,389.5 - parent: 1 -- proto: HolopadCargoBayLongRange - entities: - - uid: 6648 + pos: -86.5,-6.5 + parent: 2 + - uid: 17158 components: - type: Transform - pos: 369.5,380.5 - parent: 1 -- proto: HolopadCargoBreakroom - entities: - - uid: 22053 + pos: -80.5,-0.5 + parent: 2 + - uid: 17162 components: - type: Transform - pos: 368.5,388.5 - parent: 1 -- proto: HolopadCommandBridge - entities: - - uid: 22046 + pos: -35.5,-75.5 + parent: 2 + - uid: 17176 components: - type: Transform - pos: 373.5,418.5 - parent: 1 - - uid: 22047 + pos: -31.5,-40.5 + parent: 2 + - uid: 17194 components: - type: Transform - pos: 385.5,418.5 - parent: 1 -- proto: HolopadCommandBridgeHallway - entities: - - uid: 3644 + pos: -32.5,-34.5 + parent: 2 + - uid: 17319 components: - type: Transform - pos: 386.5,410.5 - parent: 1 - - uid: 3650 + rot: -1.5707963267948966 rad + pos: -151.5,-44.5 + parent: 2 + - uid: 17339 components: - type: Transform - pos: 372.5,410.5 - parent: 1 -- proto: HolopadCommandBridgeLongRange - entities: - - uid: 15455 + pos: -150.5,-55.5 + parent: 2 + - uid: 17344 components: - type: Transform - pos: 379.5,421.5 - parent: 1 -- proto: HolopadCommandCaptain - entities: - - uid: 22051 + rot: -1.5707963267948966 rad + pos: -146.5,-39.5 + parent: 2 + - uid: 17346 components: - type: Transform - pos: 364.5,409.5 - parent: 1 - - uid: 22052 + rot: -1.5707963267948966 rad + pos: -148.5,-40.5 + parent: 2 + - uid: 17347 components: - type: Transform - pos: 367.5,409.5 - parent: 1 -- proto: HolopadCommandCe - entities: - - uid: 22067 + rot: -1.5707963267948966 rad + pos: -148.5,-39.5 + parent: 2 + - uid: 17355 components: - type: Transform - pos: 349.5,415.5 - parent: 1 -- proto: HolopadCommandCmo - entities: - - uid: 22068 + rot: -1.5707963267948966 rad + pos: -148.5,-49.5 + parent: 2 + - uid: 17356 components: - type: Transform - pos: 396.5,415.5 - parent: 1 -- proto: HolopadCommandHop - entities: - - uid: 22070 + rot: -1.5707963267948966 rad + pos: -148.5,-50.5 + parent: 2 + - uid: 17360 components: - type: Transform - pos: 366.5,397.5 - parent: 1 -- proto: HolopadCommandHos - entities: - - uid: 22071 + rot: -1.5707963267948966 rad + pos: -146.5,-41.5 + parent: 2 + - uid: 17361 components: - type: Transform - pos: 426.5,388.5 - parent: 1 -- proto: HolopadCommandMeetingRoom - entities: - - uid: 10267 + rot: -1.5707963267948966 rad + pos: -146.5,-40.5 + parent: 2 + - uid: 17440 components: - type: Transform - pos: 379.5,414.5 - parent: 1 -- proto: HolopadCommandQm - entities: - - uid: 22079 + rot: -1.5707963267948966 rad + pos: -144.5,-56.5 + parent: 2 + - uid: 17441 components: - type: Transform - pos: 355.5,379.5 - parent: 1 -- proto: HolopadCommandRd - entities: - - uid: 22082 + rot: -1.5707963267948966 rad + pos: -144.5,-55.5 + parent: 2 + - uid: 17446 components: - type: Transform - pos: 354.5,385.5 - parent: 1 -- proto: HolopadEngineeringAtmosMain - entities: - - uid: 3651 + rot: -1.5707963267948966 rad + pos: -143.5,-57.5 + parent: 2 + - uid: 17451 components: - type: Transform - pos: 333.5,418.5 - parent: 1 -- proto: HolopadEngineeringAtmosTeg - entities: - - uid: 22083 + rot: -1.5707963267948966 rad + pos: -142.5,-58.5 + parent: 2 + - uid: 17457 components: - type: Transform - pos: 323.5,422.5 - parent: 1 -- proto: HolopadEngineeringBreakroom - entities: - - uid: 22060 + rot: 3.141592653589793 rad + pos: -153.5,-35.5 + parent: 2 + - uid: 17470 components: - type: Transform - pos: 338.5,407.5 - parent: 1 -- proto: HolopadEngineeringTechVault - entities: - - uid: 22088 + rot: 3.141592653589793 rad + pos: -157.5,-20.5 + parent: 2 + - uid: 17471 components: - type: Transform - pos: 302.5,386.5 - parent: 1 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 22086 + rot: 3.141592653589793 rad + pos: -157.5,-39.5 + parent: 2 + - uid: 17474 components: - type: Transform - pos: 304.5,425.5 - parent: 1 - - uid: 22087 + rot: 3.141592653589793 rad + pos: -157.5,-40.5 + parent: 2 + - uid: 17477 components: - type: Transform - pos: 310.5,425.5 - parent: 1 -- proto: HolopadGeneralArrivals - entities: - - uid: 21992 + rot: -1.5707963267948966 rad + pos: -157.5,-1.5 + parent: 2 + - uid: 17478 components: - type: Transform - pos: 382.5,396.5 - parent: 1 -- proto: HolopadGeneralCryosleep - entities: - - uid: 22059 + rot: -1.5707963267948966 rad + pos: -157.5,-0.5 + parent: 2 + - uid: 17490 components: - type: Transform - pos: 413.5,374.5 - parent: 1 -- proto: HolopadMedicalChemistry - entities: - - uid: 22069 + rot: 3.141592653589793 rad + pos: -137.5,-40.5 + parent: 2 + - uid: 17495 components: - type: Transform - pos: 408.5,410.5 - parent: 1 -- proto: HolopadMedicalMedbay - entities: - - uid: 22076 + rot: -1.5707963267948966 rad + pos: -157.5,3.5 + parent: 2 + - uid: 17496 components: - type: Transform - pos: 406.5,416.5 - parent: 1 -- proto: HolopadMedicalParamed - entities: - - uid: 22089 + rot: -1.5707963267948966 rad + pos: -157.5,19.5 + parent: 2 + - uid: 17511 components: - type: Transform - pos: 407.5,421.5 - parent: 1 -- proto: HolopadMedicalVirology - entities: - - uid: 22084 + rot: -1.5707963267948966 rad + pos: -157.5,17.5 + parent: 2 + - uid: 17514 components: - type: Transform - pos: 412.5,420.5 - parent: 1 -- proto: HolopadScienceAnomaly - entities: - - uid: 22040 + rot: -1.5707963267948966 rad + pos: -157.5,15.5 + parent: 2 + - uid: 17521 components: - type: Transform - pos: 341.5,393.5 - parent: 1 -- proto: HolopadScienceArtifact - entities: - - uid: 22041 + rot: -1.5707963267948966 rad + pos: -157.5,4.5 + parent: 2 + - uid: 17534 components: - type: Transform - pos: 348.5,388.5 - parent: 1 -- proto: HolopadScienceRnd - entities: - - uid: 22080 + rot: -1.5707963267948966 rad + pos: -157.5,8.5 + parent: 2 + - uid: 17579 components: - type: Transform - pos: 355.5,398.5 - parent: 1 -- proto: HolopadScienceRobotics - entities: - - uid: 22081 + pos: -16.5,-68.5 + parent: 2 + - uid: 17580 components: - type: Transform - pos: 339.5,398.5 - parent: 1 -- proto: HolopadSecurityArmory - entities: - - uid: 22039 + pos: -16.5,-69.5 + parent: 2 + - uid: 17581 components: - type: Transform - pos: 426.5,413.5 - parent: 1 -- proto: HolopadSecurityBreakroom - entities: - - uid: 15508 + pos: -14.5,-68.5 + parent: 2 + - uid: 17582 components: - type: Transform - pos: 421.5,401.5 - parent: 1 -- proto: HolopadSecurityBrig - entities: - - uid: 22043 + pos: -16.5,-64.5 + parent: 2 + - uid: 17781 components: - type: Transform - pos: 423.5,392.5 - parent: 1 -- proto: HolopadSecurityDetective - entities: - - uid: 22058 + rot: 3.141592653589793 rad + pos: -142.5,3.5 + parent: 2 + - uid: 17789 components: - type: Transform - pos: 411.5,408.5 - parent: 1 -- proto: HolopadSecurityInterrogation - entities: - - uid: 1891 + rot: 3.141592653589793 rad + pos: -142.5,4.5 + parent: 2 + - uid: 18071 components: - type: Transform - pos: 416.5,405.5 - parent: 1 -- proto: HolopadSecurityLawyer - entities: - - uid: 22073 + rot: 3.141592653589793 rad + pos: -142.5,2.5 + parent: 2 + - uid: 18073 components: - type: Transform - pos: 443.5,412.5 - parent: 1 -- proto: HolopadSecurityPerma - entities: - - uid: 22078 + rot: 3.141592653589793 rad + pos: -157.5,2.5 + parent: 2 + - uid: 18080 components: - type: Transform - pos: 453.5,409.5 - parent: 1 -- proto: HolopadSecurityWarden - entities: - - uid: 22085 + rot: 3.141592653589793 rad + pos: -114.5,-13.5 + parent: 2 + - uid: 18082 components: - type: Transform - pos: 418.5,408.5 - parent: 1 -- proto: HolopadServiceBar - entities: - - uid: 22042 + rot: 3.141592653589793 rad + pos: -114.5,-7.5 + parent: 2 + - uid: 18115 components: - type: Transform - pos: 411.5,389.5 - parent: 1 -- proto: HolopadServiceBoxer - entities: - - uid: 22066 + pos: -36.5,-45.5 + parent: 2 + - uid: 18261 components: - type: Transform - pos: 390.5,369.5 - parent: 1 -- proto: HolopadServiceChapel - entities: - - uid: 22056 + rot: 1.5707963267948966 rad + pos: -137.5,-34.5 + parent: 2 + - uid: 18309 components: - type: Transform - pos: 334.5,441.5 - parent: 1 -- proto: HolopadServiceClown - entities: - - uid: 22057 + rot: -1.5707963267948966 rad + pos: -126.5,-59.5 + parent: 2 + - uid: 18812 components: - type: Transform - pos: 389.5,411.5 - parent: 1 -- proto: HolopadServiceKitchen - entities: - - uid: 22072 + pos: -89.5,-74.5 + parent: 2 + - uid: 18836 components: - type: Transform - pos: 408.5,391.5 - parent: 1 -- proto: HolopadServiceLibrary - entities: - - uid: 22074 + pos: -18.5,-51.5 + parent: 2 + - uid: 18902 components: - type: Transform - pos: 418.5,353.5 - parent: 1 - - uid: 22075 + pos: -156.5,-50.5 + parent: 2 + - uid: 18976 components: - type: Transform - pos: 424.5,352.5 - parent: 1 -- proto: HolopadServiceMime - entities: - - uid: 22077 + pos: -155.5,-51.5 + parent: 2 + - uid: 19169 components: - type: Transform - pos: 396.5,410.5 - parent: 1 -- proto: HolopadServiceMusician - entities: - - uid: 22090 + rot: -1.5707963267948966 rad + pos: -114.5,-36.5 + parent: 2 + - uid: 19171 components: - type: Transform - pos: 390.5,407.5 - parent: 1 -- proto: HospitalCurtainsOpen - entities: - - uid: 21649 + rot: -1.5707963267948966 rad + pos: -115.5,-36.5 + parent: 2 + - uid: 19172 components: - type: Transform - pos: 12.5,27.5 - parent: 5072 -- proto: hydroponicsSoil - entities: - - uid: 3115 + rot: -1.5707963267948966 rad + pos: -113.5,-36.5 + parent: 2 + - uid: 19227 components: - type: Transform - pos: 395.5,406.5 - parent: 1 - - uid: 3118 + pos: -151.5,-55.5 + parent: 2 + - uid: 19454 components: - type: Transform - pos: 396.5,406.5 - parent: 1 - - uid: 3735 + pos: -156.5,-49.5 + parent: 2 + - uid: 19458 components: - type: Transform - pos: 414.5,385.5 - parent: 1 - - uid: 3736 + pos: -157.5,-49.5 + parent: 2 + - uid: 19459 components: - type: Transform - pos: 416.5,384.5 - parent: 1 - - uid: 3737 + pos: -157.5,-45.5 + parent: 2 + - uid: 19460 components: - type: Transform - pos: 416.5,385.5 - parent: 1 -- proto: HydroponicsToolHatchet - entities: - - uid: 4878 + pos: -157.5,-48.5 + parent: 2 + - uid: 19896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.4488,422.22433 - parent: 1 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 5090 + pos: -69.5,-34.5 + parent: 2 + - uid: 19911 components: - type: Transform - parent: 3117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6154 + rot: 3.141592653589793 rad + pos: -99.5,-11.5 + parent: 2 + - uid: 19972 components: - type: Transform - pos: 452.5,404.5 - parent: 1 - - uid: 18558 + rot: 3.141592653589793 rad + pos: -100.5,-11.5 + parent: 2 + - uid: 19974 components: - type: Transform - parent: 18556 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: HydroponicsToolSpade - entities: - - uid: 6161 + pos: -121.5,-54.5 + parent: 2 + - uid: 20083 components: - type: Transform - pos: 452.5,404.5 - parent: 1 - - uid: 18559 + rot: -1.5707963267948966 rad + pos: -146.5,-50.5 + parent: 2 + - uid: 20085 components: - type: Transform - parent: 18556 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: hydroponicsTray - entities: - - uid: 565 + rot: -1.5707963267948966 rad + pos: -146.5,-49.5 + parent: 2 + - uid: 20149 components: - type: Transform - pos: 416.5,378.5 - parent: 1 - - uid: 567 + rot: -1.5707963267948966 rad + pos: -144.5,-35.5 + parent: 2 + - uid: 20152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,379.5 - parent: 1 - - uid: 1952 + rot: 3.141592653589793 rad + pos: -156.5,-35.5 + parent: 2 + - uid: 20156 components: - type: Transform rot: -1.5707963267948966 rad - pos: 452.5,401.5 - parent: 1 - - uid: 4945 + pos: -157.5,7.5 + parent: 2 + - uid: 20158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,378.5 - parent: 1 - - uid: 4952 + rot: -1.5707963267948966 rad + pos: -157.5,10.5 + parent: 2 + - uid: 20227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,379.5 - parent: 1 - - uid: 4953 + rot: -1.5707963267948966 rad + pos: -157.5,12.5 + parent: 2 + - uid: 20258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,378.5 - parent: 1 - - uid: 4954 + rot: -1.5707963267948966 rad + pos: -157.5,18.5 + parent: 2 + - uid: 20263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,379.5 - parent: 1 - - uid: 4955 + rot: -1.5707963267948966 rad + pos: -157.5,11.5 + parent: 2 + - uid: 20264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,378.5 - parent: 1 - - uid: 6149 + rot: -1.5707963267948966 rad + pos: -157.5,13.5 + parent: 2 + - uid: 20265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 453.5,401.5 - parent: 1 - - uid: 6150 + pos: -133.5,-57.5 + parent: 2 + - uid: 20276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 454.5,401.5 - parent: 1 - - uid: 6202 + rot: 1.5707963267948966 rad + pos: -139.5,-11.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -141.5,-8.5 + parent: 2 + - uid: 20313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 456.5,412.5 - parent: 1 - - uid: 6203 + pos: -57.5,-79.5 + parent: 2 + - uid: 20315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 457.5,412.5 - parent: 1 - - uid: 6204 + pos: -56.5,-79.5 + parent: 2 + - uid: 20317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 458.5,412.5 - parent: 1 - - uid: 18560 + pos: -55.5,-79.5 + parent: 2 + - uid: 20354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,411.5 - parent: 1 - - uid: 18561 + rot: -1.5707963267948966 rad + pos: -125.5,-81.5 + parent: 2 + - uid: 20355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,412.5 - parent: 1 -- proto: IDComputerCircuitboard - entities: - - uid: 6681 + rot: -1.5707963267948966 rad + pos: -125.5,-83.5 + parent: 2 + - uid: 20400 components: - type: Transform - pos: 317.5,383.5 - parent: 1 -- proto: Igniter - entities: - - uid: 18211 + rot: -1.5707963267948966 rad + pos: -125.5,-76.5 + parent: 2 + - uid: 20403 components: - type: Transform - pos: 317.5,422.5 - parent: 1 - - uid: 18392 + pos: -119.5,-89.5 + parent: 2 + - uid: 20404 components: - type: Transform - pos: 359.5,420.5 - parent: 1 -- proto: Implanter - entities: - - uid: 18414 + pos: -120.5,-89.5 + parent: 2 + - uid: 20405 components: - type: Transform - pos: 358.5,431.5 - parent: 1 - - uid: 20028 + rot: -1.5707963267948966 rad + pos: -125.5,-78.5 + parent: 2 + - uid: 20406 components: - type: Transform - pos: 413.5,422.5 - parent: 1 -- proto: InflatableWall - entities: - - uid: 5181 + rot: 1.5707963267948966 rad + pos: -115.5,-71.5 + parent: 2 + - uid: 20408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,405.5 - parent: 1 - - uid: 5183 + rot: 1.5707963267948966 rad + pos: -114.5,-71.5 + parent: 2 + - uid: 20409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,411.5 - parent: 1 - - uid: 14939 + pos: -118.5,-89.5 + parent: 2 + - uid: 20410 components: - type: Transform - pos: 332.5,446.5 - parent: 1 - - uid: 17485 + rot: -1.5707963267948966 rad + pos: -124.5,-88.5 + parent: 2 + - uid: 20412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 505.5,390.5 - parent: 1 - - uid: 17966 + rot: -1.5707963267948966 rad + pos: -125.5,-86.5 + parent: 2 + - uid: 20416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 474.5,377.5 - parent: 1 - - uid: 18329 + rot: -1.5707963267948966 rad + pos: -125.5,-87.5 + parent: 2 + - uid: 20420 components: - type: Transform - pos: 431.5,418.5 - parent: 1 - - uid: 18403 + rot: -1.5707963267948966 rad + pos: -125.5,-85.5 + parent: 2 + - uid: 20422 components: - type: Transform - pos: 356.5,424.5 - parent: 1 - - uid: 18549 + rot: -1.5707963267948966 rad + pos: -125.5,-77.5 + parent: 2 + - uid: 20426 components: - type: Transform - pos: 358.5,408.5 - parent: 1 - - uid: 18562 + rot: -1.5707963267948966 rad + pos: -104.5,23.5 + parent: 2 + - uid: 20443 components: - type: Transform - pos: 357.5,413.5 - parent: 1 - - uid: 21272 + pos: -104.5,37.5 + parent: 2 + - uid: 20736 components: - type: Transform - pos: 333.5,390.5 - parent: 1 - - uid: 21273 + pos: -71.5,-66.5 + parent: 2 + - uid: 20937 components: - type: Transform - pos: 334.5,384.5 - parent: 1 - - uid: 21749 + pos: -48.5,-39.5 + parent: 2 + - uid: 21014 components: - type: Transform - pos: 5.5,28.5 - parent: 5072 - - uid: 21897 + pos: -51.5,-40.5 + parent: 2 + - uid: 21302 components: - type: Transform - pos: 2.5,29.5 - parent: 5072 - - uid: 21899 + pos: -6.5,24.5 + parent: 2 + - uid: 21304 components: - type: Transform - pos: -2.5,32.5 - parent: 5072 -- proto: InflatableWallStack1 - entities: - - uid: 17503 + pos: -8.5,24.5 + parent: 2 + - uid: 21313 components: - type: Transform - pos: 504.5,389.5 - parent: 1 - - uid: 18551 + pos: -5.5,24.5 + parent: 2 + - uid: 21314 components: - type: Transform - pos: 359.5,409.5 - parent: 1 - - uid: 20179 + pos: -3.5,24.5 + parent: 2 + - uid: 21316 components: - type: Transform - pos: 333.5,445.5 - parent: 1 - - uid: 21271 + pos: -2.5,24.5 + parent: 2 + - uid: 21317 components: - type: Transform - pos: 333.5,388.5 - parent: 1 - - uid: 21682 + pos: -1.5,24.5 + parent: 2 + - uid: 21319 components: - type: Transform - pos: 2.5,28.5 - parent: 5072 -- proto: IngotGold1 - entities: - - uid: 20061 + pos: 0.5,24.5 + parent: 2 + - uid: 21320 components: - type: Transform - pos: 332.5,438.5 - parent: 1 - - uid: 20063 + pos: 1.5,24.5 + parent: 2 + - uid: 21321 components: - type: Transform - pos: 331.5,441.5 - parent: 1 -- proto: IngotSilver - entities: - - uid: 4297 + pos: 2.5,24.5 + parent: 2 + - uid: 21324 components: - type: Transform - pos: 326.5,397.5 - parent: 1 -- proto: IntercomAll - entities: - - uid: 21485 + pos: 2.5,2.5 + parent: 2 + - uid: 21325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 5072 - - uid: 21610 + pos: 2.5,1.5 + parent: 2 + - uid: 21326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,18.5 - parent: 5072 -- proto: IntercomCommand - entities: - - uid: 14853 + pos: 2.5,0.5 + parent: 2 + - uid: 21328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,410.5 - parent: 1 - - uid: 18244 + pos: 2.5,-1.5 + parent: 2 + - uid: 21329 components: - type: Transform - pos: 381.5,415.5 - parent: 1 - - uid: 18245 + pos: 2.5,-2.5 + parent: 2 + - uid: 21330 components: - type: Transform - pos: 377.5,415.5 - parent: 1 - - uid: 18250 + pos: -16.5,-66.5 + parent: 2 + - uid: 21331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,385.5 - parent: 1 - - uid: 18260 + pos: 2.5,23.5 + parent: 2 + - uid: 21332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,413.5 - parent: 1 -- proto: IntercomCommon - entities: - - uid: 14855 + pos: 2.5,22.5 + parent: 2 + - uid: 21334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,410.5 - parent: 1 - - uid: 18246 + pos: 2.5,19.5 + parent: 2 + - uid: 21335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,400.5 - parent: 1 - - uid: 21008 + pos: 2.5,18.5 + parent: 2 + - uid: 21336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,400.5 - parent: 1 - - uid: 21011 + pos: 2.5,17.5 + parent: 2 + - uid: 21338 components: - type: Transform - pos: 352.5,405.5 - parent: 1 - - uid: 21012 + pos: 2.5,21.5 + parent: 2 + - uid: 21339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,378.5 - parent: 1 - - uid: 21013 + pos: 2.5,15.5 + parent: 2 + - uid: 21340 components: - type: Transform - pos: 366.5,405.5 - parent: 1 -- proto: IntercomEngineering - entities: - - uid: 16244 + pos: 2.5,14.5 + parent: 2 + - uid: 21341 components: - type: Transform - pos: 343.5,405.5 - parent: 1 - - uid: 18247 + pos: 2.5,13.5 + parent: 2 + - uid: 21342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 298.5,380.5 - parent: 1 - - uid: 18248 + pos: 2.5,12.5 + parent: 2 + - uid: 21343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,380.5 - parent: 1 -- proto: IntercomMedical - entities: - - uid: 2212 + pos: 2.5,11.5 + parent: 2 + - uid: 21344 components: - type: Transform - pos: 405.5,405.5 - parent: 1 - - uid: 14403 + pos: 2.5,10.5 + parent: 2 + - uid: 21346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,413.5 - parent: 1 - - uid: 16282 + pos: 2.5,8.5 + parent: 2 + - uid: 21347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,417.5 - parent: 1 - - uid: 16454 + pos: 2.5,6.5 + parent: 2 + - uid: 21348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,413.5 - parent: 1 - - uid: 18256 + pos: 2.5,5.5 + parent: 2 + - uid: 21349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,406.5 - parent: 1 - - uid: 18259 + pos: 2.5,4.5 + parent: 2 + - uid: 21350 components: - type: Transform - pos: 400.5,414.5 - parent: 1 -- proto: IntercomScience - entities: - - uid: 16340 + pos: 1.5,-2.5 + parent: 2 + - uid: 21352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,401.5 - parent: 1 - - uid: 18249 + pos: -0.5,-2.5 + parent: 2 + - uid: 21353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,397.5 - parent: 1 -- proto: IntercomSecurity - entities: - - uid: 5473 + pos: -1.5,-2.5 + parent: 2 + - uid: 21354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,394.5 - parent: 1 - - uid: 16455 + pos: -3.5,-2.5 + parent: 2 + - uid: 21355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,404.5 - parent: 1 -- proto: IntercomService - entities: - - uid: 20098 + pos: -4.5,-2.5 + parent: 2 + - uid: 21356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,412.5 - parent: 1 - - uid: 21014 + pos: -5.5,-2.5 + parent: 2 + - uid: 21459 components: - type: Transform rot: -1.5707963267948966 rad - pos: 398.5,410.5 - parent: 1 - - uid: 21017 + pos: -119.5,37.5 + parent: 2 + - uid: 21475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,405.5 - parent: 1 -- proto: IntercomSupply - entities: - - uid: 5618 + pos: -91.5,-72.5 + parent: 2 + - uid: 21481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 364.5,392.5 - parent: 1 - - uid: 18251 + pos: -120.5,37.5 + parent: 2 + - uid: 21488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 361.5,376.5 - parent: 1 - - uid: 18252 + pos: -121.5,37.5 + parent: 2 + - uid: 21725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 361.5,382.5 - parent: 1 - - uid: 18253 + pos: -116.5,-5.5 + parent: 2 + - uid: 21878 components: - type: Transform rot: 3.141592653589793 rad - pos: 368.5,379.5 - parent: 1 - - uid: 21015 + pos: -140.5,-12.5 + parent: 2 + - uid: 22004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 373.5,386.5 - parent: 1 -- proto: JanitorialTrolley - entities: - - uid: 5909 + pos: -119.5,-34.5 + parent: 2 + - uid: 22005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,361.5 - parent: 1 -- proto: JanitorServiceLight - entities: - - uid: 15829 + pos: -119.5,-31.5 + parent: 2 + - uid: 22056 components: - type: Transform - pos: 343.5,404.5 - parent: 1 - - uid: 15874 + pos: -89.5,-70.5 + parent: 2 + - uid: 22195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,402.5 - parent: 1 - - uid: 15877 + pos: -106.5,24.5 + parent: 2 + - uid: 22226 components: - type: Transform rot: 3.141592653589793 rad - pos: 370.5,416.5 - parent: 1 - - uid: 15878 + pos: -112.5,38.5 + parent: 2 + - uid: 22231 components: - type: Transform - pos: 421.5,393.5 - parent: 1 - - uid: 15880 + pos: -121.5,-89.5 + parent: 2 + - uid: 22334 components: - type: Transform - pos: 403.5,418.5 - parent: 1 -- proto: JetpackMini - entities: - - uid: 6228 + pos: -123.5,-88.5 + parent: 2 + - uid: 22335 components: - type: Transform - pos: 441.5,398.5 - parent: 1 - - uid: 7425 + pos: -122.5,-89.5 + parent: 2 + - uid: 22354 components: - type: Transform - pos: 330.5,396.5 - parent: 1 - - uid: 7426 + pos: -87.5,-72.5 + parent: 2 + - uid: 22575 components: - type: Transform - pos: 330.5,396.5 - parent: 1 - - uid: 7427 + pos: -123.5,-40.5 + parent: 2 + - uid: 22770 components: - type: Transform - pos: 330.5,396.5 - parent: 1 -- proto: JetpackSecurityFilled - entities: - - uid: 6227 + rot: 3.141592653589793 rad + pos: -136.5,12.5 + parent: 2 + - uid: 22791 components: - type: Transform - pos: 441.5,399.5 - parent: 1 -- proto: Jukebox - entities: - - uid: 2903 + rot: 3.141592653589793 rad + pos: -138.5,15.5 + parent: 2 + - uid: 22793 components: - type: Transform - pos: 411.5,393.5 - parent: 1 - - uid: 5527 + rot: 3.141592653589793 rad + pos: -136.5,15.5 + parent: 2 + - uid: 22815 components: - type: Transform - pos: 390.5,408.5 - parent: 1 -- proto: KillerTomatoSeeds - entities: - - uid: 18557 + rot: 3.141592653589793 rad + pos: -152.5,2.5 + parent: 2 + - uid: 22832 components: - type: Transform - parent: 18556 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: KitchenElectricGrill - entities: - - uid: 4934 + pos: -120.5,-81.5 + parent: 2 + - uid: 22843 components: - type: Transform - pos: 407.5,387.5 - parent: 1 - - uid: 5292 + pos: -4.5,-34.5 + parent: 2 + - uid: 22879 components: - type: Transform - pos: 449.5,419.5 - parent: 1 -- proto: KitchenKnife - entities: - - uid: 5889 + pos: -3.5,-34.5 + parent: 2 + - uid: 22880 components: - type: Transform - pos: 407.5,390.5 - parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 4930 + pos: -5.5,-34.5 + parent: 2 + - uid: 22882 components: - type: Transform - pos: 407.5,388.5 - parent: 1 - - uid: 5291 + pos: -3.5,-36.5 + parent: 2 + - uid: 22964 components: - type: Transform - pos: 447.5,419.5 - parent: 1 - - uid: 7570 + pos: -30.5,-55.5 + parent: 2 + - uid: 22982 components: - type: Transform - pos: 355.5,397.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 4933 + pos: -3.5,-38.5 + parent: 2 + - uid: 22983 components: - type: Transform - pos: 409.5,387.5 - parent: 1 - - uid: 4965 + pos: -5.5,-38.5 + parent: 2 + - uid: 22984 components: - type: Transform - pos: 412.5,381.5 - parent: 1 - - uid: 4988 + pos: -4.5,-38.5 + parent: 2 + - uid: 23082 components: - type: Transform - pos: 416.5,390.5 - parent: 1 - - uid: 5290 + pos: -122.5,-78.5 + parent: 2 + - uid: 23084 components: - type: Transform - pos: 452.5,419.5 - parent: 1 - - uid: 5362 + pos: -123.5,-78.5 + parent: 2 + - uid: 23085 components: - type: Transform - pos: 407.5,407.5 - parent: 1 - - uid: 7551 + pos: -119.5,-78.5 + parent: 2 + - uid: 23101 components: - type: Transform - pos: 357.5,399.5 - parent: 1 -- proto: KitchenSpike - entities: - - uid: 4927 + pos: -117.5,-78.5 + parent: 2 + - uid: 23105 components: - type: Transform - pos: 411.5,385.5 - parent: 1 -- proto: KnifePlastic - entities: - - uid: 5298 + pos: -118.5,-78.5 + parent: 2 + - uid: 23144 components: - type: Transform - pos: 448.5,419.5 - parent: 1 - - uid: 7572 + rot: 3.141592653589793 rad + pos: -152.5,-0.5 + parent: 2 + - uid: 23145 components: - type: Transform - pos: 357.5,397.5 - parent: 1 - - uid: 7573 + rot: 3.141592653589793 rad + pos: -152.5,0.5 + parent: 2 + - uid: 23149 components: - type: Transform - pos: 357.5,397.5 - parent: 1 -- proto: KukriKnife - entities: - - uid: 17652 + rot: 3.141592653589793 rad + pos: -142.5,-0.5 + parent: 2 + - uid: 23150 components: - type: Transform - pos: 500.5,397.5 - parent: 1 -- proto: Lamp - entities: - - uid: 5844 + rot: 3.141592653589793 rad + pos: -142.5,0.5 + parent: 2 + - uid: 23294 components: - type: Transform - pos: 376.5,413.5 - parent: 1 -- proto: LampGold - entities: - - uid: 5966 + rot: -1.5707963267948966 rad + pos: -74.5,-60.5 + parent: 2 + - uid: 23331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-17.5 + parent: 2 + - uid: 23375 components: - type: Transform - pos: 425.5,353.5 - parent: 1 - - uid: 5967 + pos: -78.5,-9.5 + parent: 2 + - uid: 23382 components: - type: Transform - pos: 422.5,354.5 - parent: 1 - - uid: 5968 + pos: -84.5,8.5 + parent: 2 + - uid: 23384 components: - type: Transform - pos: 418.5,356.5 - parent: 1 - - uid: 21677 + pos: -80.5,3.5 + parent: 2 + - uid: 23385 components: - type: Transform - pos: 6.5934343,24.65432 - parent: 5072 - - uid: 21686 + rot: 1.5707963267948966 rad + pos: -114.5,-72.5 + parent: 2 + - uid: 23390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.852048,19.178608 - parent: 5072 - - uid: 21693 + pos: -121.5,-78.5 + parent: 2 + - uid: 23420 components: - type: Transform - pos: 10.372139,23.658413 - parent: 5072 -- proto: LampInterrogator - entities: - - uid: 6148 + pos: -117.5,24.5 + parent: 2 + - uid: 23421 components: - type: Transform - pos: 415.5,404.5 - parent: 1 -- proto: LandMineExplosive - entities: - - uid: 5153 + pos: -121.5,24.5 + parent: 2 + - uid: 23463 components: - type: Transform - pos: 508.5,380.5 - parent: 1 - - uid: 18196 + rot: -1.5707963267948966 rad + pos: -73.5,-60.5 + parent: 2 + - uid: 23501 components: - type: Transform - pos: 418.5,414.5 - parent: 1 -- proto: LandMineModular - entities: - - uid: 18408 + pos: -125.5,-88.5 + parent: 2 + - uid: 23503 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 355.5,419.5 - parent: 1 -- proto: LargeBeaker - entities: - - uid: 5477 + rot: -1.5707963267948966 rad + pos: -95.5,31.5 + parent: 2 + - uid: 23509 components: - type: Transform - pos: 411.5,420.5 - parent: 1 - - uid: 6171 + rot: -1.5707963267948966 rad + pos: -93.5,31.5 + parent: 2 + - uid: 23646 components: - type: Transform - pos: 450.5,419.5 - parent: 1 -- proto: LauncherCreamPie - entities: - - uid: 5543 + rot: 3.141592653589793 rad + pos: -69.5,-17.5 + parent: 2 + - uid: 23663 components: - type: Transform - pos: 393.5,412.5 - parent: 1 -- proto: LawyerIDCard - entities: - - uid: 20712 + rot: -1.5707963267948966 rad + pos: -73.5,-59.5 + parent: 2 + - uid: 23808 components: - type: Transform - pos: 3.5,2.5 - parent: 20527 -- proto: LGBTQFlag - entities: - - uid: 18580 + pos: -123.5,-89.5 + parent: 2 + - uid: 23811 components: - type: Transform - pos: 355.5,408.5 - parent: 1 - - uid: 22126 + pos: -115.5,-88.5 + parent: 2 + - uid: 23825 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,418.5 - parent: 1 -- proto: LidSalami - entities: - - uid: 21911 + pos: -115.5,-74.5 + parent: 2 + - uid: 23828 components: - type: Transform - pos: -2.4760625,33.567844 - parent: 5072 -- proto: Lighter - entities: - - uid: 5849 + rot: -1.5707963267948966 rad + pos: -125.5,-80.5 + parent: 2 + - uid: 23832 components: - type: Transform - pos: 377.5,406.5 - parent: 1 -- proto: LightPostSmall - entities: - - uid: 17311 + rot: 1.5707963267948966 rad + pos: -114.5,-73.5 + parent: 2 + - uid: 23841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,379.5 - parent: 1 - - uid: 17312 + rot: -1.5707963267948966 rad + pos: -116.5,-88.5 + parent: 2 + - uid: 23843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,375.5 - parent: 1 -- proto: LightReplacer - entities: - - uid: 16247 + rot: -1.5707963267948966 rad + pos: -115.5,-87.5 + parent: 2 + - uid: 23846 components: - type: Transform - pos: 339.5,406.5 - parent: 1 -- proto: LiveLetLiveCircuitBoard - entities: - - uid: 6654 + rot: -1.5707963267948966 rad + pos: -125.5,-82.5 + parent: 2 + - uid: 23847 components: - type: Transform - pos: 302.5,407.5 - parent: 1 -- proto: LockableButtonArmory - entities: - - uid: 17472 + rot: 1.5707963267948966 rad + pos: -125.5,-74.5 + parent: 2 + - uid: 23873 components: - - type: MetaData - desc: Переключает свет допросной комнаты - name: переключатель - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,405.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 5593: - - Pressed: Toggle -- proto: LockableButtonChiefMedicalOfficer - entities: - - uid: 5484 + pos: -91.5,26.5 + parent: 2 + - uid: 23876 components: - - type: MetaData - desc: Переключает ставни спальни ГВ - name: переключатель - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,414.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 5503: - - Pressed: Toggle - 5504: - - Pressed: Toggle -- proto: LockableButtonHeadOfSecurity - entities: - - uid: 17524 + rot: 1.5707963267948966 rad + pos: -125.5,-70.5 + parent: 2 + - uid: 23890 components: - - type: MetaData - desc: Переключает ставни комнаты ГСБ - name: переключатель - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,389.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 21193: - - Pressed: Toggle - 17442: - - Pressed: Toggle -- proto: LockableButtonLawyer - entities: - - uid: 20713 + rot: 3.141592653589793 rad + pos: -102.5,25.5 + parent: 2 + - uid: 23939 components: - - type: MetaData - desc: Переключает гермозатворы кабины пилота. - type: Transform rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 20527 - - type: DeviceLinkSource - linkedPorts: - 20554: - - Pressed: Toggle - 20555: - - Pressed: Toggle - 20553: - - Pressed: Toggle - 20552: - - Pressed: Toggle - 20546: - - Pressed: Toggle - 20556: - - Pressed: Toggle - - uid: 20714 + pos: -78.5,-34.5 + parent: 2 + - uid: 23946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 20527 - - type: DeviceLinkSource - linkedPorts: - 20547: - - Pressed: Toggle - 20548: - - Pressed: Toggle - 20550: - - Pressed: Toggle - 20551: - - Pressed: Toggle - 20549: - - Pressed: Toggle - - uid: 22161 + pos: 2.5,-22.5 + parent: 2 + - uid: 24186 components: - - type: MetaData - desc: Переключает ставни кабинета АВД. - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,411.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 22153: - - Pressed: Toggle - 22152: - - Pressed: Toggle - 20087: - - Pressed: Toggle - 22155: - - Pressed: Toggle - 22154: - - Pressed: Toggle - 22159: - - Pressed: Toggle - 22158: - - Pressed: Toggle - 22157: - - Pressed: Toggle - 22156: - - Pressed: Toggle -- proto: LockerAtmosphericsFilledHardsuit - entities: - - uid: 6282 + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 24188 components: - type: Transform - pos: 332.5,414.5 - parent: 1 - - uid: 6283 + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 24190 components: - type: Transform - pos: 332.5,413.5 - parent: 1 - - uid: 20408 + rot: -1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 2 + - uid: 24191 components: - type: Transform - pos: -0.5,3.5 - parent: 20181 -- proto: LockerBooze - entities: - - uid: 15907 + rot: -1.5707963267948966 rad + pos: -3.5,-27.5 + parent: 2 + - uid: 24192 components: - type: Transform - pos: 334.5,451.5 - parent: 1 -- proto: LockerBoozeFilled - entities: - - uid: 4904 + rot: -1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 24193 components: - type: Transform - pos: 418.5,389.5 - parent: 1 -- proto: LockerBotanistFilled - entities: - - uid: 4940 + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 24195 components: - type: Transform - pos: 414.5,379.5 - parent: 1 - - uid: 4941 + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 24196 components: - type: Transform - pos: 414.5,378.5 - parent: 1 -- proto: LockerBrigmedicFilled - entities: - - uid: 6216 + rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 24198 components: - type: Transform - pos: 426.5,395.5 - parent: 1 -- proto: LockerCaptain - entities: - - uid: 21699 + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 24199 components: - type: Transform - pos: 10.5,26.5 - parent: 5072 -- proto: LockerCaptainFilled - entities: - - uid: 5754 + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 24200 components: - type: Transform - pos: 363.5,414.5 - parent: 1 -- proto: LockerChemistryFilled - entities: - - uid: 5351 + rot: -1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 24201 components: - type: Transform - pos: 409.5,407.5 - parent: 1 -- proto: LockerChiefEngineerFilledHardsuit - entities: - - uid: 4309 + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - uid: 24203 components: - type: Transform - pos: 351.5,416.5 - parent: 1 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 5485 + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 24204 components: - type: Transform - pos: 392.5,414.5 - parent: 1 -- proto: LockerClown - entities: - - uid: 3632 + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 24206 components: - type: Transform - pos: 389.5,412.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2897 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetective - entities: - - uid: 18008 + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 24207 components: - - type: MetaData - name: шкаф - type: Transform - pos: 410.5,370.5 - parent: 1 - - type: AccessReader - access: [] - - uid: 18009 + rot: -1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 24208 components: - - type: MetaData - name: шкаф - type: Transform - pos: 410.5,367.5 - parent: 1 - - type: AccessReader - access: [] - - uid: 18010 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 24210 components: - - type: MetaData - name: шкаф - type: Transform - pos: 417.5,370.5 - parent: 1 - - type: AccessReader - access: [] - - uid: 18011 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 24211 components: - - type: MetaData - name: шкаф - type: Transform - pos: 417.5,367.5 - parent: 1 - - type: AccessReader - access: [] -- proto: LockerDetectiveFilled - entities: - - uid: 5154 + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 24213 components: - type: Transform - pos: 416.5,411.5 - parent: 1 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 6396 + pos: -32.5,-78.5 + parent: 2 + - uid: 24257 components: - type: Transform - pos: 338.5,410.5 - parent: 1 - - uid: 10282 + rot: 1.5707963267948966 rad + pos: -116.5,-73.5 + parent: 2 + - uid: 24275 components: - type: Transform - pos: 368.5,417.5 - parent: 1 -- proto: LockerEngineerFilledHardsuit - entities: - - uid: 4299 + rot: 3.141592653589793 rad + pos: -78.5,-24.5 + parent: 2 + - uid: 24279 components: - type: Transform - pos: 342.5,408.5 - parent: 1 - - uid: 4301 + rot: -1.5707963267948966 rad + pos: -125.5,-84.5 + parent: 2 + - uid: 24289 components: - type: Transform - pos: 341.5,408.5 - parent: 1 - - uid: 4302 + rot: -1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 2 + - uid: 24501 components: - type: Transform - pos: 339.5,408.5 - parent: 1 - - uid: 4303 + pos: -41.5,-9.5 + parent: 2 + - uid: 24502 components: - type: Transform - pos: 338.5,408.5 - parent: 1 - - uid: 4306 + pos: -38.5,-0.5 + parent: 2 + - uid: 24509 components: - type: Transform - pos: 336.5,408.5 - parent: 1 - - uid: 4307 + pos: -38.5,1.5 + parent: 2 + - uid: 24515 components: - type: Transform - pos: 335.5,408.5 - parent: 1 -- proto: LockerEvidence - entities: - - uid: 5018 + pos: -39.5,1.5 + parent: 2 + - uid: 24573 components: - type: Transform - pos: 428.5,405.5 - parent: 1 - - uid: 5033 + rot: 1.5707963267948966 rad + pos: -124.5,-73.5 + parent: 2 + - uid: 24613 components: - type: Transform - pos: 428.5,393.5 - parent: 1 - - uid: 5036 + rot: -1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 24818 components: - type: Transform - pos: 428.5,402.5 - parent: 1 - - uid: 5037 + rot: 1.5707963267948966 rad + pos: -124.5,-71.5 + parent: 2 + - uid: 24838 components: - type: Transform - pos: 428.5,398.5 - parent: 1 - - uid: 5038 + rot: 1.5707963267948966 rad + pos: -115.5,-72.5 + parent: 2 + - uid: 24839 components: - type: Transform - pos: 428.5,394.5 - parent: 1 - - uid: 5983 + rot: 1.5707963267948966 rad + pos: -115.5,-73.5 + parent: 2 + - uid: 24840 components: - type: Transform - pos: 328.5,405.5 - parent: 1 - - uid: 14251 + rot: -1.5707963267948966 rad + pos: -125.5,-79.5 + parent: 2 + - uid: 24841 components: - type: Transform - pos: 428.5,397.5 - parent: 1 - - uid: 14252 + rot: -1.5707963267948966 rad + pos: -115.5,-85.5 + parent: 2 + - uid: 24842 components: - type: Transform - pos: 428.5,401.5 - parent: 1 -- proto: LockerFreezer - entities: - - uid: 4937 + rot: -1.5707963267948966 rad + pos: -115.5,-86.5 + parent: 2 + - uid: 24843 components: - type: Transform - pos: 409.5,385.5 - parent: 1 - - uid: 6164 + pos: -117.5,-88.5 + parent: 2 + - uid: 24845 components: - type: Transform - pos: 447.5,421.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15145 - - 15850 - - 16165 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezerBase - entities: - - uid: 18421 + pos: -117.5,-89.5 + parent: 2 + - uid: 24849 components: - type: Transform - pos: 352.5,437.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18422 - - 18423 - - 18424 - - 18425 - - 18426 - - 18427 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezerVaultFilled - entities: - - uid: 4290 + rot: 1.5707963267948966 rad + pos: -125.5,-72.5 + parent: 2 + - uid: 24851 components: - type: Transform - pos: 328.5,398.5 - parent: 1 -- proto: LockerHeadOfPersonnel - entities: - - uid: 5574 + rot: 1.5707963267948966 rad + pos: -126.5,-73.5 + parent: 2 + - uid: 24853 components: - type: Transform - pos: 369.5,395.5 - parent: 1 - - uid: 21687 + rot: 1.5707963267948966 rad + pos: -126.5,-71.5 + parent: 2 + - uid: 24854 components: - type: Transform - pos: 9.5,21.5 - parent: 5072 -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 5573 + rot: 1.5707963267948966 rad + pos: -115.5,-70.5 + parent: 2 + - uid: 24855 components: - type: Transform - pos: 372.5,391.5 - parent: 1 -- proto: LockerHeadOfSecurityFilledHardsuit - entities: - - uid: 5006 + rot: 1.5707963267948966 rad + pos: -126.5,-72.5 + parent: 2 + - uid: 24856 components: - type: Transform - pos: 429.5,389.5 - parent: 1 -- proto: LockerMedicalFilled - entities: - - uid: 5328 + rot: -1.5707963267948966 rad + pos: -115.5,-84.5 + parent: 2 + - uid: 24857 components: - type: Transform - pos: 399.5,407.5 - parent: 1 - - uid: 5330 + rot: -1.5707963267948966 rad + pos: -115.5,-83.5 + parent: 2 + - uid: 24858 components: - type: Transform - pos: 399.5,408.5 - parent: 1 - - uid: 5331 + rot: -1.5707963267948966 rad + pos: -115.5,-82.5 + parent: 2 + - uid: 24859 components: - type: Transform - pos: 399.5,406.5 - parent: 1 - - uid: 5333 + rot: -1.5707963267948966 rad + pos: -115.5,-81.5 + parent: 2 + - uid: 24860 components: - type: Transform - pos: 401.5,407.5 - parent: 1 - - uid: 5334 + rot: -1.5707963267948966 rad + pos: -115.5,-79.5 + parent: 2 + - uid: 24861 components: - type: Transform - pos: 401.5,406.5 - parent: 1 -- proto: LockerMedicineFilled - entities: - - uid: 5481 + rot: -1.5707963267948966 rad + pos: -115.5,-78.5 + parent: 2 + - uid: 24862 components: - type: Transform - pos: 405.5,418.5 - parent: 1 - - uid: 6217 + rot: -1.5707963267948966 rad + pos: -115.5,-77.5 + parent: 2 + - uid: 24863 components: - type: Transform - pos: 426.5,393.5 - parent: 1 - - uid: 6615 + rot: -1.5707963267948966 rad + pos: -115.5,-76.5 + parent: 2 + - uid: 24866 components: - type: Transform - pos: 306.5,416.5 - parent: 1 -- proto: LockerMime - entities: - - uid: 1369 + rot: -1.5707963267948966 rad + pos: -115.5,-80.5 + parent: 2 + - uid: 24874 components: - type: Transform - pos: 395.5,410.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 4079 - - 4530 - - 5059 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerParamedicFilled - entities: - - uid: 5411 + rot: 1.5707963267948966 rad + pos: -125.5,-71.5 + parent: 2 + - uid: 24875 components: - type: Transform - pos: 409.5,420.5 - parent: 1 - - uid: 5412 + rot: 1.5707963267948966 rad + pos: -124.5,-72.5 + parent: 2 + - uid: 24876 components: - type: Transform - pos: 408.5,420.5 - parent: 1 -- proto: LockerQuarterMasterFilled - entities: - - uid: 5655 + rot: 1.5707963267948966 rad + pos: -125.5,-73.5 + parent: 2 + - uid: 24877 components: - type: Transform - pos: 352.5,380.5 - parent: 1 -- proto: LockerResearchDirectorFilledHardsuit - entities: - - uid: 7492 + rot: 1.5707963267948966 rad + pos: -116.5,-71.5 + parent: 2 + - uid: 24878 components: - type: Transform - pos: 350.5,383.5 - parent: 1 -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 3721 + rot: 1.5707963267948966 rad + pos: -116.5,-72.5 + parent: 2 + - uid: 24909 components: - type: Transform - pos: 360.5,376.5 - parent: 1 - - uid: 5703 + pos: -118.5,-64.5 + parent: 2 + - uid: 25148 components: - type: Transform - pos: 360.5,377.5 - parent: 1 -- proto: LockerScienceFilled - entities: - - uid: 3199 + rot: 1.5707963267948966 rad + pos: -129.5,-65.5 + parent: 2 + - uid: 25159 components: - type: Transform - pos: 356.5,388.5 - parent: 1 - - uid: 7476 + pos: -116.5,-65.5 + parent: 2 + - uid: 25160 components: - type: Transform - pos: 352.5,387.5 - parent: 1 - - uid: 7477 + pos: -122.5,-64.5 + parent: 2 + - uid: 25244 components: - type: Transform - pos: 350.5,387.5 - parent: 1 - - uid: 7478 + pos: -124.5,-65.5 + parent: 2 + - uid: 25284 components: - type: Transform - pos: 351.5,387.5 - parent: 1 - - uid: 7480 + rot: 1.5707963267948966 rad + pos: -128.5,-87.5 + parent: 2 + - uid: 25285 components: - type: Transform - pos: 356.5,387.5 - parent: 1 - - uid: 7482 + rot: 1.5707963267948966 rad + pos: -128.5,-88.5 + parent: 2 + - uid: 25286 components: - type: Transform - pos: 354.5,387.5 - parent: 1 -- proto: LockerSecurity - entities: - - uid: 18381 + rot: 1.5707963267948966 rad + pos: -128.5,-90.5 + parent: 2 + - uid: 25288 components: - type: Transform - pos: 429.5,385.5 - parent: 1 -- proto: LockerSecurityFilled - entities: - - uid: 4997 + rot: 1.5707963267948966 rad + pos: -128.5,-83.5 + parent: 2 + - uid: 25289 components: - type: Transform - pos: 420.5,391.5 - parent: 1 - - uid: 4998 + rot: 1.5707963267948966 rad + pos: -128.5,-67.5 + parent: 2 + - uid: 25290 components: - type: Transform - pos: 419.5,391.5 - parent: 1 - - uid: 4999 + rot: 1.5707963267948966 rad + pos: -128.5,-68.5 + parent: 2 + - uid: 25292 components: - type: Transform - pos: 418.5,391.5 - parent: 1 - - uid: 5000 + rot: 1.5707963267948966 rad + pos: -128.5,-71.5 + parent: 2 + - uid: 25293 components: - type: Transform - pos: 422.5,391.5 - parent: 1 - - uid: 5001 + rot: 1.5707963267948966 rad + pos: -128.5,-72.5 + parent: 2 + - uid: 25294 components: - type: Transform - pos: 424.5,391.5 - parent: 1 - - uid: 5238 + rot: 1.5707963267948966 rad + pos: -128.5,-73.5 + parent: 2 + - uid: 25295 components: - type: Transform - pos: 443.5,398.5 - parent: 1 - - uid: 5239 + rot: 1.5707963267948966 rad + pos: -128.5,-74.5 + parent: 2 + - uid: 25297 components: - type: Transform - pos: 443.5,399.5 - parent: 1 - - uid: 5972 + rot: 1.5707963267948966 rad + pos: -128.5,-70.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -128.5,-78.5 + parent: 2 + - uid: 25299 components: - type: Transform - pos: 327.5,402.5 - parent: 1 - - uid: 5998 + rot: 1.5707963267948966 rad + pos: -128.5,-76.5 + parent: 2 + - uid: 25300 components: - type: Transform - pos: 356.5,391.5 - parent: 1 - - uid: 16162 + rot: 1.5707963267948966 rad + pos: -128.5,-79.5 + parent: 2 + - uid: 25301 components: - type: Transform - pos: 1.5,3.5 - parent: 16114 - - 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: - - 16163 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSteel - entities: - - uid: 654 + rot: 1.5707963267948966 rad + pos: -128.5,-80.5 + parent: 2 + - uid: 25302 components: - type: Transform - pos: 389.5,408.5 - parent: 1 - - type: AccessReader - access: - - - Service - - 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: - - 16331 - - 16374 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWardenFilled - entities: - - uid: 5097 + rot: 1.5707963267948966 rad + pos: -128.5,-77.5 + parent: 2 + - uid: 25303 components: - type: Transform - pos: 423.5,411.5 - parent: 1 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 6394 + rot: 1.5707963267948966 rad + pos: -128.5,-81.5 + parent: 2 + - uid: 25304 components: - type: Transform - pos: 339.5,410.5 - parent: 1 -- proto: LootSpawnerArmoryArmorOnly - entities: - - uid: 16387 + rot: 1.5707963267948966 rad + pos: -138.5,-59.5 + parent: 2 + - uid: 25305 components: - type: Transform - pos: 423.5,414.5 - parent: 1 -- proto: LootSpawnerArmoryGunsOnly - entities: - - uid: 16388 + rot: 1.5707963267948966 rad + pos: -128.5,-85.5 + parent: 2 + - uid: 25306 components: - type: Transform - pos: 426.5,414.5 - parent: 1 -- proto: LuxuryPen - entities: - - uid: 5190 + rot: 1.5707963267948966 rad + pos: -128.5,-84.5 + parent: 2 + - uid: 25307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,412.5 - parent: 1 - - uid: 5191 + rot: 1.5707963267948966 rad + pos: -128.5,-86.5 + parent: 2 + - uid: 25308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,412.5 - parent: 1 - - uid: 18658 + pos: -112.5,-91.5 + parent: 2 + - uid: 25309 components: - type: Transform - pos: 326.5,437.5 - parent: 1 - - uid: 18659 + rot: 1.5707963267948966 rad + pos: -127.5,-91.5 + parent: 2 + - uid: 25310 components: - type: Transform - pos: 326.5,437.5 - parent: 1 - - uid: 18660 + rot: 1.5707963267948966 rad + pos: -126.5,-91.5 + parent: 2 + - uid: 25311 components: - type: Transform - pos: 326.5,437.5 - parent: 1 - - uid: 20058 + rot: 1.5707963267948966 rad + pos: -126.5,-92.5 + parent: 2 + - uid: 25313 components: - type: Transform - pos: 333.5,442.5 - parent: 1 - - uid: 20059 + rot: 1.5707963267948966 rad + pos: -124.5,-92.5 + parent: 2 + - uid: 25314 components: - type: Transform - pos: 333.5,442.5 - parent: 1 -- proto: Machete - entities: - - uid: 17502 + rot: 1.5707963267948966 rad + pos: -123.5,-92.5 + parent: 2 + - uid: 25315 components: - type: Transform - pos: 508.5,390.5 - parent: 1 -- proto: MachineAnomalyGenerator - entities: - - uid: 3152 + rot: 1.5707963267948966 rad + pos: -121.5,-92.5 + parent: 2 + - uid: 25316 components: - type: Transform - pos: 339.5,392.5 - parent: 1 -- proto: MachineAnomalyVessel - entities: - - uid: 7408 + rot: 1.5707963267948966 rad + pos: -120.5,-92.5 + parent: 2 + - uid: 25317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,391.5 - parent: 1 - - uid: 7409 + rot: 1.5707963267948966 rad + pos: -119.5,-92.5 + parent: 2 + - uid: 25318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,391.5 - parent: 1 -- proto: MachineAPE - entities: - - uid: 7406 + rot: 1.5707963267948966 rad + pos: -118.5,-92.5 + parent: 2 + - uid: 25319 components: - type: Transform - pos: 345.5,395.5 - parent: 1 - - uid: 7407 + rot: 1.5707963267948966 rad + pos: -117.5,-92.5 + parent: 2 + - uid: 25320 components: - type: Transform - pos: 344.5,395.5 - parent: 1 -- proto: MachineArtifactAnalyzer - entities: - - uid: 7456 + rot: 1.5707963267948966 rad + pos: -116.5,-92.5 + parent: 2 + - uid: 25321 components: - type: Transform - pos: 341.5,389.5 - parent: 1 -- proto: MachineCentrifuge - entities: - - uid: 5361 + rot: 1.5707963267948966 rad + pos: -122.5,-92.5 + parent: 2 + - uid: 25323 components: - type: Transform - pos: 407.5,408.5 - parent: 1 -- proto: MachineElectrolysisUnit - entities: - - uid: 5365 + rot: 1.5707963267948966 rad + pos: -114.5,-92.5 + parent: 2 + - uid: 25324 components: - type: Transform - pos: 407.5,410.5 - parent: 1 -- proto: MachineFrameDestroyed - entities: - - uid: 18397 + rot: 1.5707963267948966 rad + pos: -114.5,-91.5 + parent: 2 + - uid: 25325 components: - type: Transform - pos: 361.5,425.5 - parent: 1 - - uid: 18598 + rot: 1.5707963267948966 rad + pos: -113.5,-91.5 + parent: 2 + - uid: 25327 components: - type: Transform - pos: 350.5,434.5 - parent: 1 - - uid: 18599 + rot: 1.5707963267948966 rad + pos: -112.5,-90.5 + parent: 2 + - uid: 25329 components: - type: Transform - pos: 352.5,434.5 - parent: 1 - - uid: 21480 + rot: 1.5707963267948966 rad + pos: -112.5,-76.5 + parent: 2 + - uid: 25330 components: - type: Transform - pos: 10.5,21.5 - parent: 5072 -- proto: MaintenanceFluffSpawner - entities: - - uid: 5694 + rot: 1.5707963267948966 rad + pos: -112.5,-86.5 + parent: 2 + - uid: 25331 components: - type: Transform - pos: 367.5,388.5 - parent: 1 - - uid: 21741 + rot: 1.5707963267948966 rad + pos: -112.5,-79.5 + parent: 2 + - uid: 25332 components: - type: Transform - pos: -6.5,29.5 - parent: 5072 -- proto: MaintenancePlantSpawner - entities: - - uid: 5692 + rot: 1.5707963267948966 rad + pos: -112.5,-77.5 + parent: 2 + - uid: 25333 components: - type: Transform - pos: 370.5,384.5 - parent: 1 - - uid: 5693 + rot: 1.5707963267948966 rad + pos: -112.5,-78.5 + parent: 2 + - uid: 25335 components: - type: Transform - pos: 366.5,378.5 - parent: 1 - - uid: 19972 + rot: 1.5707963267948966 rad + pos: -112.5,-74.5 + parent: 2 + - uid: 25336 components: - type: Transform - pos: 345.5,383.5 - parent: 1 - - uid: 19973 + rot: 1.5707963267948966 rad + pos: -112.5,-73.5 + parent: 2 + - uid: 25337 components: - type: Transform - pos: 339.5,383.5 - parent: 1 - - uid: 19974 + rot: 1.5707963267948966 rad + pos: -112.5,-72.5 + parent: 2 + - uid: 25338 components: - type: Transform - pos: 334.5,385.5 - parent: 1 - - uid: 19975 + rot: 1.5707963267948966 rad + pos: -112.5,-71.5 + parent: 2 + - uid: 25339 components: - type: Transform - pos: 335.5,390.5 - parent: 1 - - uid: 19976 + rot: 1.5707963267948966 rad + pos: -112.5,-70.5 + parent: 2 + - uid: 25341 components: - type: Transform - pos: 331.5,392.5 - parent: 1 - - uid: 19977 + rot: 1.5707963267948966 rad + pos: -112.5,-88.5 + parent: 2 + - uid: 25342 components: - type: Transform - pos: 335.5,393.5 - parent: 1 - - uid: 19978 + rot: 1.5707963267948966 rad + pos: -112.5,-87.5 + parent: 2 + - uid: 25343 components: - type: Transform - pos: 339.5,437.5 - parent: 1 - - uid: 19979 + rot: 1.5707963267948966 rad + pos: -112.5,-84.5 + parent: 2 + - uid: 25344 components: - type: Transform - pos: 341.5,435.5 - parent: 1 - - uid: 19980 + rot: 1.5707963267948966 rad + pos: -112.5,-85.5 + parent: 2 + - uid: 25345 components: - type: Transform - pos: 344.5,437.5 - parent: 1 - - uid: 19981 + rot: 1.5707963267948966 rad + pos: -112.5,-83.5 + parent: 2 + - uid: 25346 components: - type: Transform - pos: 346.5,438.5 - parent: 1 - - uid: 19982 + rot: 1.5707963267948966 rad + pos: -137.5,-59.5 + parent: 2 + - uid: 25347 components: - type: Transform - pos: 347.5,434.5 - parent: 1 - - uid: 19983 + rot: 1.5707963267948966 rad + pos: -112.5,-81.5 + parent: 2 + - uid: 25348 components: - type: Transform - pos: 353.5,434.5 - parent: 1 - - uid: 19984 + rot: 1.5707963267948966 rad + pos: -112.5,-80.5 + parent: 2 + - uid: 25351 components: - type: Transform - pos: 355.5,435.5 - parent: 1 - - uid: 19985 + rot: 1.5707963267948966 rad + pos: -128.5,-66.5 + parent: 2 + - uid: 25352 components: - type: Transform - pos: 355.5,429.5 - parent: 1 - - uid: 19986 + rot: 1.5707963267948966 rad + pos: -130.5,-64.5 + parent: 2 + - uid: 25353 components: - type: Transform - pos: 358.5,427.5 - parent: 1 - - uid: 19987 + rot: 1.5707963267948966 rad + pos: -131.5,-63.5 + parent: 2 + - uid: 25354 components: - type: Transform - pos: 355.5,425.5 - parent: 1 - - uid: 19988 + rot: 1.5707963267948966 rad + pos: -132.5,-62.5 + parent: 2 + - uid: 25355 components: - type: Transform - pos: 356.5,420.5 - parent: 1 - - uid: 19989 + rot: 1.5707963267948966 rad + pos: -133.5,-61.5 + parent: 2 + - uid: 25356 components: - type: Transform - pos: 361.5,417.5 - parent: 1 - - uid: 19990 + rot: 1.5707963267948966 rad + pos: -134.5,-60.5 + parent: 2 + - uid: 25357 components: - type: Transform - pos: 353.5,417.5 - parent: 1 - - uid: 19991 + rot: 1.5707963267948966 rad + pos: -136.5,-59.5 + parent: 2 + - uid: 25358 components: - type: Transform - pos: 353.5,413.5 - parent: 1 - - uid: 19992 + rot: 1.5707963267948966 rad + pos: -139.5,-59.5 + parent: 2 + - uid: 25359 components: - type: Transform - pos: 356.5,409.5 - parent: 1 - - uid: 19993 + rot: 1.5707963267948966 rad + pos: -140.5,-59.5 + parent: 2 + - uid: 25377 components: - type: Transform - pos: 359.5,410.5 - parent: 1 - - uid: 19994 + pos: -128.5,-91.5 + parent: 2 + - uid: 25399 components: - type: Transform - pos: 361.5,409.5 - parent: 1 - - uid: 19995 + rot: 1.5707963267948966 rad + pos: -115.5,-54.5 + parent: 2 + - uid: 25400 components: - type: Transform - pos: 353.5,407.5 - parent: 1 - - uid: 19996 + rot: 1.5707963267948966 rad + pos: -114.5,-54.5 + parent: 2 + - uid: 25401 components: - type: Transform - pos: 359.5,407.5 - parent: 1 - - uid: 19997 + rot: 1.5707963267948966 rad + pos: -113.5,-54.5 + parent: 2 + - uid: 25535 components: - type: Transform - pos: 392.5,421.5 - parent: 1 - - uid: 19998 + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - uid: 25536 components: - type: Transform - pos: 402.5,424.5 - parent: 1 - - uid: 19999 + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - uid: 25537 components: - type: Transform - pos: 411.5,425.5 - parent: 1 - - uid: 20000 + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - uid: 25614 components: - type: Transform - pos: 417.5,425.5 - parent: 1 - - uid: 20001 + pos: -9.5,24.5 + parent: 2 + - uid: 25667 components: - type: Transform - pos: 422.5,422.5 - parent: 1 - - uid: 20002 + rot: -1.5707963267948966 rad + pos: -90.5,-48.5 + parent: 2 + - uid: 25712 components: - type: Transform - pos: 426.5,419.5 - parent: 1 - - uid: 20003 + pos: -11.5,24.5 + parent: 2 + - uid: 25713 components: - type: Transform - pos: 433.5,415.5 - parent: 1 - - uid: 20004 + pos: -12.5,24.5 + parent: 2 + - uid: 25715 components: - type: Transform - pos: 433.5,410.5 - parent: 1 - - uid: 20005 + pos: -14.5,24.5 + parent: 2 + - uid: 25716 components: - type: Transform - pos: 434.5,403.5 - parent: 1 - - uid: 20006 + pos: -15.5,24.5 + parent: 2 + - uid: 25717 components: - type: Transform - pos: 435.5,395.5 - parent: 1 - - uid: 20007 + pos: -16.5,24.5 + parent: 2 + - uid: 25718 components: - type: Transform - pos: 435.5,389.5 - parent: 1 - - uid: 20008 + pos: -17.5,24.5 + parent: 2 + - uid: 25720 components: - type: Transform - pos: 435.5,384.5 - parent: 1 - - uid: 20009 + pos: -23.5,-91.5 + parent: 2 + - uid: 25721 components: - type: Transform - pos: 430.5,385.5 - parent: 1 - - uid: 20010 + pos: -23.5,-73.5 + parent: 2 + - uid: 25723 components: - type: Transform - pos: 424.5,384.5 - parent: 1 - - uid: 20011 + pos: -23.5,-75.5 + parent: 2 + - uid: 25724 components: - type: Transform - pos: 418.5,383.5 - parent: 1 - - uid: 20012 + pos: -23.5,-78.5 + parent: 2 + - uid: 25725 components: - type: Transform - pos: 421.5,375.5 - parent: 1 - - uid: 20013 + pos: -23.5,-77.5 + parent: 2 + - uid: 25727 components: - type: Transform - pos: 422.5,370.5 - parent: 1 - - uid: 20014 + pos: -23.5,-80.5 + parent: 2 + - uid: 25728 components: - type: Transform - pos: 421.5,365.5 - parent: 1 - - uid: 20015 + pos: -23.5,-81.5 + parent: 2 + - uid: 25730 components: - type: Transform - pos: 410.5,365.5 - parent: 1 - - uid: 20016 + pos: -23.5,-83.5 + parent: 2 + - uid: 25731 components: - type: Transform - pos: 404.5,364.5 - parent: 1 - - uid: 20807 + pos: -23.5,-76.5 + parent: 2 + - uid: 25732 components: - type: Transform - pos: 373.5,420.5 - parent: 1 - - uid: 20809 + pos: -23.5,-84.5 + parent: 2 + - uid: 25734 components: - type: Transform - pos: 381.5,417.5 - parent: 1 - - uid: 20810 + pos: -23.5,-87.5 + parent: 2 + - uid: 25735 components: - type: Transform - pos: 338.5,441.5 - parent: 1 - - uid: 20811 + pos: -23.5,-86.5 + parent: 2 + - uid: 25736 components: - type: Transform - pos: 424.5,402.5 - parent: 1 - - uid: 20812 + pos: -23.5,-88.5 + parent: 2 + - uid: 25738 components: - type: Transform - pos: 404.5,390.5 - parent: 1 -- proto: MaintenanceToolSpawner - entities: - - uid: 3153 + pos: -23.5,-90.5 + parent: 2 + - uid: 25739 components: - type: Transform - pos: 333.5,440.5 - parent: 1 - - uid: 6619 + pos: -23.5,-92.5 + parent: 2 + - uid: 25740 components: - type: Transform - pos: 312.5,412.5 - parent: 1 - - uid: 21752 + pos: -12.5,-92.5 + parent: 2 + - uid: 25741 components: - type: Transform - pos: -5.5,29.5 - parent: 5072 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 21729 + pos: -17.5,-92.5 + parent: 2 + - uid: 25742 components: - type: Transform - pos: -7.5,28.5 - parent: 5072 -- proto: MaterialBones1 - entities: - - uid: 21001 + pos: -10.5,-92.5 + parent: 2 + - uid: 25744 components: - type: Transform - pos: 369.5,414.5 - parent: 1 -- proto: MaterialCloth - entities: - - uid: 5810 + pos: -7.5,-92.5 + parent: 2 + - uid: 25745 components: - type: Transform - pos: 369.5,397.5 - parent: 1 - - uid: 5880 + pos: -11.5,-92.5 + parent: 2 + - uid: 25746 components: - type: Transform - pos: 314.5,384.5 - parent: 1 -- proto: MaterialCloth1 - entities: - - uid: 5251 + pos: -8.5,-92.5 + parent: 2 + - uid: 25747 components: - type: Transform - pos: 455.5,415.5 - parent: 1 - - uid: 5252 + pos: -22.5,-92.5 + parent: 2 + - uid: 25748 components: - type: Transform - pos: 452.5,414.5 - parent: 1 -- proto: MaterialCotton - entities: - - uid: 18423 + pos: -21.5,-92.5 + parent: 2 + - uid: 25749 components: - type: Transform - parent: 18421 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaterialDurathread - entities: - - uid: 5811 + pos: -20.5,-92.5 + parent: 2 + - uid: 25751 components: - type: Transform - pos: 369.5,397.5 - parent: 1 - - uid: 21690 + pos: -18.5,-92.5 + parent: 2 + - uid: 25752 components: - type: Transform - pos: 7.2571726,18.545927 - parent: 5072 -- proto: MaterialWoodPlank1 - entities: - - uid: 19070 + pos: -16.5,-92.5 + parent: 2 + - uid: 25753 components: - type: Transform - pos: 338.5,444.5 - parent: 1 - - uid: 19082 + pos: -15.5,-92.5 + parent: 2 + - uid: 25754 components: - type: Transform - pos: 337.5,446.5 - parent: 1 - - uid: 19083 + pos: -14.5,-92.5 + parent: 2 + - uid: 25756 components: - type: Transform - pos: 334.5,445.5 - parent: 1 - - uid: 19084 + pos: -7.5,-91.5 + parent: 2 + - uid: 25758 components: - type: Transform - pos: 334.5,449.5 - parent: 1 - - uid: 20078 + pos: -7.5,-89.5 + parent: 2 + - uid: 25759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,442.5 - parent: 1 - - uid: 20079 + pos: -7.5,-88.5 + parent: 2 + - uid: 25761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,439.5 - parent: 1 - - uid: 20080 + pos: -7.5,-85.5 + parent: 2 + - uid: 25763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,440.5 - parent: 1 -- proto: MaterialWoodPlank10 - entities: - - uid: 2756 + pos: -7.5,-83.5 + parent: 2 + - uid: 25764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.59753,422.7168 - parent: 1 - - uid: 3520 + pos: -7.5,-82.5 + parent: 2 + - uid: 25765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.8092,422.7019 - parent: 1 - - uid: 19085 + pos: -7.5,-81.5 + parent: 2 + - uid: 25767 components: - type: Transform - pos: 338.5,447.5 - parent: 1 - - uid: 19088 + pos: -7.5,-79.5 + parent: 2 + - uid: 25768 components: - type: Transform - pos: 341.5,444.5 - parent: 1 -- proto: MatterBinStockPart - entities: - - uid: 16355 + pos: -7.5,-87.5 + parent: 2 + - uid: 25769 components: - type: Transform - pos: 354.5,400.5 - parent: 1 - - uid: 16356 + pos: -7.5,-77.5 + parent: 2 + - uid: 25771 components: - type: Transform - pos: 354.5,400.5 - parent: 1 - - uid: 16357 + pos: -7.5,-78.5 + parent: 2 + - uid: 25772 components: - type: Transform - pos: 354.5,400.5 - parent: 1 -- proto: Mattress - entities: - - uid: 604 + pos: -7.5,-73.5 + parent: 2 + - uid: 25774 components: - type: Transform - pos: 453.5,416.5 - parent: 1 - - uid: 5049 + pos: -7.5,-71.5 + parent: 2 + - uid: 25775 components: - type: Transform - pos: 430.5,399.5 - parent: 1 - - uid: 5050 + pos: -7.5,-70.5 + parent: 2 + - uid: 25776 components: - type: Transform - pos: 430.5,395.5 - parent: 1 - - uid: 5051 + pos: -7.5,-69.5 + parent: 2 + - uid: 25777 components: - type: Transform - pos: 430.5,393.5 - parent: 1 - - uid: 5487 + pos: -7.5,-75.5 + parent: 2 + - uid: 25778 components: - type: Transform - pos: 393.5,414.5 - parent: 1 - - uid: 10269 + pos: -7.5,-74.5 + parent: 2 + - uid: 25792 components: - type: Transform - pos: 369.5,413.5 - parent: 1 - - uid: 16178 + rot: 1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - uid: 25793 components: - type: Transform - pos: -1.5,1.5 - parent: 16114 - - uid: 18417 + rot: 1.5707963267948966 rad + pos: -7.5,-65.5 + parent: 2 + - uid: 25794 components: - type: Transform - pos: 355.5,438.5 - parent: 1 - - uid: 21960 + rot: 1.5707963267948966 rad + pos: -7.5,-64.5 + parent: 2 + - uid: 25795 components: - type: Transform - pos: 441.5,405.5 - parent: 1 -- proto: MedalCase - entities: - - uid: 3202 + rot: 1.5707963267948966 rad + pos: -7.5,-63.5 + parent: 2 + - uid: 25796 components: - type: Transform - pos: 327.5,398.5 - parent: 1 -- proto: MedicalBed - entities: - - uid: 5374 + rot: 1.5707963267948966 rad + pos: -8.5,-63.5 + parent: 2 + - uid: 25797 components: - type: Transform - pos: 409.5,415.5 - parent: 1 - - uid: 5376 + rot: 1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 2 + - uid: 25799 components: - type: Transform - pos: 409.5,416.5 - parent: 1 - - uid: 5388 + rot: 1.5707963267948966 rad + pos: -11.5,-63.5 + parent: 2 + - uid: 25908 components: - type: Transform - pos: 406.5,415.5 - parent: 1 - - uid: 5389 + pos: -75.5,-40.5 + parent: 2 + - uid: 25910 components: - type: Transform - pos: 406.5,414.5 - parent: 1 - - uid: 5390 + pos: -75.5,-41.5 + parent: 2 + - uid: 26062 components: - type: Transform - pos: 406.5,413.5 - parent: 1 - - uid: 5454 + pos: -120.5,23.5 + parent: 2 + - uid: 26063 components: - type: Transform - pos: 415.5,422.5 - parent: 1 - - uid: 5455 + pos: -118.5,23.5 + parent: 2 + - uid: 26107 components: - type: Transform - pos: 415.5,421.5 - parent: 1 - - uid: 5458 + rot: -1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - uid: 26108 components: - type: Transform - pos: 417.5,422.5 - parent: 1 - - uid: 5459 + rot: -1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 2260 components: - type: Transform - pos: 417.5,421.5 - parent: 1 - - uid: 6210 + pos: -157.5,-22.5 + parent: 2 + - uid: 7460 components: - type: Transform - pos: 426.5,399.5 - parent: 1 - - uid: 18418 + rot: -1.5707963267948966 rad + pos: -146.5,27.5 + parent: 2 + - uid: 7463 components: - type: Transform - pos: 355.5,437.5 - parent: 1 -- proto: MedicalTechFab - entities: - - uid: 5920 + pos: -141.5,27.5 + parent: 2 + - uid: 9044 components: - type: Transform - pos: 399.5,409.5 - parent: 1 -- proto: MedkitBruteFilled - entities: - - uid: 5341 + pos: -88.5,38.5 + parent: 2 + - uid: 9048 components: - type: Transform - pos: 399.5,410.5 - parent: 1 - - uid: 5444 + pos: -91.5,38.5 + parent: 2 + - uid: 9689 components: - type: Transform - pos: 399.5,422.5 - parent: 1 - - uid: 6222 + pos: -149.5,27.5 + parent: 2 + - uid: 12883 components: - type: Transform - pos: 426.5,400.5 - parent: 1 -- proto: MedkitBurnFilled - entities: - - uid: 5445 + pos: -157.5,20.5 + parent: 2 + - uid: 13813 components: - type: Transform - pos: 400.5,422.5 - parent: 1 - - uid: 6223 + pos: -157.5,-26.5 + parent: 2 + - uid: 13864 components: - type: Transform - pos: 426.5,399.5 - parent: 1 - - uid: 16326 + pos: -154.5,23.5 + parent: 2 + - uid: 13915 components: - type: Transform - pos: 400.5,410.5 - parent: 1 -- proto: MedkitCombatFilled - entities: - - uid: 6221 + rot: 1.5707963267948966 rad + pos: -145.5,27.5 + parent: 2 + - uid: 13937 components: - type: Transform - pos: 426.5,400.5 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 3594 + pos: -157.5,-27.5 + parent: 2 + - uid: 15051 components: - type: Transform - pos: 359.5,377.5 - parent: 1 - - uid: 5340 + pos: -81.5,29.5 + parent: 2 + - uid: 15688 components: - type: Transform - pos: 400.5,410.5 - parent: 1 - - uid: 5738 + pos: -81.5,34.5 + parent: 2 + - uid: 15689 components: - type: Transform - pos: 377.5,424.5 - parent: 1 - - uid: 7468 + pos: -81.5,38.5 + parent: 2 + - uid: 15690 components: - type: Transform - pos: 346.5,387.5 - parent: 1 - - uid: 20027 + pos: -71.5,8.5 + parent: 2 + - uid: 15691 components: - type: Transform - pos: 411.5,419.5 - parent: 1 - - uid: 21151 + pos: -67.5,10.5 + parent: 2 + - uid: 15693 components: - type: Transform - pos: 388.5,373.5 - parent: 1 - - uid: 21912 + pos: -63.5,11.5 + parent: 2 + - uid: 15695 components: - type: Transform - pos: -0.4864614,32.561848 - parent: 5072 -- proto: MedkitRadiationFilled - entities: - - uid: 5443 + pos: -47.5,5.5 + parent: 2 + - uid: 15701 components: - type: Transform - pos: 402.5,422.5 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 5343 + pos: -58.5,11.5 + parent: 2 + - uid: 15845 components: - type: Transform - pos: 400.5,407.5 - parent: 1 - - uid: 6704 + pos: -71.5,5.5 + parent: 2 + - uid: 15882 components: - type: Transform - pos: 399.5,410.5 - parent: 1 -- proto: MicroManipulatorStockPart - entities: - - uid: 16353 + pos: -51.5,6.5 + parent: 2 + - uid: 15893 components: - type: Transform - pos: 351.5,400.5 - parent: 1 - - uid: 16354 + pos: -54.5,10.5 + parent: 2 + - uid: 15894 components: - type: Transform - pos: 351.5,400.5 - parent: 1 -- proto: MicrophoneInstrument - entities: - - uid: 6075 + pos: -44.5,5.5 + parent: 2 + - uid: 15895 components: - type: Transform - pos: 398.5,372.5 - parent: 1 -- proto: MiniGravityGeneratorCircuitboard - entities: - - uid: 5874 + pos: -157.5,1.5 + parent: 2 + - uid: 15896 components: - type: Transform - pos: 316.5,383.5 - parent: 1 -- proto: MiningDrill - entities: - - uid: 17976 + pos: -157.5,-18.5 + parent: 2 + - uid: 16098 components: - type: Transform - pos: 491.5,375.5 - parent: 1 -- proto: Mirror - entities: - - uid: 15507 + pos: -157.5,6.5 + parent: 2 + - uid: 16099 components: - type: Transform - pos: 424.5,364.5 - parent: 1 - - uid: 16100 + pos: -157.5,-12.5 + parent: 2 + - uid: 16155 components: - type: Transform - pos: 421.5,364.5 - parent: 1 - - uid: 16101 + pos: -157.5,9.5 + parent: 2 + - uid: 16177 components: - type: Transform - pos: 425.5,364.5 - parent: 1 - - uid: 18633 + pos: -157.5,14.5 + parent: 2 + - uid: 16221 components: - type: Transform - pos: 339.5,438.5 - parent: 1 - - uid: 18634 + pos: -157.5,16.5 + parent: 2 + - uid: 17454 components: - type: Transform - pos: 338.5,438.5 - parent: 1 -- proto: MopBucketFull - entities: - - uid: 5917 + pos: -157.5,-37.5 + parent: 2 + - uid: 17456 components: - type: Transform - pos: 411.5,361.5 - parent: 1 - - uid: 5918 + pos: -157.5,-32.5 + parent: 2 + - uid: 17723 components: - type: Transform - pos: 410.5,361.5 - parent: 1 -- proto: MopItem - entities: - - uid: 21163 + pos: 2.5,-13.5 + parent: 2 + - uid: 17724 components: - type: Transform - pos: 397.5,421.5 - parent: 1 - - uid: 21195 + pos: -4.5,24.5 + parent: 2 + - uid: 17725 components: - type: Transform - pos: 410.5,361.5 - parent: 1 - - uid: 21196 + pos: -7.5,24.5 + parent: 2 + - uid: 17726 components: - type: Transform - pos: 412.5,361.5 - parent: 1 - - uid: 21197 + pos: 2.5,9.5 + parent: 2 + - uid: 17727 components: - type: Transform - pos: 411.5,361.5 - parent: 1 -- proto: Morgue - entities: - - uid: 5419 + pos: 2.5,-0.5 + parent: 2 + - uid: 17728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,417.5 - parent: 1 - - uid: 5420 + pos: 2.5,7.5 + parent: 2 + - uid: 17729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,419.5 - parent: 1 - - uid: 5422 + pos: -0.5,24.5 + parent: 2 + - uid: 17730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,418.5 - parent: 1 - - uid: 5423 + pos: 2.5,20.5 + parent: 2 + - uid: 17731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,417.5 - parent: 1 - - uid: 5424 + pos: 2.5,16.5 + parent: 2 + - uid: 17732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,419.5 - parent: 1 - - uid: 5425 + pos: 2.5,3.5 + parent: 2 + - uid: 17733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,420.5 - parent: 1 - - uid: 5426 + pos: -2.5,-2.5 + parent: 2 + - uid: 17734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,418.5 - parent: 1 - - uid: 6211 + pos: -6.5,-2.5 + parent: 2 + - uid: 17735 components: - type: Transform - pos: 426.5,398.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 7438 + pos: -3.5,-32.5 + parent: 2 + - uid: 17736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,396.5 - parent: 1 - - uid: 18411 + pos: -3.5,-29.5 + parent: 2 + - uid: 17737 components: - type: Transform - pos: 360.5,431.5 - parent: 1 - - 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: - - 18412 - - uid: 20040 + pos: -2.5,-26.5 + parent: 2 + - uid: 17738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,438.5 - parent: 1 -- proto: MousetrapArmed - entities: - - uid: 6646 + pos: -0.5,-25.5 + parent: 2 + - uid: 17739 components: - type: Transform - pos: 396.5,408.5 - parent: 1 - - type: StepTriggerActive - - uid: 15872 + pos: 1.5,-22.5 + parent: 2 + - uid: 17740 components: - type: Transform - pos: 410.5,392.5 - parent: 1 - - type: StepTriggerActive - - uid: 15873 + pos: 2.5,-5.5 + parent: 2 + - uid: 17741 components: - type: Transform - pos: 408.5,386.5 - parent: 1 - - type: StepTriggerActive - - uid: 20085 + pos: 0.5,-2.5 + parent: 2 + - uid: 17842 components: - type: Transform - pos: 391.5,411.5 - parent: 1 - - type: StepTriggerActive - - uid: 22168 + pos: -157.5,-15.5 + parent: 2 + - uid: 19400 components: - type: Transform - pos: 394.5,407.5 - parent: 1 -- proto: Multitool - entities: - - uid: 21701 + pos: -86.5,38.5 + parent: 2 + - uid: 24946 components: - type: Transform - pos: 5.4978743,31.63788 - parent: 5072 -- proto: MusicalLungInstrument - entities: - - uid: 5530 + pos: -157.5,-4.5 + parent: 2 + - uid: 25431 components: - type: Transform - pos: 390.5,406.5 - parent: 1 -- proto: MysteryFigureBox - entities: - - uid: 5937 + pos: -157.5,-9.5 + parent: 2 + - uid: 25432 components: - type: Transform - pos: 420.5,357.5 - parent: 1 - - uid: 5939 + pos: -157.5,-3.5 + parent: 2 + - uid: 25714 components: - type: Transform - pos: 425.5,357.5 - parent: 1 -- proto: NitrogenCanister - entities: - - uid: 6229 + pos: -10.5,24.5 + parent: 2 + - uid: 25722 components: - type: Transform - pos: 441.5,395.5 - parent: 1 - - uid: 6379 + pos: -23.5,-74.5 + parent: 2 + - uid: 25726 components: - type: Transform - pos: 333.5,430.5 - parent: 1 - - uid: 7371 + pos: -23.5,-82.5 + parent: 2 + - uid: 25729 components: - type: Transform - pos: 322.5,418.5 - parent: 1 - - uid: 7423 + pos: -23.5,-79.5 + parent: 2 + - uid: 25733 components: - type: Transform - pos: 333.5,395.5 - parent: 1 - - uid: 7428 + pos: -23.5,-85.5 + parent: 2 + - uid: 25737 components: - type: Transform - pos: 334.5,395.5 - parent: 1 - - uid: 7488 + pos: -23.5,-89.5 + parent: 2 + - uid: 25743 components: - type: Transform - pos: 350.5,391.5 - parent: 1 - - uid: 18664 + pos: -7.5,-90.5 + parent: 2 + - uid: 25750 components: - type: Transform - pos: 323.5,434.5 - parent: 1 - - uid: 20409 + pos: -19.5,-92.5 + parent: 2 + - uid: 25755 components: - type: Transform - pos: 1.5,-1.5 - parent: 20181 -- proto: NitrousOxideCanister - entities: - - uid: 7370 + pos: -9.5,-92.5 + parent: 2 + - uid: 25757 components: - type: Transform - pos: 324.5,415.5 - parent: 1 - - uid: 16451 + pos: -7.5,-84.5 + parent: 2 + - uid: 25760 components: - - type: MetaData - name: канистра оксида азота и кислорода - type: Transform - pos: 401.5,413.5 - parent: 1 - - uid: 20410 + pos: -7.5,-86.5 + parent: 2 + - uid: 25762 components: - type: Transform - pos: 2.5,2.5 - parent: 20181 -- proto: NitrousOxideTankFilled - entities: - - uid: 16452 + pos: -7.5,-72.5 + parent: 2 + - uid: 25766 components: - type: Transform - pos: 400.5,412.5 - parent: 1 -- proto: NoticeBoard - entities: - - uid: 4932 + pos: -13.5,-92.5 + parent: 2 + - uid: 25770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,393.5 - parent: 1 - - uid: 6127 + pos: -7.5,-80.5 + parent: 2 + - uid: 25773 components: - type: Transform - pos: 421.5,405.5 - parent: 1 - - uid: 18358 + pos: -7.5,-76.5 + parent: 2 + - uid: 25798 components: - type: Transform - pos: 432.5,388.5 - parent: 1 - - uid: 18943 + pos: -10.5,-63.5 + parent: 2 + - uid: 25800 components: - type: Transform - pos: 334.5,450.5 - parent: 1 -- proto: NTDefaultCircuitBoard + pos: -7.5,-67.5 + parent: 2 +- proto: GrilleDiagonal entities: - - uid: 6662 + - uid: 6099 components: - type: Transform - pos: 306.5,408.5 - parent: 1 -- proto: NTFlag - entities: - - uid: 3092 + rot: 3.141592653589793 rad + pos: -154.5,-43.5 + parent: 2 + - uid: 7253 components: - type: Transform - pos: 383.5,407.5 - parent: 1 - - uid: 18298 + pos: -155.5,-43.5 + parent: 2 + - uid: 7291 components: - type: Transform - pos: 375.5,407.5 - parent: 1 - - uid: 18299 + rot: 1.5707963267948966 rad + pos: -155.5,-47.5 + parent: 2 + - uid: 13607 components: - type: Transform - pos: 384.5,412.5 - parent: 1 - - uid: 18300 + rot: 1.5707963267948966 rad + pos: -154.5,-48.5 + parent: 2 + - uid: 13682 components: - type: Transform - pos: 371.5,412.5 - parent: 1 - - uid: 18301 + rot: -1.5707963267948966 rad + pos: -154.5,-47.5 + parent: 2 + - uid: 13964 components: - type: Transform - pos: 376.5,415.5 - parent: 1 - - uid: 18302 + pos: -154.5,-42.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 19261 components: - type: Transform - pos: 382.5,415.5 - parent: 1 - - uid: 18303 + pos: -86.5,-25.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 6685 components: - type: Transform - pos: 370.5,418.5 - parent: 1 - - uid: 18304 + pos: -81.5,-19.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 19229 components: - type: Transform - pos: 388.5,418.5 - parent: 1 - - uid: 18305 + pos: -86.5,-20.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 6684 components: - type: Transform - pos: 365.5,417.5 - parent: 1 - - uid: 22065 + pos: -80.5,-19.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 6670 components: - type: Transform - pos: 378.5,394.5 - parent: 1 - - uid: 22104 + pos: -83.5,-19.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 6683 components: - type: Transform - pos: 387.5,394.5 - parent: 1 - - uid: 22105 + pos: -84.5,-19.5 + parent: 2 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 1180 components: - type: Transform - pos: 387.5,387.5 - parent: 1 - - uid: 22106 + pos: -30.4413,-73.583176 + parent: 2 +- proto: Handcuffs + entities: + - uid: 6831 components: - type: Transform - pos: 377.5,387.5 - parent: 1 - - uid: 22107 + pos: -63.51709,7.5955453 + parent: 2 + - uid: 22311 components: - type: Transform - pos: 377.5,385.5 - parent: 1 - - uid: 22108 + pos: -62.38784,-4.163284 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 20328 components: - type: Transform - pos: 387.5,385.5 - parent: 1 - - uid: 22109 + pos: -95.65996,35.329193 + parent: 2 + - uid: 20342 components: - type: Transform - pos: 387.5,380.5 - parent: 1 - - uid: 22110 + pos: -95.45683,35.31357 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 22315 components: - type: Transform - pos: 387.5,378.5 - parent: 1 - - uid: 22111 + pos: -54.629562,7.550678 + parent: 2 + - uid: 22316 components: - type: Transform - pos: 377.5,378.5 - parent: 1 - - uid: 22112 + pos: -60.73033,-4.2904005 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 2673 components: - type: Transform - pos: 377.5,380.5 - parent: 1 - - uid: 22113 + pos: -122.6231,-16.413368 + parent: 2 + - uid: 15999 components: - type: Transform - pos: 403.5,382.5 - parent: 1 - - uid: 22114 + pos: -109.499535,-33.66865 + parent: 2 +- proto: HandLabeler + entities: + - uid: 16016 components: - type: Transform - pos: 393.5,375.5 - parent: 1 - - uid: 22115 + pos: -109.499535,-33.715527 + parent: 2 + - uid: 22273 components: - type: Transform - pos: 403.5,390.5 - parent: 1 - - uid: 22116 + pos: -52.29675,-7.5648193 + parent: 2 + - uid: 22291 components: - type: Transform - pos: 403.5,386.5 - parent: 1 - - uid: 22117 + pos: -39.483585,-26.581343 + parent: 2 + - uid: 22292 components: - type: Transform - pos: 391.5,388.5 - parent: 1 - - uid: 22119 + pos: -37.506813,-16.451693 + parent: 2 + - uid: 22293 components: - type: Transform - pos: 403.5,378.5 - parent: 1 - - uid: 22121 + pos: -31.561302,-19.694738 + parent: 2 + - uid: 22294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,398.5 - parent: 1 - - uid: 22122 + pos: -37.600494,-30.548458 + parent: 2 + - uid: 25704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,398.5 - parent: 1 - - uid: 22123 + pos: -135.47147,-38.412785 + parent: 2 + - uid: 25705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 384.5,408.5 - parent: 1 - - uid: 22124 + pos: -52.508957,-22.949903 + parent: 2 + - uid: 25706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,420.5 - parent: 1 - - uid: 22125 + pos: -47.180832,-24.715528 + parent: 2 + - uid: 25707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 370.5,421.5 - parent: 1 -- proto: NuclearBomb - entities: - - uid: 3852 + pos: -69.47495,-26.919731 + parent: 2 + - uid: 25708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,397.5 - parent: 1 -- proto: NuclearBombKeg + pos: -54.422913,-30.442062 + parent: 2 +- proto: HarmonicaInstrument entities: - - uid: 10271 + - uid: 6796 components: - type: Transform - pos: 369.5,406.5 - parent: 1 -- proto: Ointment1 + pos: -89.56172,-46.353573 + parent: 2 +- proto: HeatExchanger entities: - - uid: 16288 + - uid: 6018 components: - type: Transform - pos: 407.5,414.5 - parent: 1 -- proto: OmnizineChemistryBottle - entities: - - uid: 16115 + rot: -1.5707963267948966 rad + pos: -147.5,1.5 + parent: 2 + - uid: 6019 components: - type: Transform - pos: 369.5,407.5 - parent: 1 -- proto: OperatingTable - entities: - - uid: 5367 + rot: -1.5707963267948966 rad + pos: -147.5,3.5 + parent: 2 + - uid: 6038 components: - type: Transform - pos: 400.5,412.5 - parent: 1 - - uid: 5430 + rot: -1.5707963267948966 rad + pos: -147.5,2.5 + parent: 2 + - uid: 16980 components: - type: Transform - pos: 395.5,422.5 - parent: 1 - - uid: 7433 + rot: 1.5707963267948966 rad + pos: -149.5,-16.5 + parent: 2 + - uid: 16981 components: - type: Transform - pos: 338.5,396.5 - parent: 1 -- proto: OpporozidoneBeakerSmall - entities: - - uid: 12704 + rot: 1.5707963267948966 rad + pos: -145.5,-16.5 + parent: 2 + - uid: 16984 components: - type: Transform - pos: 401.5,417.5 - parent: 1 -- proto: OreBox - entities: - - uid: 17967 + rot: 1.5707963267948966 rad + pos: -146.5,-16.5 + parent: 2 + - uid: 16986 components: - type: Transform - rot: 3.141592653589793 rad - pos: 489.5,378.5 - parent: 1 - - uid: 17968 + rot: 1.5707963267948966 rad + pos: -148.5,-16.5 + parent: 2 + - uid: 16987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 495.5,379.5 - parent: 1 - - uid: 17969 + rot: 1.5707963267948966 rad + pos: -147.5,-16.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 495.5,380.5 - parent: 1 - - uid: 17970 + pos: -82.5,-24.5 + parent: 2 + - uid: 3721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 488.5,381.5 - parent: 1 - - uid: 21208 + pos: -85.5,-21.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 11189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 508.5,384.5 - parent: 1 - - uid: 21210 + pos: -68.5,-2.5 + parent: 2 + - uid: 23403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 502.5,386.5 - parent: 1 - - uid: 21211 + pos: -120.5,-75.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector +- proto: HighSecDoor + entities: + - uid: 6107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 503.5,386.5 - parent: 1 - - uid: 21275 + pos: -38.5,-70.5 + parent: 2 + - uid: 25923 components: - type: Transform - pos: 351.5,376.5 - parent: 1 -- proto: OreProcessor + pos: -102.5,-64.5 + parent: 2 +- proto: HolofanProjector entities: - - uid: 2109 + - uid: 8267 components: - type: Transform - pos: 360.5,379.5 - parent: 1 -- proto: OxygenCanister - entities: - - uid: 803 + pos: -8.516942,-18.422981 + parent: 2 + - uid: 15981 components: - type: Transform - pos: 332.5,395.5 - parent: 1 - - uid: 3557 + pos: -121.561676,-4.656055 + parent: 2 + - uid: 15982 components: - type: Transform - pos: 360.5,384.5 - parent: 1 - - uid: 6378 + pos: -121.42105,-4.374805 + parent: 2 + - uid: 18389 components: - type: Transform - pos: 330.5,430.5 - parent: 1 - - uid: 7368 + pos: -110.46725,-40.5505 + parent: 2 + - uid: 18823 components: - type: Transform - pos: 322.5,415.5 - parent: 1 - - uid: 7379 + pos: -143.47711,-8.49418 + parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 24873 components: - type: Transform - pos: 322.5,416.5 - parent: 1 - - uid: 7422 + pos: -120.5,-72.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 24533 components: - type: Transform - pos: 331.5,395.5 - parent: 1 - - uid: 7516 + pos: -89.5,24.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 24532 components: - type: Transform - pos: 350.5,392.5 - parent: 1 - - uid: 7517 + pos: -100.5,15.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 24542 components: - type: Transform - pos: 350.5,393.5 - parent: 1 - - uid: 18663 + pos: -61.5,5.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 24550 components: - type: Transform - pos: 322.5,434.5 - parent: 1 - - uid: 18952 + pos: -49.5,-0.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 17620 components: - type: Transform - pos: 337.5,390.5 - parent: 1 - - uid: 20411 + pos: -124.5,-15.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 5556 components: - type: Transform - pos: -0.5,-1.5 - parent: 20181 -- proto: PaintingCafeTerraceAtNight + pos: -34.5,-40.5 + parent: 2 +- proto: HolopadCommandHop entities: - - uid: 21703 + - uid: 24547 components: - type: Transform - pos: 13.5,24.5 - parent: 5072 -- proto: PaintingSadClown + pos: -51.5,-6.5 + parent: 2 +- proto: HolopadCommandHos entities: - - uid: 5508 + - uid: 24536 components: - type: Transform - pos: 388.5,411.5 - parent: 1 -- proto: PaintingSkeletonBoof + pos: -83.5,-32.5 + parent: 2 +- proto: HolopadCommandMeetingRoom entities: - - uid: 18710 + - uid: 19231 components: - type: Transform - pos: 425.5,384.5 - parent: 1 -- proto: PaintingSkeletonCigarette + pos: -63.5,-1.5 + parent: 2 +- proto: HolopadCommandQm entities: - - uid: 5582 + - uid: 24534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,399.5 - parent: 1 - - uid: 18711 + pos: -85.5,30.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 24525 components: - type: Transform - pos: 424.5,382.5 - parent: 1 - - uid: 21000 + pos: -133.5,-45.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 24529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,414.5 - parent: 1 -- proto: PaintingTheGreatWave + pos: -113.5,-5.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain entities: - - uid: 21674 + - uid: 24530 components: - type: Transform - pos: 7.5,22.5 - parent: 5072 -- proto: PaladinCircuitBoard + pos: -119.5,14.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg entities: - - uid: 6658 + - uid: 24535 components: - type: Transform - pos: 302.5,408.5 - parent: 1 -- proto: Paper + pos: -139.5,-4.5 + parent: 2 +- proto: HolopadEngineeringFront entities: - - uid: 5836 + - uid: 24526 components: - type: Transform - pos: 380.5,412.5 - parent: 1 - - uid: 14517 + pos: -113.5,-16.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 20300 components: - - type: MetaData - name: справка об оппорозидоне - type: Transform - pos: 400.5,417.5 - parent: 1 - - type: Paper - content: > - Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. - - Действует на мертвых существ, чья температура тела не более 150K. - - - [head=2]Рецепт Оппорозидона[/head] - - - [head=3]Оппорозидон[/head] - - [color=#E333A7]▣[/color] плазма [2] - - [color=#B50EE8]▣[/color] когнизин [1] - - [color=#32CD32]▣[/color] доксарубиксадон [1] - - [italic]Нагреть выше 400K[/italic] - - ▣ оппорозидон [3] - - - [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] - - [bullet]карпотоксин [1] - - [bullet]сидерлак [1] - - [bullet]ацетон [1] - - [italic]Смешать[/italic] - - [bullet]когнизин [1] - - - [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] - - [bullet]криоксадон [1] - - [bullet]нестабильный мутаген [1] - - [italic]Смешать[/italic] - - [bullet]доксарубиксадон [2] - editingDisabled: True - - uid: 17938 + pos: -84.5,-8.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 24549 components: - type: Transform - pos: 364.5,414.5 - parent: 1 - - type: Paper - content: >- - [color=#de8700]██[color=#ec9000]██████[color=#de8700]██[color=#d38000]██[color=#b46c00]██[color=#975a00]██[color=#b46c00]██[color=#d38000]██[color=#de8700]██[color=#ec9000]██████[color=#de8700]██ - - [color=#e28a00]██[color=#de8700]██[color=#d48100]████[color=#ec9000]████[color=#965900]██[color=#9b5d00]██[color=#965900]██[color=#ec9000]████[color=#d48100]████[color=#de8700]██[color=#e28a00]██ - - [color=#de8700]██[color=#d98400]██[color=#d78300]██[color=#cf7e00]██[color=#de8700]██[color=#975a00]██[color=#b16900]██[color=#ce7c00]██[color=#b16900]██[color=#975a00]██[color=#de8700]██[color=#cf7e00]██[color=#d78300]██[color=#d98400]██[color=#de8700]██ - - [color=#fff]████[color=#94bfb6]██[color=#8b7037]██[color=#9b5d00]██[color=#211b1b]██[color=#c47600]██[color=#bc7000]██[color=#c47600]██[color=#211b1b]██[color=#9b5d00]██[color=#8c5809]██[color=#9b5d00]██[color=#fff]████ - - ██[color=#fff]██[color=#8ea49f]██[color=#94bfb6]██[color=#1f2026]██[color=#4f4f57]██[color=#2d2d33]██[color=#18191e]██[color=#4f4f57]██[color=#2d2d33]██[color=#1f2026]██[color=#9b5d00]████[color=#fff]████ - - ██[color=#b0b0b0]██[color=#93867b]██[color=#898989]██[color=#cc7c00]██[color=#1f2026]██[color=#18191e]██[color=#b16a00]██[color=#1f2026]██[color=#18191e]██[color=#cc7c00]██[color=#9b5d00]██[color=#924900]██[color=#fff]████ - - ██[color=#906658]██[color=#b0b0b0]██[color=#802100]██[color=#9b5d00]██[color=#c97a00]██[color=#b16a00]██[color=#bb7000]██[color=#b16a00]██[color=#c97a00]██[color=#9b5d00]██[color=#802100]██[color=#7e2d00]██[color=#621700]██[color=#fff]██ - - ██[color=#75483a]██[color=#711c00]██[color=#7d2000]██[color=#912600]██[color=#925600]██[color=#b26b00]██[color=#cb7b00]██[color=#b26b00]██[color=#925600]██[color=#912600]██[color=#7d2000]██[color=#621700]██[color=#511100]██[color=#fff]██ - - ██[color=#61140a]██[color=#400c00]██[color=#872300]██[color=#711c00]██[color=#912600]██[color=#9b5d00]██████[color=#912600]██[color=#711c00]██[color=#641700]██[color=#400c00]██[color=#6d443c]██[color=#fff]██ - - [color=#73161e]██[color=#741a1b]██[color=#0]██[color=#400c00]██[color=#501100]██[color=#7d2000]██[color=#8a2400]██[color=#9b2900]██[color=#912600]██[color=#641700]██[color=#430d00]██[color=#400c00]██[color=#0]██[color=#813f41]██[color=#73161e]██ - - ██[color=#0]██████[color=#400c00]██[color=#501100]██[color=#872300]██[color=#641700]██[color=#872300]██[color=#621700]██[color=#430d00]██[color=#0]██████[color=#73161e]██ - - [color=#0] - - - Так выглядит проектировщик этой станции, он обезумел пока придумывал планировку пола рисунками. Он назвал её Cute потому что изначально это была Cut Station либо Cutting Station, а Installation потому, что это уникально! Некоторые даже называли её Custration... - - uid: 18209 + pos: -34.5,15.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 24548 components: - type: Transform - pos: 440.5,412.5 - parent: 1 - - type: Paper - content: >2- - - - - - - - - - - [bold]О ДААА БУМАЖЕЧКИ БУМАЖКИ БУМАААААЖКИ... ООО ЧЕМОДААААНЫ ДААА Я ТАКОЙ ВАЖНЫЙ ООО ЧЕМОДААААНЫ ОООО БУМАЖКИ БУМАЖКИ ААА БУМАЖЕЧКИ БУМАЖУЛЕЧКИ МОИ ОООО ДАААА БУМАЖКИ РУЧКИ ДОКУМЕНТЫ БЮРОКРАААААААТИЯ ОООО ДААААА. - - uid: 18210 + pos: -11.5,-13.5 + parent: 2 +- proto: HolopadGeneralLounge + entities: + - uid: 24553 components: - type: Transform - pos: 442.5,410.5 - parent: 1 - - type: Paper - content: >2- - - - - - - - - - - [bold]О ДААА БУМАЖЕЧКИ БУМАЖКИ БУМАААААЖКИ... ООО ЧЕМОДААААНЫ ДААА Я ТАКОЙ ВАЖНЫЙ ООО ЧЕМОДААААНЫ ОООО БУМАЖКИ БУМАЖКИ ААА БУМАЖЕЧКИ БУМАЖУЛЕЧКИ МОИ ОООО ДАААА БУМАЖКИ РУЧКИ ДОКУМЕНТЫ БЮРОКРАААААААТИЯ ОООО ДААААА. - - uid: 21815 + pos: -64.5,-54.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 25618 components: - type: Transform - pos: -1.344388,25.58412 - parent: 5072 -- proto: PaperBin10 + pos: -38.5,-22.5 + parent: 2 +- proto: HolopadMedicalFront entities: - - uid: 5173 + - uid: 24544 components: - type: Transform - pos: 413.5,409.5 - parent: 1 - - uid: 5189 + pos: -33.5,-19.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 17743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 444.5,412.5 - parent: 1 - - uid: 5315 + pos: -39.5,-30.5 + parent: 2 +- proto: HolopadMedicalParamed + entities: + - uid: 24546 components: - type: Transform - pos: 463.5,409.5 - parent: 1 - - uid: 5505 + pos: -24.5,-24.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 24524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,412.5 - parent: 1 - - uid: 5675 + pos: -120.5,-39.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 24527 components: - type: Transform - pos: 421.5,356.5 - parent: 1 - - uid: 6026 + pos: -120.5,-51.5 + parent: 2 +- proto: HolopadSecurityBreakroom + entities: + - uid: 24556 components: - type: Transform - pos: 388.5,416.5 - parent: 1 - - uid: 6173 + pos: -93.5,-30.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 24540 components: - type: Transform - pos: 448.5,406.5 - parent: 1 - - uid: 6635 + pos: -98.5,-40.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 24551 components: - type: Transform - pos: 306.5,414.5 - parent: 1 - - uid: 8039 + pos: -99.5,-45.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 24539 components: - type: Transform - pos: 336.5,440.5 - parent: 1 - - uid: 16309 + pos: -87.5,-27.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 17742 components: - type: Transform - pos: 412.5,413.5 - parent: 1 - - uid: 18654 + pos: -82.5,-41.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 24538 components: - type: Transform - pos: 326.5,435.5 - parent: 1 - - uid: 18999 + pos: -91.5,-19.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 17744 components: - type: Transform - pos: 336.5,393.5 - parent: 1 - - uid: 20023 + pos: -68.5,-31.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 26098 components: - type: Transform - pos: 417.5,418.5 - parent: 1 - - uid: 20715 + pos: -47.5,-45.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 17621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 20527 - - uid: 20716 + pos: -112.5,-30.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 3791 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 20527 - - uid: 20821 + pos: -60.5,-60.5 + parent: 2 + - uid: 3792 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,418.5 - parent: 1 - - uid: 21050 + pos: -61.5,-60.5 + parent: 2 + - uid: 3793 components: - type: Transform - pos: 388.5,395.5 - parent: 1 - - uid: 22142 + rot: 1.5707963267948966 rad + pos: -60.5,-62.5 + parent: 2 + - uid: 3794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 382.5,406.5 - parent: 1 -- proto: PaperBin20 - entities: - - uid: 5174 + rot: 1.5707963267948966 rad + pos: -61.5,-62.5 + parent: 2 + - uid: 4056 components: - type: Transform - pos: 420.5,409.5 - parent: 1 - - uid: 5579 + rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 2 + - uid: 4150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,398.5 - parent: 1 - - uid: 5833 + pos: -20.5,-50.5 + parent: 2 + - uid: 4152 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 5845 + pos: -20.5,-49.5 + parent: 2 + - uid: 4154 components: - type: Transform - pos: 376.5,414.5 - parent: 1 - - uid: 6079 + pos: -20.5,-48.5 + parent: 2 + - uid: 4157 components: - type: Transform - pos: 401.5,372.5 - parent: 1 - - uid: 7367 + pos: -20.5,-52.5 + parent: 2 + - uid: 4162 components: - type: Transform - pos: 346.5,397.5 - parent: 1 - - uid: 7501 + pos: -20.5,-53.5 + parent: 2 + - uid: 4163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,383.5 - parent: 1 - - uid: 8988 + pos: -20.5,-54.5 + parent: 2 + - uid: 6736 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,419.5 - parent: 1 - - uid: 16438 + pos: -90.5,-50.5 + parent: 2 + - uid: 13097 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 19008 + rot: 3.141592653589793 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 13099 components: - type: Transform - pos: 424.5,375.5 - parent: 1 - - uid: 21977 + rot: 3.141592653589793 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 13100 components: - type: Transform - pos: 508.5,390.5 - parent: 1 - - uid: 22143 + rot: 3.141592653589793 rad + pos: -24.5,-34.5 + parent: 2 + - uid: 13101 components: - type: Transform rot: 3.141592653589793 rad - pos: 377.5,406.5 - parent: 1 -- proto: PaperBin5 - entities: - - uid: 5929 + pos: -24.5,-38.5 + parent: 2 + - uid: 13102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,351.5 - parent: 1 - - uid: 6056 + rot: 3.141592653589793 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 13103 components: - type: Transform - pos: 415.5,376.5 - parent: 1 - - uid: 7509 + rot: 3.141592653589793 rad + pos: -24.5,-40.5 + parent: 2 + - uid: 20027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,379.5 - parent: 1 - - uid: 10276 + rot: 1.5707963267948966 rad + pos: -20.5,-35.5 + parent: 2 + - uid: 24336 components: - type: Transform - pos: 374.5,422.5 - parent: 1 - - uid: 10281 + pos: -19.5,-51.5 + parent: 2 + - uid: 24337 components: - type: Transform - pos: 363.5,418.5 - parent: 1 - - uid: 16439 + pos: -17.5,-51.5 + parent: 2 + - uid: 24338 components: - type: Transform - pos: 441.5,413.5 - parent: 1 -- proto: PaperRolling1 + pos: -18.5,-51.5 + parent: 2 +- proto: hydroponicsSoil entities: - - uid: 5596 + - uid: 6777 components: - type: Transform - pos: 372.5,397.5 - parent: 1 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 5878 + pos: -84.5,-50.5 + parent: 2 + - uid: 7115 components: - type: Transform - pos: 302.5,385.5 - parent: 1 -- proto: ParticleAcceleratorEmitterForeUnfinished - entities: - - uid: 5875 + pos: -86.5,-50.5 + parent: 2 + - uid: 7122 components: - type: Transform - pos: 302.5,390.5 - parent: 1 -- proto: ParticleAcceleratorEmitterPortUnfinished - entities: - - uid: 5877 + pos: -85.5,-50.5 + parent: 2 + - uid: 9633 components: - type: Transform - pos: 302.5,389.5 - parent: 1 -- proto: ParticleAcceleratorEmitterStarboardUnfinished - entities: - - uid: 5876 + pos: -86.5,-48.5 + parent: 2 + - uid: 9634 components: - type: Transform - pos: 303.5,390.5 - parent: 1 -- proto: ParticleAcceleratorEndCapUnfinished - entities: - - uid: 5879 + pos: -85.5,-48.5 + parent: 2 + - uid: 9635 components: - type: Transform - pos: 303.5,389.5 - parent: 1 -- proto: ParticleAcceleratorFuelChamberUnfinished - entities: - - uid: 5882 + pos: -84.5,-48.5 + parent: 2 + - uid: 15264 components: - type: Transform - pos: 303.5,384.5 - parent: 1 -- proto: ParticleAcceleratorPowerBoxUnfinished + pos: -51.5,-18.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 +- proto: HydroponicsToolMiniHoe entities: - - uid: 5881 + - uid: 6833 components: - type: Transform - pos: 302.5,384.5 - parent: 1 -- proto: PartRodMetal + pos: -85.54748,-49.773968 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: -52.52342,-22.133272 + parent: 2 +- proto: HydroponicsToolSpade entities: - - uid: 6686 + - uid: 6738 components: - type: Transform - pos: 317.5,386.5 - parent: 1 - - uid: 20021 + pos: -85.46935,-49.695843 + parent: 2 + - uid: 11187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,382.5 - parent: 1 -- proto: Pen + pos: -52.507793,-22.070772 + parent: 2 +- proto: hydroponicsTray entities: - - uid: 5175 + - uid: 8378 components: - type: Transform - pos: 420.5,409.5 - parent: 1 - - uid: 5176 + pos: -47.5,-19.5 + parent: 2 + - uid: 9342 components: - type: Transform - pos: 420.5,409.5 - parent: 1 - - uid: 5316 + pos: -47.5,-20.5 + parent: 2 + - uid: 9421 components: - type: Transform - pos: 463.5,409.5 - parent: 1 - - uid: 5317 + pos: -47.5,-21.5 + parent: 2 + - uid: 9582 components: - type: Transform - pos: 463.5,409.5 - parent: 1 - - uid: 5580 + pos: -51.5,-22.5 + parent: 2 + - uid: 16514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,398.5 - parent: 1 - - uid: 5581 + pos: -51.5,-20.5 + parent: 2 + - uid: 16705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,398.5 - parent: 1 - - uid: 5834 + pos: -53.5,-22.5 + parent: 2 + - uid: 16875 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 5835 + pos: -53.5,-21.5 + parent: 2 + - uid: 16921 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 5925 + pos: -53.5,-23.5 + parent: 2 + - uid: 16926 components: - type: Transform - pos: 421.5,356.5 - parent: 1 - - uid: 5926 + pos: -53.5,-20.5 + parent: 2 + - uid: 25621 components: - type: Transform - pos: 421.5,356.5 - parent: 1 - - uid: 5935 + pos: -51.5,-21.5 + parent: 2 + - uid: 25622 components: - type: Transform - pos: 414.5,351.5 - parent: 1 - - uid: 5936 + pos: -51.5,-23.5 + parent: 2 +- proto: Igniter + entities: + - uid: 5666 components: - type: Transform - pos: 414.5,351.5 - parent: 1 - - uid: 6010 + pos: -110.45691,9.403336 + parent: 2 + - uid: 6071 components: - type: Transform - pos: 328.5,402.5 - parent: 1 - - uid: 6057 + pos: -147.5,2.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 3754 components: - type: Transform - pos: 415.5,376.5 - parent: 1 - - uid: 6058 + pos: -113.636734,-6.2644663 + parent: 2 + - uid: 19499 components: - type: Transform - pos: 415.5,376.5 - parent: 1 - - uid: 6080 + pos: -113.480484,-6.4675913 + parent: 2 +- proto: IngotGold + entities: + - uid: 4301 components: - type: Transform - pos: 401.5,372.5 - parent: 1 - - uid: 6081 + pos: -73.90167,-0.4566641 + parent: 2 +- proto: IngotSilver + entities: + - uid: 4303 components: - type: Transform - pos: 401.5,372.5 - parent: 1 - - uid: 6174 + pos: -73.11142,-0.4254141 + parent: 2 +- proto: IntercomAll + entities: + - uid: 16495 components: - type: Transform - pos: 448.5,406.5 - parent: 1 - - uid: 6175 + rot: 3.141592653589793 rad + pos: -61.5,-1.5 + parent: 2 + - uid: 23352 components: - type: Transform - pos: 448.5,406.5 - parent: 1 - - uid: 6636 + rot: 3.141592653589793 rad + pos: -60.5,1.5 + parent: 2 + - uid: 23353 components: - type: Transform - pos: 306.5,414.5 - parent: 1 - - uid: 6637 + rot: 1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - uid: 23354 components: - type: Transform - pos: 306.5,414.5 - parent: 1 - - uid: 7502 + rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + - uid: 25394 components: - type: Transform - pos: 354.5,383.5 - parent: 1 - - uid: 7503 + rot: 1.5707963267948966 rad + pos: -121.5,-83.5 + parent: 2 + - uid: 25395 components: - type: Transform - pos: 354.5,383.5 - parent: 1 - - uid: 7510 + rot: 3.141592653589793 rad + pos: -120.5,-84.5 + parent: 2 + - uid: 25396 components: - type: Transform - pos: 355.5,379.5 - parent: 1 - - uid: 7511 + rot: -1.5707963267948966 rad + pos: -119.5,-83.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 1224 components: - type: Transform - pos: 355.5,379.5 - parent: 1 - - uid: 7564 + rot: -1.5707963267948966 rad + pos: -42.5,-66.5 + parent: 2 + - uid: 23355 components: - type: Transform - pos: 346.5,397.5 - parent: 1 - - uid: 7565 + rot: 1.5707963267948966 rad + pos: -65.5,-5.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 6709 components: - type: Transform - pos: 346.5,397.5 - parent: 1 - - uid: 8032 + pos: -82.5,-40.5 + parent: 2 + - uid: 9433 components: - type: Transform - pos: 336.5,440.5 - parent: 1 - - uid: 8040 + rot: -1.5707963267948966 rad + pos: -88.5,-46.5 + parent: 2 + - uid: 16529 components: - type: Transform - pos: 336.5,440.5 - parent: 1 - - uid: 8989 + pos: -62.5,-21.5 + parent: 2 + - uid: 16654 components: - type: Transform - pos: 365.5,419.5 - parent: 1 - - uid: 8990 + rot: -1.5707963267948966 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 23357 components: - type: Transform - pos: 365.5,419.5 - parent: 1 - - uid: 10273 + rot: 3.141592653589793 rad + pos: -66.5,-58.5 + parent: 2 + - uid: 25844 components: - type: Transform - pos: 388.5,416.5 - parent: 1 - - uid: 10274 + rot: -1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 25925 components: - type: Transform - pos: 388.5,416.5 - parent: 1 - - uid: 10277 + pos: -101.5,-64.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 4699 components: - type: Transform - pos: 374.5,422.5 - parent: 1 - - uid: 10278 + rot: 1.5707963267948966 rad + pos: -124.5,15.5 + parent: 2 + - uid: 16928 components: - type: Transform - pos: 374.5,422.5 - parent: 1 - - uid: 10279 + rot: 3.141592653589793 rad + pos: -112.5,-13.5 + parent: 2 + - uid: 23030 components: - type: Transform - pos: 363.5,418.5 - parent: 1 - - uid: 10280 + rot: 3.141592653589793 rad + pos: -122.5,-13.5 + parent: 2 + - uid: 23342 components: - type: Transform - pos: 363.5,418.5 - parent: 1 - - uid: 16310 + pos: -123.5,-16.5 + parent: 2 + - uid: 23343 components: - type: Transform - pos: 412.5,413.5 - parent: 1 - - uid: 16311 + rot: 3.141592653589793 rad + pos: -140.5,-7.5 + parent: 2 + - uid: 23344 components: - type: Transform - pos: 412.5,413.5 - parent: 1 - - uid: 16440 + rot: -1.5707963267948966 rad + pos: -112.5,-22.5 + parent: 2 + - uid: 25611 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 16441 + rot: 1.5707963267948966 rad + pos: -132.5,-3.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 17025 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 16442 + pos: -31.5,-17.5 + parent: 2 + - uid: 17745 components: - type: Transform - pos: 441.5,413.5 - parent: 1 - - uid: 16443 + rot: -1.5707963267948966 rad + pos: -16.5,-36.5 + parent: 2 + - uid: 25845 components: - type: Transform - pos: 441.5,413.5 - parent: 1 - - uid: 18643 + rot: 1.5707963267948966 rad + pos: -38.5,-40.5 + parent: 2 + - uid: 25846 components: - type: Transform - pos: 338.5,437.5 - parent: 1 - - uid: 18655 + rot: 3.141592653589793 rad + pos: -22.5,-55.5 + parent: 2 + - uid: 25847 components: - type: Transform - pos: 326.5,435.5 - parent: 1 - - uid: 18656 + rot: -1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 2 + - uid: 25848 components: - type: Transform - pos: 326.5,435.5 - parent: 1 - - uid: 19000 + rot: 1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 12734 components: - type: Transform - pos: 336.5,393.5 - parent: 1 - - uid: 19001 + pos: -122.5,-42.5 + parent: 2 + - uid: 25843 components: - type: Transform - pos: 336.5,393.5 - parent: 1 - - uid: 19009 + rot: -1.5707963267948966 rad + pos: -132.5,-46.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 22319 components: - type: Transform - pos: 424.5,375.5 - parent: 1 - - uid: 19010 + rot: 3.141592653589793 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 23345 components: - type: Transform - pos: 424.5,375.5 - parent: 1 - - uid: 20024 + pos: -91.5,-16.5 + parent: 2 + - uid: 23346 components: - type: Transform - pos: 417.5,418.5 - parent: 1 - - uid: 20025 + pos: -93.5,-24.5 + parent: 2 + - uid: 23347 components: - type: Transform - pos: 417.5,418.5 - parent: 1 - - uid: 20717 + rot: -1.5707963267948966 rad + pos: -94.5,-38.5 + parent: 2 + - uid: 23348 components: - type: Transform - pos: 7.5,4.5 - parent: 20527 - - uid: 20718 + rot: -1.5707963267948966 rad + pos: -85.5,-33.5 + parent: 2 + - uid: 23349 components: - type: Transform - pos: 7.5,4.5 - parent: 20527 - - uid: 21051 + rot: -1.5707963267948966 rad + pos: -81.5,-33.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 22320 components: - type: Transform - pos: 388.5,395.5 - parent: 1 - - uid: 21052 + rot: -1.5707963267948966 rad + pos: -56.5,-24.5 + parent: 2 + - uid: 25652 components: - type: Transform - pos: 388.5,395.5 - parent: 1 - - uid: 21867 + rot: 1.5707963267948966 rad + pos: -66.5,-27.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 22321 components: - type: Transform - pos: 7.355826,32.45485 - parent: 5072 -- proto: PersonalAI + pos: -98.5,12.5 + parent: 2 + - uid: 25606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,13.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + pos: -91.5,31.5 + parent: 2 + - uid: 25609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,29.5 + parent: 2 + - uid: 25610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -89.5,6.5 + parent: 2 +- proto: JanitorialTrolley entities: - - uid: 3074 + - uid: 7826 components: - type: Transform - pos: 436.5,413.5 - parent: 1 - - uid: 5739 + rot: -1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + mop_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8162 + trashbag_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8313 + bucket_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8165 + plunger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8167 + wetfloorsign_slot4: !type:ContainerSlot + showEnts: False + occludes: True + ent: 7863 + wetfloorsign_slot3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 7901 + wetfloorsign_slot2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 7902 + wetfloorsign_slot1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 7947 + lightreplacer_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8312 + spraybottle_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 8160 +- proto: JanitorServiceLight + entities: + - uid: 7134 components: - type: Transform - pos: 384.5,422.5 - parent: 1 - - uid: 5846 + rot: 1.5707963267948966 rad + pos: -105.5,-43.5 + parent: 2 + - uid: 9583 components: - type: Transform - pos: 376.5,407.5 - parent: 1 - - uid: 6629 + rot: 3.141592653589793 rad + pos: -64.5,-16.5 + parent: 2 + - uid: 17852 components: - type: Transform - pos: 308.5,408.5 - parent: 1 - - uid: 7514 + rot: -1.5707963267948966 rad + pos: -98.5,8.5 + parent: 2 + - uid: 18983 components: - type: Transform - pos: 354.5,384.5 - parent: 1 - - uid: 19007 + rot: 3.141592653589793 rad + pos: -93.5,-15.5 + parent: 2 + - uid: 25628 components: - type: Transform - pos: 424.5,373.5 - parent: 1 - - uid: 21043 + rot: 3.141592653589793 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 25654 components: - type: Transform - pos: 411.5,367.5 - parent: 1 - - uid: 21866 + pos: -54.5,-11.5 + parent: 2 + - uid: 25657 components: - type: Transform - pos: 2.5129576,32.47221 - parent: 5072 -- proto: PetCarrier + rot: 1.5707963267948966 rad + pos: -105.5,-13.5 + parent: 2 +- proto: JetpackMiniFilled entities: - - uid: 16417 + - uid: 24580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,365.5 - parent: 1 -- proto: PhoneInstrument + pos: -35.52224,-4.6053953 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: -35.350365,-4.2252345 + parent: 2 +- proto: Jukebox entities: - - uid: 5837 + - uid: 24445 components: - type: Transform - pos: 378.5,412.5 - parent: 1 - - uid: 20856 + pos: -73.5,-39.5 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 25615 components: - type: Transform - pos: 301.5,410.5 - parent: 1 - - uid: 21817 + pos: -53.5,-33.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 7777 components: - type: Transform - pos: -1.5092547,24.523743 - parent: 5072 -- proto: PianoInstrument - entities: - - uid: 4918 + pos: -132.58023,-35.565937 + parent: 2 + - uid: 22095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,387.5 - parent: 1 -- proto: Pickaxe + pos: -53.537758,-30.416092 + parent: 2 +- proto: KitchenMicrowave entities: - - uid: 17971 + - uid: 3492 components: - type: Transform - pos: 489.5,381.5 - parent: 1 - - uid: 17972 + pos: -54.5,-33.5 + parent: 2 + - uid: 5610 components: - type: Transform - pos: 494.5,379.5 - parent: 1 - - uid: 21026 + pos: -10.5,-0.5 + parent: 2 + - uid: 5775 components: - type: Transform - pos: 504.5,390.5 - parent: 1 - - uid: 21976 + pos: -116.5,-24.5 + parent: 2 + - uid: 7331 components: - type: Transform - pos: 509.5,384.5 - parent: 1 -- proto: PillSpaceDrugs - entities: - - uid: 18398 + pos: -124.5,-42.5 + parent: 2 + - uid: 8237 components: - type: Transform - pos: 360.5,424.5 - parent: 1 - - uid: 18399 + pos: -18.5,16.5 + parent: 2 + - uid: 10422 components: - type: Transform - pos: 360.5,424.5 - parent: 1 - - uid: 18400 + pos: -37.5,-46.5 + parent: 2 + - uid: 15017 components: - type: Transform - pos: 360.5,425.5 - parent: 1 - - uid: 18589 + pos: -119.5,33.5 + parent: 2 + - uid: 17486 components: - type: Transform - pos: 355.5,438.5 - parent: 1 -- proto: PineappleSeeds - entities: - - uid: 20833 + pos: -136.5,26.5 + parent: 2 + - uid: 17824 components: - type: Transform - pos: 452.5,405.5 - parent: 1 -- proto: PinpointerNuclear - entities: - - uid: 5764 + pos: -84.5,-44.5 + parent: 2 + - uid: 25616 components: - type: Transform - pos: 368.5,411.5 - parent: 1 -- proto: PipeBombGunpowder + pos: -53.5,-29.5 + parent: 2 +- proto: KitchenReagentGrinder entities: - - uid: 17368 + - uid: 1191 components: - type: Transform - pos: 477.5,373.5 - parent: 1 -- proto: PlaqueAtmos - entities: - - uid: 6280 + pos: -51.5,-31.5 + parent: 2 + - uid: 8380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,415.5 - parent: 1 -- proto: PlasmaCanister - entities: - - uid: 6376 + pos: -47.5,-24.5 + parent: 2 + - uid: 8389 components: - type: Transform - pos: 336.5,430.5 - parent: 1 - - uid: 7378 + pos: -36.5,-19.5 + parent: 2 + - uid: 14362 components: - type: Transform - pos: 324.5,416.5 - parent: 1 - - uid: 7518 + pos: -70.5,-29.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 3434 components: - type: Transform - pos: 352.5,393.5 - parent: 1 - - uid: 12308 + pos: -46.5,-29.5 + parent: 2 + - uid: 8870 components: - type: Transform - pos: 297.5,385.5 - parent: 1 - - uid: 20412 + pos: -32.5,-52.5 + parent: 2 +- proto: Lamp + entities: + - uid: 1620 components: - type: Transform - pos: 1.5,2.5 - parent: 20181 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 18595 + pos: -98.47559,-45.29295 + parent: 2 + - uid: 2902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,434.5 - parent: 1 - - uid: 18596 + pos: -42.455414,0.83542824 + parent: 2 + - uid: 3880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,434.5 - parent: 1 - - uid: 20823 + pos: -44.491398,-52.16843 + parent: 2 + - uid: 6892 components: - type: Transform - pos: 357.5,433.5 - parent: 1 - - uid: 21220 + pos: -98.46269,-39.063854 + parent: 2 + - uid: 22078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,433.5 - parent: 1 -- proto: PlasmaTank + pos: -98.51384,-35.154552 + parent: 2 +- proto: LampGold entities: - - uid: 20413 + - uid: 2919 components: - type: Transform - pos: 6.5,-0.5 - parent: 20181 -- proto: PlasmaTankFilled - entities: - - uid: 18391 + pos: -46.448536,-4.0864625 + parent: 2 + - uid: 9203 components: - type: Transform - pos: 359.5,419.5 - parent: 1 -- proto: PlasticBanana - entities: - - uid: 5541 + pos: -78.498375,-29.35603 + parent: 2 + - uid: 13267 components: - type: Transform - pos: 390.5,411.5 - parent: 1 -- proto: PlasticFlapsAirtightClear + pos: -35.50149,-40.289227 + parent: 2 +- proto: LampInterrogator entities: - - uid: 1202 + - uid: 13536 components: - type: Transform - pos: 329.5,442.5 - parent: 1 - - uid: 4082 + pos: -87.54291,-33.290844 + parent: 2 +- proto: Lantern + entities: + - uid: 22393 components: - type: Transform - pos: 370.5,377.5 - parent: 1 - - uid: 4531 + pos: -46.5,-46.5 + parent: 2 + - uid: 22394 components: - type: Transform - pos: 366.5,377.5 - parent: 1 - - uid: 5687 + pos: -46.5,-44.5 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 12763 components: - type: Transform - pos: 366.5,379.5 - parent: 1 - - uid: 5688 + pos: -54.486046,-29.320034 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 22397 components: - type: Transform - pos: 370.5,379.5 - parent: 1 -- proto: PlasticFlapsAirtightOpaque + pos: -112.5,27.5 + parent: 2 +- proto: LedLightBulb entities: - - uid: 18202 + - uid: 22441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,388.5 - parent: 1 -- proto: PlayerStationAi + parent: 22440 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False +- proto: LightReplacer entities: - - uid: 3586 + - uid: 8312 components: - type: Transform - pos: 307.5,410.5 - parent: 1 -- proto: PlayerStationAiEmpty + parent: 7826 + - type: Physics + canCollide: False +- proto: LiveLetLiveCircuitBoard entities: - - uid: 574 + - uid: 24942 components: - type: Transform - pos: 361.5,411.5 - parent: 1 -- proto: PlushieAtmosian + pos: -117.3083,-70.19566 + parent: 2 +- proto: LockableButtonAtmospherics entities: - - uid: 20414 + - uid: 5325 components: + - type: MetaData + name: lockable button (Plasma Storage Vent) - type: Transform - pos: -2.5,2.5 - parent: 20181 -- proto: PlushieMoth - entities: - - uid: 18055 + rot: 3.141592653589793 rad + pos: -111.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 668: + - Pressed: Toggle + - type: Label + currentLabel: Plasma Storage Vent + - type: NameModifier + baseName: lockable button + - uid: 5326 components: - type: MetaData - desc: Прикреплено к столу намертво. Замаппил всю станцию, автор так же этого чёртового размещения декалей. - name: плюшевый OneYa + name: lockable button (Burn Chamber Vent) - type: Transform - pos: 379.5,408.5 - parent: 1 - missingComponents: - - Item - - Pullable - - uid: 20415 + pos: -111.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 669: + - Pressed: Toggle + - type: Label + currentLabel: Burn Chamber Vent + - type: NameModifier + baseName: lockable button +- proto: LockableButtonCommand + entities: + - uid: 11190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9290: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 5991 components: - type: MetaData - desc: Замаппил шаттл - name: Плюшевый OneYa + name: lockable button (EMERGENCY VENT) - type: Transform - pos: 3.5,-2.5 - parent: 20181 - - uid: 21036 + rot: 1.5707963267948966 rad + pos: -152.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4923: + - Pressed: Toggle + 4922: + - Pressed: Toggle + 4924: + - Pressed: Toggle + - type: Label + currentLabel: EMERGENCY VENT + - type: NameModifier + baseName: lockable button + - uid: 6167 components: - type: MetaData - desc: Просто жужка. Жужужас. - name: плюшевый клиент + name: lockable button (EMERGENCY VENT) - type: Transform - pos: -0.5,3.5 - parent: 20527 -- proto: PlushieRatvar + pos: -137.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4923: + - Pressed: Toggle + 4922: + - Pressed: Toggle + 4924: + - Pressed: Toggle + - type: Label + currentLabel: EMERGENCY VENT + - type: NameModifier + baseName: lockable button +- proto: LockableButtonMaintenance entities: - - uid: 20082 + - uid: 8824 components: - type: Transform - pos: 339.5,439.5 - parent: 1 -- proto: PortableFlasher + rot: 3.141592653589793 rad + pos: -12.5,-44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8812: + - Pressed: DoorBolt +- proto: LockableButtonMedical entities: - - uid: 6142 + - uid: 2458 components: - type: Transform - pos: 427.5,414.5 - parent: 1 -- proto: PortableGeneratorJrPacman - entities: - - uid: 6244 + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5862: + - Pressed: Open + 5752: + - Pressed: Open + - uid: 2607 components: + - type: MetaData + name: lockable button (Front Door) - type: Transform - pos: 369.5,419.5 - parent: 1 - - uid: 18582 + pos: -32.5,-21 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3972: + - Pressed: Toggle + 3988: + - Pressed: Toggle + - type: Label + currentLabel: Front Door + - type: NameModifier + baseName: lockable button + - uid: 3989 components: - type: Transform - pos: 353.5,409.5 - parent: 1 - - uid: 18583 + pos: -31.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3972: + - Pressed: Toggle + 3988: + - Pressed: Toggle + - uid: 4192 components: - type: Transform - pos: 360.5,413.5 - parent: 1 - - uid: 18584 + rot: 1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4190: + - Pressed: Toggle + 4191: + - Pressed: Toggle + 4189: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 5383 components: - type: Transform - pos: 344.5,385.5 - parent: 1 - - uid: 18585 + pos: -115.5,17.5 + parent: 2 + - uid: 5389 components: - type: Transform - pos: 344.5,384.5 - parent: 1 - - uid: 18624 + pos: -116.5,17.5 + parent: 2 + - uid: 5702 components: - type: Transform - pos: 341.5,434.5 - parent: 1 - - uid: 18725 + pos: -121.5,-6.5 + parent: 2 + - uid: 5703 components: - type: Transform - pos: 421.5,374.5 - parent: 1 - - uid: 18726 + pos: -121.5,-5.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 7015 components: - type: Transform - pos: 421.5,373.5 - parent: 1 - - uid: 18730 + pos: -67.5,-24.5 + parent: 2 + - uid: 10749 components: - type: Transform - pos: 421.5,369.5 - parent: 1 -- proto: PortableGeneratorPacman + pos: -68.5,-24.5 + parent: 2 +- proto: LockerBotanistFilled entities: - - uid: 6245 + - uid: 7536 components: - type: Transform - pos: 368.5,419.5 - parent: 1 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 17306 + pos: -45.5,-20.5 + parent: 2 + - uid: 9153 components: - type: Transform - pos: 327.5,410.5 - parent: 1 -- proto: PortableScrubber + pos: -45.5,-19.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser entities: - - uid: 6261 + - uid: 2896 components: - type: Transform - pos: 337.5,419.5 - parent: 1 - - uid: 6262 + pos: -42.5,2.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 23713 components: - type: Transform - pos: 338.5,419.5 - parent: 1 - - uid: 6275 + pos: -37.5,-25.5 + parent: 2 + - uid: 25619 components: - type: Transform - pos: 337.5,413.5 - parent: 1 - - uid: 6277 + pos: -37.5,-17.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 6285 components: - type: Transform - pos: 338.5,413.5 - parent: 1 -- proto: PosterBroken + pos: -129.5,-18.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled entities: - - uid: 18232 + - uid: 8359 components: - type: Transform - pos: 355.5,436.5 - parent: 1 - - uid: 18234 + pos: -37.5,-37.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 2062 components: - type: Transform - pos: 338.5,433.5 - parent: 1 - - uid: 20970 + pos: -100.5,-34.5 + parent: 2 + - uid: 16181 components: - type: Transform - pos: 334.5,443.5 - parent: 1 - - uid: 20971 + pos: -96.5,-37.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 7006 components: - type: Transform - pos: 334.5,437.5 - parent: 1 - - uid: 20972 + pos: -108.5,-50.5 + parent: 2 + - uid: 9661 components: - type: Transform - pos: 345.5,435.5 - parent: 1 - - uid: 21056 + pos: -17.5,-9.5 + parent: 2 + - uid: 20301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,436.5 - parent: 1 - - uid: 21057 + pos: -131.5,-6.5 + parent: 2 + - uid: 24465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,435.5 - parent: 1 -- proto: PosterContrabandAtmosiaDeclarationIndependence + pos: -24.5,-57.5 + parent: 2 +- proto: LockerEngineerFilledHardsuit entities: - - uid: 20416 + - uid: 7348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 20181 -- proto: PosterContrabandC20r - entities: - - uid: 17512 + pos: -112.5,-14.5 + parent: 2 + - uid: 9561 components: - type: Transform - pos: 505.5,379.5 - parent: 1 -- proto: PosterContrabandFreeSyndicateEncryptionKey - entities: - - uid: 17441 + pos: -116.5,-14.5 + parent: 2 + - uid: 9565 components: - type: Transform - pos: 503.5,387.5 - parent: 1 -- proto: PosterContrabandFunPolice - entities: - - uid: 16179 + pos: -115.5,-14.5 + parent: 2 + - uid: 9566 components: - type: Transform - pos: 2.5,4.5 - parent: 16114 -- proto: PosterContrabandMoth - entities: - - uid: 20417 + pos: -114.5,-14.5 + parent: 2 + - uid: 9567 components: - type: Transform - pos: 4.5,-2.5 - parent: 20181 -- proto: PosterContrabandNuclearDeviceInformational + pos: -113.5,-14.5 + parent: 2 +- proto: LockerEvidence entities: - - uid: 18357 + - uid: 6550 components: - type: Transform - pos: 421.5,388.5 - parent: 1 -- proto: PosterContrabandSmoke - entities: - - uid: 21702 + pos: -93.5,-39.5 + parent: 2 + - uid: 7032 components: - type: Transform - pos: 13.5,20.5 - parent: 5072 -- proto: PosterLegitCarbonDioxide - entities: - - uid: 20418 + pos: -93.5,-37.5 + parent: 2 + - uid: 8375 components: - - type: MetaData - desc: Банька атмосов. - name: Водяной пар - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-0.5 - parent: 20181 -- proto: PosterLegitGetYourLEGS - entities: - - uid: 17874 + pos: -96.5,-32.5 + parent: 2 + - uid: 8887 components: - type: Transform - pos: 436.5,387.5 - parent: 1 -- proto: PosterLegitIan - entities: - - uid: 21714 + pos: -96.5,-24.5 + parent: 2 + - uid: 9641 components: - type: Transform - pos: 11.5,16.5 - parent: 5072 -- proto: PosterLegitLoveIan + pos: -96.5,-28.5 + parent: 2 +- proto: LockerFreezer entities: - - uid: 21695 + - uid: 3436 components: - type: Transform - pos: 11.5,21.5 - parent: 5072 -- proto: PosterLegitMime - entities: - - uid: 5536 + pos: -49.5,-29.5 + parent: 2 + - uid: 3447 components: - type: Transform - pos: 396.5,411.5 - parent: 1 -- proto: PosterLegitNanotrasenLogo + pos: -50.5,-29.5 + parent: 2 +- proto: LockerFreezerBase entities: - - uid: 21680 + - uid: 1577 components: - type: Transform - pos: 5.5,26.5 - parent: 5072 -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 20419 + pos: -12.5,-0.5 + parent: 2 + - uid: 1985 components: - type: Transform - pos: 0.5,-1.5 - parent: 20181 -- proto: PosterMapSaltern - entities: - - uid: 21670 + pos: -136.5,28.5 + parent: 2 + - uid: 10848 components: - type: Transform - pos: 1.5,22.5 - parent: 5072 -- proto: PotatoAI - entities: - - uid: 21972 + pos: -86.5,-44.5 + parent: 2 + - uid: 19888 components: - type: Transform - pos: 308.5,426.5 - parent: 1 -- proto: PotatoAIChip - entities: - - uid: 17471 + pos: -18.5,19.5 + parent: 2 + - uid: 21062 components: - type: Transform - pos: 510.5,384.5 - parent: 1 - - uid: 21967 + pos: -37.5,-71.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9590 + - 21064 + - 21063 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 4290 components: - type: Transform - pos: 301.5,410.5 - parent: 1 - - uid: 21970 + pos: -75.5,-0.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 2918 components: - type: Transform - pos: 301.5,411.5 - parent: 1 - - uid: 21971 + pos: -42.5,-4.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 23671 components: - type: Transform - pos: 308.5,408.5 - parent: 1 -- proto: PottedPlantRandom + pos: -76.5,-32.5 + parent: 2 +- proto: LockerMedicalFilled entities: - - uid: 670 + - uid: 3806 components: - type: Transform - pos: 374.5,413.5 - parent: 1 - - uid: 710 + pos: -37.5,-33.5 + parent: 2 + - uid: 4022 components: - type: Transform - pos: 384.5,413.5 - parent: 1 - - uid: 738 + pos: -25.5,-42.5 + parent: 2 + - uid: 4118 components: - type: Transform - pos: 384.5,409.5 - parent: 1 - - uid: 797 + pos: -24.5,-42.5 + parent: 2 + - uid: 4120 components: - type: Transform - pos: 374.5,406.5 - parent: 1 - - uid: 4928 + pos: -23.5,-42.5 + parent: 2 + - uid: 10910 components: - type: Transform - pos: 409.5,390.5 - parent: 1 - - uid: 5300 + pos: -22.5,-42.5 + parent: 2 + - uid: 23288 components: - type: Transform - pos: 445.5,419.5 - parent: 1 - - uid: 5380 + pos: -36.5,-33.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 4010 components: - type: Transform - pos: 393.5,412.5 - parent: 1 - - uid: 5957 + pos: -40.5,-27.5 + parent: 2 + - uid: 20636 components: - type: Transform - pos: 421.5,352.5 - parent: 1 - - uid: 5958 + pos: -35.5,-56.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 3979 components: - type: Transform - pos: 420.5,355.5 - parent: 1 - - uid: 5959 + pos: -22.5,-26.5 + parent: 2 + - uid: 3986 components: - type: Transform - pos: 414.5,356.5 - parent: 1 - - uid: 5960 + pos: -23.5,-26.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 1148 components: - type: Transform - pos: 419.5,360.5 - parent: 1 - - uid: 5961 + pos: -88.5,35.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 7613 components: - type: Transform - pos: 414.5,360.5 - parent: 1 - - uid: 7578 + pos: -135.5,-43.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 19640 components: - type: Transform - pos: 359.5,396.5 - parent: 1 - - uid: 7580 + pos: -90.5,30.5 + parent: 2 + - uid: 22345 components: - type: Transform - pos: 348.5,398.5 - parent: 1 - - uid: 7581 + pos: -90.5,27.5 + parent: 2 + - uid: 23874 components: - type: Transform - pos: 340.5,397.5 - parent: 1 - - uid: 7582 + pos: -90.5,28.5 + parent: 2 + - uid: 23875 components: - type: Transform - pos: 363.5,392.5 - parent: 1 - - uid: 7583 + pos: -90.5,29.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 6033 components: - type: Transform - pos: 372.5,389.5 - parent: 1 - - uid: 7584 + pos: -142.5,-43.5 + parent: 2 + - uid: 7396 components: - type: Transform - pos: 367.5,383.5 - parent: 1 - - uid: 7585 + pos: -133.5,-41.5 + parent: 2 + - uid: 7397 components: - type: Transform - pos: 363.5,400.5 - parent: 1 - - uid: 15623 + pos: -132.5,-41.5 + parent: 2 + - uid: 7398 components: - type: Transform - pos: 374.5,409.5 - parent: 1 - - uid: 18319 + pos: -135.5,-41.5 + parent: 2 + - uid: 7399 components: - type: Transform - pos: 433.5,418.5 - parent: 1 - - uid: 18320 + pos: -134.5,-41.5 + parent: 2 + - uid: 11121 components: - type: Transform - pos: 434.5,417.5 - parent: 1 - - uid: 18537 + pos: -142.5,-42.5 + parent: 2 + - uid: 16521 components: - type: Transform - pos: 384.5,406.5 - parent: 1 - - uid: 18538 + pos: -118.5,-38.5 + parent: 2 +- proto: LockerSecurity + entities: + - uid: 8669 components: - type: Transform - pos: 370.5,417.5 - parent: 1 - - uid: 20881 + pos: -26.5,4.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 6658 components: - type: Transform - pos: 417.5,357.5 - parent: 1 - - uid: 21064 + pos: -85.5,-29.5 + parent: 2 + - uid: 6810 components: - type: Transform - pos: 336.5,416.5 - parent: 1 - - uid: 21065 + pos: -85.5,-25.5 + parent: 2 + - uid: 6851 components: - type: Transform - pos: 342.5,416.5 - parent: 1 - - uid: 21068 + pos: -84.5,-29.5 + parent: 2 + - uid: 6862 components: - type: Transform - pos: 336.5,386.5 - parent: 1 - - uid: 21320 + pos: -84.5,-25.5 + parent: 2 + - uid: 17780 components: - type: Transform - pos: 0.5,26.5 - parent: 5072 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 21366 + pos: -83.5,-29.5 + parent: 2 + - uid: 17782 components: - type: Transform - pos: 2.5,27.5 - parent: 5072 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - - uid: 21425 + pos: -83.5,-25.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: -83.5,-27.5 + parent: 2 + - uid: 22065 components: - type: Transform - pos: 4.5,27.5 - parent: 5072 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} -- proto: PottedPlantRandomPlastic - entities: - - uid: 21070 + pos: -84.5,-27.5 + parent: 2 + - uid: 22066 components: - type: Transform - pos: 342.5,386.5 - parent: 1 -- proto: PottedPlantRD + pos: -85.5,-27.5 + parent: 2 +- proto: LockerWardenFilled entities: - - uid: 7505 + - uid: 3888 components: - type: Transform - pos: 356.5,385.5 - parent: 1 -- proto: PowerCellHighPrinted + pos: -86.5,-22.5 + parent: 2 +- proto: LogicGateXor entities: - - uid: 6009 + - uid: 24217 components: - type: Transform - pos: 329.5,404.5 - parent: 1 -- proto: PowerCellRecharger + anchored: True + pos: -33.5,-77.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10081: + - Output: DoorBolt + - type: Physics + canCollide: False + bodyType: Static +- proto: LootSpawnerMaterialsSurplus entities: - - uid: 7418 + - uid: 13221 components: - type: Transform - pos: 342.5,395.5 - parent: 1 - - uid: 7442 + pos: -25.5,-9.5 + parent: 2 + - uid: 13222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,399.5 - parent: 1 - - uid: 7540 + pos: -26.5,-7.5 + parent: 2 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 4223 components: - type: Transform - pos: 350.5,400.5 - parent: 1 - - uid: 17041 + pos: -90.5,9.5 + parent: 2 + - uid: 15971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,413.5 - parent: 1 - - uid: 18944 + pos: -90.5,8.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 3857 components: - type: Transform - pos: 339.5,400.5 - parent: 1 - - uid: 18945 + pos: -44.462654,-54.353233 + parent: 2 + - uid: 6305 components: - type: Transform - pos: 341.5,405.5 - parent: 1 - - uid: 21075 + pos: -131.39606,-17.468153 + parent: 2 + - uid: 10136 components: - type: Transform - pos: 373.5,387.5 - parent: 1 - - uid: 21841 + pos: -55.49161,-78.39125 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 14143 components: - type: Transform - pos: 5.5,32.5 - parent: 5072 - - type: Physics - canCollide: False - - uid: 21979 + pos: -127.5,-36.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 7355 components: - type: Transform - pos: 358.5,384.5 - parent: 1 - - uid: 21980 + rot: 1.5707963267948966 rad + pos: -124.5,-35.5 + parent: 2 + - uid: 20492 components: - type: Transform - pos: 348.5,416.5 - parent: 1 - - uid: 21982 + rot: 3.141592653589793 rad + pos: -124.5,-36.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 7353 components: - type: Transform - pos: 417.5,417.5 - parent: 1 - - uid: 21983 + rot: 1.5707963267948966 rad + pos: -130.5,-35.5 + parent: 2 + - uid: 7354 components: - type: Transform - pos: 411.5,420.5 - parent: 1 - - uid: 21988 + rot: 1.5707963267948966 rad + pos: -130.5,-36.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 14168 components: - type: Transform - pos: 326.5,396.5 - parent: 1 - - uid: 21989 + pos: -147.5,-53.5 + parent: 2 + - uid: 15401 components: - type: Transform - pos: 394.5,375.5 - parent: 1 - - uid: 21990 + pos: -147.5,-37.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 17245 components: - type: Transform - pos: 407.5,369.5 - parent: 1 - - uid: 21991 + pos: -36.5,-21.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 16241 components: - type: Transform - pos: 425.5,353.5 - parent: 1 -- proto: PoweredDimSmallLight + pos: -36.5,-20.5 + parent: 2 +- proto: MachineFrame entities: - - uid: 14792 + - uid: 1158 components: - type: Transform rot: -1.5707963267948966 rad - pos: 432.5,417.5 - parent: 1 - - uid: 17675 + pos: -30.5,-73.5 + parent: 2 + - uid: 4490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,418.5 - parent: 1 - - uid: 20872 + pos: -81.5,2.5 + parent: 2 + - uid: 7858 components: - type: Transform - pos: 345.5,385.5 - parent: 1 - - uid: 21243 + rot: -1.5707963267948966 rad + pos: -154.5,-45.5 + parent: 2 + - uid: 18387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,425.5 - parent: 1 - - uid: 21244 + pos: -111.5,-16.5 + parent: 2 + - uid: 20314 components: - type: Transform - pos: 400.5,424.5 - parent: 1 - - uid: 21245 + pos: -118.5,-37.5 + parent: 2 + - uid: 21490 components: - type: Transform - pos: 357.5,424.5 - parent: 1 - - uid: 21246 + pos: -110.5,35.5 + parent: 2 + - uid: 21735 components: - type: Transform - pos: 356.5,428.5 - parent: 1 - - uid: 21247 + rot: 1.5707963267948966 rad + pos: -121.5,22.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 21614 components: - type: Transform - pos: 351.5,435.5 - parent: 1 - - uid: 21248 + pos: -19.5,-23.5 + parent: 2 + - uid: 22227 components: - type: Transform - pos: 354.5,438.5 - parent: 1 - - uid: 21249 + pos: -110.5,36.5 + parent: 2 +- proto: MagazinePistol + entities: + - uid: 4573 components: - type: Transform - pos: 337.5,435.5 - parent: 1 - - uid: 21250 + pos: -88.47877,-22.559776 + parent: 2 + - uid: 7611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,436.5 - parent: 1 - - uid: 21251 + pos: -88.24439,-22.544151 + parent: 2 + - uid: 22083 components: - type: Transform - pos: 324.5,433.5 - parent: 1 - - uid: 21252 + pos: -88.74439,-22.559776 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 8276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 323.5,429.5 - parent: 1 - - uid: 21253 + pos: -78.560875,-30.73103 + parent: 2 + - uid: 24471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,392.5 - parent: 1 - - uid: 21254 + pos: -78.373375,-30.934155 + parent: 2 +- proto: MailingUnit + entities: + - uid: 3680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,389.5 - parent: 1 - - uid: 21255 + pos: -40.5,-22.5 + parent: 2 + - type: MailingUnit + tag: Chemistry + - type: Configuration + config: + tag: Chemistry + - uid: 14154 components: - type: Transform - pos: 335.5,383.5 - parent: 1 - - uid: 21256 + pos: -48.5,-26.5 + parent: 2 + - type: MailingUnit + tag: Kitchen + - type: Configuration + config: + tag: Kitchen + - uid: 14156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,382.5 - parent: 1 - - uid: 21257 + pos: -107.5,-14.5 + parent: 2 + - type: MailingUnit + tag: Engineering + - type: Configuration + config: + tag: Engineering + - uid: 14526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 427.5,383.5 - parent: 1 - - uid: 21258 + pos: -116.5,-40.5 + parent: 2 + - type: MailingUnit + tag: Science + - type: Configuration + config: + tag: Science + - uid: 15286 components: - type: Transform - pos: 372.5,385.5 - parent: 1 - - uid: 21259 + pos: -36.5,-27.5 + parent: 2 + - type: MailingUnit + tag: Medical + - type: Configuration + config: + tag: Medical + - uid: 15297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,364.5 - parent: 1 - - uid: 21260 + pos: -45.5,-21.5 + parent: 2 + - type: MailingUnit + tag: Botany + - type: Configuration + config: + tag: Botany + - uid: 15708 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,365.5 - parent: 1 - - uid: 21261 + pos: -69.5,-24.5 + parent: 2 + - uid: 18474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,367.5 - parent: 1 - - uid: 21262 + pos: -93.5,-25.5 + parent: 2 + - uid: 25551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,373.5 - parent: 1 - - uid: 21263 + pos: -103.5,13.5 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 20643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,378.5 - parent: 1 - - uid: 21264 + pos: -34.5,-57.5 + parent: 2 + - uid: 21377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,382.5 - parent: 1 - - uid: 21265 + pos: -38.5,-65.5 + parent: 2 + - uid: 26148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,385.5 - parent: 1 - - uid: 21266 + pos: -138.5,23.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 19398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 432.5,384.5 - parent: 1 - - uid: 21267 + pos: -42.5,-19.5 + parent: 2 + - uid: 20946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,391.5 - parent: 1 - - uid: 21602 + pos: -44.5,-32.5 + parent: 2 + - uid: 21382 components: - type: Transform - pos: 11.5,24.5 - parent: 5072 - - uid: 21613 + pos: -48.5,-41.5 + parent: 2 + - uid: 24166 components: - type: Transform - pos: 14.5,21.5 - parent: 5072 -- proto: Poweredlight + pos: -90.5,4.5 + parent: 2 +- proto: MaintenanceToolSpawner entities: - - uid: 1350 + - uid: 15337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,390.5 - parent: 1 - - uid: 1372 + pos: -37.5,0.5 + parent: 2 + - uid: 20631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 375.5,377.5 - parent: 1 - - uid: 1508 + pos: -38.5,-54.5 + parent: 2 + - uid: 21375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,402.5 - parent: 1 - - uid: 2272 + pos: -30.5,-64.5 + parent: 2 + - uid: 21655 components: - type: Transform - pos: 413.5,375.5 - parent: 1 - - uid: 2739 + pos: -30.5,-66.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 20630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,381.5 - parent: 1 - - uid: 4074 + pos: -39.5,-54.5 + parent: 2 + - uid: 26147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 293.5,390.5 - parent: 1 - - uid: 4481 + pos: -138.5,24.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 9130 components: - type: Transform - pos: 332.5,404.5 - parent: 1 - - uid: 4482 + pos: -52.435898,-61.550594 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 22391 components: - type: Transform - pos: 337.5,404.5 - parent: 1 - - uid: 4483 + pos: -8.5,-31.5 + parent: 2 +- proto: Mattress + entities: + - uid: 3389 components: - type: Transform - pos: 344.5,404.5 - parent: 1 - - uid: 4484 + pos: -10.5,3.5 + parent: 2 + - uid: 3394 components: - type: Transform - pos: 352.5,404.5 - parent: 1 - - uid: 4485 + pos: -10.5,2.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 1986 components: - type: Transform - pos: 341.5,399.5 - parent: 1 - - uid: 4486 + pos: -38.5,-29.5 + parent: 2 + - uid: 1997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,399.5 - parent: 1 - - uid: 4487 + pos: -36.5,-29.5 + parent: 2 + - uid: 5831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,395.5 - parent: 1 - - uid: 4488 + pos: -38.5,-31.5 + parent: 2 + - uid: 5834 components: - type: Transform - pos: 357.5,404.5 - parent: 1 - - uid: 4489 + pos: -34.5,-29.5 + parent: 2 + - uid: 5837 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,402.5 - parent: 1 - - uid: 4490 + pos: -34.5,-31.5 + parent: 2 + - uid: 6440 components: - type: Transform - pos: 369.5,404.5 - parent: 1 - - uid: 4491 + pos: -36.5,-31.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 4119 components: - type: Transform - pos: 376.5,404.5 - parent: 1 - - uid: 4492 + pos: -21.5,-42.5 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 2102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,402.5 - parent: 1 - - uid: 4493 + pos: -22.33516,-46.510864 + parent: 2 + - uid: 5832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,400.5 - parent: 1 - - uid: 4494 + pos: -22.507034,-46.74524 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 2103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,396.5 - parent: 1 - - uid: 4495 + pos: -22.96016,-46.49524 + parent: 2 + - uid: 2105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,395.5 - parent: 1 - - uid: 4496 + pos: -23.14766,-46.729614 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 1918 components: - type: Transform - pos: 372.5,398.5 - parent: 1 - - uid: 4497 + pos: -55.421745,7.51573 + parent: 2 + - uid: 2495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 371.5,392.5 - parent: 1 - - uid: 4498 + pos: -24.58516,-46.760864 + parent: 2 + - uid: 2498 components: - type: Transform - pos: 372.5,389.5 - parent: 1 - - uid: 4499 + pos: -24.39766,-46.510864 + parent: 2 + - uid: 6463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,390.5 - parent: 1 - - uid: 4501 + pos: -27.428333,-17.453312 + parent: 2 + - uid: 6464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,385.5 - parent: 1 - - uid: 4507 + pos: -38.448322,-30.479916 + parent: 2 + - uid: 10151 components: - type: Transform - pos: 360.5,390.5 - parent: 1 - - uid: 4508 + pos: -93.48808,28.551973 + parent: 2 + - uid: 20641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,392.5 - parent: 1 - - uid: 4509 + pos: -35.5,-57.5 + parent: 2 + - uid: 22276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,396.5 - parent: 1 - - uid: 4510 + pos: -89.49908,-23.118275 + parent: 2 + - uid: 23125 components: - type: Transform - pos: 357.5,400.5 - parent: 1 - - uid: 4511 + pos: -54.398636,-68.47366 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 2104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,395.5 - parent: 1 - - uid: 4513 + pos: -23.850784,-46.792114 + parent: 2 + - uid: 6459 components: - type: Transform - pos: 350.5,400.5 - parent: 1 - - uid: 4515 + pos: -23.67891,-46.573364 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 6460 components: - type: Transform - pos: 344.5,395.5 - parent: 1 - - uid: 4520 + pos: -21.77266,-46.74524 + parent: 2 + - uid: 6461 components: - type: Transform - pos: 349.5,389.5 - parent: 1 - - uid: 4521 + pos: -21.507034,-46.542114 + parent: 2 +- proto: Memorial + entities: + - uid: 8986 components: + - type: MetaData + desc: This memorial is dedicated to the spacemen and women - past, present and future - who worked to make space as great as it is today, and who strive to make it greater still. - type: Transform - pos: 351.5,393.5 - parent: 1 - - uid: 4523 + pos: -61.5,-27.5 + parent: 2 +- proto: MetalDoor + entities: + - uid: 21046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,388.5 - parent: 1 - - uid: 4524 + pos: -70.5,-77.5 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 16006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,383.5 - parent: 1 - - uid: 4525 + pos: -114.46207,-31.441647 + parent: 2 +- proto: MiningDrill + entities: + - uid: 2813 components: + - type: MetaData + desc: The humble mining drill. This is an older model, but it should still work all the same. - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,384.5 - parent: 1 - - uid: 4529 + pos: -58.961426,-12.536688 + parent: 2 +- proto: Mirror + entities: + - uid: 3392 components: - type: Transform - pos: 368.5,381.5 - parent: 1 - - uid: 4533 + rot: 1.5707963267948966 rad + pos: -56.5,-37.5 + parent: 2 + - uid: 3822 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,381.5 - parent: 1 - - uid: 4534 + pos: -62.5,-59.5 + parent: 2 + - uid: 3823 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,379.5 - parent: 1 - - uid: 4535 + rot: -1.5707963267948966 rad + pos: -62.5,-60.5 + parent: 2 + - uid: 4204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,380.5 - parent: 1 - - uid: 4542 + rot: -1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 2 + - uid: 6160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,387.5 - parent: 1 - - uid: 4543 + pos: -111.5,-19.5 + parent: 2 + - uid: 6161 components: - type: Transform - pos: 323.5,387.5 - parent: 1 - - uid: 4544 + pos: -109.5,-19.5 + parent: 2 + - uid: 7555 components: - type: Transform - pos: 319.5,387.5 - parent: 1 - - uid: 4545 + pos: -130.5,-49.5 + parent: 2 + - uid: 7556 components: - type: Transform - pos: 312.5,388.5 - parent: 1 - - uid: 4546 + pos: -128.5,-49.5 + parent: 2 + - uid: 11241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,385.5 - parent: 1 - - uid: 4547 + pos: -43.5,-0.5 + parent: 2 + - uid: 24671 components: + - type: MetaData + desc: An digital mirror which uses advanced machine learning algorithms to enhance the appearance of those who view it. Despite all that, you don't look any different than normal. You're not sure if you should feel praised or offended. + name: Nanotrasen Brand Beauty Enhancing E-Mirror™ - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,380.5 - parent: 1 - - uid: 4548 + rot: 3.141592653589793 rad + pos: -69.5,-23.5 + parent: 2 + - uid: 25364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 303.5,385.5 - parent: 1 - - uid: 4549 + pos: -89.5,-49.5 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 15958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,384.5 - parent: 1 - - uid: 4550 + pos: -14.5,-1.5 + parent: 2 + - uid: 19732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 303.5,389.5 - parent: 1 - - uid: 4553 + pos: -18.5,-1.5 + parent: 2 +- proto: MopItem + entities: + - uid: 3323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 293.5,384.5 - parent: 1 - - uid: 4554 + pos: -17.668892,-4.406474 + parent: 2 + - uid: 8162 components: - type: Transform - pos: 382.5,397.5 - parent: 1 - - uid: 4555 + parent: 7826 + - type: Physics + canCollide: False + - uid: 9500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,382.5 - parent: 1 - - uid: 4556 + pos: -14.528507,-1.5713043 + parent: 2 + - uid: 22297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 317.5,383.5 - parent: 1 - - uid: 4558 + pos: -18.550848,-1.5089836 + parent: 2 + - uid: 25709 components: - type: Transform - pos: 377.5,397.5 - parent: 1 - - uid: 4563 + pos: -82.47984,-49.47957 + parent: 2 +- proto: Morgue + entities: + - uid: 3887 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,385.5 - parent: 1 - - uid: 4564 + pos: -46.5,-34.5 + parent: 2 + - uid: 3890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,369.5 - parent: 1 - - uid: 4565 + pos: -44.5,-34.5 + parent: 2 + - uid: 3891 components: - type: Transform - pos: 392.5,374.5 - parent: 1 - - uid: 4568 + pos: -43.5,-34.5 + parent: 2 + - uid: 3892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,372.5 - parent: 1 - - uid: 4569 + pos: -42.5,-34.5 + parent: 2 + - uid: 3898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 400.5,369.5 - parent: 1 - - uid: 4572 + rot: 1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - uid: 3899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,368.5 - parent: 1 - - uid: 4573 + pos: -46.5,-37.5 + parent: 2 + - uid: 3900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 403.5,375.5 - parent: 1 - - uid: 4574 + pos: -46.5,-38.5 + parent: 2 + - uid: 3901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,369.5 - parent: 1 - - uid: 4575 + rot: 1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 3906 components: - type: Transform - pos: 411.5,368.5 - parent: 1 - - uid: 4576 + rot: 3.141592653589793 rad + pos: -44.5,-38.5 + parent: 2 + - uid: 3907 components: - type: Transform - pos: 411.5,371.5 - parent: 1 - - uid: 4577 + rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + - uid: 3908 components: - type: Transform - pos: 418.5,371.5 - parent: 1 - - uid: 4578 + rot: 3.141592653589793 rad + pos: -42.5,-38.5 + parent: 2 + - uid: 13823 components: - type: Transform - pos: 418.5,368.5 - parent: 1 - - uid: 4579 + rot: 3.141592653589793 rad + pos: -126.5,-55.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 8613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,369.5 - parent: 1 - - uid: 4582 + pos: -49.5,-41.5 + parent: 2 + - uid: 22395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,364.5 - parent: 1 - - uid: 4583 + pos: -42.5,-27.5 + parent: 2 + - uid: 24285 components: - type: Transform - pos: 417.5,360.5 - parent: 1 - - uid: 4585 + pos: -41.5,-53.5 + parent: 2 + - uid: 24295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,354.5 - parent: 1 - - uid: 4586 + pos: -13.5,-35.5 + parent: 2 +- proto: Multitool + entities: + - uid: 410 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,355.5 - parent: 1 - - uid: 4587 + pos: -23.513216,-5.325088 + parent: 2 + - uid: 3341 + components: + - type: Transform + parent: 3336 + - type: Physics + canCollide: False + - uid: 6282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,351.5 - parent: 1 - - uid: 4588 + pos: -127.473854,-14.412296 + parent: 2 + - uid: 7405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,351.5 - parent: 1 - - uid: 4589 + pos: -54.671745,3.656355 + parent: 2 + - uid: 22314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,351.5 - parent: 1 - - uid: 4590 + pos: -60.406895,-3.2451763 + parent: 2 + - uid: 25200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,356.5 - parent: 1 - - uid: 4596 + pos: -118.46083,-76.449524 + parent: 2 +- proto: NewsReaderCartridge + entities: + - uid: 16012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,372.5 - parent: 1 - - uid: 4597 + pos: -109.437035,-33.5124 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 5266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,379.5 - parent: 1 - - uid: 4598 + pos: -111.5,13.5 + parent: 2 + - uid: 5267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,381.5 - parent: 1 - - uid: 4599 + pos: -111.5,14.5 + parent: 2 + - uid: 5711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,378.5 - parent: 1 - - uid: 4602 + pos: -114.5,-2.5 + parent: 2 + - uid: 5712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,385.5 - parent: 1 - - uid: 4603 + pos: -114.5,-3.5 + parent: 2 + - uid: 5801 components: - type: Transform - pos: 411.5,385.5 - parent: 1 - - uid: 4604 + pos: -111.5,15.5 + parent: 2 + - uid: 5893 components: - type: Transform - pos: 408.5,393.5 - parent: 1 - - uid: 4605 + pos: -117.5,-12.5 + parent: 2 + - uid: 7371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,387.5 - parent: 1 - - uid: 4606 + pos: -140.5,-44.5 + parent: 2 + - uid: 9605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,390.5 - parent: 1 - - uid: 4609 + pos: -136.5,-4.5 + parent: 2 + - uid: 15329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,388.5 - parent: 1 - - uid: 4610 + pos: -32.5,6.5 + parent: 2 + - uid: 15838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,395.5 - parent: 1 - - uid: 4611 + pos: -14.5,-18.5 + parent: 2 + - uid: 23955 components: - type: Transform - pos: 404.5,397.5 - parent: 1 - - uid: 4612 + pos: -129.5,11.5 + parent: 2 + - uid: 24482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,392.5 - parent: 1 - - uid: 4613 + pos: -37.5,-2.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 5275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,387.5 - parent: 1 - - uid: 4614 + pos: -107.5,13.5 + parent: 2 + - uid: 18977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,382.5 - parent: 1 - - uid: 4615 + pos: -129.5,1.5 + parent: 2 +- proto: NodeScanner + entities: + - uid: 7393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,378.5 - parent: 1 - - uid: 4622 + pos: -146.4721,-45.42309 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,402.5 - parent: 1 - - uid: 4623 + rot: 1.5707963267948966 rad + pos: -101.5,-38.5 + parent: 2 + - uid: 7604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,402.5 - parent: 1 - - uid: 4624 + pos: -125.5,-41.5 + parent: 2 + - uid: 22362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,402.5 - parent: 1 - - uid: 4625 + pos: -34.5,-45.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 24944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,402.5 - parent: 1 - - uid: 4627 + pos: -118.333496,-70.19241 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,408.5 - parent: 1 - - uid: 4628 + rot: 3.141592653589793 rad + pos: -73.5,-2.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 7429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,412.5 - parent: 1 - - uid: 4629 + pos: -38.5,-74.5 + parent: 2 +- proto: NukeDiskFake + entities: + - uid: 7191 components: + - type: MetaData + desc: Although definitely a convincing replica of the station's nuclear authentication disk - this one appears to be badly chared and definitely unusable. Perhaps it managed to survive whatever detonation it was used in? It has a station ID printed on it - which is barely legible as "Grasshopper". - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,411.5 - parent: 1 - - uid: 4630 + pos: -39.482143,-71.523224 + parent: 2 + missingComponents: + - Contraband +- proto: NutimovCircuitBoard + entities: + - uid: 24945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,407.5 - parent: 1 - - uid: 4631 + pos: -117.38037,-70.35507 + parent: 2 +- proto: Ointment + entities: + - uid: 20644 components: - type: Transform - pos: 396.5,410.5 - parent: 1 - - uid: 4633 + pos: -32.511818,-57.42682 + parent: 2 +- proto: OperatingTable + entities: + - uid: 3603 components: - type: Transform - pos: 400.5,410.5 - parent: 1 - - uid: 4634 + pos: -124.5,-54.5 + parent: 2 + - uid: 3895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,408.5 - parent: 1 - - uid: 4635 + pos: -40.5,-38.5 + parent: 2 + - uid: 4050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,413.5 - parent: 1 - - uid: 4636 + pos: -22.5,-34.5 + parent: 2 + - uid: 4055 components: - type: Transform - pos: 406.5,418.5 - parent: 1 - - uid: 4637 + pos: -22.5,-40.5 + parent: 2 + - uid: 8190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,417.5 - parent: 1 - - uid: 4638 + pos: -34.5,-36.5 + parent: 2 +- proto: OreBag + entities: + - uid: 21051 components: - type: Transform - pos: 396.5,415.5 - parent: 1 - - uid: 4639 + pos: -74.48228,-73.40599 + parent: 2 +- proto: OreBox + entities: + - uid: 1448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 392.5,415.5 - parent: 1 - - uid: 4640 + pos: -95.5,27.5 + parent: 2 + - uid: 2809 components: - type: Transform - pos: 400.5,413.5 - parent: 1 - - uid: 4641 + pos: -63.5,-12.5 + parent: 2 + - uid: 16385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,408.5 - parent: 1 - - uid: 4642 + pos: -83.5,-60.5 + parent: 2 + - uid: 21050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,410.5 - parent: 1 - - uid: 4643 + rot: 3.141592653589793 rad + pos: -73.5,-71.5 + parent: 2 + - uid: 22006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,422.5 - parent: 1 - - uid: 4644 + pos: -118.5,-29.5 + parent: 2 + - uid: 23393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,420.5 - parent: 1 - - uid: 4645 + pos: -98.5,4.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 15310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,420.5 - parent: 1 - - uid: 4647 + pos: -95.5,26.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 5268 components: - type: Transform - pos: 404.5,422.5 - parent: 1 - - uid: 4648 + pos: -110.5,14.5 + parent: 2 + - uid: 5269 components: - type: Transform - pos: 400.5,422.5 - parent: 1 - - uid: 4649 + pos: -110.5,13.5 + parent: 2 + - uid: 5713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,420.5 - parent: 1 - - uid: 4651 + pos: -113.5,-2.5 + parent: 2 + - uid: 5714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,408.5 - parent: 1 - - uid: 4652 + pos: -113.5,-3.5 + parent: 2 + - uid: 5802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,409.5 - parent: 1 - - uid: 4653 + pos: -110.5,15.5 + parent: 2 + - uid: 5880 components: - type: Transform - pos: 419.5,411.5 - parent: 1 - - uid: 4654 + pos: -117.5,-11.5 + parent: 2 + - uid: 7322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,409.5 - parent: 1 - - uid: 4655 + pos: -140.5,-43.5 + parent: 2 + - uid: 9607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,409.5 - parent: 1 - - uid: 4663 + pos: -136.5,-5.5 + parent: 2 + - uid: 13800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,404.5 - parent: 1 - - uid: 4664 + pos: -80.5,2.5 + parent: 2 + - uid: 15328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,400.5 - parent: 1 - - uid: 4665 + pos: -32.5,7.5 + parent: 2 + - uid: 15837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,397.5 - parent: 1 - - uid: 4667 + pos: -14.5,-17.5 + parent: 2 + - uid: 20384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,401.5 - parent: 1 - - uid: 4668 + pos: -129.5,9.5 + parent: 2 + - uid: 24483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,406.5 - parent: 1 - - uid: 4669 + pos: -37.5,-3.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 24947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,410.5 - parent: 1 - - uid: 4670 + pos: -117.458496,-70.54286 + parent: 2 +- proto: Paper + entities: + - uid: 2922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 452.5,409.5 - parent: 1 - - uid: 4671 + pos: -45.562256,-4.394846 + parent: 2 + - uid: 6296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 456.5,409.5 - parent: 1 - - uid: 4672 + pos: -131.42596,-17.358852 + parent: 2 + - type: Paper + content: >- + [color=#0033cc]◥[bold]N[/bold]◣[/color] [bold]Space Station 14 - Requisition Form - Form 05[/bold] + + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + + + [bold]Full Name:[/bold] + + [bold]Current Job:[/bold] + + + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + + [bold]Order ID:[/bold] 1 + + + [bold]Items Requested:[/bold] + + [bullet/] 90x Steel + + [bullet/] 90x Glass + + [bullet/] 90x Plasteel + + [bullet/] 30x Plastic + + + ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + + [bold]Reason:[/bold] Repair and construction materials + + [bold]Deliver to:[/bold] Engineering + - uid: 9488 components: - type: Transform - pos: 457.5,412.5 - parent: 1 - - uid: 4673 + pos: -101.69795,-65.35635 + parent: 2 + - uid: 18361 components: + - type: MetaData + name: paper (TEG Pamphlet) - type: Transform - rot: 1.5707963267948966 rad - pos: 457.5,404.5 - parent: 1 - - uid: 4674 + pos: -147.5,-7.5 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: TB Engineering Firm + content: >2- + + [head=1]"Caveman" Class Thermal Electric Generator[/head] + + [head=2]TB Engineering Firm[/head] + + + Thankyou for ordering your very own Thermal Electric Generator (TEG) from TB Engineering. Many first time adopters of the TEG struggle to understand it's ins and outs, but fear not! We've organised this short instruction pamphlet to provide a guide to setting up a basic TEG. This is not the only way to set up a TEG, but it's among the simplest. + + + [head=2]Setup[/head] + + + [bold]Step 0:[/bold] If this is your first time operating the TEG, TB Engineering highly recommend preparing an auxilary power solution first. The TEG may require extensive setup time - and will be difficult if assistance is not available. + + [bold]Step 1:[/bold] Connect the [italic]"Space Radiator Output"[/italic] pump to the south-east port of the TEG, and the [italic]"Space Radiator Input"[/italic] pump to the south-west port of the TEG. This should make a pipe loop. + + [bold]Step 2:[/bold] Fill the loop of pipes with a coolant. A single canister of water vapour is a good choice. + + [bold]Step 3:[/bold] Connect the [italic]"Fuel to TEG"[/italic] pump to the [italic]"Burn Chamber Input"[/italic] pump. + + [bold]Step 4:[/bold] Connect the [italic]"Burn Chamber Output"[/italic] pump to the north-west port of the TEG, and connect the [italic]"TEG to Space"[/italic] pump to the north-east port of the TEG. + + + [head=2]Operation[/head] + + + [bold]Step 6:[/bold] Enable all pumps that are part of the southern cooling loop to allow coolant flow. + + [bold]Step 5:[/bold] Pipe in a combustion mixture to the TEG from atmospherics, via the brown pipe. Ensure pumps are operational, and use the included gas analyzer to confirm contents. We recommend a mixture of 2% plasma and 98% oxygen. + + [bold]Step 6:[/bold] Inject a small amount of combustion mixture into the chamber - enough so that a purple colouration is visible - using the [italic]"Burn Chamber Input"[/italic] pump. + + [bold]Step 7[/bold] Use the "Ignite Chamber" button to ignite the fuel mixture. Ensure chamber properly ignites. + + [bold]Step 8[/bold] Engage the [italic]"Burn Chamber Input"[/italic] pump completely. Chamber may stop burning once sufficient pressure is reached - this is normal. + + [bold]Step 9[/bold] Engage [italic]"TEG to Space"[/italic] pump fully, and partially engage [italic]"Burn Chamber Output"[/italic] pump, limited to 30L/s. + + + [head=3]Troubleshooting[/head] + + + [bold]Circulators aren't turning:[/bold] The circulators are directional. Ensure that gas flow occurs in a clockwise direction. The provided unit should include pumps to help indicate direction. + + + [bold]Burn chamber not burning:[/bold] If chamber is still hot, this is normal and occurs once the burn chamber is at sufficient pressure and fuel is no longer injecting. Otherwise, ensure that fuel mixture is correct. If starting from a cold start, avoid injecting too much fuel to avoid flooding the chamber. + + + [bold]Insufficient power to operate TEG:[/bold] Use any available secondary power sources to power equipment as needed to start the TEG. If necassary, disable auxilary power connections to ensure TEG is properly powered for startup. + + + [bold]Gas leak occured within TEG facility:[/bold] Use included emergency ventilation shutters to evacuate gas from facility. Ensure proper hazard protection is worn during this proceedure. This operation can be done from the TEG chamber or TEG control room. + + + [bold]My team is incompetent:[/bold] Please return your team to your manufacturer as soon as possible and order a new one. Refunds may apply as per manufacturer warranty. TB Engineering takes no responsibility for injury, financial losses, station losses, braincell losses, loss of life or migraines caused by attempting to operate the TEG with a faulty team. + editingDisabled: True + - type: Label + currentLabel: TEG Pamphlet + - type: NameModifier + baseName: paper + - uid: 18362 components: + - type: MetaData + name: paper (TEG Pamphlet) - type: Transform - rot: -1.5707963267948966 rad - pos: 454.5,404.5 - parent: 1 - - uid: 4675 + pos: -141.5,-5.5 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: TB Engineering Firm + content: >2- + + [head=1]"Caveman" Class Thermal Electric Generator[/head] + + [head=2]TB Engineering Firm[/head] + + + Thankyou for ordering your very own Thermal Electric Generator (TEG) from TB Engineering. Many first time adopters of the TEG struggle to understand it's ins and outs, but fear not! We've organised this short instruction pamphlet to provide a guide to setting up a basic TEG. This is not the only way to set up a TEG, but it's among the simplest. + + + [head=2]Setup[/head] + + + [bold]Step 0:[/bold] If this is your first time operating the TEG, TB Engineering highly recommend preparing an auxilary power solution first. The TEG may require extensive setup time - and will be difficult if assistance is not available. + + [bold]Step 1:[/bold] Connect the [italic]"Space Radiator Output"[/italic] pump to the south-east port of the TEG, and the [italic]"Space Radiator Input"[/italic] pump to the south-west port of the TEG. This should make a pipe loop. + + [bold]Step 2:[/bold] Fill the loop of pipes with a coolant. A single canister of water vapour is a good choice. + + [bold]Step 3:[/bold] Connect the [italic]"Fuel to TEG"[/italic] pump to the [italic]"Burn Chamber Input"[/italic] pump. + + [bold]Step 4:[/bold] Connect the [italic]"Burn Chamber Output"[/italic] pump to the north-west port of the TEG, and connect the [italic]"TEG to Space"[/italic] pump to the north-east port of the TEG. + + + [head=2]Operation[/head] + + + [bold]Step 6:[/bold] Enable all pumps that are part of the southern cooling loop to allow coolant flow. + + [bold]Step 5:[/bold] Pipe in a combustion mixture to the TEG from atmospherics, via the brown pipe. Ensure pumps are operational, and use the included gas analyzer to confirm contents. We recommend a mixture of 2% plasma and 98% oxygen. + + [bold]Step 6:[/bold] Inject a small amount of combustion mixture into the chamber - enough so that a purple colouration is visible - using the [italic]"Burn Chamber Input"[/italic] pump. + + [bold]Step 7[/bold] Use the "Ignite Chamber" button to ignite the fuel mixture. Ensure chamber properly ignites. + + [bold]Step 8[/bold] Engage the [italic]"Burn Chamber Input"[/italic] pump completely. Chamber may stop burning once sufficient pressure is reached - this is normal. + + [bold]Step 9[/bold] Engage [italic]"TEG to Space"[/italic] pump fully, and partially engage [italic]"Burn Chamber Output"[/italic] pump, limited to 30L/s. + + + [head=3]Troubleshooting[/head] + + + [bold]Circulators aren't turning:[/bold] The circulators are directional. Ensure that gas flow occurs in a clockwise direction. The provided unit should include pumps to help indicate direction. + + + [bold]Burn chamber not burning:[/bold] If chamber is still hot, this is normal and occurs once the burn chamber is at sufficient pressure and fuel is no longer injecting. Otherwise, ensure that fuel mixture is correct. If starting from a cold start, avoid injecting too much fuel to avoid flooding the chamber. + + + [bold]Insufficient power to operate TEG:[/bold] Use any available secondary power sources to power equipment as needed to start the TEG. If necassary, disable auxilary power connections to ensure TEG is properly powered for startup. + + + [bold]Gas leak occured within TEG facility:[/bold] Use included emergency ventilation shutters to evacuate gas from facility. Ensure proper hazard protection is worn during this proceedure. This operation can be done from the TEG chamber or TEG control room. + + + [bold]My team is incompetent:[/bold] Please return your team to your manufacturer as soon as possible and order a new one. Refunds may apply as per manufacturer warranty. TB Engineering takes no responsibility for injury, financial losses, station losses, braincell losses, loss of life or migraines caused by attempting to operate the TEG with a faulty team. + editingDisabled: True + - type: Label + currentLabel: TEG Pamphlet + - type: NameModifier + baseName: paper + - uid: 18363 components: + - type: MetaData + name: paper (Research Module Pamphlet) - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,406.5 - parent: 1 - - uid: 4676 + pos: -133.5,-46.5 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: TB Engineering Firm + content: >2- + + [head=1]"Intrepid" Class Self-Contained Research Module[/head] + + [head=2]TB Engineering Firm[/head] + + + Thank you for purchasing your very own Intrepid Class Self-Contained Research Module! We here at TB Engineering have done our very best to ensure that this self-contained laboratory services all your research and prototyping needs. + + + The front of the module includes the main laboratory - that can be retrofitted for a variety of purposes, such as Xenobiology, Xenoarcheology, Cleanroom, Materials Analysis and far more! Ask us about the various options available - as we garantee we have one for your purposes. If not, custom refits are available at an increased cost. + + + The centre of the module consists of a multipurpose break room that can function as a place for rest and relaxation during designated break periods. Options include a deluxe variant with individual bunks for crew, a corporate standard variant with office and break room or a budget variant which includes a basic living area and bulk bunks. + + + The rear of the module consists of the storage compartments - which can be refitted into workshops or other utility rooms as needed. External retrofitting options will be required - as we do not provide equipment for these rooms. + + + For information about parts, repairs, refits or miscellaneous queries, contact us via our website at gww.tbeng.ntnet + + + [italic]TB Engineering Firm and it's subsidiaries takes no responsibility for any minor or major injury, loss of life, loss of profit, loss of time or loss of spacetime caused by use of the "Intrepid" Class Self-Contained Research Module. Read the full terms and conditions for details.[/italic] + editingDisabled: True + - type: Label + currentLabel: Research Module Pamphlet + - type: NameModifier + baseName: paper + - uid: 21070 components: + - type: MetaData + name: paper (Logbook) - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,417.5 - parent: 1 - - uid: 4677 + pos: -43.49996,-66.458694 + parent: 2 + - type: Paper + content: '[italic]A seemingly never ending record of STC logs. Seems like things were very busy years ago...[/italic]' + - type: Label + currentLabel: Logbook + - type: NameModifier + baseName: paper + - uid: 25911 components: - type: Transform - pos: 453.5,416.5 - parent: 1 - - uid: 4678 + pos: -101.33858,-65.41885 + parent: 2 + - uid: 25912 components: - type: Transform - pos: 459.5,416.5 - parent: 1 - - uid: 4679 + pos: -101.52608,-65.5751 + parent: 2 + - uid: 25913 components: - type: Transform - pos: 456.5,416.5 - parent: 1 - - uid: 4680 + pos: -101.77608,-65.8251 + parent: 2 + - uid: 25914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,414.5 - parent: 1 - - uid: 4681 + pos: -101.40108,-65.74698 + parent: 2 + - uid: 25915 components: - type: Transform - pos: 449.5,419.5 - parent: 1 - - uid: 4682 + pos: -101.57295,-65.43448 + parent: 2 + - uid: 25916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 447.5,422.5 - parent: 1 - - uid: 4683 + pos: -101.21358,-65.60635 + parent: 2 + - uid: 25917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,422.5 - parent: 1 - - uid: 4684 + pos: -101.57295,-65.66885 + parent: 2 + - uid: 25918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,404.5 - parent: 1 - - uid: 4685 + pos: -101.7917,-65.5126 + parent: 2 + - uid: 25919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,399.5 - parent: 1 - - uid: 4686 + pos: -101.08858,-65.21573 + parent: 2 + - uid: 25920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 426.5,395.5 - parent: 1 - - uid: 4691 + pos: -101.11983,-65.77823 + parent: 2 + - uid: 25921 components: - type: Transform - pos: 425.5,389.5 - parent: 1 - - uid: 4692 + pos: -101.40108,-65.2001 + parent: 2 + - uid: 26097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,388.5 - parent: 1 - - uid: 4693 + parent: 26096 + - type: Paper + content: Fuck this guy in particular + - type: Physics + canCollide: False +- proto: PaperArtifactAnalyzer + entities: + - uid: 7386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,391.5 - parent: 1 - - uid: 4694 + pos: -147.43387,-45.51684 + parent: 2 + - uid: 7387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,395.5 - parent: 1 - - uid: 4695 + pos: -147.27762,-45.313717 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,402.5 - parent: 1 - - uid: 4696 + pos: -48.5,-11.5 + parent: 2 + - uid: 2920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,402.5 - parent: 1 - - uid: 4697 + pos: -44.5,-4.5 + parent: 2 + - uid: 3725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,395.5 - parent: 1 - - uid: 4699 + pos: -75.5,-42.5 + parent: 2 + - uid: 3856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,406.5 - parent: 1 - - uid: 4700 + rot: 1.5707963267948966 rad + pos: -44.5,-54.5 + parent: 2 + - uid: 3969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,409.5 - parent: 1 - - uid: 4701 + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 6293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,413.5 - parent: 1 - - uid: 4702 + rot: -1.5707963267948966 rad + pos: -131.5,-16.5 + parent: 2 + - uid: 17847 components: - type: Transform - pos: 381.5,414.5 - parent: 1 - - uid: 4703 + rot: 3.141592653589793 rad + pos: -50.5,-54.5 + parent: 2 + - uid: 21768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,413.5 - parent: 1 - - uid: 4704 + pos: -85.5,29.5 + parent: 2 + - uid: 22307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,409.5 - parent: 1 - - uid: 4705 + rot: -1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - uid: 23949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,406.5 - parent: 1 - - uid: 4706 + pos: -19.5,-18.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 22274 components: - type: Transform - pos: 377.5,414.5 - parent: 1 - - uid: 4707 + pos: -51.5,-7.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 6715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 381.5,406.5 - parent: 1 - - uid: 4708 + pos: -100.5,-39.5 + parent: 2 + - uid: 9052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 377.5,406.5 - parent: 1 - - uid: 4709 + pos: -45.5,-66.5 + parent: 2 + - uid: 11136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 377.5,417.5 - parent: 1 - - uid: 4710 + rot: 1.5707963267948966 rad + pos: -99.5,12.5 + parent: 2 + - uid: 13266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 381.5,417.5 - parent: 1 - - uid: 4711 + pos: -35.5,-42.5 + parent: 2 + - uid: 14264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 372.5,419.5 - parent: 1 - - uid: 4712 + pos: -98.5,-47.5 + parent: 2 + - uid: 16027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,419.5 - parent: 1 - - uid: 4713 + pos: -109.5,-30.5 + parent: 2 + - uid: 20332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,421.5 - parent: 1 - - uid: 4714 + rot: 1.5707963267948966 rad + pos: -55.5,-78.5 + parent: 2 + - uid: 23165 components: - type: Transform - pos: 365.5,416.5 - parent: 1 - - uid: 4715 + pos: -78.5,-31.5 + parent: 2 + - uid: 25198 components: - type: Transform - pos: 369.5,416.5 - parent: 1 - - uid: 4717 + pos: -119.5,-76.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 2921 components: - type: Transform - pos: 368.5,411.5 - parent: 1 - - uid: 4718 + pos: -50.520332,0.600042 + parent: 2 + - uid: 22262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,406.5 - parent: 1 - - uid: 4719 + pos: -50.59109,0.45394158 + parent: 2 + - uid: 22263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,406.5 - parent: 1 - - uid: 4720 + pos: -50.40359,0.6726916 + parent: 2 +- proto: PaperCargoBountyManifest + entities: + - uid: 24451 components: - type: Transform - pos: 364.5,414.5 - parent: 1 - - uid: 4722 + pos: -61.7993,-4.3438354 + parent: 2 + - type: Paper + content: >- + [bold]Official cargo bounty manifest[/bold] (ID#NT420) + + Item manifest: + + - Cigarette x500 + + Reward: $7 +- proto: PaperCNCSheet + entities: + - uid: 26067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,407.5 - parent: 1 - - uid: 4723 + pos: -53.35575,-52.39451 + parent: 2 + - uid: 26068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,410.5 - parent: 1 - - uid: 4724 + pos: -53.387,-51.39451 + parent: 2 + - uid: 26069 components: - type: Transform - pos: 327.5,411.5 - parent: 1 - - uid: 4725 + pos: -54.5745,-51.441383 + parent: 2 + - uid: 26070 components: - type: Transform - pos: 336.5,411.5 - parent: 1 - - uid: 4726 + pos: -54.590126,-52.378883 + parent: 2 +- proto: PaperOffice + entities: + - uid: 15125 components: - type: Transform - pos: 339.5,411.5 - parent: 1 - - uid: 4727 + pos: -44.55973,-55.570694 + parent: 2 + - uid: 19030 components: - type: Transform - pos: 337.5,407.5 - parent: 1 - - uid: 4728 + pos: -110.5,-13.5 + parent: 2 + - type: Paper + content: >- + [head=1]TODO List:[/head] + + + Power: + + - Set up the AME + + - Set up the TEG [italic](What? There's no singularity?)[/italic] + + - Set up solars + + - Wire science onto the power grid [italic](Did the other guys forget that?)[/italic] + + + Atmos: + + - Set up distro + + - Set up waste + + - Hook the plasma gas miners into the storage tank [italic](Surely nothing can go wrong there...)[/italic] + + + Other: + + - Yell at cargo for more materials + + - Steal the protolathe board back + + - Order pizza + + - Survive? + - uid: 19876 components: - type: Transform - pos: 340.5,407.5 - parent: 1 - - uid: 4729 + pos: -101.597176,30.583181 + parent: 2 + - type: Paper + content: >- + [bold]Notice from management:[/bold] + + + Material redemption lines are not rides, please exit the material redemption line. + - uid: 26086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,409.5 - parent: 1 - - uid: 4730 + pos: -44.43473,-55.383194 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 1123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,409.5 - parent: 1 - - uid: 4731 + pos: -27.5,-71.5 + parent: 2 + - uid: 1209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,411.5 - parent: 1 - - uid: 4733 + pos: -27.5,-71.5 + parent: 2 + - uid: 18793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,414.5 - parent: 1 - - uid: 4734 + pos: -122.5,-0.5 + parent: 2 + - uid: 18794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,415.5 - parent: 1 - - uid: 4735 + pos: -122.5,-0.5 + parent: 2 + - uid: 18795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,414.5 - parent: 1 - - uid: 4736 + pos: -122.5,-0.5 + parent: 2 + - uid: 24498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,414.5 - parent: 1 - - uid: 4737 + pos: -36.49784,-9.52976 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 22430 components: + - type: MetaData + desc: Less threatening than it's immovable counterpart + name: Moveable Rod - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,414.5 - parent: 1 - - uid: 4738 + pos: -124.5,32.5 + parent: 2 +- proto: Pen + entities: + - uid: 384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,413.5 - parent: 1 - - uid: 4739 + pos: -78.514,-31.340405 + parent: 2 + - uid: 6478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,416.5 - parent: 1 - - uid: 4740 + pos: -34.63878,-30.44371 + parent: 2 + - uid: 15345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,419.5 - parent: 1 - - uid: 4742 + pos: -98.52247,-47.412907 + parent: 2 + - uid: 17812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,415.5 - parent: 1 - - uid: 4743 + pos: -90.535416,-31.618847 + parent: 2 + - uid: 20366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 319.5,424.5 - parent: 1 - - uid: 4744 + pos: -133.49283,-38.3233 + parent: 2 + - uid: 21769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,420.5 - parent: 1 - - uid: 4745 + pos: -85.522804,29.619007 + parent: 2 + - uid: 22308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,420.5 - parent: 1 - - uid: 4746 + pos: -60.54722,-1.3327641 + parent: 2 + - uid: 22310 components: - type: Transform - pos: 324.5,426.5 - parent: 1 - - uid: 4747 + pos: -62.497215,-2.4129562 + parent: 2 + - uid: 23950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,428.5 - parent: 1 - - uid: 4748 + pos: -19.467665,-18.322699 + parent: 2 + - uid: 24378 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,428.5 - parent: 1 - - uid: 4757 + pos: -50.521236,-54.385136 + parent: 2 + - uid: 25199 components: - type: Transform - pos: 349.5,431.5 - parent: 1 - - uid: 4758 + pos: -119.51269,-76.36488 + parent: 2 + - uid: 25926 components: - type: Transform - pos: 346.5,427.5 - parent: 1 - - uid: 4759 + pos: -101.49483,-65.52057 + parent: 2 +- proto: PenHop + entities: + - uid: 2923 components: - type: Transform - pos: 343.5,427.5 - parent: 1 - - uid: 4760 + pos: -45.499756,-4.410471 + parent: 2 +- proto: PersonalAI + entities: + - uid: 21745 components: - type: Transform - pos: 340.5,427.5 - parent: 1 - - uid: 4761 + pos: -62.174522,-3.1858506 + parent: 2 + - uid: 24951 components: - type: Transform - pos: 337.5,427.5 - parent: 1 - - uid: 4762 + pos: -122.44439,-74.520645 + parent: 2 + - uid: 26100 components: - type: Transform - pos: 334.5,427.5 - parent: 1 - - uid: 4763 + pos: -51.785797,-54.413155 + parent: 2 +- proto: PetCarrier + entities: + - uid: 8649 components: - type: Transform - pos: 331.5,427.5 - parent: 1 - - uid: 4764 + pos: -60.456474,2.4886463 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 15846 components: - type: Transform - pos: 351.5,427.5 - parent: 1 - - uid: 4765 + rot: 1.5707963267948966 rad + pos: -59.5,-34.5 + parent: 2 + - uid: 21743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,426.5 - parent: 1 - - uid: 4766 + rot: 1.5707963267948966 rad + pos: -128.5,-56.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 7109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,423.5 - parent: 1 - - uid: 4768 + pos: -84.37542,-60.39783 + parent: 2 + - uid: 10094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,423.5 - parent: 1 - - uid: 4769 + rot: 1.5707963267948966 rad + pos: -92.56621,28.692598 + parent: 2 + - uid: 16693 components: - type: Transform - pos: 346.5,425.5 - parent: 1 - - uid: 4770 + pos: -82.514206,-72.561935 + parent: 2 +- proto: PirateFlag + entities: + - uid: 23041 components: - type: Transform - pos: 343.5,424.5 - parent: 1 - - uid: 4771 + pos: -23.5,-70.5 + parent: 2 +- proto: PirateHandyFlag + entities: + - uid: 24564 components: - type: Transform - pos: 340.5,424.5 - parent: 1 - - uid: 4772 + pos: -25.657328,-70.47536 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 22355 components: - type: Transform - pos: 337.5,424.5 - parent: 1 - - uid: 4773 + pos: -114.5,-1.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 5272 components: - type: Transform - pos: 334.5,424.5 - parent: 1 - - uid: 4774 + pos: -108.5,14.5 + parent: 2 + - uid: 5273 components: - type: Transform - pos: 331.5,424.5 - parent: 1 - - uid: 4775 + pos: -108.5,13.5 + parent: 2 + - uid: 5905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,418.5 - parent: 1 - - uid: 4776 + pos: -136.5,-7.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 1747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,418.5 - parent: 1 - - uid: 4784 + pos: -26.5,-65.5 + parent: 2 + - uid: 6025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,409.5 - parent: 1 - - uid: 4785 + rot: 1.5707963267948966 rad + pos: -27.5,-66.5 + parent: 2 + - uid: 6031 components: - type: Transform rot: 1.5707963267948966 rad - pos: 421.5,425.5 - parent: 1 - - uid: 4787 + pos: -27.5,-67.5 + parent: 2 + - uid: 9355 components: - type: Transform rot: 3.141592653589793 rad - pos: 309.5,410.5 - parent: 1 - - uid: 4788 + pos: -26.5,-68.5 + parent: 2 + - uid: 12207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,410.5 - parent: 1 - - uid: 4789 + pos: -25.5,-65.5 + parent: 2 + - uid: 15446 components: - type: Transform rot: 3.141592653589793 rad - pos: 303.5,407.5 - parent: 1 - - uid: 4790 + pos: -25.5,-68.5 + parent: 2 + - uid: 16456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,406.5 - parent: 1 - - uid: 4795 + rot: -1.5707963267948966 rad + pos: -24.5,-67.5 + parent: 2 + - uid: 23845 components: - type: Transform - pos: 303.5,414.5 - parent: 1 - - uid: 4797 + rot: -1.5707963267948966 rad + pos: -118.5,-74.5 + parent: 2 + - uid: 24260 components: - type: Transform rot: -1.5707963267948966 rad - pos: 307.5,422.5 - parent: 1 - - uid: 4799 + pos: -118.5,-70.5 + parent: 2 + - uid: 24872 components: - type: Transform - pos: 307.5,426.5 - parent: 1 - - uid: 4976 + rot: 3.141592653589793 rad + pos: -122.5,-73.5 + parent: 2 + - uid: 24925 components: - type: Transform - pos: 394.5,397.5 - parent: 1 - - uid: 5105 + pos: -122.5,-71.5 + parent: 2 + - uid: 24926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 414.5,385.5 - parent: 1 - - uid: 5281 + pos: -123.5,-72.5 + parent: 2 +- proto: PlasmaShiv + entities: + - uid: 22287 components: - type: Transform - pos: 443.5,412.5 - parent: 1 - - uid: 5282 + parent: 22286 + - type: Physics + canCollide: False +- proto: PlasmaTank + entities: + - uid: 2843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 439.5,412.5 - parent: 1 - - uid: 5283 + pos: -63.536835,-9.437066 + parent: 2 + - uid: 4309 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 5479 + pos: -74.58428,-4.4283886 + parent: 2 +- proto: PlasmaTankFilled + entities: + - uid: 24490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,416.5 - parent: 1 - - uid: 5480 + pos: -37.521202,-8.33657 + parent: 2 +- proto: PlasmaWindoorSecureCommandLocked + entities: + - uid: 23834 components: - type: Transform rot: 3.141592653589793 rad - pos: 412.5,416.5 - parent: 1 - - uid: 5571 + pos: -117.5,-74.5 + parent: 2 + - uid: 24896 components: - type: Transform - pos: 354.5,393.5 - parent: 1 - - uid: 5577 + rot: 3.141592653589793 rad + pos: -118.5,-74.5 + parent: 2 + - uid: 24897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,383.5 - parent: 1 - - uid: 5642 + pos: -118.5,-70.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + pos: -117.5,-70.5 + parent: 2 + - uid: 24932 components: - type: Transform rot: -1.5707963267948966 rad - pos: 367.5,384.5 - parent: 1 - - uid: 5654 + pos: -121.5,-72.5 + parent: 2 + - uid: 24937 components: - type: Transform - pos: 357.5,377.5 - parent: 1 - - uid: 6006 + rot: -1.5707963267948966 rad + pos: -121.5,-82.5 + parent: 2 + - uid: 24938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,402.5 - parent: 1 - - uid: 6052 + rot: 1.5707963267948966 rad + pos: -119.5,-82.5 + parent: 2 +- proto: PlasmaWindowDirectional + entities: + - uid: 21053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,376.5 - parent: 1 - - uid: 6101 + pos: -39.5,-72.5 + parent: 2 + - uid: 21054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,372.5 - parent: 1 - - uid: 6418 + pos: -37.5,-72.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,424.5 - parent: 1 - - uid: 6419 + pos: -97.5,16.5 + parent: 2 + - uid: 2241 components: - type: Transform rot: -1.5707963267948966 rad - pos: 311.5,424.5 - parent: 1 - - uid: 7410 + pos: -98.5,31.5 + parent: 2 + - uid: 4238 components: - type: Transform - pos: 340.5,394.5 - parent: 1 - - uid: 7463 + pos: -81.5,21.5 + parent: 2 + - uid: 4239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,419.5 - parent: 1 - - uid: 7464 + pos: -83.5,21.5 + parent: 2 + - uid: 4240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,422.5 - parent: 1 - - uid: 7588 + pos: -81.5,17.5 + parent: 2 + - uid: 4241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 316.5,422.5 - parent: 1 - - uid: 9056 + pos: -83.5,17.5 + parent: 2 + - uid: 7419 components: - type: Transform - pos: 381.5,404.5 - parent: 1 - - uid: 9057 + pos: -97.5,20.5 + parent: 2 + - uid: 7765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,406.5 - parent: 1 - - uid: 9058 + pos: -103.5,20.5 + parent: 2 + - uid: 8152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,409.5 - parent: 1 - - uid: 9059 + rot: 1.5707963267948966 rad + pos: -108.5,-13.5 + parent: 2 + - uid: 11130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,413.5 - parent: 1 - - uid: 9060 + pos: -102.5,12.5 + parent: 2 + - uid: 13423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,413.5 - parent: 1 - - uid: 9061 + rot: 1.5707963267948966 rad + pos: -108.5,-7.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 4553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,409.5 - parent: 1 - - uid: 9062 + pos: -97.5,18.5 + parent: 2 + - uid: 9573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,406.5 - parent: 1 - - uid: 9068 + pos: -106.5,18.5 + parent: 2 + - uid: 11696 components: - type: Transform - pos: 361.5,404.5 - parent: 1 - - uid: 9074 + rot: -1.5707963267948966 rad + pos: -98.5,36.5 + parent: 2 + - uid: 15314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,400.5 - parent: 1 - - uid: 9075 + rot: -1.5707963267948966 rad + pos: -98.5,26.5 + parent: 2 + - uid: 15966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,402.5 - parent: 1 - - uid: 9076 + rot: -1.5707963267948966 rad + pos: -100.5,31.5 + parent: 2 + - uid: 21890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,401.5 - parent: 1 - - uid: 10288 + rot: 1.5707963267948966 rad + pos: -120.5,-25.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 19875 components: - type: Transform - pos: 379.5,424.5 - parent: 1 - - uid: 12556 + rot: -1.5707963267948966 rad + pos: -100.5,25.5 + parent: 2 +- proto: PlasticFlapsOpaque + entities: + - uid: 4554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 456.5,401.5 - parent: 1 - - uid: 13055 + pos: -103.5,18.5 + parent: 2 + - uid: 4685 components: - type: Transform - pos: 315.5,388.5 - parent: 1 - - uid: 14984 + pos: -97.5,24.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 24956 components: - type: Transform - pos: 386.5,397.5 - parent: 1 - - uid: 14986 + pos: -120.5,-83.5 + parent: 2 +- proto: Plunger + entities: + - uid: 8167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,391.5 - parent: 1 - - uid: 14989 + parent: 7826 + - type: Physics + canCollide: False +- proto: PlushieArachind + entities: + - uid: 20444 components: + - type: MetaData + desc: An adorable stuffed toy that resembles an arachnid. It smells like tritium... - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,381.5 - parent: 1 - - uid: 14997 + pos: -120.44894,36.471443 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 6088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 374.5,393.5 - parent: 1 - - uid: 16105 + pos: -78.46719,-73.44948 + parent: 2 + - uid: 16518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,362.5 - parent: 1 - - uid: 16180 + pos: -131.5,28.5 + parent: 2 +- proto: PlushieNar + entities: + - uid: 3874 components: - type: Transform - pos: -1.5,4.5 - parent: 16114 - - uid: 16181 + pos: -44.55997,-51.63969 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 3336 components: + - type: MetaData + desc: An adorable stuffed toy that resembles a slime. It smells like plasma... - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 16114 - - uid: 16182 + pos: -56.50602,-77.45183 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 3341 +- proto: PonderingOrb + entities: + - uid: 18366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 16114 - - uid: 16314 + pos: -89.5,-72.5 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 2394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,414.5 - parent: 1 - - uid: 16453 + pos: -78.5,-27.5 + parent: 2 + - uid: 17790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,413.5 - parent: 1 - - uid: 17663 + pos: -89.5,-20.5 + parent: 2 + - uid: 19632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 505.5,384.5 - parent: 1 - - uid: 17689 + pos: -84.5,-20.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 1221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 508.5,388.5 - parent: 1 - - uid: 17691 + pos: -30.5,-67.5 + parent: 2 + - uid: 8269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 506.5,388.5 - parent: 1 - - uid: 17717 + pos: -8.5,-19.5 + parent: 2 + - uid: 14080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 509.5,384.5 - parent: 1 - - uid: 17721 + pos: -122.5,-33.5 + parent: 2 + - uid: 20731 components: - type: Transform - pos: 500.5,386.5 - parent: 1 - - uid: 20420 + pos: -60.5,-64.5 + parent: 2 + - uid: 21004 components: - type: Transform - pos: 2.5,2.5 - parent: 20181 - - uid: 20421 + pos: -46.5,-32.5 + parent: 2 + - uid: 23391 components: - type: Transform - pos: -0.5,3.5 - parent: 20181 - - uid: 20422 + pos: -80.5,-9.5 + parent: 2 + - uid: 24106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 20181 - - uid: 20423 + pos: -10.5,-43.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 6246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 20181 - - uid: 20424 + pos: -122.5,-24.5 + parent: 2 + - uid: 6313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 20181 - - uid: 20719 + pos: -129.5,-13.5 + parent: 2 + - uid: 25158 components: - type: Transform - pos: 4.5,3.5 - parent: 20527 - - uid: 20720 + pos: -117.5,-66.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 6244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 20527 - - uid: 20721 + pos: -123.5,-24.5 + parent: 2 + - uid: 6266 components: - type: Transform - pos: 4.5,5.5 - parent: 20527 - - uid: 20722 + pos: -131.5,-13.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 6919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 20527 - - uid: 20723 + pos: -122.5,17.5 + parent: 2 + - uid: 8995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 20527 - - uid: 21304 + pos: -121.5,17.5 + parent: 2 + - uid: 10122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21323 + pos: -72.5,-62.5 + parent: 2 + - uid: 13678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21365 + pos: -137.5,-35.5 + parent: 2 + - uid: 16932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,27.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21371 + pos: -110.5,-41.5 + parent: 2 + - uid: 19323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,29.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21424 + pos: -151.5,-8.5 + parent: 2 + - uid: 19324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,27.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21581 + pos: -151.5,-9.5 + parent: 2 + - uid: 25140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,16.5 - parent: 5072 - - uid: 21648 + pos: -123.5,-66.5 + parent: 2 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 23072 components: - type: Transform - pos: 12.5,27.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21655 + pos: -50.5,-17.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 23075 + components: + - type: Transform + pos: -115.5,26.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 23058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21781 + pos: -51.5,-30.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 23070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,23.5 - parent: 5072 - - uid: 21800 + pos: -24.5,-10.5 + parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 7596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,30.5 - parent: 5072 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 22144 + pos: -133.5,-49.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 23069 components: + - type: MetaData + desc: They're already gone aren't they? - type: Transform - pos: 398.5,397.5 - parent: 1 - - uid: 22145 + pos: -27.5,-6.5 + parent: 2 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 23071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,395.5 - parent: 1 -- proto: PoweredlightEmpty + pos: -41.5,-21.5 + parent: 2 +- proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 21431 + - uid: 21061 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,30.5 - parent: 5072 - - uid: 21535 + pos: -76.5,-2.5 + parent: 2 +- proto: PosterContrabandPunchShit + entities: + - uid: 5107 components: - type: Transform - pos: 8.5,26.5 - parent: 5072 - - uid: 21577 + rot: -1.5707963267948966 rad + pos: -61.5,-68.5 + parent: 2 +- proto: PosterContrabandTools + entities: + - uid: 23023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,30.5 - parent: 5072 - - uid: 21579 + pos: -113.5,-19.5 + parent: 2 +- proto: PosterContrabandWehWatches + entities: + - uid: 16594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,29.5 - parent: 5072 - - uid: 21745 + pos: -134.5,29.5 + parent: 2 + - uid: 16595 components: - type: Transform - pos: -2.5,26.5 - parent: 5072 -- proto: PoweredSmallLight - entities: - - uid: 482 + pos: -134.5,30.5 + parent: 2 + - uid: 16602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,378.5 - parent: 1 - - uid: 1347 + pos: -133.5,30.5 + parent: 2 + - uid: 16603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,378.5 - parent: 1 - - uid: 2142 + pos: -132.5,30.5 + parent: 2 + - uid: 17090 components: - type: Transform - pos: 376.5,386.5 - parent: 1 - - uid: 2168 + pos: -131.5,30.5 + parent: 2 + - uid: 22414 components: - type: Transform - pos: 355.5,377.5 - parent: 1 - - uid: 2315 + pos: -134.5,27.5 + parent: 2 + - uid: 22415 components: - type: Transform - pos: 376.5,379.5 - parent: 1 - - uid: 3103 + pos: -134.5,26.5 + parent: 2 + - uid: 22416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,391.5 - parent: 1 - - uid: 4512 + pos: -134.5,28.5 + parent: 2 + - uid: 22417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,399.5 - parent: 1 - - uid: 4514 + pos: -133.5,26.5 + parent: 2 + - uid: 22418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,394.5 - parent: 1 - - uid: 4517 + pos: -131.5,26.5 + parent: 2 + - uid: 22419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,387.5 - parent: 1 - - uid: 4518 + pos: -130.5,26.5 + parent: 2 + - uid: 22420 components: - type: Transform - pos: 341.5,390.5 - parent: 1 - - uid: 4519 + pos: -132.5,26.5 + parent: 2 + - uid: 22422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,386.5 - parent: 1 - - uid: 4532 + pos: -130.5,27.5 + parent: 2 + - uid: 22423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,381.5 - parent: 1 - - uid: 4538 + pos: -130.5,28.5 + parent: 2 + - uid: 22424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,383.5 - parent: 1 - - uid: 4539 + pos: -130.5,30.5 + parent: 2 + - uid: 22425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,379.5 - parent: 1 - - uid: 4540 + pos: -130.5,29.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 11848 components: + - type: MetaData + desc: I used the shotgun. You know why? - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,380.5 - parent: 1 - - uid: 4551 + pos: -79.5,-20.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 12565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 298.5,381.5 - parent: 1 - - uid: 4552 + pos: -34.5,-38.5 + parent: 2 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 25465 components: - type: Transform rot: 3.141592653589793 rad - pos: 295.5,381.5 - parent: 1 - - uid: 4566 + pos: -63.5,-21.5 + parent: 2 +- proto: PosterLegitCarpMount + entities: + - uid: 74 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,370.5 - parent: 1 - - uid: 4567 + pos: -48.5,3.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 23057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,375.5 - parent: 1 - - uid: 4570 + pos: -47.5,-8.5 + parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 2468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,366.5 - parent: 1 - - uid: 4571 + pos: -20.5,-33.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 16008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,363.5 - parent: 1 - - uid: 4591 + pos: -114.5,-28.5 + parent: 2 + - uid: 23059 components: - type: Transform - pos: 419.5,362.5 - parent: 1 - - uid: 4593 + pos: -63.5,1.5 + parent: 2 + - uid: 23060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,360.5 - parent: 1 - - uid: 4594 + pos: -59.5,1.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 21550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,360.5 - parent: 1 - - uid: 4595 + pos: -59.5,-62.5 + parent: 2 + - uid: 23201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,360.5 - parent: 1 - - uid: 4607 + pos: -35.5,-37.5 + parent: 2 + - uid: 25673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,393.5 - parent: 1 - - uid: 4608 + pos: -89.5,-50.5 + parent: 2 +- proto: PosterLegitObey + entities: + - uid: 10374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,395.5 - parent: 1 - - uid: 4632 + rot: 1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 2486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,407.5 - parent: 1 - - uid: 4650 + pos: -41.5,-19.5 + parent: 2 +- proto: PosterLegitRenault + entities: + - uid: 23061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,418.5 - parent: 1 - - uid: 4656 + pos: -53.5,2.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 23029 components: - type: Transform - pos: 429.5,408.5 - parent: 1 - - uid: 4657 + pos: -116.5,-8.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 25639 components: - type: Transform - pos: 423.5,414.5 - parent: 1 - - uid: 4658 + rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 23062 components: - type: Transform - pos: 427.5,414.5 - parent: 1 - - uid: 4659 + pos: -117.5,-18.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 4270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,411.5 - parent: 1 - - uid: 4660 + pos: -35.5,-21.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 16908 components: - type: Transform - pos: 434.5,408.5 - parent: 1 - - uid: 4661 + pos: -142.5,-7.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 23068 components: - type: Transform - pos: 441.5,408.5 - parent: 1 - - uid: 4662 + pos: -89.5,-24.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 23065 components: - type: Transform - pos: 446.5,408.5 - parent: 1 - - uid: 4666 + pos: -98.5,-18.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 23067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,392.5 - parent: 1 - - uid: 4687 + pos: -85.5,-24.5 + parent: 2 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 16024 components: - type: Transform - pos: 433.5,397.5 - parent: 1 - - uid: 4688 + pos: -112.5,-28.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 22286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,399.5 - parent: 1 - - uid: 4689 + pos: -83.5,-47.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 22287 +- proto: PottedPlant29 + entities: + - uid: 1741 components: + - type: MetaData + desc: A plastic palm tree that looks absolutely fake. This probably constitutes the station's entire service budget... + name: Real Palm Tree - type: Transform - rot: 3.141592653589793 rad - pos: 431.5,403.5 - parent: 1 - - uid: 4698 + pos: -72.5,-40.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 7373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,382.5 - parent: 1 - - uid: 4716 + pos: -124.5,-40.5 + parent: 2 + - uid: 8289 components: - type: Transform - pos: 362.5,422.5 - parent: 1 - - uid: 4721 + pos: -12.5,-10.5 + parent: 2 + - uid: 20360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,413.5 - parent: 1 - - uid: 4732 + pos: -132.5,-38.5 + parent: 2 + - uid: 26072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,411.5 - parent: 1 - - uid: 4741 + pos: -51.5,-50.5 + parent: 2 + - uid: 26082 components: - type: Transform - pos: 326.5,418.5 - parent: 1 - - uid: 4749 + pos: -55.5,-54.5 + parent: 2 + - uid: 26085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,430.5 - parent: 1 - - uid: 4750 + pos: -54.5,-48.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 3796 components: - type: Transform - pos: 318.5,428.5 - parent: 1 - - uid: 4751 + pos: -68.5,-58.5 + parent: 2 + - uid: 11795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,430.5 - parent: 1 - - uid: 4752 + pos: -100.5,-43.5 + parent: 2 + - uid: 16007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,430.5 - parent: 1 - - uid: 4753 + pos: -114.5,-29.5 + parent: 2 + - uid: 22379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,430.5 - parent: 1 - - uid: 4754 + pos: -35.5,21.5 + parent: 2 + - uid: 22380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,430.5 - parent: 1 - - uid: 4755 + pos: -23.5,21.5 + parent: 2 + - uid: 23003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,430.5 - parent: 1 - - uid: 4756 + pos: -7.5,-35.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 7376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,430.5 - parent: 1 - - uid: 4767 + pos: -136.5,-50.5 + parent: 2 +- proto: PowerCellMedium + entities: + - uid: 4364 components: - type: Transform - pos: 351.5,419.5 - parent: 1 - - uid: 4780 + parent: 4363 + - type: Physics + canCollide: False + - uid: 4366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,413.5 - parent: 1 - - uid: 4781 + pos: -26.354984,-4.8585114 + parent: 2 + - uid: 4382 components: - type: Transform - pos: 361.5,407.5 - parent: 1 - - uid: 4782 + pos: -26.573734,-5.1866364 + parent: 2 + - uid: 6477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 434.5,415.5 - parent: 1 - - uid: 4783 + parent: 6476 + - type: Physics + canCollide: False + - uid: 6483 components: - type: Transform - pos: 421.5,422.5 - parent: 1 - - uid: 4786 + pos: -33.89702,-27.21654 + parent: 2 + - uid: 24953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,428.5 - parent: 1 - - uid: 4791 + parent: 24952 + - type: Physics + canCollide: False + - uid: 24954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,406.5 - parent: 1 - - uid: 4792 + pos: -122.491264,-70.26865 + parent: 2 + - uid: 24955 components: - type: Transform - pos: 310.5,415.5 - parent: 1 - - uid: 4793 + pos: -122.77094,-70.48494 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 4363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,416.5 - parent: 1 - - uid: 4794 + pos: -26.5,-4.5 + parent: 2 + - type: ContainerContainer + containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 4364 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 5685 components: - type: Transform rot: 3.141592653589793 rad - pos: 307.5,413.5 - parent: 1 - - uid: 4796 - components: - - type: Transform - pos: 307.5,411.5 - parent: 1 - - uid: 5593 + pos: -117.5,12.5 + parent: 2 + - uid: 6476 components: - type: Transform - pos: 416.5,405.5 - parent: 1 - - uid: 5819 + pos: -33.5,-27.5 + parent: 2 + - type: ContainerContainer + containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 6477 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6988 components: - type: Transform rot: -1.5707963267948966 rad - pos: 328.5,398.5 - parent: 1 - - uid: 5924 + pos: -108.5,-48.5 + parent: 2 + - uid: 7341 components: - type: Transform - pos: 412.5,363.5 - parent: 1 - - uid: 11074 + pos: -118.5,-41.5 + parent: 2 + - uid: 7908 components: - type: Transform - pos: 352.5,430.5 - parent: 1 - - uid: 15394 + rot: 3.141592653589793 rad + pos: -59.5,7.5 + parent: 2 + - uid: 9232 components: - type: Transform - pos: 388.5,386.5 - parent: 1 - - uid: 15397 + pos: -23.5,-17.5 + parent: 2 + - uid: 9335 components: - type: Transform - pos: 388.5,379.5 - parent: 1 - - uid: 17662 + pos: -25.5,-26.5 + parent: 2 + - uid: 11074 components: - type: Transform - pos: 505.5,382.5 - parent: 1 - - uid: 20064 + rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 14549 components: - type: Transform - pos: 335.5,442.5 - parent: 1 - - uid: 20065 + rot: 3.141592653589793 rad + pos: -60.5,-52.5 + parent: 2 + - uid: 15983 components: - type: Transform - pos: 341.5,442.5 - parent: 1 - - uid: 20066 + pos: -111.5,-13.5 + parent: 2 + - uid: 16485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,437.5 - parent: 1 - - uid: 20165 + pos: -143.5,-9.5 + parent: 2 + - uid: 18775 components: - type: Transform - pos: 347.5,438.5 - parent: 1 - - uid: 20425 + pos: -115.5,-20.5 + parent: 2 + - uid: 20470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 20181 - - uid: 20426 + rot: 3.141592653589793 rad + pos: -119.5,-48.5 + parent: 2 + - uid: 21009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 20181 - - uid: 20427 + pos: -35.5,-46.5 + parent: 2 + - uid: 24952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 - parent: 20181 - - uid: 20428 + pos: -123.5,-70.5 + parent: 2 + - type: ContainerContainer + containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24953 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: PowerCellSmallPrinted + entities: + - uid: 23931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 20181 - - uid: 20724 + pos: -62.694946,-3.1233506 + parent: 2 +- proto: PowerDrill + entities: + - uid: 16204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 - parent: 20527 - - uid: 20725 + pos: -132.57465,-43.425148 + parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 3400 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 20527 -- proto: PoweredSmallLightEmpty - entities: - - uid: 16183 + pos: -55.5,-38.5 + parent: 2 + - uid: 3402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 16114 - - uid: 18292 + rot: 1.5707963267948966 rad + pos: -55.5,-36.5 + parent: 2 + - uid: 7778 components: - type: Transform - pos: 418.5,426.5 - parent: 1 - - uid: 21565 + rot: -1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 + - uid: 19671 components: - type: Transform - pos: 10.5,26.5 - parent: 5072 -- proto: PoweredStrobeLightPolice - entities: - - uid: 21269 + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 2 + - uid: 19729 components: - type: Transform - pos: -0.5,-0.5 - parent: 16114 -- proto: PrintedDocumentApplicationAccess - entities: - - uid: 2066 + pos: -20.5,14.5 + parent: 2 + - uid: 22824 components: - type: Transform - pos: 407.5,422.5 - parent: 1 - - uid: 6047 + rot: 1.5707963267948966 rad + pos: -120.5,30.5 + parent: 2 + - uid: 25924 components: - type: Transform - pos: 407.5,422.5 - parent: 1 - - uid: 16278 + rot: 1.5707963267948966 rad + pos: -102.5,-66.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 156 components: - type: Transform - pos: 407.5,422.5 - parent: 1 -- proto: PrintedDocumentApplicationEmployment - entities: - - uid: 1556 + pos: -124.5,-50.5 + parent: 2 + - uid: 643 components: - type: Transform - pos: 436.5,413.5 - parent: 1 - - uid: 21984 + rot: 1.5707963267948966 rad + pos: -125.5,4.5 + parent: 2 + - uid: 1205 components: - type: Transform - pos: 367.5,398.5 - parent: 1 - - uid: 21985 + rot: 3.141592653589793 rad + pos: -43.5,-69.5 + parent: 2 + - uid: 1214 components: - type: Transform - pos: 367.5,398.5 - parent: 1 - - uid: 21986 + rot: 1.5707963267948966 rad + pos: -35.5,-71.5 + parent: 2 + - uid: 1216 components: - type: Transform - pos: 367.5,398.5 - parent: 1 -- proto: PrintedDocumentOrderParolePrisoner - entities: - - uid: 1651 + pos: -36.5,-62.5 + parent: 2 + - uid: 1225 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 20990 + rot: 1.5707963267948966 rad + pos: -30.5,-65.5 + parent: 2 + - uid: 1229 components: - type: Transform - pos: 419.5,409.5 - parent: 1 - - uid: 20991 + rot: 1.5707963267948966 rad + pos: -106.5,-37.5 + parent: 2 + - uid: 1691 components: - type: Transform - pos: 419.5,409.5 - parent: 1 - - uid: 20992 + pos: -81.5,15.5 + parent: 2 + - uid: 1788 components: - type: Transform - pos: 431.5,400.5 - parent: 1 - - uid: 20993 + pos: -106.5,-53.5 + parent: 2 + - uid: 1905 components: - type: Transform - pos: 431.5,404.5 - parent: 1 - - uid: 20994 + pos: -72.5,-37.5 + parent: 2 + - uid: 2374 components: - type: Transform - pos: 431.5,396.5 - parent: 1 - - uid: 20995 + rot: -1.5707963267948966 rad + pos: -57.5,-24.5 + parent: 2 + - uid: 2450 components: - type: Transform - pos: 431.5,392.5 - parent: 1 -- proto: PrintedDocumentRequestForNonlistedEmployment - entities: - - uid: 21987 + rot: -1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 2487 components: - type: Transform - pos: 365.5,394.5 - parent: 1 -- proto: PrinterDoc - entities: - - uid: 2253 + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 2 + - uid: 2489 components: - type: Transform - pos: 365.5,397.5 - parent: 1 - - uid: 15849 + pos: -32.5,17.5 + parent: 2 + - uid: 2490 components: - type: Transform - pos: 423.5,352.5 - parent: 1 - - uid: 20726 + pos: -26.5,12.5 + parent: 2 + - uid: 2517 components: - type: Transform - pos: 4.5,3.5 - parent: 20527 -- proto: Protolathe - entities: - - uid: 7526 + pos: -4.5,-6.5 + parent: 2 + - uid: 2614 components: - type: Transform - pos: 350.5,398.5 - parent: 1 - - uid: 16242 + rot: 3.141592653589793 rad + pos: -27.5,-15.5 + parent: 2 + - uid: 2616 components: - type: Transform - pos: 336.5,406.5 - parent: 1 -- proto: PsychBed - entities: - - uid: 16304 + pos: -10.5,-6.5 + parent: 2 + - uid: 3365 components: - type: Transform - pos: 416.5,413.5 - parent: 1 -- proto: PyraAutoInjector - entities: - - uid: 20997 + pos: -52.5,-26.5 + parent: 2 + - uid: 4218 components: - type: Transform - pos: 397.5,414.5 - parent: 1 -- proto: Rack - entities: - - uid: 799 + rot: 1.5707963267948966 rad + pos: -55.5,-20.5 + parent: 2 + - uid: 4232 components: - type: Transform - pos: 426.5,372.5 - parent: 1 - - uid: 4873 + rot: 3.141592653589793 rad + pos: -52.5,-24.5 + parent: 2 + - uid: 4234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,382.5 - parent: 1 - - uid: 5078 + pos: -7.5,-10.5 + parent: 2 + - uid: 4269 components: - type: Transform - pos: 428.5,414.5 - parent: 1 - - uid: 5080 + rot: 3.141592653589793 rad + pos: -52.5,-33.5 + parent: 2 + - uid: 4453 components: - type: Transform - pos: 428.5,412.5 - parent: 1 - - uid: 5082 + rot: 3.141592653589793 rad + pos: -120.5,-87.5 + parent: 2 + - uid: 4454 components: - type: Transform - pos: 428.5,410.5 - parent: 1 - - uid: 5984 + rot: -1.5707963267948966 rad + pos: -117.5,-82.5 + parent: 2 + - uid: 4458 components: - type: Transform - pos: 329.5,404.5 - parent: 1 - - uid: 6248 + rot: 1.5707963267948966 rad + pos: -123.5,-82.5 + parent: 2 + - uid: 4470 components: - type: Transform - pos: 346.5,416.5 - parent: 1 - - uid: 6398 + rot: 1.5707963267948966 rad + pos: -123.5,-77.5 + parent: 2 + - uid: 4545 components: - type: Transform - pos: 340.5,410.5 - parent: 1 - - uid: 6621 + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 4799 components: - type: Transform - pos: 302.5,408.5 - parent: 1 - - uid: 6622 + rot: -1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 2 + - uid: 4800 components: - type: Transform - pos: 302.5,407.5 - parent: 1 - - uid: 6625 + pos: -47.5,-26.5 + parent: 2 + - uid: 4814 components: - type: Transform - pos: 302.5,413.5 - parent: 1 - - uid: 6626 + rot: -1.5707963267948966 rad + pos: -57.5,-33.5 + parent: 2 + - uid: 4984 components: - type: Transform - pos: 302.5,414.5 - parent: 1 - - uid: 6682 + rot: 1.5707963267948966 rad + pos: -65.5,-24.5 + parent: 2 + - uid: 5258 components: - type: Transform - pos: 306.5,379.5 - parent: 1 - - uid: 7395 + rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + - uid: 5259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 325.5,420.5 - parent: 1 - - uid: 7403 + pos: -53.5,-6.5 + parent: 2 + - uid: 5260 components: - type: Transform - pos: 326.5,416.5 - parent: 1 - - uid: 7424 + rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + - uid: 5261 components: - type: Transform - pos: 330.5,396.5 - parent: 1 - - uid: 7454 + pos: -45.5,-4.5 + parent: 2 + - uid: 5263 components: - type: Transform - pos: 348.5,400.5 - parent: 1 - - uid: 7470 + pos: -52.5,-3.5 + parent: 2 + - uid: 5264 components: - type: Transform - pos: 352.5,389.5 - parent: 1 - - uid: 7544 + rot: 3.141592653589793 rad + pos: -48.5,-9.5 + parent: 2 + - uid: 5329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,395.5 - parent: 1 - - uid: 8050 + pos: -89.5,-20.5 + parent: 2 + - uid: 5561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,442.5 - parent: 1 - - uid: 9017 + rot: 1.5707963267948966 rad + pos: -125.5,10.5 + parent: 2 + - uid: 5604 components: - type: Transform rot: -1.5707963267948966 rad - pos: 312.5,382.5 - parent: 1 - - uid: 10283 + pos: -115.5,10.5 + parent: 2 + - uid: 5605 components: - type: Transform - pos: 366.5,417.5 - parent: 1 - - uid: 13922 + rot: -1.5707963267948966 rad + pos: -115.5,4.5 + parent: 2 + - uid: 5652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,368.5 - parent: 1 - - uid: 15936 + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - uid: 5660 components: - type: Transform - pos: 406.5,422.5 - parent: 1 - - uid: 16251 + pos: -32.5,12.5 + parent: 2 + - uid: 5661 components: - type: Transform - pos: 337.5,406.5 - parent: 1 - - uid: 16313 + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 2 + - uid: 6547 components: - type: Transform - pos: 407.5,422.5 - parent: 1 - - uid: 17514 + rot: 3.141592653589793 rad + pos: -26.5,19.5 + parent: 2 + - uid: 6575 components: - type: Transform - pos: 510.5,384.5 - parent: 1 - - uid: 17516 + rot: 3.141592653589793 rad + pos: -32.5,19.5 + parent: 2 + - uid: 6616 components: - type: Transform - pos: 509.5,384.5 - parent: 1 - - uid: 18269 + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 6639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,425.5 - parent: 1 - - uid: 18270 + rot: -1.5707963267948966 rad + pos: -112.5,-51.5 + parent: 2 + - uid: 6642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 408.5,425.5 - parent: 1 - - uid: 18275 + pos: -52.5,-18.5 + parent: 2 + - uid: 6647 components: - type: Transform - pos: 411.5,426.5 - parent: 1 - - uid: 18420 + pos: -67.5,7.5 + parent: 2 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,438.5 - parent: 1 - - uid: 18539 + pos: -87.5,9.5 + parent: 2 + - uid: 6720 components: - type: Transform - pos: 371.5,411.5 - parent: 1 - - uid: 18546 + rot: 1.5707963267948966 rad + pos: -90.5,9.5 + parent: 2 + - uid: 6781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,406.5 - parent: 1 - - uid: 18570 + rot: -1.5707963267948966 rad + pos: -84.5,22.5 + parent: 2 + - uid: 6873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,416.5 - parent: 1 - - uid: 18571 + pos: -53.5,-35.5 + parent: 2 + - uid: 6982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 355.5,416.5 - parent: 1 - - uid: 18602 + pos: -128.5,15.5 + parent: 2 + - uid: 7027 components: - type: Transform rot: 3.141592653589793 rad - pos: 353.5,432.5 - parent: 1 - - uid: 18657 + pos: -53.5,-38.5 + parent: 2 + - uid: 7101 components: - type: Transform - pos: 326.5,437.5 - parent: 1 - - uid: 18665 + pos: -91.5,25.5 + parent: 2 + - uid: 7236 components: - type: Transform - pos: 322.5,432.5 - parent: 1 - - uid: 18706 + rot: 1.5707963267948966 rad + pos: -88.5,29.5 + parent: 2 + - uid: 7250 components: - type: Transform rot: 1.5707963267948966 rad - pos: 425.5,382.5 - parent: 1 - - uid: 18992 + pos: -96.5,17.5 + parent: 2 + - uid: 7401 components: - type: Transform - pos: 336.5,383.5 - parent: 1 - - uid: 21085 + rot: -1.5707963267948966 rad + pos: -84.5,16.5 + parent: 2 + - uid: 7403 components: - type: Transform - pos: 405.5,376.5 - parent: 1 - - uid: 21751 + pos: -55.5,7.5 + parent: 2 + - uid: 7406 components: - type: Transform - pos: -5.5,29.5 - parent: 5072 - - uid: 21978 + pos: -82.5,-19.5 + parent: 2 + - uid: 7416 components: - type: Transform - pos: 414.5,364.5 - parent: 1 -- proto: RadiationCollector - entities: - - uid: 3467 + pos: -124.5,-8.5 + parent: 2 + - uid: 7417 components: - type: Transform - pos: 349.5,407.5 - parent: 1 -- proto: RadiationCollectorFlatpack - entities: - - uid: 15448 + rot: 3.141592653589793 rad + pos: -110.5,-18.5 + parent: 2 + - uid: 7538 components: - type: Transform - pos: 297.5,385.5 - parent: 1 -- proto: RadiationCollectorFullTank - entities: - - uid: 3462 + rot: -1.5707963267948966 rad + pos: -112.5,-39.5 + parent: 2 + - uid: 7773 components: - type: Transform - pos: 349.5,406.5 - parent: 1 - - uid: 3464 + rot: -1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 7789 components: - type: Transform - pos: 351.5,406.5 - parent: 1 - - uid: 3466 + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 2 + - uid: 7882 components: - type: Transform - pos: 349.5,408.5 - parent: 1 -- proto: RadiationCollectorNoTank - entities: - - uid: 3461 + rot: 3.141592653589793 rad + pos: -31.5,-15.5 + parent: 2 + - uid: 7941 components: - type: Transform - pos: 351.5,407.5 - parent: 1 - - uid: 3463 + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 8158 components: - type: Transform - pos: 351.5,408.5 - parent: 1 - - uid: 3465 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - uid: 8176 components: - type: Transform - pos: 350.5,406.5 - parent: 1 - - uid: 15414 + rot: 3.141592653589793 rad + pos: -10.5,-20.5 + parent: 2 + - uid: 8177 components: - type: Transform - pos: 293.5,388.5 - parent: 1 - - uid: 15416 + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 8178 components: - type: Transform - pos: 293.5,387.5 - parent: 1 - - uid: 15417 + rot: 3.141592653589793 rad + pos: -81.5,23.5 + parent: 2 + - uid: 8185 components: - type: Transform - pos: 293.5,386.5 - parent: 1 - - uid: 15418 + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 8928 components: - type: Transform - pos: 277.5,388.5 - parent: 1 - - uid: 15419 + rot: -1.5707963267948966 rad + pos: -28.5,-53.5 + parent: 2 + - uid: 9020 components: - type: Transform - pos: 284.5,379.5 - parent: 1 - - uid: 15420 + rot: 1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 9035 components: - type: Transform - pos: 286.5,379.5 - parent: 1 - - uid: 15421 + pos: -34.5,-39.5 + parent: 2 + - uid: 9270 components: - type: Transform - pos: 277.5,386.5 - parent: 1 - - uid: 15422 + pos: -65.5,-14.5 + parent: 2 + - uid: 9289 components: - type: Transform - pos: 277.5,387.5 - parent: 1 - - uid: 15423 + pos: -100.5,16.5 + parent: 2 + - uid: 9315 components: - type: Transform - pos: 284.5,395.5 - parent: 1 - - uid: 15424 + pos: -57.5,-14.5 + parent: 2 + - uid: 9337 components: - type: Transform - pos: 285.5,395.5 - parent: 1 - - uid: 15425 + pos: -26.5,17.5 + parent: 2 + - uid: 9415 components: - type: Transform - pos: 286.5,395.5 - parent: 1 -- proto: Railing - entities: - - uid: 524 + rot: -1.5707963267948966 rad + pos: -28.5,-5.5 + parent: 2 + - uid: 9621 components: - type: Transform - pos: 410.5,380.5 - parent: 1 - - uid: 548 + pos: -89.5,-44.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-49.5 + parent: 2 + - uid: 10544 components: - type: Transform rot: 1.5707963267948966 rad - pos: 326.5,441.5 - parent: 1 - - uid: 870 + pos: -56.5,-8.5 + parent: 2 + - uid: 10545 components: - type: Transform - pos: 415.5,383.5 - parent: 1 - - uid: 1139 + rot: 1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 10546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,353.5 - parent: 1 - - uid: 2784 + rot: -1.5707963267948966 rad + pos: -66.5,-8.5 + parent: 2 + - uid: 10547 components: - type: Transform rot: -1.5707963267948966 rad - pos: 423.5,411.5 - parent: 1 - - uid: 3537 + pos: -66.5,-0.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-6.5 + parent: 2 + - uid: 10549 components: - type: Transform rot: -1.5707963267948966 rad - pos: 367.5,391.5 - parent: 1 - - uid: 4078 + pos: -58.5,-6.5 + parent: 2 + - uid: 10550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 395.5,372.5 - parent: 1 - - uid: 4390 + pos: -58.5,-0.5 + parent: 2 + - uid: 10551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,414.5 - parent: 1 - - uid: 4600 + pos: -64.5,-0.5 + parent: 2 + - uid: 10553 components: - type: Transform - pos: 412.5,380.5 - parent: 1 - - uid: 4868 + rot: 1.5707963267948966 rad + pos: -64.5,-10.5 + parent: 2 + - uid: 10554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 385.5,395.5 - parent: 1 - - uid: 4869 + pos: -58.5,-10.5 + parent: 2 + - uid: 10557 components: - type: Transform rot: 1.5707963267948966 rad - pos: 380.5,395.5 - parent: 1 - - uid: 4946 + pos: -75.5,-2.5 + parent: 2 + - uid: 10559 components: - type: Transform - pos: 408.5,380.5 - parent: 1 - - uid: 5039 + rot: 1.5707963267948966 rad + pos: -68.5,3.5 + parent: 2 + - uid: 10560 components: - type: Transform - pos: 428.5,403.5 - parent: 1 - - uid: 5040 + rot: -1.5707963267948966 rad + pos: -54.5,3.5 + parent: 2 + - uid: 10568 components: - type: Transform - pos: 428.5,399.5 - parent: 1 - - uid: 5041 + pos: -68.5,-24.5 + parent: 2 + - uid: 10614 components: - type: Transform - pos: 428.5,395.5 - parent: 1 - - uid: 5062 + pos: -61.5,4.5 + parent: 2 + - uid: 10616 components: - type: Transform - pos: 426.5,404.5 - parent: 1 - - uid: 5139 + rot: 1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - uid: 10617 components: - type: Transform - pos: 420.5,409.5 - parent: 1 - - uid: 5146 + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - uid: 10618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,402.5 - parent: 1 - - uid: 5148 + pos: -46.5,2.5 + parent: 2 + - uid: 10644 components: - type: Transform - pos: 426.5,397.5 - parent: 1 - - uid: 5152 + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 11784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,409.5 - parent: 1 - - uid: 5164 + pos: -98.5,-43.5 + parent: 2 + - uid: 12178 components: - type: Transform - pos: 416.5,408.5 - parent: 1 - - uid: 5231 + rot: 1.5707963267948966 rad + pos: -65.5,-28.5 + parent: 2 + - uid: 13069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,406.5 - parent: 1 - - uid: 5301 + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 + - uid: 13070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 446.5,414.5 - parent: 1 - - uid: 5312 + pos: -34.5,-19.5 + parent: 2 + - uid: 13071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,407.5 - parent: 1 - - uid: 5322 + rot: -1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 2 + - uid: 13074 components: - type: Transform rot: 3.141592653589793 rad - pos: 403.5,408.5 - parent: 1 - - uid: 5323 + pos: -29.5,-21.5 + parent: 2 + - uid: 13075 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,408.5 - parent: 1 - - uid: 5338 + pos: -24.5,-26.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad - pos: 399.5,408.5 - parent: 1 - - uid: 5339 + pos: -31.5,-25.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 13079 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,408.5 - parent: 1 - - uid: 5349 + pos: -24.5,-32.5 + parent: 2 + - uid: 13080 components: - type: Transform - pos: 407.5,407.5 - parent: 1 - - uid: 5350 + rot: 1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - uid: 13081 components: - type: Transform - pos: 409.5,407.5 - parent: 1 - - uid: 5357 + pos: -36.5,-27.5 + parent: 2 + - uid: 13082 components: - type: Transform - pos: 409.5,409.5 - parent: 1 - - uid: 5364 + rot: 3.141592653589793 rad + pos: -36.5,-33.5 + parent: 2 + - uid: 13083 components: - type: Transform - pos: 407.5,411.5 - parent: 1 - - uid: 5377 + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 13086 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,416.5 - parent: 1 - - uid: 5383 + pos: -22.5,-40.5 + parent: 2 + - uid: 13087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5,418.5 - parent: 1 - - uid: 5395 + pos: -19.5,-37.5 + parent: 2 + - uid: 13088 components: - type: Transform - pos: 403.5,417.5 - parent: 1 - - uid: 5407 + pos: -19.5,-29.5 + parent: 2 + - uid: 13090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,415.5 - parent: 1 - - uid: 5408 + pos: -28.5,-41.5 + parent: 2 + - uid: 13105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,414.5 - parent: 1 - - uid: 5409 + rot: 3.141592653589793 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 13113 components: - type: Transform rot: -1.5707963267948966 rad - pos: 405.5,413.5 - parent: 1 - - uid: 5428 + pos: -28.5,-47.5 + parent: 2 + - uid: 13114 components: - type: Transform rot: 3.141592653589793 rad - pos: 395.5,420.5 - parent: 1 - - uid: 5468 + pos: -36.5,-50.5 + parent: 2 + - uid: 13116 components: - type: Transform rot: 3.141592653589793 rad - pos: 411.5,420.5 - parent: 1 - - uid: 5469 + pos: -33.5,-50.5 + parent: 2 + - uid: 13117 components: - type: Transform - pos: 411.5,418.5 - parent: 1 - - uid: 5489 + rot: 1.5707963267948966 rad + pos: -23.5,-51.5 + parent: 2 + - uid: 13118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 392.5,414.5 - parent: 1 - - uid: 5494 + pos: -26.5,-53.5 + parent: 2 + - uid: 13119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,414.5 - parent: 1 - - uid: 5565 + pos: -18.5,-48.5 + parent: 2 + - uid: 13120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,394.5 - parent: 1 - - uid: 5622 + pos: -18.5,-52.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 13126 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,388.5 - parent: 1 - - uid: 5623 + pos: -17.5,-19.5 + parent: 2 + - uid: 13172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,388.5 - parent: 1 - - uid: 5633 + pos: -118.5,-70.5 + parent: 2 + - uid: 13183 components: - type: Transform - pos: 358.5,382.5 - parent: 1 - - uid: 5638 + pos: -122.5,-70.5 + parent: 2 + - uid: 13184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,384.5 - parent: 1 - - uid: 5639 + pos: -117.5,-66.5 + parent: 2 + - uid: 13185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 362.5,384.5 - parent: 1 - - uid: 5815 + pos: -123.5,-66.5 + parent: 2 + - uid: 13188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,413.5 - parent: 1 - - uid: 5816 + rot: 3.141592653589793 rad + pos: -118.5,-74.5 + parent: 2 + - uid: 13417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,412.5 - parent: 1 - - uid: 5817 + rot: 1.5707963267948966 rad + pos: -121.5,-4.5 + parent: 2 + - uid: 13418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,411.5 - parent: 1 - - uid: 5864 + rot: 3.141592653589793 rad + pos: -114.5,-6.5 + parent: 2 + - uid: 13424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,384.5 - parent: 1 - - uid: 5927 + pos: -108.5,-2.5 + parent: 2 + - uid: 13425 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,353.5 - parent: 1 - - uid: 6000 + pos: -122.5,-74.5 + parent: 2 + - uid: 13426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,393.5 - parent: 1 - - uid: 6001 + rot: 3.141592653589793 rad + pos: -116.5,-0.5 + parent: 2 + - uid: 13427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,393.5 - parent: 1 - - uid: 6033 + rot: 3.141592653589793 rad + pos: -122.5,-0.5 + parent: 2 + - uid: 13431 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,373.5 - parent: 1 - - uid: 6062 + pos: -115.5,15.5 + parent: 2 + - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,376.5 - parent: 1 - - uid: 6065 + rot: 3.141592653589793 rad + pos: -109.5,13.5 + parent: 2 + - uid: 13433 components: - type: Transform rot: -1.5707963267948966 rad - pos: 395.5,370.5 - parent: 1 - - uid: 6073 + pos: -107.5,17.5 + parent: 2 + - uid: 13434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 399.5,372.5 - parent: 1 - - uid: 6074 + pos: -113.5,17.5 + parent: 2 + - uid: 13451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,373.5 - parent: 1 - - uid: 6099 + rot: 3.141592653589793 rad + pos: -124.5,-12.5 + parent: 2 + - uid: 13452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,370.5 - parent: 1 - - uid: 6100 + rot: 1.5707963267948966 rad + pos: -120.5,-19.5 + parent: 2 + - uid: 13453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,369.5 - parent: 1 - - uid: 6119 - components: - - type: Transform - pos: 426.5,401.5 - parent: 1 - - uid: 6122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,412.5 - parent: 1 - - uid: 6130 + pos: -118.5,-19.5 + parent: 2 + - uid: 13454 components: - type: Transform rot: 3.141592653589793 rad - pos: 422.5,407.5 - parent: 1 - - uid: 6131 + pos: -115.5,-24.5 + parent: 2 + - uid: 13458 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,411.5 - parent: 1 - - uid: 6139 + pos: -127.5,-15.5 + parent: 2 + - uid: 13459 components: - type: Transform rot: -1.5707963267948966 rad - pos: 428.5,408.5 - parent: 1 - - uid: 6140 + pos: -122.5,-21.5 + parent: 2 + - uid: 13460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 430.5,408.5 - parent: 1 - - uid: 6153 + pos: -129.5,-20.5 + parent: 2 + - uid: 13461 components: - type: Transform rot: 3.141592653589793 rad - pos: 452.5,405.5 - parent: 1 - - uid: 6170 + pos: -129.5,-24.5 + parent: 2 + - uid: 13462 components: - type: Transform rot: 3.141592653589793 rad - pos: 460.5,409.5 - parent: 1 - - uid: 6179 + pos: -123.5,-18.5 + parent: 2 + - uid: 13470 components: - type: Transform rot: 3.141592653589793 rad - pos: 448.5,409.5 - parent: 1 - - uid: 6184 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 454.5,412.5 - parent: 1 - - uid: 6185 + pos: -145.5,-12.5 + parent: 2 + - uid: 13471 components: - type: Transform rot: -1.5707963267948966 rad - pos: 453.5,412.5 - parent: 1 - - uid: 6187 + pos: -143.5,-7.5 + parent: 2 + - uid: 13472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,405.5 - parent: 1 - - uid: 6200 + rot: 3.141592653589793 rad + pos: -139.5,-7.5 + parent: 2 + - uid: 13473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 456.5,412.5 - parent: 1 - - uid: 6201 + pos: -139.5,-2.5 + parent: 2 + - uid: 13474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 458.5,412.5 - parent: 1 - - uid: 6206 + rot: 3.141592653589793 rad + pos: -149.5,-12.5 + parent: 2 + - uid: 13475 components: - type: Transform - pos: 416.5,410.5 - parent: 1 - - uid: 6215 + pos: -149.5,-2.5 + parent: 2 + - uid: 13476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,395.5 - parent: 1 - - uid: 6218 + pos: -145.5,-2.5 + parent: 2 + - uid: 13480 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,392.5 - parent: 1 - - uid: 6230 + rot: -1.5707963267948966 rad + pos: -123.5,-4.5 + parent: 2 + - uid: 13482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,395.5 - parent: 1 - - uid: 6239 + rot: 1.5707963267948966 rad + pos: -131.5,-4.5 + parent: 2 + - uid: 13483 components: - type: Transform rot: 3.141592653589793 rad - pos: 349.5,408.5 - parent: 1 - - uid: 6373 + pos: -130.5,-13.5 + parent: 2 + - uid: 13493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 340.5,410.5 - parent: 1 - - uid: 6403 + pos: -113.5,5.5 + parent: 2 + - uid: 13494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,410.5 - parent: 1 - - uid: 6672 + pos: -107.5,5.5 + parent: 2 + - uid: 13510 components: - type: Transform rot: 1.5707963267948966 rad - pos: 325.5,420.5 - parent: 1 - - uid: 7381 + pos: -131.5,5.5 + parent: 2 + - uid: 13511 components: - type: Transform - pos: 322.5,418.5 - parent: 1 - - uid: 7396 + rot: 3.141592653589793 rad + pos: -128.5,-0.5 + parent: 2 + - uid: 13513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 322.5,420.5 - parent: 1 - - uid: 7421 + pos: -103.5,11.5 + parent: 2 + - uid: 13528 components: - type: Transform - pos: 348.5,394.5 - parent: 1 - - uid: 7429 + pos: -85.5,-25.5 + parent: 2 + - uid: 13529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,395.5 - parent: 1 - - uid: 7431 + rot: 3.141592653589793 rad + pos: -85.5,-29.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-27.5 + parent: 2 + - uid: 13532 components: - type: Transform rot: 3.141592653589793 rad - pos: 348.5,391.5 - parent: 1 - - uid: 7446 + pos: -89.5,-23.5 + parent: 2 + - uid: 13533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 340.5,397.5 - parent: 1 - - uid: 7452 + pos: -96.5,-33.5 + parent: 2 + - uid: 13534 components: - type: Transform - pos: 346.5,399.5 - parent: 1 - - uid: 7481 + rot: 1.5707963267948966 rad + pos: -96.5,-25.5 + parent: 2 + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,387.5 - parent: 1 - - uid: 7483 + pos: -90.5,-30.5 + parent: 2 + - uid: 13553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,389.5 - parent: 1 - - uid: 7485 + rot: 3.141592653589793 rad + pos: -89.5,-39.5 + parent: 2 + - uid: 13554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,389.5 - parent: 1 - - uid: 7487 + pos: -82.5,-37.5 + parent: 2 + - uid: 13555 components: - type: Transform - pos: 348.5,398.5 - parent: 1 - - uid: 7494 + rot: 1.5707963267948966 rad + pos: -93.5,-38.5 + parent: 2 + - uid: 13559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,383.5 - parent: 1 - - uid: 7531 + pos: -88.5,-49.5 + parent: 2 + - uid: 13568 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,400.5 - parent: 1 - - uid: 7532 + pos: -80.5,-46.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-33.5 + parent: 2 + - uid: 13577 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,399.5 - parent: 1 - - uid: 7534 + pos: -80.5,-33.5 + parent: 2 + - uid: 13578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,398.5 - parent: 1 - - uid: 7542 + pos: -77.5,-29.5 + parent: 2 + - uid: 13597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,400.5 - parent: 1 - - uid: 7556 + pos: -117.5,-43.5 + parent: 2 + - uid: 13598 components: - type: Transform - pos: 359.5,398.5 - parent: 1 - - uid: 8047 + rot: 3.141592653589793 rad + pos: -117.5,-47.5 + parent: 2 + - uid: 13599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,442.5 - parent: 1 - - uid: 8048 + pos: -125.5,-42.5 + parent: 2 + - uid: 13600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,441.5 - parent: 1 - - uid: 8049 + rot: 3.141592653589793 rad + pos: -127.5,-48.5 + parent: 2 + - uid: 13601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,441.5 - parent: 1 - - uid: 8051 + pos: -134.5,-50.5 + parent: 2 + - uid: 13602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,442.5 - parent: 1 - - uid: 8054 + rot: 3.141592653589793 rad + pos: -133.5,-48.5 + parent: 2 + - uid: 13603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,442.5 - parent: 1 - - uid: 8484 + pos: -133.5,-43.5 + parent: 2 + - uid: 13610 components: - type: Transform rot: 3.141592653589793 rad - pos: 356.5,388.5 - parent: 1 - - uid: 8487 + pos: -125.5,-40.5 + parent: 2 + - uid: 13611 components: - type: Transform rot: 1.5707963267948966 rad - pos: 400.5,415.5 - parent: 1 - - uid: 8984 + pos: -130.5,-36.5 + parent: 2 + - uid: 13612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 368.5,419.5 - parent: 1 - - uid: 8985 + pos: -124.5,-36.5 + parent: 2 + - uid: 13613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 366.5,419.5 - parent: 1 - - uid: 10012 + rot: 3.141592653589793 rad + pos: -134.5,-41.5 + parent: 2 + - uid: 13658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,372.5 - parent: 1 - - uid: 10016 + pos: -80.5,-11.5 + parent: 2 + - uid: 13691 components: - type: Transform - pos: 391.5,373.5 - parent: 1 - - uid: 10017 + pos: -98.5,-54.5 + parent: 2 + - uid: 14571 components: - type: Transform - pos: 392.5,373.5 - parent: 1 - - uid: 10018 + rot: 3.141592653589793 rad + pos: -66.5,-49.5 + parent: 2 + - uid: 14572 components: - type: Transform - pos: 393.5,373.5 - parent: 1 - - uid: 10021 + rot: 3.141592653589793 rad + pos: -62.5,-49.5 + parent: 2 + - uid: 14600 components: - type: Transform - pos: 394.5,373.5 - parent: 1 - - uid: 10022 + pos: -67.5,-52.5 + parent: 2 + - uid: 14601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,369.5 - parent: 1 - - uid: 10027 + pos: -61.5,-52.5 + parent: 2 + - uid: 14602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,370.5 - parent: 1 - - uid: 10178 + rot: 3.141592653589793 rad + pos: -69.5,-57.5 + parent: 2 + - uid: 14603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,369.5 - parent: 1 - - uid: 15723 + rot: 3.141592653589793 rad + pos: -59.5,-57.5 + parent: 2 + - uid: 14620 components: - type: Transform - pos: 339.5,450.5 - parent: 1 - - uid: 15724 + rot: 3.141592653589793 rad + pos: -63.5,-19.5 + parent: 2 + - uid: 14621 components: - type: Transform - pos: 338.5,450.5 - parent: 1 - - uid: 15952 + rot: 3.141592653589793 rad + pos: -59.5,-19.5 + parent: 2 + - uid: 14668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,451.5 - parent: 1 - - uid: 16239 + pos: -47.5,-12.5 + parent: 2 + - uid: 14816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,406.5 - parent: 1 - - uid: 16240 + pos: -52.5,-43.5 + parent: 2 + - uid: 14817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,406.5 - parent: 1 - - uid: 16613 + rot: 3.141592653589793 rad + pos: -52.5,-48.5 + parent: 2 + - uid: 14821 components: - type: Transform rot: 3.141592653589793 rad - pos: 397.5,419.5 - parent: 1 - - uid: 16945 + pos: -46.5,-47.5 + parent: 2 + - uid: 14822 components: - type: Transform - pos: 357.5,421.5 - parent: 1 - - uid: 16946 + pos: -46.5,-43.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 14824 components: - type: Transform rot: 1.5707963267948966 rad - pos: 356.5,420.5 - parent: 1 - - uid: 17032 + pos: -52.5,-55.5 + parent: 2 + - uid: 15422 components: - type: Transform rot: 1.5707963267948966 rad - pos: 423.5,363.5 - parent: 1 - - uid: 17068 + pos: -34.5,-36.5 + parent: 2 + - uid: 15879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,391.5 - parent: 1 - - uid: 17171 + pos: -114.5,-2.5 + parent: 2 + - uid: 15976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 412.5,411.5 - parent: 1 - - uid: 17172 + pos: -92.5,10.5 + parent: 2 + - uid: 16025 components: - type: Transform rot: 1.5707963267948966 rad - pos: 411.5,406.5 - parent: 1 - - uid: 18207 + pos: -114.5,-31.5 + parent: 2 + - uid: 16026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,399.5 - parent: 1 - - uid: 18208 + rot: -1.5707963267948966 rad + pos: -112.5,-31.5 + parent: 2 + - uid: 16512 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,399.5 - parent: 1 - - uid: 18268 + pos: -91.5,32.5 + parent: 2 + - uid: 16652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,425.5 - parent: 1 - - uid: 18278 + rot: 3.141592653589793 rad + pos: -84.5,-9.5 + parent: 2 + - uid: 16797 components: - type: Transform - pos: 415.5,425.5 - parent: 1 - - uid: 18280 + rot: -1.5707963267948966 rad + pos: -102.5,-11.5 + parent: 2 + - uid: 16798 components: - type: Transform rot: 1.5707963267948966 rad - pos: 416.5,426.5 - parent: 1 - - uid: 18315 + pos: -98.5,-11.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -129.5,-8.5 + parent: 2 + - uid: 16974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 433.5,418.5 - parent: 1 - - uid: 18316 + pos: -122.5,-52.5 + parent: 2 + - uid: 17021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 433.5,418.5 - parent: 1 - - uid: 18317 + pos: -47.5,-58.5 + parent: 2 + - uid: 17037 components: - type: Transform rot: 3.141592653589793 rad - pos: 434.5,417.5 - parent: 1 - - uid: 18318 + pos: -47.5,-61.5 + parent: 2 + - uid: 17095 components: - type: Transform - pos: 434.5,417.5 - parent: 1 - - uid: 18325 + pos: -119.5,27.5 + parent: 2 + - uid: 17800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,419.5 - parent: 1 - - uid: 18348 + rot: 3.141592653589793 rad + pos: -89.5,-47.5 + parent: 2 + - uid: 18386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 434.5,393.5 - parent: 1 - - uid: 18363 + rot: 1.5707963267948966 rad + pos: -123.5,15.5 + parent: 2 + - uid: 18964 components: - type: Transform rot: 3.141592653589793 rad - pos: 431.5,385.5 - parent: 1 - - uid: 18364 + pos: -23.5,-46.5 + parent: 2 + - uid: 19609 components: - type: Transform rot: 3.141592653589793 rad - pos: 432.5,385.5 - parent: 1 - - uid: 18371 + pos: -140.5,-11.5 + parent: 2 + - uid: 19728 components: - type: Transform - pos: 434.5,386.5 - parent: 1 - - uid: 18372 + rot: 1.5707963267948966 rad + pos: -65.5,-33.5 + parent: 2 + - uid: 19751 components: - type: Transform - pos: 436.5,386.5 - parent: 1 - - uid: 18373 + rot: -1.5707963267948966 rad + pos: -102.5,-42.5 + parent: 2 + - uid: 19769 components: - type: Transform - pos: 435.5,386.5 - parent: 1 - - uid: 18419 + pos: -70.5,-18.5 + parent: 2 + - uid: 19808 components: - type: Transform rot: -1.5707963267948966 rad - pos: 354.5,437.5 - parent: 1 - - uid: 18545 + pos: -102.5,-33.5 + parent: 2 + - uid: 19809 components: - type: Transform rot: 1.5707963267948966 rad - pos: 355.5,406.5 - parent: 1 - - uid: 18566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,415.5 - parent: 1 - - uid: 18569 + pos: -105.5,-18.5 + parent: 2 + - uid: 19810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,416.5 - parent: 1 - - uid: 18575 + pos: -91.5,-54.5 + parent: 2 + - uid: 19819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,417.5 - parent: 1 - - uid: 18587 + rot: 3.141592653589793 rad + pos: -81.5,-58.5 + parent: 2 + - uid: 19824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,417.5 - parent: 1 - - uid: 18600 + pos: -101.5,-6.5 + parent: 2 + - uid: 19886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,433.5 - parent: 1 - - uid: 18607 + pos: -84.5,-12.5 + parent: 2 + - uid: 20133 components: - type: Transform rot: 3.141592653589793 rad - pos: 347.5,436.5 - parent: 1 - - uid: 18608 + pos: -24.5,-9.5 + parent: 2 + - uid: 20155 components: - type: Transform - pos: 347.5,436.5 - parent: 1 - - uid: 18637 + rot: 1.5707963267948966 rad + pos: -106.5,-23.5 + parent: 2 + - uid: 20157 components: - type: Transform - pos: 338.5,436.5 - parent: 1 - - uid: 18638 + pos: -24.5,-0.5 + parent: 2 + - uid: 20161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,434.5 - parent: 1 - - uid: 18639 + pos: -34.5,-1.5 + parent: 2 + - uid: 20163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,434.5 - parent: 1 - - uid: 18640 + rot: 1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 20164 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,434.5 - parent: 1 - - uid: 18644 + pos: -34.5,-9.5 + parent: 2 + - uid: 20959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 336.5,441.5 - parent: 1 - - uid: 18729 + pos: -26.5,-5.5 + parent: 2 + - uid: 21037 components: - type: Transform - pos: 421.5,379.5 - parent: 1 - - uid: 18736 + rot: 3.141592653589793 rad + pos: -70.5,-22.5 + parent: 2 + - uid: 21086 components: - type: Transform rot: 3.141592653589793 rad - pos: 421.5,366.5 - parent: 1 - - uid: 18738 + pos: -99.5,37.5 + parent: 2 + - uid: 21741 components: - type: Transform - pos: 421.5,366.5 - parent: 1 - - uid: 19002 + rot: 1.5707963267948966 rad + pos: -123.5,20.5 + parent: 2 + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad - pos: 330.5,391.5 - parent: 1 - - uid: 19005 + pos: -89.5,37.5 + parent: 2 + - uid: 22100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,393.5 - parent: 1 - - uid: 19287 + rot: 3.141592653589793 rad + pos: -56.5,-16.5 + parent: 2 + - uid: 22192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,383.5 - parent: 1 - - uid: 20052 + pos: -91.5,35.5 + parent: 2 + - uid: 22306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,442.5 - parent: 1 - - uid: 20053 + pos: -18.5,-1.5 + parent: 2 + - uid: 22475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,441.5 - parent: 1 - - uid: 20727 + pos: -120.5,-37.5 + parent: 2 + - uid: 22818 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,8.5 - parent: 20527 - - uid: 21069 + pos: -116.5,29.5 + parent: 2 + - uid: 22820 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,388.5 - parent: 1 - - uid: 21961 + rot: -1.5707963267948966 rad + pos: -112.5,29.5 + parent: 2 + - uid: 23114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,405.5 - parent: 1 -- proto: RailingCorner - entities: - - uid: 5138 + pos: -60.5,-69.5 + parent: 2 + - uid: 23120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,409.5 - parent: 1 - - uid: 5495 + rot: 3.141592653589793 rad + pos: -57.5,-72.5 + parent: 2 + - uid: 23333 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,414.5 - parent: 1 - - uid: 5575 + pos: -66.5,-16.5 + parent: 2 + - uid: 23386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,395.5 - parent: 1 - - uid: 5981 + rot: -1.5707963267948966 rad + pos: -117.5,-77.5 + parent: 2 + - uid: 23943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,405.5 - parent: 1 - - uid: 7506 + rot: 1.5707963267948966 rad + pos: -70.5,-31.5 + parent: 2 + - uid: 24447 components: - type: Transform rot: -1.5707963267948966 rad - pos: 356.5,385.5 - parent: 1 - - uid: 9078 + pos: -92.5,-2.5 + parent: 2 + - uid: 24448 components: - type: Transform - pos: 3.5,2.5 - parent: 16114 - - uid: 18279 + pos: -95.5,0.5 + parent: 2 + - uid: 24449 components: - type: Transform - pos: 416.5,425.5 - parent: 1 - - uid: 18349 + rot: 3.141592653589793 rad + pos: -95.5,-5.5 + parent: 2 + - uid: 24473 components: - type: Transform rot: -1.5707963267948966 rad - pos: 434.5,392.5 - parent: 1 - - uid: 18647 + pos: -89.5,-64.5 + parent: 2 + - uid: 24474 components: - type: Transform - pos: 336.5,440.5 - parent: 1 -- proto: RailingCornerSmall - entities: - - uid: 5137 + rot: 3.141592653589793 rad + pos: -92.5,-67.5 + parent: 2 + - uid: 24475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,410.5 - parent: 1 - - uid: 5172 + pos: -95.5,-64.5 + parent: 2 + - uid: 25360 components: - type: Transform - pos: 412.5,409.5 - parent: 1 - - uid: 5982 + rot: 1.5707963267948966 rad + pos: -126.5,-54.5 + parent: 2 + - uid: 25422 components: - type: Transform - pos: 328.5,404.5 - parent: 1 - - uid: 7533 + rot: 3.141592653589793 rad + pos: -139.5,-40.5 + parent: 2 + - uid: 25423 components: - type: Transform - pos: 357.5,398.5 - parent: 1 - - uid: 10013 + rot: -1.5707963267948966 rad + pos: -140.5,-45.5 + parent: 2 + - uid: 25424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,373.5 - parent: 1 - - uid: 10014 + pos: -152.5,-43.5 + parent: 2 + - uid: 25425 components: - type: Transform rot: 3.141592653589793 rad - pos: 390.5,373.5 - parent: 1 - - uid: 16947 + pos: -152.5,-47.5 + parent: 2 + - uid: 25426 + components: + - type: Transform + pos: -145.5,-42.5 + parent: 2 + - uid: 25427 components: - type: Transform rot: 3.141592653589793 rad - pos: 356.5,421.5 - parent: 1 - - uid: 18365 + pos: -145.5,-48.5 + parent: 2 + - uid: 25451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 430.5,385.5 - parent: 1 - - uid: 19202 + pos: -102.5,-48.5 + parent: 2 + - uid: 25452 components: - type: Transform rot: 3.141592653589793 rad - pos: 335.5,440.5 - parent: 1 - - uid: 20054 - components: - - type: Transform - pos: 334.5,440.5 - parent: 1 - - uid: 20055 + pos: -90.5,-15.5 + parent: 2 + - uid: 25478 components: - type: Transform rot: -1.5707963267948966 rad - pos: 333.5,440.5 - parent: 1 -- proto: RailingRound - entities: - - uid: 18378 + pos: -136.5,-17.5 + parent: 2 + - uid: 25479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 434.5,388.5 - parent: 1 - - uid: 20429 + pos: -141.5,-17.5 + parent: 2 + - uid: 25662 components: - type: Transform - pos: -0.5,-4.5 - parent: 20181 -- proto: RandomArcade - entities: - - uid: 6167 + rot: 3.141592653589793 rad + pos: -99.5,7.5 + parent: 2 + - uid: 25888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,412.5 - parent: 1 - - uid: 6168 + rot: 1.5707963267948966 rad + pos: -96.5,23.5 + parent: 2 + - uid: 25996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 460.5,411.5 - parent: 1 - - uid: 6169 + rot: 1.5707963267948966 rad + pos: -72.5,-41.5 + parent: 2 +- proto: PoweredlightExterior + entities: + - uid: 16641 components: - type: Transform rot: -1.5707963267948966 rad - pos: 460.5,410.5 - parent: 1 -- proto: RandomArtifactSpawner - entities: - - uid: 21097 + pos: -82.5,-3.5 + parent: 2 + - uid: 16642 components: - type: Transform - pos: 369.5,384.5 - parent: 1 -- proto: RandomArtifactSpawner20 - entities: - - uid: 7459 + rot: 1.5707963267948966 rad + pos: -88.5,-3.5 + parent: 2 + - uid: 16653 components: - type: Transform - pos: 341.5,389.5 - parent: 1 -- proto: RandomBrownStalagmite - entities: - - uid: 21974 + pos: -85.5,2.5 + parent: 2 + - uid: 23247 components: - type: Transform - pos: 358.5,430.5 - parent: 1 -- proto: RandomCommandCorpseSpawner + pos: -30.5,-76.5 + parent: 2 +- proto: PoweredLightPostSmall entities: - - uid: 21936 + - uid: 8685 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,20.5 - parent: 5072 - - uid: 21937 + pos: -37.5,-12.5 + parent: 2 + - uid: 16792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 5072 - - uid: 21938 + pos: -19.5,-12.5 + parent: 2 + - uid: 16807 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,30.5 - parent: 5072 -- proto: RandomDrinkBottle - entities: - - uid: 5887 + pos: -25.5,-15.5 + parent: 2 + - uid: 19746 components: - type: Transform - pos: 416.5,387.5 - parent: 1 - - uid: 18338 + pos: -58.5,-46.5 + parent: 2 + - uid: 19765 components: - type: Transform - pos: 433.5,400.5 - parent: 1 -- proto: RandomDrinkGlass + pos: -62.5,-38.5 + parent: 2 +- proto: PoweredSmallLight entities: - - uid: 3719 + - uid: 70 components: - type: Transform - pos: 413.5,388.5 - parent: 1 - - uid: 5885 + rot: 1.5707963267948966 rad + pos: -105.5,0.5 + parent: 2 + - uid: 296 components: - type: Transform - pos: 413.5,390.5 - parent: 1 - - uid: 5886 + rot: 3.141592653589793 rad + pos: -137.5,10.5 + parent: 2 + - uid: 454 components: - type: Transform - pos: 414.5,391.5 - parent: 1 - - uid: 18024 + rot: 1.5707963267948966 rad + pos: -110.5,-49.5 + parent: 2 + - uid: 493 components: - type: Transform - pos: 418.5,367.5 - parent: 1 - - uid: 18025 + pos: -125.5,17.5 + parent: 2 + - uid: 991 components: - type: Transform - pos: 411.5,370.5 - parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 5771 + rot: -1.5707963267948966 rad + pos: -75.5,-58.5 + parent: 2 + - uid: 1614 components: - type: Transform - pos: 368.5,406.5 - parent: 1 - - uid: 5772 + pos: -44.5,-73.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -134.5,-8.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,12.5 + parent: 2 + - uid: 2245 components: - type: Transform - pos: 437.5,412.5 - parent: 1 - - uid: 6181 + pos: -56.5,-77.5 + parent: 2 + - uid: 4565 components: - type: Transform - pos: 448.5,411.5 - parent: 1 - - uid: 17533 + pos: -38.5,19.5 + parent: 2 + - uid: 4615 components: - type: Transform - pos: 450.5,417.5 - parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 3468 + rot: 1.5707963267948966 rad + pos: -30.5,24.5 + parent: 2 + - uid: 5262 components: - type: Transform - pos: 445.5,414.5 - parent: 1 - - uid: 3490 + rot: 1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - uid: 5340 components: - type: Transform - pos: 444.5,418.5 - parent: 1 -- proto: RandomIngredient - entities: - - uid: 4856 + pos: -128.5,5.5 + parent: 2 + - uid: 5341 components: - type: Transform - pos: 410.5,388.5 - parent: 1 -- proto: RandomPainting - entities: - - uid: 5941 + pos: -128.5,7.5 + parent: 2 + - uid: 5460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,355.5 - parent: 1 - - uid: 5942 + pos: -128.5,9.5 + parent: 2 + - uid: 5552 components: - type: Transform - pos: 417.5,350.5 - parent: 1 - - uid: 5943 + pos: -128.5,11.5 + parent: 2 + - uid: 5659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,357.5 - parent: 1 - - uid: 5944 + pos: -21.5,8.5 + parent: 2 + - uid: 5694 components: - type: Transform rot: 3.141592653589793 rad - pos: 418.5,361.5 - parent: 1 -- proto: RandomPosterAny - entities: - - uid: 1200 + pos: -21.5,4.5 + parent: 2 + - uid: 6118 components: - type: Transform - pos: 337.5,400.5 - parent: 1 - - uid: 2854 + rot: 1.5707963267948966 rad + pos: -92.5,-42.5 + parent: 2 + - uid: 6119 components: - type: Transform - pos: 342.5,401.5 - parent: 1 - - uid: 13803 + rot: 1.5707963267948966 rad + pos: -88.5,-42.5 + parent: 2 + - uid: 6609 components: - type: Transform - pos: 391.5,414.5 - parent: 1 - - uid: 14516 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 7402 components: - type: Transform - pos: 393.5,417.5 - parent: 1 - - uid: 15609 + rot: 1.5707963267948966 rad + pos: -88.5,34.5 + parent: 2 + - uid: 7409 components: - type: Transform - pos: 350.5,405.5 - parent: 1 - - uid: 15616 + rot: 3.141592653589793 rad + pos: -107.5,-6.5 + parent: 2 + - uid: 7509 components: - type: Transform - pos: 328.5,438.5 - parent: 1 - - uid: 15617 + rot: -1.5707963267948966 rad + pos: -146.5,2.5 + parent: 2 + - uid: 8150 components: - type: Transform - pos: 326.5,433.5 - parent: 1 - - uid: 15618 + rot: 1.5707963267948966 rad + pos: -88.5,-17.5 + parent: 2 + - uid: 8572 components: - type: Transform - pos: 322.5,431.5 - parent: 1 - - uid: 15620 + pos: -11.5,3.5 + parent: 2 + - uid: 8591 components: - type: Transform - pos: 360.5,414.5 - parent: 1 - - uid: 15621 + rot: 3.141592653589793 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 8611 components: - type: Transform - pos: 355.5,407.5 - parent: 1 - - uid: 15622 + rot: 3.141592653589793 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 8612 components: - type: Transform - pos: 359.5,408.5 - parent: 1 - - uid: 15624 + rot: 1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 2 + - uid: 8623 components: - type: Transform - pos: 375.5,405.5 - parent: 1 - - uid: 15625 + pos: -11.5,-39.5 + parent: 2 + - uid: 8926 components: - type: Transform - pos: 378.5,401.5 - parent: 1 - - uid: 15626 + pos: -34.5,-56.5 + parent: 2 + - uid: 9262 components: - type: Transform - pos: 387.5,401.5 - parent: 1 - - uid: 15627 + rot: -1.5707963267948966 rad + pos: -75.5,-54.5 + parent: 2 + - uid: 9274 components: - type: Transform - pos: 394.5,405.5 - parent: 1 - - uid: 15629 + rot: -1.5707963267948966 rad + pos: -74.5,-11.5 + parent: 2 + - uid: 9294 components: - type: Transform - pos: 384.5,415.5 - parent: 1 - - uid: 15630 + rot: 1.5707963267948966 rad + pos: -107.5,-32.5 + parent: 2 + - uid: 9319 components: - type: Transform - pos: 387.5,419.5 - parent: 1 - - uid: 15631 + rot: 3.141592653589793 rad + pos: -61.5,-35.5 + parent: 2 + - uid: 10552 components: - type: Transform - pos: 387.5,422.5 - parent: 1 - - uid: 15632 + rot: 3.141592653589793 rad + pos: -70.5,-9.5 + parent: 2 + - uid: 10558 components: - type: Transform - pos: 394.5,409.5 - parent: 1 - - uid: 15633 + pos: -69.5,-2.5 + parent: 2 + - uid: 10567 components: - type: Transform - pos: 400.5,411.5 - parent: 1 - - uid: 15634 + rot: 3.141592653589793 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 10570 components: - type: Transform - pos: 402.5,406.5 - parent: 1 - - uid: 15635 + rot: 3.141592653589793 rad + pos: -59.5,-35.5 + parent: 2 + - uid: 10615 components: - type: Transform - pos: 406.5,406.5 - parent: 1 - - uid: 15640 + rot: 3.141592653589793 rad + pos: -43.5,-2.5 + parent: 2 + - uid: 10619 components: - type: Transform - pos: 399.5,414.5 - parent: 1 - - uid: 15641 + pos: -46.5,-2.5 + parent: 2 + - uid: 11053 components: - type: Transform - pos: 410.5,420.5 - parent: 1 - - uid: 15642 + rot: 3.141592653589793 rad + pos: -91.5,-50.5 + parent: 2 + - uid: 11770 components: - type: Transform - pos: 400.5,423.5 - parent: 1 - - uid: 15643 + pos: 0.5,-16.5 + parent: 2 + - uid: 11792 components: - type: Transform - pos: 394.5,419.5 - parent: 1 - - uid: 15644 + rot: -1.5707963267948966 rad + pos: -96.5,-46.5 + parent: 2 + - uid: 13072 components: - type: Transform - pos: 398.5,418.5 - parent: 1 - - uid: 15645 + rot: 1.5707963267948966 rad + pos: -39.5,-25.5 + parent: 2 + - uid: 13073 components: - type: Transform - pos: 418.5,418.5 - parent: 1 - - uid: 18723 + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - uid: 13089 components: - type: Transform - pos: 430.5,386.5 - parent: 1 - - uid: 19048 + rot: -1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 2 + - uid: 13106 components: - type: Transform - pos: 333.5,384.5 - parent: 1 - - uid: 19049 + rot: 1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 13107 components: - type: Transform - pos: 337.5,383.5 - parent: 1 - - uid: 19050 + pos: -43.5,-34.5 + parent: 2 + - uid: 13108 components: - type: Transform - pos: 339.5,381.5 - parent: 1 - - uid: 19051 + rot: 3.141592653589793 rad + pos: -43.5,-38.5 + parent: 2 + - uid: 13112 components: - type: Transform - pos: 343.5,384.5 - parent: 1 - - uid: 19052 + rot: -1.5707963267948966 rad + pos: -17.5,-44.5 + parent: 2 + - uid: 13121 components: - type: Transform - pos: 346.5,386.5 - parent: 1 - - uid: 19053 + rot: -1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 2 + - uid: 13123 components: - type: Transform - pos: 349.5,385.5 - parent: 1 - - uid: 19054 + rot: 1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 + - uid: 13226 components: - type: Transform - pos: 344.5,390.5 - parent: 1 - - uid: 19055 + pos: -107.5,-26.5 + parent: 2 + - uid: 13455 components: - type: Transform - pos: 332.5,390.5 - parent: 1 - - uid: 19056 + pos: -110.5,-20.5 + parent: 2 + - uid: 13456 components: - type: Transform - pos: 333.5,394.5 - parent: 1 - - uid: 19057 + rot: -1.5707963267948966 rad + pos: -111.5,-23.5 + parent: 2 + - uid: 13457 components: - type: Transform - pos: 329.5,391.5 - parent: 1 - - uid: 20430 + rot: -1.5707963267948966 rad + pos: -109.5,-23.5 + parent: 2 + - uid: 13463 components: - type: Transform - pos: 4.5,-3.5 - parent: 20181 - - uid: 20969 + pos: -130.5,-15.5 + parent: 2 + - uid: 13477 components: - type: Transform - pos: 341.5,443.5 - parent: 1 -- proto: RandomPosterContraband - entities: - - uid: 15608 + pos: -153.5,-9.5 + parent: 2 + - uid: 13495 components: - type: Transform - pos: 353.5,401.5 - parent: 1 - - uid: 15610 + pos: -110.5,9.5 + parent: 2 + - uid: 13496 components: - type: Transform - pos: 354.5,423.5 - parent: 1 - - uid: 15611 + rot: 3.141592653589793 rad + pos: -110.5,1.5 + parent: 2 + - uid: 13500 components: - type: Transform - pos: 357.5,425.5 - parent: 1 - - uid: 15612 + rot: -1.5707963267948966 rad + pos: -113.5,13.5 + parent: 2 + - uid: 13505 components: - type: Transform - pos: 356.5,434.5 - parent: 1 - - uid: 15613 + pos: -128.5,3.5 + parent: 2 + - uid: 13518 components: - type: Transform - pos: 348.5,435.5 - parent: 1 - - uid: 15614 + pos: -107.5,-8.5 + parent: 2 + - uid: 13519 components: - type: Transform - pos: 337.5,437.5 - parent: 1 - - uid: 15615 + pos: -112.5,-8.5 + parent: 2 + - uid: 13520 components: - type: Transform - pos: 325.5,436.5 - parent: 1 - - uid: 15619 + rot: 3.141592653589793 rad + pos: -112.5,-12.5 + parent: 2 + - uid: 13521 components: - type: Transform - pos: 369.5,417.5 - parent: 1 - - uid: 16185 + rot: 3.141592653589793 rad + pos: -107.5,-12.5 + parent: 2 + - uid: 13524 components: - type: Transform - pos: -2.5,2.5 - parent: 16114 - - uid: 18219 + rot: 1.5707963267948966 rad + pos: -97.5,-18.5 + parent: 2 + - uid: 13525 components: - type: Transform - pos: 361.5,412.5 - parent: 1 - - uid: 18220 + rot: 3.141592653589793 rad + pos: -99.5,-24.5 + parent: 2 + - uid: 13526 components: - type: Transform - pos: 360.5,410.5 - parent: 1 - - uid: 18221 + rot: 3.141592653589793 rad + pos: -99.5,-28.5 + parent: 2 + - uid: 13527 components: - type: Transform - pos: 358.5,411.5 - parent: 1 - - uid: 18222 + rot: 3.141592653589793 rad + pos: -99.5,-32.5 + parent: 2 + - uid: 13531 components: - type: Transform - pos: 356.5,411.5 - parent: 1 - - uid: 18223 + pos: -91.5,-17.5 + parent: 2 + - uid: 13535 components: - type: Transform - pos: 357.5,415.5 - parent: 1 - - uid: 18224 + rot: -1.5707963267948966 rad + pos: -86.5,-33.5 + parent: 2 + - uid: 13541 components: - type: Transform - pos: 354.5,415.5 - parent: 1 - - uid: 18225 + rot: 1.5707963267948966 rad + pos: -100.5,-38.5 + parent: 2 + - uid: 13572 components: - type: Transform - pos: 354.5,421.5 - parent: 1 - - uid: 18226 + rot: -1.5707963267948966 rad + pos: -95.5,-39.5 + parent: 2 + - uid: 13587 components: - type: Transform - pos: 361.5,423.5 - parent: 1 - - uid: 18227 + rot: 1.5707963267948966 rad + pos: -110.5,-41.5 + parent: 2 + - uid: 13589 components: - type: Transform - pos: 358.5,429.5 - parent: 1 - - uid: 18228 + pos: -108.5,-44.5 + parent: 2 + - uid: 13590 components: - type: Transform - pos: 361.5,431.5 - parent: 1 - - uid: 18229 + rot: 3.141592653589793 rad + pos: -108.5,-46.5 + parent: 2 + - uid: 13907 components: - type: Transform - pos: 353.5,439.5 - parent: 1 - - uid: 18231 + pos: -25.5,-56.5 + parent: 2 + - uid: 14279 components: - type: Transform - pos: 333.5,433.5 - parent: 1 - - uid: 18703 + rot: -1.5707963267948966 rad + pos: -60.5,-61.5 + parent: 2 + - uid: 14604 components: - type: Transform - pos: 423.5,377.5 - parent: 1 - - uid: 18704 + rot: 1.5707963267948966 rad + pos: -58.5,-52.5 + parent: 2 + - uid: 14605 components: - type: Transform - pos: 420.5,379.5 - parent: 1 - - uid: 18718 + rot: 1.5707963267948966 rad + pos: -58.5,-60.5 + parent: 2 + - uid: 14607 components: - type: Transform - pos: 427.5,380.5 - parent: 1 - - uid: 18719 + rot: -1.5707963267948966 rad + pos: -70.5,-52.5 + parent: 2 + - uid: 14629 components: - type: Transform - pos: 426.5,383.5 - parent: 1 - - uid: 18720 + rot: 3.141592653589793 rad + pos: -67.5,-60.5 + parent: 2 + - uid: 14631 components: - type: Transform - pos: 425.5,386.5 - parent: 1 - - uid: 18721 + rot: 3.141592653589793 rad + pos: -67.5,-62.5 + parent: 2 + - uid: 14754 components: - type: Transform - pos: 420.5,385.5 - parent: 1 - - uid: 19045 + rot: 1.5707963267948966 rad + pos: -105.5,10.5 + parent: 2 + - uid: 14815 components: - type: Transform - pos: 334.5,391.5 - parent: 1 - - uid: 19046 + pos: -45.5,-54.5 + parent: 2 + - uid: 14825 components: - type: Transform - pos: 339.5,389.5 - parent: 1 - - uid: 19047 + rot: 1.5707963267948966 rad + pos: -46.5,-51.5 + parent: 2 + - uid: 14826 components: - type: Transform - pos: 334.5,387.5 - parent: 1 - - uid: 20431 + rot: -1.5707963267948966 rad + pos: -48.5,-53.5 + parent: 2 + - uid: 14827 components: - type: Transform - pos: 8.5,-0.5 - parent: 20181 - - uid: 20728 + rot: 1.5707963267948966 rad + pos: -55.5,-53.5 + parent: 2 + - uid: 15331 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 20527 - - uid: 21779 + pos: -35.5,0.5 + parent: 2 + - uid: 15874 components: - type: Transform - pos: -4.5,30.5 - parent: 5072 -- proto: RandomPosterLegit - entities: - - uid: 6695 + pos: -112.5,-14.5 + parent: 2 + - uid: 15875 components: - type: Transform - pos: 344.5,405.5 - parent: 1 - - uid: 6697 + pos: -107.5,-14.5 + parent: 2 + - uid: 15876 components: - type: Transform - pos: 333.5,405.5 - parent: 1 - - uid: 6700 + rot: 1.5707963267948966 rad + pos: -116.5,-18.5 + parent: 2 + - uid: 15877 components: - type: Transform - pos: 346.5,401.5 - parent: 1 - - uid: 6702 + rot: 1.5707963267948966 rad + pos: -116.5,-14.5 + parent: 2 + - uid: 15878 components: - type: Transform - pos: 356.5,405.5 - parent: 1 - - uid: 6703 + rot: 3.141592653589793 rad + pos: -112.5,-6.5 + parent: 2 + - uid: 16031 components: - type: Transform - pos: 360.5,401.5 - parent: 1 - - uid: 6707 + rot: -1.5707963267948966 rad + pos: -109.5,-32.5 + parent: 2 + - uid: 16655 components: - type: Transform - pos: 360.5,391.5 - parent: 1 - - uid: 6709 + rot: -1.5707963267948966 rad + pos: -100.5,35.5 + parent: 2 + - uid: 16656 components: - type: Transform - pos: 370.5,399.5 - parent: 1 - - uid: 6710 + rot: 3.141592653589793 rad + pos: -103.5,36.5 + parent: 2 + - uid: 16730 components: - type: Transform - pos: 364.5,401.5 - parent: 1 - - uid: 6711 + pos: -34.5,-52.5 + parent: 2 + - uid: 16740 components: - type: Transform - pos: 368.5,405.5 - parent: 1 - - uid: 15637 + rot: -1.5707963267948966 rad + pos: -38.5,-53.5 + parent: 2 + - uid: 16776 components: - type: Transform - pos: 402.5,418.5 - parent: 1 - - uid: 15638 + pos: -38.5,-56.5 + parent: 2 + - uid: 16777 components: - type: Transform - pos: 409.5,419.5 - parent: 1 - - uid: 20729 + pos: -53.5,-40.5 + parent: 2 + - uid: 16825 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,3.5 - parent: 20527 - - uid: 20730 + pos: -11.5,5.5 + parent: 2 + - uid: 16828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 20527 - - uid: 20731 + rot: 1.5707963267948966 rad + pos: -55.5,-58.5 + parent: 2 + - uid: 16917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 20527 - - uid: 20732 + rot: 1.5707963267948966 rad + pos: -88.5,-8.5 + parent: 2 + - uid: 16931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 20527 - - uid: 20733 + pos: -128.5,1.5 + parent: 2 + - uid: 17023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 20527 - - uid: 20880 + rot: 1.5707963267948966 rad + pos: -98.5,35.5 + parent: 2 + - uid: 17749 components: - type: Transform - pos: 392.5,368.5 - parent: 1 - - uid: 20898 + rot: 1.5707963267948966 rad + pos: -19.5,-65.5 + parent: 2 + - uid: 18695 components: - type: Transform - pos: 426.5,415.5 - parent: 1 - - uid: 20899 + rot: 1.5707963267948966 rad + pos: -100.5,-35.5 + parent: 2 + - uid: 18912 components: - type: Transform - pos: 429.5,411.5 - parent: 1 - - uid: 20900 + rot: -1.5707963267948966 rad + pos: -100.5,23.5 + parent: 2 + - uid: 19160 components: - type: Transform - pos: 423.5,412.5 - parent: 1 - - uid: 20901 + rot: 3.141592653589793 rad + pos: -97.5,-15.5 + parent: 2 + - uid: 19456 components: - type: Transform - pos: 420.5,390.5 - parent: 1 - - uid: 20902 + rot: 1.5707963267948966 rad + pos: -102.5,28.5 + parent: 2 + - uid: 19659 components: - type: Transform - pos: 429.5,394.5 - parent: 1 - - uid: 20903 + rot: 1.5707963267948966 rad + pos: -134.5,1.5 + parent: 2 + - uid: 19745 components: - type: Transform - pos: 429.5,402.5 - parent: 1 - - uid: 20904 + rot: -1.5707963267948966 rad + pos: -67.5,-36.5 + parent: 2 + - uid: 19760 components: - type: Transform - pos: 431.5,402.5 - parent: 1 - - uid: 20905 + rot: 1.5707963267948966 rad + pos: -70.5,-36.5 + parent: 2 + - uid: 19773 components: - type: Transform - pos: 425.5,407.5 - parent: 1 - - uid: 20906 + pos: -92.5,30.5 + parent: 2 + - uid: 19892 components: - type: Transform - pos: 419.5,412.5 - parent: 1 - - uid: 20907 + rot: 1.5707963267948966 rad + pos: -88.5,1.5 + parent: 2 + - uid: 20292 components: - type: Transform - pos: 417.5,407.5 - parent: 1 - - uid: 20914 + rot: -1.5707963267948966 rad + pos: -119.5,35.5 + parent: 2 + - uid: 20293 components: - type: Transform - pos: 406.5,386.5 - parent: 1 - - uid: 20915 + rot: 1.5707963267948966 rad + pos: -134.5,-6.5 + parent: 2 + - uid: 20334 components: - type: Transform - pos: 405.5,366.5 - parent: 1 - - uid: 20916 + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - uid: 20430 components: - type: Transform - pos: 420.5,374.5 - parent: 1 - - uid: 20917 + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 21494 components: - type: Transform - pos: 420.5,368.5 - parent: 1 - - uid: 20918 + rot: 1.5707963267948966 rad + pos: -39.5,-49.5 + parent: 2 + - uid: 22031 components: - type: Transform - pos: 420.5,371.5 - parent: 1 - - uid: 20919 + rot: 3.141592653589793 rad + pos: -92.5,27.5 + parent: 2 + - uid: 22034 components: - type: Transform - pos: 324.5,428.5 - parent: 1 - - uid: 20920 + rot: 1.5707963267948966 rad + pos: -98.5,27.5 + parent: 2 + - uid: 22140 components: - type: Transform - pos: 412.5,383.5 - parent: 1 - - uid: 20921 + rot: -1.5707963267948966 rad + pos: -70.5,-60.5 + parent: 2 + - uid: 22825 components: - type: Transform - pos: 406.5,393.5 - parent: 1 - - uid: 20923 + rot: 3.141592653589793 rad + pos: -116.5,19.5 + parent: 2 + - uid: 22888 components: - type: Transform - pos: 387.5,398.5 - parent: 1 - - uid: 20925 + pos: -128.5,13.5 + parent: 2 + - uid: 22998 components: - type: Transform - pos: 377.5,394.5 - parent: 1 - - uid: 20926 + rot: 1.5707963267948966 rad + pos: -37.5,-36.5 + parent: 2 + - uid: 23392 components: - type: Transform - pos: 373.5,383.5 - parent: 1 - - uid: 20927 + rot: -1.5707963267948966 rad + pos: -100.5,4.5 + parent: 2 + - uid: 23514 components: - type: Transform - pos: 375.5,376.5 - parent: 1 - - uid: 20928 + rot: -1.5707963267948966 rad + pos: -48.5,-51.5 + parent: 2 + - uid: 23859 components: - type: Transform - pos: 370.5,395.5 - parent: 1 - - uid: 20929 + rot: 1.5707963267948966 rad + pos: -72.5,-63.5 + parent: 2 + - uid: 23860 components: - type: Transform - pos: 365.5,392.5 - parent: 1 - - uid: 20930 + rot: 1.5707963267948966 rad + pos: -65.5,-61.5 + parent: 2 + - uid: 23861 components: - type: Transform - pos: 354.5,394.5 - parent: 1 - - uid: 20931 + rot: -1.5707963267948966 rad + pos: -74.5,-61.5 + parent: 2 + - uid: 24116 components: - type: Transform - pos: 349.5,395.5 - parent: 1 - - uid: 20932 + rot: -1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - uid: 24231 components: - type: Transform - pos: 339.5,395.5 - parent: 1 - - uid: 20933 + rot: 1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 24464 components: - type: Transform - pos: 343.5,408.5 - parent: 1 - - uid: 20934 + pos: -100.5,-2.5 + parent: 2 + - uid: 24479 components: - type: Transform - pos: 345.5,416.5 - parent: 1 - - uid: 20935 + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - uid: 24481 components: - type: Transform - pos: 329.5,415.5 - parent: 1 - - uid: 20936 + rot: 1.5707963267948966 rad + pos: -92.5,-59.5 + parent: 2 + - uid: 24621 components: - type: Transform - pos: 318.5,425.5 - parent: 1 - - uid: 20938 + rot: 1.5707963267948966 rad + pos: -134.5,-12.5 + parent: 2 + - uid: 24637 components: - type: Transform - pos: 327.5,427.5 - parent: 1 - - uid: 20939 + pos: -18.5,-8.5 + parent: 2 + - uid: 25407 components: - type: Transform - pos: 337.5,425.5 - parent: 1 - - uid: 20940 + rot: 1.5707963267948966 rad + pos: -122.5,-56.5 + parent: 2 + - uid: 25408 components: - type: Transform - pos: 351.5,423.5 - parent: 1 - - uid: 20941 + rot: 3.141592653589793 rad + pos: -121.5,-63.5 + parent: 2 + - uid: 25409 components: - type: Transform - pos: 367.5,415.5 - parent: 1 - - uid: 20942 + rot: 3.141592653589793 rad + pos: -119.5,-63.5 + parent: 2 + - uid: 25410 components: - type: Transform - pos: 377.5,416.5 - parent: 1 - - uid: 20943 + rot: 1.5707963267948966 rad + pos: -122.5,-58.5 + parent: 2 + - uid: 25411 components: - type: Transform - pos: 394.5,412.5 - parent: 1 - - uid: 20944 + rot: -1.5707963267948966 rad + pos: -111.5,-58.5 + parent: 2 + - uid: 25412 components: - type: Transform - pos: 391.5,382.5 - parent: 1 - - uid: 20945 + rot: -1.5707963267948966 rad + pos: -111.5,-56.5 + parent: 2 + - uid: 25414 components: - type: Transform - pos: 388.5,378.5 - parent: 1 - - uid: 20946 + rot: 1.5707963267948966 rad + pos: -130.5,-51.5 + parent: 2 + - uid: 25415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -113.5,-67.5 + parent: 2 + - uid: 25416 components: - type: Transform - pos: 387.5,372.5 - parent: 1 - - uid: 20947 + rot: 1.5707963267948966 rad + pos: -113.5,-69.5 + parent: 2 + - uid: 25419 components: - type: Transform - pos: 397.5,371.5 - parent: 1 - - uid: 20949 + rot: -1.5707963267948966 rad + pos: -130.5,-53.5 + parent: 2 + - uid: 25420 components: - type: Transform - pos: 412.5,360.5 - parent: 1 - - uid: 20950 + rot: -1.5707963267948966 rad + pos: -128.5,-53.5 + parent: 2 + - uid: 25421 components: - type: Transform - pos: 409.5,363.5 - parent: 1 - - uid: 20951 + rot: 3.141592653589793 rad + pos: -115.5,-68.5 + parent: 2 + - uid: 25428 components: - type: Transform - pos: 419.5,361.5 - parent: 1 - - uid: 20952 + rot: 1.5707963267948966 rad + pos: -148.5,-53.5 + parent: 2 + - uid: 25429 components: - type: Transform - pos: 413.5,354.5 - parent: 1 - - uid: 20953 + rot: 1.5707963267948966 rad + pos: -148.5,-37.5 + parent: 2 + - uid: 25456 components: - type: Transform - pos: 421.5,350.5 - parent: 1 - - uid: 20954 + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 2 + - uid: 25457 components: - type: Transform - pos: 423.5,355.5 - parent: 1 - - uid: 20955 + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 2 + - uid: 25691 components: - type: Transform - pos: 425.5,358.5 - parent: 1 - - uid: 20956 + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - uid: 25696 components: - type: Transform - pos: 422.5,359.5 - parent: 1 - - uid: 20957 + rot: -1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + - uid: 25955 components: - type: Transform - pos: 416.5,366.5 - parent: 1 - - uid: 20958 + rot: 3.141592653589793 rad + pos: -103.5,-59.5 + parent: 2 + - uid: 25956 components: - type: Transform - pos: 416.5,372.5 - parent: 1 - - uid: 20959 + rot: 1.5707963267948966 rad + pos: -106.5,-56.5 + parent: 2 + - uid: 26002 components: - type: Transform - pos: 407.5,377.5 - parent: 1 - - uid: 20960 + pos: -137.5,1.5 + parent: 2 + - uid: 26061 components: - type: Transform - pos: 413.5,379.5 - parent: 1 - - uid: 20961 + pos: -76.5,-21.5 + parent: 2 +- proto: PoweredStrobeLightEmpty + entities: + - uid: 3985 components: - type: Transform - pos: 417.5,384.5 - parent: 1 - - uid: 20965 + rot: 3.141592653589793 rad + pos: -23.5,-21.5 + parent: 2 + - uid: 6822 components: - type: Transform - pos: 330.5,441.5 - parent: 1 - - uid: 20966 + pos: -81.5,-25.5 + parent: 2 + - uid: 6879 components: - type: Transform - pos: 336.5,438.5 - parent: 1 - - uid: 20967 + pos: -83.5,-25.5 + parent: 2 +- proto: PoweredStrobeLightPolice + entities: + - uid: 21056 components: - type: Transform - pos: 336.5,443.5 - parent: 1 - - uid: 20968 + rot: 3.141592653589793 rad + pos: -38.5,-75.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: PoweredStrobeLightSiren + entities: + - uid: 22440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -151.5,-6.5 + parent: 2 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/adminlarm.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 22441 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DamageOnInteract + isDamageActive: False +- proto: PrefilledSyringe + entities: + - uid: 6481 components: - type: Transform - pos: 343.5,442.5 - parent: 1 - - uid: 20976 + pos: -36.23253,-30.543175 + parent: 2 + - uid: 7609 components: - type: Transform - pos: 447.5,405.5 - parent: 1 - - uid: 20977 + pos: -134.52573,-43.445347 + parent: 2 +- proto: Protolathe + entities: + - uid: 9781 components: - type: Transform - pos: 441.5,403.5 - parent: 1 - - uid: 20978 + pos: -122.5,-37.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 9300 components: - type: Transform - pos: 439.5,409.5 - parent: 1 - - uid: 20979 + pos: -18.5,-21.5 + parent: 2 +- proto: Rack + entities: + - uid: 656 components: - type: Transform - pos: 451.5,404.5 - parent: 1 - - uid: 20980 + pos: -110.5,-40.5 + parent: 2 + - uid: 2123 components: - type: Transform - pos: 455.5,405.5 - parent: 1 - - uid: 20981 + rot: 1.5707963267948966 rad + pos: -82.5,-21.5 + parent: 2 + - uid: 2126 components: - type: Transform - pos: 460.5,413.5 - parent: 1 - - uid: 20982 + rot: 1.5707963267948966 rad + pos: -82.5,-22.5 + parent: 2 + - uid: 2590 components: - type: Transform - pos: 447.5,413.5 - parent: 1 - - uid: 20983 + rot: -1.5707963267948966 rad + pos: -93.5,-38.5 + parent: 2 + - uid: 3821 components: - type: Transform - pos: 451.5,417.5 - parent: 1 - - uid: 20984 + pos: -65.5,-59.5 + parent: 2 + - uid: 4032 components: - type: Transform - pos: 452.5,423.5 - parent: 1 - - uid: 20985 + pos: -26.5,-28.5 + parent: 2 + - uid: 5886 components: - type: Transform - pos: 463.5,405.5 - parent: 1 - - uid: 20986 + pos: -107.5,-15.5 + parent: 2 + - uid: 6245 components: - type: Transform - pos: 461.5,404.5 - parent: 1 - - uid: 20987 + pos: -125.5,-24.5 + parent: 2 + - uid: 6314 components: - type: Transform - pos: 454.5,400.5 - parent: 1 - - uid: 20988 + pos: -130.5,-13.5 + parent: 2 + - uid: 6317 components: - type: Transform - pos: 447.5,402.5 - parent: 1 - - uid: 20989 + pos: -121.5,-4.5 + parent: 2 + - uid: 7155 components: - type: Transform - pos: 441.5,397.5 - parent: 1 - - uid: 22178 + pos: -39.5,-71.5 + parent: 2 + - uid: 7564 components: - type: Transform - pos: 436.5,414.5 - parent: 1 - - uid: 22179 + rot: 1.5707963267948966 rad + pos: -118.5,-49.5 + parent: 2 + - uid: 8268 components: - type: Transform - pos: 438.5,413.5 - parent: 1 - - uid: 22180 + pos: -8.5,-18.5 + parent: 2 + - uid: 9572 components: - type: Transform - pos: 435.5,409.5 - parent: 1 - - uid: 22181 + rot: 1.5707963267948966 rad + pos: -121.5,-3.5 + parent: 2 + - uid: 10201 components: - type: Transform - pos: 442.5,414.5 - parent: 1 - - uid: 22182 + pos: -82.5,-45.5 + parent: 2 + - uid: 12174 components: - type: Transform - pos: 444.5,413.5 - parent: 1 - - uid: 22183 + pos: -86.5,-7.5 + parent: 2 + - uid: 14626 components: - type: Transform - pos: 444.5,401.5 - parent: 1 - - uid: 22184 + rot: 3.141592653589793 rad + pos: -59.5,-38.5 + parent: 2 + - uid: 15338 components: - type: Transform - pos: 444.5,396.5 - parent: 1 - - uid: 22185 + pos: -37.5,0.5 + parent: 2 + - uid: 16004 components: - type: Transform - pos: 441.5,393.5 - parent: 1 - - uid: 22186 + rot: 1.5707963267948966 rad + pos: -109.5,-33.5 + parent: 2 + - uid: 16178 components: - type: Transform - pos: 443.5,392.5 - parent: 1 -- proto: RandomSecurityCorpseSpawner - entities: - - uid: 21939 + pos: -88.5,-22.5 + parent: 2 + - uid: 16903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,28.5 - parent: 5072 -- proto: RandomSoakedCigarette - entities: - - uid: 5597 + rot: 1.5707963267948966 rad + pos: -95.5,35.5 + parent: 2 + - uid: 18750 components: - type: Transform - pos: 366.5,397.5 - parent: 1 -- proto: RandomSoap - entities: - - uid: 5542 + pos: -136.5,-13.5 + parent: 2 + - uid: 18824 components: - type: Transform - pos: 390.5,410.5 - parent: 1 -- proto: RandomSpawner - entities: - - uid: 20818 + pos: -143.5,-2.5 + parent: 2 + - uid: 19551 components: - type: Transform - pos: 328.5,406.5 - parent: 1 - - uid: 20837 + rot: 3.141592653589793 rad + pos: -91.5,32.5 + parent: 2 + - uid: 22058 components: - type: Transform - pos: 400.5,374.5 - parent: 1 - - uid: 20839 + pos: -26.5,-7.5 + parent: 2 + - uid: 22094 components: - type: Transform - pos: 412.5,371.5 - parent: 1 - - uid: 20840 + pos: -26.5,-3.5 + parent: 2 + - uid: 22396 components: - type: Transform - pos: 415.5,375.5 - parent: 1 - - uid: 20845 + pos: -112.5,27.5 + parent: 2 + - uid: 22398 components: - type: Transform - pos: 445.5,404.5 - parent: 1 - - uid: 20850 + pos: -116.5,27.5 + parent: 2 + - uid: 23245 components: - type: Transform - pos: 432.5,411.5 - parent: 1 - - uid: 20851 + pos: -25.5,-9.5 + parent: 2 + - uid: 23298 components: - type: Transform - pos: 432.5,418.5 - parent: 1 - - uid: 20852 + pos: -24.5,-9.5 + parent: 2 + - uid: 23710 components: - type: Transform - pos: 423.5,418.5 - parent: 1 - - uid: 20853 + rot: -1.5707963267948966 rad + pos: -80.5,-27.5 + parent: 2 + - uid: 24408 components: - type: Transform - pos: 415.5,424.5 - parent: 1 - - uid: 20854 + pos: -37.5,-4.5 + parent: 2 + - uid: 24484 components: - type: Transform - pos: 404.5,426.5 - parent: 1 - - uid: 20857 + pos: -36.5,-9.5 + parent: 2 + - uid: 25238 components: - type: Transform - pos: 394.5,424.5 - parent: 1 - - uid: 20859 + pos: -119.5,-65.5 + parent: 2 +- proto: RadiationCollectorNoTank + entities: + - uid: 21868 components: - type: Transform - pos: 413.5,407.5 - parent: 1 - - uid: 20861 + pos: -114.5,36.5 + parent: 2 +- proto: RagItem + entities: + - uid: 24446 components: - type: Transform - pos: 415.5,408.5 - parent: 1 - - uid: 20862 + pos: -66.44349,-30.912537 + parent: 2 + - uid: 24456 components: - type: Transform - pos: 418.5,404.5 - parent: 1 - - uid: 20866 + pos: -68.96699,-37.247665 + parent: 2 +- proto: Railing + entities: + - uid: 288 components: - type: Transform - pos: 430.5,403.5 - parent: 1 - - uid: 20869 + rot: 1.5707963267948966 rad + pos: -96.5,35.5 + parent: 2 + - uid: 2376 components: - type: Transform - pos: 442.5,395.5 - parent: 1 - - uid: 20871 + rot: 3.141592653589793 rad + pos: -62.5,-29.5 + parent: 2 + - uid: 2380 components: - type: Transform - pos: 359.5,414.5 - parent: 1 - - uid: 20874 + rot: 1.5707963267948966 rad + pos: -63.5,-26.5 + parent: 2 + - uid: 2432 components: - type: Transform - pos: 312.5,387.5 - parent: 1 - - uid: 20875 + rot: 1.5707963267948966 rad + pos: -63.5,-28.5 + parent: 2 + - uid: 3328 components: - type: Transform - pos: 307.5,381.5 - parent: 1 - - uid: 20876 + rot: -1.5707963267948966 rad + pos: -66.5,-73.5 + parent: 2 + - uid: 3353 components: - type: Transform - pos: 305.5,386.5 - parent: 1 - - uid: 20877 + pos: -62.5,-33.5 + parent: 2 + - uid: 3354 components: - type: Transform - pos: 311.5,383.5 - parent: 1 - - uid: 20878 + pos: -60.5,-33.5 + parent: 2 + - uid: 3355 components: - type: Transform - pos: 317.5,383.5 - parent: 1 - - uid: 20888 + pos: -57.5,-33.5 + parent: 2 + - uid: 3356 components: - type: Transform - pos: 425.5,375.5 - parent: 1 - - uid: 20889 + pos: -58.5,-33.5 + parent: 2 + - uid: 3357 components: - type: Transform - pos: 427.5,377.5 - parent: 1 - - uid: 20890 + pos: -61.5,-33.5 + parent: 2 + - uid: 3358 components: - type: Transform - pos: 303.5,413.5 - parent: 1 - - uid: 20891 + pos: -59.5,-33.5 + parent: 2 + - uid: 3366 components: - type: Transform - pos: 326.5,417.5 - parent: 1 - - uid: 20892 + rot: 1.5707963267948966 rad + pos: -68.5,-73.5 + parent: 2 + - uid: 3373 components: - type: Transform - pos: 323.5,425.5 - parent: 1 - - uid: 20894 + rot: 3.141592653589793 rad + pos: -62.5,-35.5 + parent: 2 + - uid: 3374 components: - type: Transform - pos: 354.5,433.5 - parent: 1 - - uid: 20895 + rot: 1.5707963267948966 rad + pos: -63.5,-34.5 + parent: 2 + - uid: 4759 components: - type: Transform - pos: 360.5,430.5 - parent: 1 - - uid: 21439 + pos: -100.5,21.5 + parent: 2 + - uid: 4975 components: - type: Transform - pos: 0.5,31.5 - parent: 5072 - - uid: 21470 + pos: -121.5,14.5 + parent: 2 + - uid: 5632 components: - type: Transform - pos: 5.5,33.5 - parent: 5072 - - uid: 21474 + rot: 1.5707963267948966 rad + pos: -121.5,12.5 + parent: 2 + - uid: 6543 components: - type: Transform - pos: -1.5,30.5 - parent: 5072 - - uid: 21676 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 + parent: 2 + - uid: 6604 components: - type: Transform - pos: 7.5,35.5 - parent: 5072 - - uid: 21915 + rot: -1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 2 + - uid: 6605 components: - type: Transform - pos: 11.5,24.5 - parent: 5072 - - uid: 21916 + rot: 3.141592653589793 rad + pos: -60.5,-29.5 + parent: 2 + - uid: 6631 components: - type: Transform - pos: 13.5,26.5 - parent: 5072 - - uid: 21917 + pos: -62.5,-25.5 + parent: 2 + - uid: 6908 components: - type: Transform - pos: 7.5,25.5 - parent: 5072 - - uid: 21918 + rot: 1.5707963267948966 rad + pos: -121.5,11.5 + parent: 2 + - uid: 7415 components: - type: Transform - pos: 8.5,23.5 - parent: 5072 - - uid: 21919 + rot: 1.5707963267948966 rad + pos: -96.5,33.5 + parent: 2 + - uid: 7575 components: - type: Transform - pos: 2.5,24.5 - parent: 5072 - - uid: 21920 + rot: 3.141592653589793 rad + pos: -61.5,-29.5 + parent: 2 + - uid: 8415 components: - type: Transform - pos: 4.5,25.5 - parent: 5072 - - uid: 21921 + pos: -116.5,12.5 + parent: 2 + - uid: 8443 components: - type: Transform - pos: 0.5,25.5 - parent: 5072 - - uid: 21922 + pos: -115.5,12.5 + parent: 2 + - uid: 8982 components: - type: Transform - pos: -0.5,23.5 - parent: 5072 - - uid: 21923 + rot: -1.5707963267948966 rad + pos: -59.5,-27.5 + parent: 2 + - uid: 8984 components: - type: Transform - pos: -2.5,26.5 - parent: 5072 - - uid: 21924 + pos: -60.5,-25.5 + parent: 2 + - uid: 9088 components: - type: Transform - pos: -5.5,27.5 - parent: 5072 - - uid: 21925 + rot: 3.141592653589793 rad + pos: -99.5,8.5 + parent: 2 + - uid: 9247 components: - type: Transform - pos: -6.5,28.5 - parent: 5072 -- proto: RandomVending - entities: - - uid: 1456 + rot: 3.141592653589793 rad + pos: -100.5,8.5 + parent: 2 + - uid: 9251 components: - type: Transform - pos: 371.5,413.5 - parent: 1 - - uid: 1509 + rot: 3.141592653589793 rad + pos: -98.5,8.5 + parent: 2 + - uid: 9301 components: - type: Transform - pos: 393.5,401.5 - parent: 1 - - uid: 3972 + pos: -61.5,-25.5 + parent: 2 + - uid: 9304 components: - type: Transform - pos: 387.5,413.5 - parent: 1 - - uid: 4843 + rot: 1.5707963267948966 rad + pos: -63.5,-27.5 + parent: 2 + - uid: 9631 components: - type: Transform - pos: 371.5,409.5 - parent: 1 - - uid: 4844 + rot: 3.141592653589793 rad + pos: -85.5,-48.5 + parent: 2 + - uid: 9644 components: - type: Transform - pos: 387.5,411.5 - parent: 1 - - uid: 4855 + rot: -1.5707963267948966 rad + pos: -81.5,-45.5 + parent: 2 + - uid: 9649 components: - type: Transform - pos: 387.5,407.5 - parent: 1 - - uid: 4872 + rot: -1.5707963267948966 rad + pos: -82.5,-47.5 + parent: 2 + - uid: 9823 components: - type: Transform - pos: 371.5,407.5 - parent: 1 - - uid: 5318 + rot: 1.5707963267948966 rad + pos: -96.5,30.5 + parent: 2 + - uid: 11016 components: - type: Transform - pos: 405.5,406.5 - parent: 1 - - uid: 5319 + pos: -25.5,11.5 + parent: 2 + - uid: 11019 components: - type: Transform - pos: 403.5,411.5 - parent: 1 - - uid: 5415 + pos: -24.5,11.5 + parent: 2 + - uid: 11021 components: - type: Transform - pos: 406.5,422.5 - parent: 1 - - uid: 5828 + pos: -26.5,11.5 + parent: 2 + - uid: 11034 components: - type: Transform - pos: 378.5,415.5 - parent: 1 - - uid: 5829 + pos: -27.5,11.5 + parent: 2 + - uid: 11061 components: - type: Transform - pos: 380.5,415.5 - parent: 1 - - uid: 12373 + rot: 3.141592653589793 rad + pos: -84.5,-48.5 + parent: 2 + - uid: 11193 components: - type: Transform - pos: 393.5,399.5 - parent: 1 -- proto: RandomVendingDrinks - entities: - - uid: 5743 + rot: -1.5707963267948966 rad + pos: -58.5,-1.5 + parent: 2 + - uid: 11194 components: - type: Transform - pos: 387.5,420.5 - parent: 1 - - uid: 5744 + rot: 1.5707963267948966 rad + pos: -64.5,-1.5 + parent: 2 + - uid: 11195 components: - type: Transform - pos: 376.5,420.5 - parent: 1 - - uid: 5912 + pos: -63.5,-0.5 + parent: 2 + - uid: 11198 components: - type: Transform - pos: 417.5,363.5 - parent: 1 - - uid: 6063 + pos: -59.5,-0.5 + parent: 2 + - uid: 13421 components: - type: Transform - pos: 411.5,376.5 - parent: 1 - - uid: 6183 + rot: 1.5707963267948966 rad + pos: -112.5,-2.5 + parent: 2 + - uid: 13422 components: - type: Transform - pos: 453.5,412.5 - parent: 1 - - uid: 6186 + rot: 1.5707963267948966 rad + pos: -112.5,-3.5 + parent: 2 + - uid: 15034 components: - type: Transform - pos: 456.5,403.5 - parent: 1 - - uid: 6199 + rot: 1.5707963267948966 rad + pos: -96.5,0.5 + parent: 2 + - uid: 16054 components: - type: Transform - pos: 460.5,409.5 - parent: 1 -- proto: RandomVendingSnacks - entities: - - uid: 6064 + rot: -1.5707963267948966 rad + pos: -81.5,-44.5 + parent: 2 + - uid: 16821 components: - type: Transform - pos: 412.5,376.5 - parent: 1 - - uid: 6182 + pos: -67.5,-72.5 + parent: 2 + - uid: 16985 components: - type: Transform - pos: 454.5,412.5 - parent: 1 - - uid: 6198 + rot: 1.5707963267948966 rad + pos: -96.5,32.5 + parent: 2 + - uid: 17140 components: - type: Transform - pos: 448.5,409.5 - parent: 1 - - uid: 7590 + rot: -1.5707963267948966 rad + pos: -97.5,30.5 + parent: 2 + - uid: 17156 components: - type: Transform - pos: 330.5,388.5 - parent: 1 - - uid: 22188 + rot: 1.5707963267948966 rad + pos: -96.5,27.5 + parent: 2 + - uid: 17826 components: - type: Transform - pos: 417.5,364.5 - parent: 1 -- proto: RCDEmpty - entities: - - uid: 6253 + rot: 3.141592653589793 rad + pos: -83.5,-48.5 + parent: 2 + - uid: 17829 components: - type: Transform - pos: 346.5,416.5 - parent: 1 -- proto: ReagentContainerCornmeal - entities: - - uid: 16165 + rot: 3.141592653589793 rad + pos: -86.5,-48.5 + parent: 2 + - uid: 18074 components: - type: Transform - parent: 6164 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ReagentContainerFlour - entities: - - uid: 15850 + rot: 1.5707963267948966 rad + pos: -97.5,-3.5 + parent: 2 + - uid: 18076 components: - type: Transform - parent: 6164 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Recycler - entities: - - uid: 1405 + rot: 3.141592653589793 rad + pos: -96.5,-5.5 + parent: 2 + - uid: 18178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,384.5 - parent: 1 - - uid: 7587 + rot: 1.5707963267948966 rad + pos: -101.5,30.5 + parent: 2 + - uid: 18783 components: - type: Transform - pos: 329.5,440.5 - parent: 1 -- proto: RegenerativeMesh - entities: - - uid: 18592 + pos: -93.5,-62.5 + parent: 2 + - uid: 18787 components: - type: Transform - parent: 18591 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ReinforcedGirder - entities: - - uid: 17362 + pos: -89.5,-63.5 + parent: 2 + - uid: 19512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 473.5,378.5 - parent: 1 - - uid: 17363 + rot: 1.5707963267948966 rad + pos: -118.5,11.5 + parent: 2 + - uid: 19513 components: - type: Transform - pos: 478.5,379.5 - parent: 1 - - uid: 17367 + rot: -1.5707963267948966 rad + pos: -120.5,11.5 + parent: 2 + - uid: 19516 components: - type: Transform - pos: 482.5,376.5 - parent: 1 - - uid: 17409 + rot: -1.5707963267948966 rad + pos: -120.5,12.5 + parent: 2 + - uid: 20320 components: - type: Transform - pos: 476.5,374.5 - parent: 1 - - uid: 17650 + rot: -1.5707963267948966 rad + pos: -97.5,32.5 + parent: 2 + - uid: 20806 components: - type: Transform - pos: 504.5,393.5 - parent: 1 - - uid: 18060 + pos: -94.5,-62.5 + parent: 2 + - uid: 20947 components: - type: Transform - pos: 274.5,389.5 - parent: 1 - - uid: 18061 + pos: -91.5,-62.5 + parent: 2 + - uid: 21495 components: - type: Transform - pos: 276.5,392.5 - parent: 1 - - uid: 18062 + rot: 1.5707963267948966 rad + pos: -97.5,-4.5 + parent: 2 + - uid: 22033 components: - type: Transform - pos: 274.5,392.5 - parent: 1 - - uid: 18543 + rot: 1.5707963267948966 rad + pos: -96.5,28.5 + parent: 2 + - uid: 22348 components: - type: Transform - pos: 354.5,406.5 - parent: 1 - - uid: 20825 + rot: 1.5707963267948966 rad + pos: -97.5,-1.5 + parent: 2 + - uid: 22479 components: - type: Transform - pos: 334.5,388.5 - parent: 1 - - uid: 21379 + rot: 3.141592653589793 rad + pos: -67.5,-74.5 + parent: 2 + - uid: 23371 components: - type: Transform - pos: 11.5,20.5 - parent: 5072 - - uid: 21519 + rot: 1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - uid: 24298 components: - type: Transform - pos: 12.5,22.5 - parent: 5072 - - uid: 21539 + pos: -117.5,12.5 + parent: 2 + - uid: 25538 components: - type: Transform - pos: 7.5,27.5 - parent: 5072 - - uid: 21555 + rot: -1.5707963267948966 rad + pos: -120.5,13.5 + parent: 2 + - uid: 25542 components: - type: Transform - pos: 8.5,22.5 - parent: 5072 - - uid: 21595 + pos: -122.5,14.5 + parent: 2 + - uid: 25543 components: - type: Transform - pos: 14.5,24.5 - parent: 5072 - - uid: 21632 + pos: -123.5,14.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 3865 components: - type: Transform - pos: 13.5,23.5 - parent: 5072 - - uid: 21755 + rot: 3.141592653589793 rad + pos: -46.5,-44.5 + parent: 2 + - uid: 3866 components: - type: Transform - pos: -3.5,24.5 - parent: 5072 - - uid: 21762 + rot: -1.5707963267948966 rad + pos: -46.5,-46.5 + parent: 2 + - uid: 15062 components: - type: Transform - pos: -3.5,28.5 - parent: 5072 - - uid: 21802 + rot: 1.5707963267948966 rad + pos: -95.5,-5.5 + parent: 2 + - uid: 16045 components: - type: Transform - pos: -3.5,31.5 - parent: 5072 - - uid: 21871 + rot: 3.141592653589793 rad + pos: -82.5,-46.5 + parent: 2 + - uid: 16713 components: - type: Transform - pos: 9.5,15.5 - parent: 5072 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 717 + pos: -66.5,-72.5 + parent: 2 + - uid: 16813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 333.5,428.5 - parent: 1 - - uid: 719 + rot: -1.5707963267948966 rad + pos: -68.5,-72.5 + parent: 2 + - uid: 17830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,428.5 - parent: 1 - - uid: 720 + rot: 3.141592653589793 rad + pos: -87.5,-50.5 + parent: 2 + - uid: 20901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,428.5 - parent: 1 - - uid: 729 + rot: -1.5707963267948966 rad + pos: -90.5,-63.5 + parent: 2 + - uid: 21717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,428.5 - parent: 1 - - uid: 742 + pos: -95.5,-63.5 + parent: 2 + - uid: 23240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,423.5 - parent: 1 - - uid: 757 + pos: -96.5,-0.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 1200 components: - type: Transform rot: 3.141592653589793 rad - pos: 318.5,421.5 - parent: 1 - - uid: 758 + pos: -63.5,-33.5 + parent: 2 + - uid: 2373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,422.5 - parent: 1 - - uid: 2474 + rot: -1.5707963267948966 rad + pos: -63.5,-29.5 + parent: 2 + - uid: 2653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,388.5 - parent: 1 - - uid: 2475 + pos: -66.5,-74.5 + parent: 2 + - uid: 3371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,388.5 - parent: 1 - - uid: 20432 + rot: -1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + - uid: 7543 components: - type: Transform - pos: 1.5,-0.5 - parent: 20181 - - uid: 20433 + rot: 1.5707963267948966 rad + pos: -59.5,-25.5 + parent: 2 + - uid: 7576 components: - type: Transform - pos: -0.5,-0.5 - parent: 20181 -- proto: ReinforcedUraniumWindow - entities: - - uid: 1094 + pos: -59.5,-29.5 + parent: 2 + - uid: 8985 components: - type: Transform - pos: 352.5,407.5 - parent: 1 - - uid: 5427 + rot: 3.141592653589793 rad + pos: -63.5,-25.5 + parent: 2 + - uid: 9434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,420.5 - parent: 1 - - uid: 15845 + pos: -81.5,-46.5 + parent: 2 + - uid: 10859 components: - type: Transform - pos: 501.5,382.5 - parent: 1 - - uid: 15846 + pos: -82.5,-48.5 + parent: 2 + - uid: 11192 components: - type: Transform - pos: 501.5,381.5 - parent: 1 -- proto: ReinforcedWindow - entities: - - uid: 3 + rot: 3.141592653589793 rad + pos: -64.5,-0.5 + parent: 2 + - uid: 11196 components: - type: Transform - pos: 304.5,381.5 - parent: 1 - - uid: 49 + rot: 1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 2 + - uid: 11197 components: - type: Transform - pos: 304.5,380.5 - parent: 1 - - uid: 103 + rot: 3.141592653589793 rad + pos: -60.5,-0.5 + parent: 2 + - uid: 11200 components: - type: Transform - pos: 432.5,397.5 - parent: 1 - - uid: 152 + rot: 1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 2 + - uid: 18769 components: - type: Transform - pos: 423.5,425.5 - parent: 1 - - uid: 153 + rot: 3.141592653589793 rad + pos: -97.5,-0.5 + parent: 2 + - uid: 19510 components: - type: Transform - pos: 437.5,393.5 - parent: 1 - - uid: 154 + rot: 3.141592653589793 rad + pos: -118.5,12.5 + parent: 2 + - uid: 19515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 458.5,400.5 - parent: 1 - - uid: 155 + rot: 1.5707963267948966 rad + pos: -99.5,21.5 + parent: 2 + - uid: 19518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,402.5 - parent: 1 - - uid: 156 + rot: 1.5707963267948966 rad + pos: -120.5,14.5 + parent: 2 + - uid: 22299 components: - type: Transform rot: -1.5707963267948966 rad - pos: 461.5,403.5 - parent: 1 - - uid: 165 + pos: -97.5,-5.5 + parent: 2 + - uid: 23299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 459.5,400.5 - parent: 1 - - uid: 166 + rot: 1.5707963267948966 rad + pos: -90.5,-62.5 + parent: 2 + - uid: 23457 components: - type: Transform rot: -1.5707963267948966 rad - pos: 453.5,400.5 - parent: 1 - - uid: 172 + pos: -68.5,-74.5 + parent: 2 + - uid: 23929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 457.5,400.5 - parent: 1 - - uid: 177 + rot: 3.141592653589793 rad + pos: -95.5,-62.5 + parent: 2 + - uid: 25560 components: - type: Transform - pos: 320.5,385.5 - parent: 1 - - uid: 179 + rot: 3.141592653589793 rad + pos: -101.5,21.5 + parent: 2 +- proto: RailingRound + entities: + - uid: 8173 components: - type: Transform - pos: 325.5,385.5 - parent: 1 - - uid: 180 + rot: 1.5707963267948966 rad + pos: -99.5,10.5 + parent: 2 + - uid: 10167 components: - type: Transform - pos: 324.5,385.5 - parent: 1 - - uid: 182 + rot: -1.5707963267948966 rad + pos: -87.5,-48.5 + parent: 2 + - uid: 11153 components: - type: Transform - pos: 326.5,385.5 - parent: 1 - - uid: 187 + rot: -1.5707963267948966 rad + pos: -100.5,10.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 3580 components: - type: Transform - pos: 325.5,388.5 - parent: 1 - - uid: 188 + pos: -20.5,14.5 + parent: 2 + - uid: 3582 components: - type: Transform - pos: 326.5,388.5 - parent: 1 - - uid: 191 + pos: -18.5,14.5 + parent: 2 + - uid: 7788 components: - type: Transform - pos: 324.5,388.5 - parent: 1 - - uid: 192 + pos: -19.5,14.5 + parent: 2 + - uid: 10261 components: - type: Transform - pos: 320.5,388.5 - parent: 1 - - uid: 592 + pos: -21.5,14.5 + parent: 2 + - uid: 22382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 348.5,428.5 - parent: 1 - - uid: 616 + pos: -24.5,21.5 + parent: 2 + - uid: 22383 components: - type: Transform - pos: 373.5,380.5 - parent: 1 - - uid: 633 + pos: -25.5,21.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 7428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,428.5 - parent: 1 - - uid: 656 + pos: -112.5,-38.5 + parent: 2 + - uid: 19337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,428.5 - parent: 1 - - uid: 662 + pos: -90.5,7.5 + parent: 2 + - uid: 20733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,428.5 - parent: 1 - - uid: 663 + pos: -89.5,19.5 + parent: 2 + - uid: 25697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,378.5 - parent: 1 - - uid: 675 + pos: -147.5,-37.5 + parent: 2 +- proto: RandomArtifactSpawner20 + entities: + - uid: 1720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,428.5 - parent: 1 - - uid: 676 + pos: -99.5,-61.5 + parent: 2 + - uid: 1759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,378.5 - parent: 1 - - uid: 688 + pos: -83.5,-66.5 + parent: 2 + - uid: 1777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,405.5 - parent: 1 - - uid: 689 + pos: -134.5,32.5 + parent: 2 + - uid: 1780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,428.5 - parent: 1 - - uid: 690 + pos: -98.5,-50.5 + parent: 2 + - uid: 7473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,428.5 - parent: 1 - - uid: 691 + pos: -82.5,7.5 + parent: 2 + - uid: 25455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,428.5 - parent: 1 - - uid: 697 + pos: -100.5,40.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 19816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,378.5 - parent: 1 - - uid: 714 + pos: -26.5,-3.5 + parent: 2 + - uid: 19817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,428.5 - parent: 1 - - uid: 715 + pos: -26.5,-3.5 + parent: 2 + - uid: 21522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,428.5 - parent: 1 - - uid: 755 + pos: -26.5,-3.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 20952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,407.5 - parent: 1 - - uid: 784 + pos: -55.5,-37.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 23011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,406.5 - parent: 1 - - uid: 785 + pos: -131.5,-54.5 + parent: 2 + - uid: 23022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,405.5 - parent: 1 - - uid: 820 + pos: -108.5,-21.5 + parent: 2 + - uid: 23032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,400.5 - parent: 1 - - uid: 863 + pos: -116.5,18.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 23033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,405.5 - parent: 1 - - uid: 864 + pos: -116.5,23.5 + parent: 2 + - uid: 23034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,405.5 - parent: 1 - - uid: 931 + pos: -123.5,26.5 + parent: 2 + - uid: 23035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 321.5,416.5 - parent: 1 - - uid: 945 + pos: -128.5,28.5 + parent: 2 + - uid: 23037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 321.5,417.5 - parent: 1 - - uid: 1013 + pos: -121.5,30.5 + parent: 2 + - uid: 23038 components: - type: Transform - pos: 404.5,401.5 - parent: 1 - - uid: 1014 + pos: -115.5,32.5 + parent: 2 + - uid: 23039 components: - type: Transform - pos: 404.5,398.5 - parent: 1 - - uid: 1067 + pos: -111.5,28.5 + parent: 2 + - uid: 23042 components: - type: Transform - pos: 356.5,394.5 - parent: 1 - - uid: 1087 + pos: -106.5,21.5 + parent: 2 + - uid: 23043 components: - type: Transform - pos: 408.5,398.5 - parent: 1 - - uid: 1088 + pos: -101.5,19.5 + parent: 2 + - uid: 23050 components: - type: Transform - pos: 408.5,401.5 - parent: 1 - - uid: 1093 + pos: -95.5,3.5 + parent: 2 + - uid: 23051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,400.5 - parent: 1 - - uid: 1130 + pos: -78.5,1.5 + parent: 2 + - uid: 23052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,414.5 - parent: 1 - - uid: 1131 + pos: -78.5,-5.5 + parent: 2 + - uid: 23596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,414.5 - parent: 1 - - uid: 1138 + pos: -40.5,-39.5 + parent: 2 + - uid: 23597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,405.5 - parent: 1 - - uid: 1204 + pos: -47.5,-39.5 + parent: 2 + - uid: 23598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,405.5 - parent: 1 - - uid: 1345 + pos: -40.5,-52.5 + parent: 2 + - uid: 23599 components: - type: Transform - pos: 373.5,395.5 - parent: 1 - - uid: 1468 + pos: -40.5,-57.5 + parent: 2 + - uid: 23600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,405.5 - parent: 1 - - uid: 1469 + pos: -36.5,-56.5 + parent: 2 + - uid: 23601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,401.5 - parent: 1 - - uid: 1471 + pos: -34.5,-55.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 4875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,401.5 - parent: 1 - - uid: 1521 + pos: -107.5,-34.5 + parent: 2 + - uid: 4876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,394.5 - parent: 1 - - uid: 1550 + pos: -101.5,-18.5 + parent: 2 + - uid: 4893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,414.5 - parent: 1 - - uid: 1586 + pos: -97.5,-10.5 + parent: 2 + - uid: 19521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 380.5,416.5 - parent: 1 - - uid: 1587 + rot: 3.141592653589793 rad + pos: -104.5,14.5 + parent: 2 + - uid: 19630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,411.5 - parent: 1 - - uid: 1589 + pos: -80.5,-15.5 + parent: 2 + - uid: 23007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 378.5,416.5 - parent: 1 - - uid: 1725 + pos: -111.5,-52.5 + parent: 2 + - uid: 23008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 350.5,397.5 - parent: 1 - - uid: 1727 + pos: -112.5,-54.5 + parent: 2 + - uid: 23009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,395.5 - parent: 1 - - uid: 1729 + pos: -118.5,-54.5 + parent: 2 + - uid: 23012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,396.5 - parent: 1 - - uid: 1943 + pos: -130.5,-41.5 + parent: 2 + - uid: 23013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 383.5,413.5 - parent: 1 - - uid: 1969 + pos: -124.5,-41.5 + parent: 2 + - uid: 23014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,414.5 - parent: 1 - - uid: 1971 + pos: -137.5,-42.5 + parent: 2 + - uid: 23017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,413.5 - parent: 1 - - uid: 1972 + pos: -130.5,-34.5 + parent: 2 + - uid: 23018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,411.5 - parent: 1 - - uid: 1982 + pos: -121.5,-36.5 + parent: 2 + - uid: 23019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,405.5 - parent: 1 - - uid: 2006 + pos: -116.5,-36.5 + parent: 2 + - uid: 23021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,372.5 - parent: 1 - - uid: 2007 + pos: -116.5,-19.5 + parent: 2 + - uid: 23024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,370.5 - parent: 1 - - uid: 2009 + pos: -121.5,-20.5 + parent: 2 + - uid: 23025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,369.5 - parent: 1 - - uid: 2023 + pos: -126.5,-1.5 + parent: 2 + - uid: 23026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,412.5 - parent: 1 - - uid: 2026 + pos: -132.5,-5.5 + parent: 2 + - uid: 23027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,423.5 - parent: 1 - - uid: 2048 + pos: -135.5,-3.5 + parent: 2 + - uid: 23028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,423.5 - parent: 1 - - uid: 2068 + pos: -108.5,-1.5 + parent: 2 + - uid: 23045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,412.5 - parent: 1 - - uid: 2086 + pos: -101.5,17.5 + parent: 2 + - uid: 23046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,407.5 - parent: 1 - - uid: 2092 + pos: -91.5,9.5 + parent: 2 + - uid: 23047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,381.5 - parent: 1 - - uid: 2093 + pos: -91.5,12.5 + parent: 2 + - uid: 23048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,412.5 - parent: 1 - - uid: 2099 + pos: -90.5,26.5 + parent: 2 + - uid: 23049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,405.5 - parent: 1 - - uid: 2112 + pos: -84.5,13.5 + parent: 2 + - uid: 23056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,386.5 - parent: 1 - - uid: 2115 + pos: -60.5,-36.5 + parent: 2 + - uid: 23063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,412.5 - parent: 1 - - uid: 2139 + pos: -93.5,-45.5 + parent: 2 + - uid: 23064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,410.5 - parent: 1 - - uid: 2146 + pos: -86.5,-43.5 + parent: 2 + - uid: 23066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,386.5 - parent: 1 - - uid: 2153 + pos: -79.5,-49.5 + parent: 2 + - uid: 23592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,423.5 - parent: 1 - - uid: 2161 + pos: -44.5,-19.5 + parent: 2 + - uid: 23593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,422.5 - parent: 1 - - uid: 2170 + pos: -41.5,-28.5 + parent: 2 + - uid: 23594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,390.5 - parent: 1 - - uid: 2182 + pos: -41.5,-31.5 + parent: 2 + - uid: 23595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,386.5 - parent: 1 - - uid: 2183 + pos: -48.5,-30.5 + parent: 2 + - uid: 23870 components: - type: Transform - pos: 294.5,389.5 - parent: 1 - - uid: 2184 + pos: -86.5,-15.5 + parent: 2 + - uid: 24672 components: - type: Transform - pos: 296.5,385.5 - parent: 1 - - uid: 2186 + rot: 3.141592653589793 rad + pos: -107.5,-29.5 + parent: 2 + - uid: 24673 components: - type: Transform - pos: 294.5,386.5 - parent: 1 - - uid: 2227 + rot: 3.141592653589793 rad + pos: -106.5,-41.5 + parent: 2 + - uid: 24674 components: - type: Transform - pos: 296.5,387.5 - parent: 1 - - uid: 2238 + rot: 3.141592653589793 rad + pos: -102.5,-49.5 + parent: 2 +- proto: RandomSoakedCigarette + entities: + - uid: 2443 components: - type: Transform - pos: 296.5,389.5 - parent: 1 - - uid: 2239 + pos: -62.32534,-3.7414088 + parent: 2 +- proto: RandomVending + entities: + - uid: 9276 components: - type: Transform - pos: 294.5,387.5 - parent: 1 - - uid: 2240 + pos: -35.5,10.5 + parent: 2 + - uid: 9328 components: - type: Transform - pos: 294.5,385.5 - parent: 1 - - uid: 2241 + pos: -34.5,10.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 7326 components: - type: Transform - pos: 294.5,388.5 - parent: 1 - - uid: 2242 + pos: -129.5,-42.5 + parent: 2 + - uid: 8288 components: - type: Transform - pos: 296.5,386.5 - parent: 1 - - uid: 2243 + pos: -12.5,-15.5 + parent: 2 + - uid: 10988 components: - type: Transform - pos: 296.5,388.5 - parent: 1 - - uid: 2244 + pos: -59.5,-7.5 + parent: 2 + - uid: 14624 components: - type: Transform - pos: 301.5,414.5 - parent: 1 - - uid: 2245 + pos: -62.5,-20.5 + parent: 2 + - uid: 23001 components: - type: Transform - pos: 300.5,411.5 - parent: 1 - - uid: 2246 + pos: -11.5,-37.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 7327 components: - type: Transform - pos: 300.5,410.5 - parent: 1 - - uid: 2247 + pos: -128.5,-42.5 + parent: 2 + - uid: 8287 components: - type: Transform - pos: 300.5,408.5 - parent: 1 - - uid: 2248 + pos: -12.5,-16.5 + parent: 2 + - uid: 10987 components: - type: Transform - pos: 301.5,413.5 - parent: 1 - - uid: 2249 + pos: -60.5,-7.5 + parent: 2 + - uid: 14622 components: - type: Transform - pos: 300.5,413.5 - parent: 1 - - uid: 2250 + pos: -61.5,-20.5 + parent: 2 + - uid: 14623 components: - type: Transform - pos: 301.5,408.5 - parent: 1 - - uid: 2251 + pos: -60.5,-20.5 + parent: 2 + - uid: 23002 components: - type: Transform - pos: 301.5,407.5 - parent: 1 - - uid: 2255 + pos: -10.5,-37.5 + parent: 2 +- proto: RCD + entities: + - uid: 19340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,423.5 - parent: 1 - - uid: 2258 + pos: -121.41536,-3.5910335 + parent: 2 + - uid: 22352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,377.5 - parent: 1 - - uid: 2263 + pos: -127.599266,-16.397104 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 18771 components: - type: Transform - pos: 306.5,390.5 - parent: 1 - - uid: 2264 + pos: -116.64607,-17.29237 + parent: 2 + - uid: 18772 components: - type: Transform - pos: 308.5,418.5 - parent: 1 - - uid: 2265 + pos: -116.33357,-17.29237 + parent: 2 + - uid: 18774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,423.5 - parent: 1 - - uid: 2266 + pos: -116.4742,-17.651745 + parent: 2 + - uid: 22351 components: - type: Transform - pos: 305.5,390.5 - parent: 1 - - uid: 2267 + pos: -124.64614,-16.44398 + parent: 2 + - uid: 22353 components: - type: Transform - pos: 306.5,418.5 - parent: 1 - - uid: 2268 + pos: -124.36489,-16.22523 + parent: 2 +- proto: Recycler + entities: + - uid: 1357 components: - type: Transform - pos: 311.5,415.5 - parent: 1 - - uid: 2269 + rot: 3.141592653589793 rad + pos: -98.5,28.5 + parent: 2 + - uid: 7763 components: - type: Transform - pos: 314.5,407.5 - parent: 1 - - uid: 2270 + rot: -1.5707963267948966 rad + pos: -100.5,20.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,423.5 - parent: 1 - - uid: 2271 + pos: -110.5,-1.5 + parent: 2 + - uid: 667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,377.5 - parent: 1 - - uid: 2280 + pos: -112.5,9.5 + parent: 2 + - uid: 670 components: - type: Transform - pos: 312.5,415.5 - parent: 1 - - uid: 2281 + pos: -110.5,0.5 + parent: 2 + - uid: 673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,377.5 - parent: 1 - - uid: 2282 + pos: -109.5,0.5 + parent: 2 + - uid: 675 components: - type: Transform - pos: 312.5,414.5 - parent: 1 - - uid: 2283 + pos: -111.5,0.5 + parent: 2 + - uid: 807 components: - type: Transform - pos: 312.5,407.5 - parent: 1 - - uid: 2284 + pos: -124.5,4.5 + parent: 2 + - uid: 814 components: - type: Transform - pos: 313.5,407.5 - parent: 1 - - uid: 2285 + pos: -87.5,-72.5 + parent: 2 + - uid: 816 components: - type: Transform - pos: 313.5,414.5 - parent: 1 - - uid: 2287 + pos: -89.5,-70.5 + parent: 2 + - uid: 817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,420.5 - parent: 1 - - uid: 2290 + pos: -91.5,-72.5 + parent: 2 + - uid: 1870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,377.5 - parent: 1 - - uid: 2298 + pos: -111.5,-1.5 + parent: 2 + - uid: 1984 components: - type: Transform - pos: 312.5,406.5 - parent: 1 - - uid: 2299 + pos: -109.5,-1.5 + parent: 2 + - uid: 2453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,377.5 - parent: 1 - - uid: 2302 + rot: 1.5707963267948966 rad + pos: -148.5,-50.5 + parent: 2 + - uid: 2667 components: - type: Transform - pos: 314.5,414.5 - parent: 1 - - uid: 2303 + pos: -68.5,-70.5 + parent: 2 + - uid: 5278 components: - type: Transform - pos: 315.5,412.5 - parent: 1 - - uid: 2304 + pos: -112.5,7.5 + parent: 2 + - uid: 5279 components: - type: Transform - pos: 314.5,409.5 - parent: 1 - - uid: 2305 + pos: -112.5,8.5 + parent: 2 + - uid: 5280 components: - type: Transform - pos: 311.5,406.5 - parent: 1 - - uid: 2306 + pos: -108.5,7.5 + parent: 2 + - uid: 5281 components: - type: Transform - pos: 314.5,412.5 - parent: 1 - - uid: 2307 + pos: -108.5,8.5 + parent: 2 + - uid: 5282 components: - type: Transform - pos: 315.5,409.5 - parent: 1 - - uid: 2311 + pos: -108.5,9.5 + parent: 2 + - uid: 5283 components: - - type: Transform - pos: 337.5,398.5 - parent: 1 - - uid: 2313 + - type: Transform + pos: -112.5,3.5 + parent: 2 + - uid: 5284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,418.5 - parent: 1 - - uid: 2314 + pos: -112.5,1.5 + parent: 2 + - uid: 5285 components: - type: Transform - pos: 330.5,404.5 - parent: 1 - - uid: 2316 + pos: -112.5,2.5 + parent: 2 + - uid: 5286 components: - type: Transform - pos: 330.5,402.5 - parent: 1 - - uid: 2350 + pos: -108.5,1.5 + parent: 2 + - uid: 5287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,426.5 - parent: 1 - - uid: 2351 + pos: -108.5,3.5 + parent: 2 + - uid: 5288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,426.5 - parent: 1 - - uid: 2368 + pos: -108.5,2.5 + parent: 2 + - uid: 5289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,426.5 - parent: 1 - - uid: 2369 + pos: -114.5,3.5 + parent: 2 + - uid: 5290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,426.5 - parent: 1 - - uid: 2370 + pos: -114.5,2.5 + parent: 2 + - uid: 5291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,426.5 - parent: 1 - - uid: 2371 + pos: -114.5,1.5 + parent: 2 + - uid: 5292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,426.5 - parent: 1 - - uid: 2372 + pos: -106.5,1.5 + parent: 2 + - uid: 5293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,426.5 - parent: 1 - - uid: 2373 + pos: -106.5,2.5 + parent: 2 + - uid: 5294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,426.5 - parent: 1 - - uid: 2375 + pos: -106.5,3.5 + parent: 2 + - uid: 5295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,426.5 - parent: 1 - - uid: 2394 + pos: -114.5,9.5 + parent: 2 + - uid: 5296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,426.5 - parent: 1 - - uid: 2395 + pos: -114.5,8.5 + parent: 2 + - uid: 5297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,426.5 - parent: 1 - - uid: 2396 + pos: -114.5,7.5 + parent: 2 + - uid: 5298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,426.5 - parent: 1 - - uid: 2398 + pos: -106.5,7.5 + parent: 2 + - uid: 5299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,417.5 - parent: 1 - - uid: 2432 + pos: -106.5,8.5 + parent: 2 + - uid: 5300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,426.5 - parent: 1 - - uid: 2433 + pos: -106.5,9.5 + parent: 2 + - uid: 5342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,415.5 - parent: 1 - - uid: 2435 + pos: -126.5,7.5 + parent: 2 + - uid: 5345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,426.5 - parent: 1 - - uid: 2436 + pos: -124.5,13.5 + parent: 2 + - uid: 5359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,417.5 - parent: 1 - - uid: 2438 + pos: -124.5,7.5 + parent: 2 + - uid: 5360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,426.5 - parent: 1 - - uid: 2439 + pos: -124.5,10.5 + parent: 2 + - uid: 5361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,425.5 - parent: 1 - - uid: 2440 + pos: -126.5,9.5 + parent: 2 + - uid: 5378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,424.5 - parent: 1 - - uid: 2441 + pos: -124.5,5.5 + parent: 2 + - uid: 5380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,422.5 - parent: 1 - - uid: 2442 + pos: -124.5,12.5 + parent: 2 + - uid: 5418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,421.5 - parent: 1 - - uid: 2443 + pos: -126.5,1.5 + parent: 2 + - uid: 5419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,375.5 - parent: 1 - - uid: 2444 + pos: -126.5,3.5 + parent: 2 + - uid: 5434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,382.5 - parent: 1 - - uid: 2445 + pos: -124.5,3.5 + parent: 2 + - uid: 5443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,386.5 - parent: 1 - - uid: 2446 + pos: -124.5,1.5 + parent: 2 + - uid: 5450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,382.5 - parent: 1 - - uid: 2447 + pos: -124.5,2.5 + parent: 2 + - uid: 5470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,377.5 - parent: 1 - - uid: 2448 + pos: -124.5,6.5 + parent: 2 + - uid: 5479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,380.5 - parent: 1 - - uid: 2449 + pos: -124.5,11.5 + parent: 2 + - uid: 5480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,413.5 - parent: 1 - - uid: 2450 + pos: -124.5,8.5 + parent: 2 + - uid: 5505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,376.5 - parent: 1 - - uid: 2451 + pos: -142.5,-3.5 + parent: 2 + - uid: 5506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,376.5 - parent: 1 - - uid: 2452 + pos: -142.5,-4.5 + parent: 2 + - uid: 5941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,419.5 - parent: 1 - - uid: 2453 + pos: -146.5,-1.5 + parent: 2 + - uid: 5942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,412.5 - parent: 1 - - uid: 2454 + pos: -148.5,-1.5 + parent: 2 + - uid: 5943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,392.5 - parent: 1 - - uid: 2466 + pos: -147.5,-1.5 + parent: 2 + - uid: 5944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,408.5 - parent: 1 - - uid: 2467 + pos: -148.5,0.5 + parent: 2 + - uid: 5945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,407.5 - parent: 1 - - uid: 2468 + pos: -146.5,0.5 + parent: 2 + - uid: 5946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,399.5 - parent: 1 - - uid: 2469 + pos: -147.5,0.5 + parent: 2 + - uid: 5981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,392.5 - parent: 1 - - uid: 2470 + pos: -142.5,-5.5 + parent: 2 + - uid: 5990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,399.5 - parent: 1 - - uid: 2471 + pos: -152.5,-7.5 + parent: 2 + - uid: 5999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,392.5 - parent: 1 - - uid: 2472 + rot: 1.5707963267948966 rad + pos: -148.5,-51.5 + parent: 2 + - uid: 6005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,399.5 - parent: 1 - - uid: 2477 + pos: -142.5,-6.5 + parent: 2 + - uid: 6082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,377.5 - parent: 1 - - uid: 2495 + pos: -148.5,-13.5 + parent: 2 + - uid: 6083 components: - type: Transform - pos: 372.5,422.5 - parent: 1 - - uid: 2505 + pos: -146.5,-13.5 + parent: 2 + - uid: 6084 components: - type: Transform - pos: 373.5,422.5 - parent: 1 - - uid: 2519 + pos: -147.5,-13.5 + parent: 2 + - uid: 6091 components: - type: Transform - pos: 374.5,424.5 - parent: 1 - - uid: 2520 + rot: 1.5707963267948966 rad + pos: -146.5,-39.5 + parent: 2 + - uid: 6092 components: - type: Transform - pos: 374.5,423.5 - parent: 1 - - uid: 2522 + rot: 1.5707963267948966 rad + pos: -148.5,-39.5 + parent: 2 + - uid: 6096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,399.5 - parent: 1 - - uid: 2525 + rot: 3.141592653589793 rad + pos: -153.5,-48.5 + parent: 2 + - uid: 6101 components: - type: Transform - pos: 375.5,424.5 - parent: 1 - - uid: 2526 + rot: 1.5707963267948966 rad + pos: -146.5,-40.5 + parent: 2 + - uid: 6103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,394.5 - parent: 1 - - uid: 2547 + rot: 1.5707963267948966 rad + pos: -146.5,-41.5 + parent: 2 + - uid: 6924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,394.5 - parent: 1 - - uid: 2548 + pos: -126.5,13.5 + parent: 2 + - uid: 7167 components: - type: Transform - pos: 376.5,424.5 - parent: 1 - - uid: 2549 + rot: 1.5707963267948966 rad + pos: -146.5,-51.5 + parent: 2 + - uid: 7192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,394.5 - parent: 1 - - uid: 2550 + rot: 1.5707963267948966 rad + pos: -148.5,-40.5 + parent: 2 + - uid: 7211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,394.5 - parent: 1 - - uid: 2551 + rot: 1.5707963267948966 rad + pos: -148.5,-41.5 + parent: 2 + - uid: 7247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 391.5,368.5 - parent: 1 - - uid: 2552 + pos: -148.5,-49.5 + parent: 2 + - uid: 7307 components: - type: Transform - pos: 381.5,425.5 - parent: 1 - - uid: 2559 + rot: 3.141592653589793 rad + pos: -155.5,-45.5 + parent: 2 + - uid: 7317 components: - type: Transform - pos: 380.5,425.5 - parent: 1 - - uid: 2560 + rot: 3.141592653589793 rad + pos: -155.5,-44.5 + parent: 2 + - uid: 7839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,405.5 - parent: 1 - - uid: 2561 + rot: 1.5707963267948966 rad + pos: -143.5,-47.5 + parent: 2 + - uid: 7840 components: - type: Transform - pos: 378.5,425.5 - parent: 1 - - uid: 2562 + rot: 1.5707963267948966 rad + pos: -151.5,-43.5 + parent: 2 + - uid: 7842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,405.5 - parent: 1 - - uid: 2563 + rot: 1.5707963267948966 rad + pos: -146.5,-50.5 + parent: 2 + - uid: 7856 components: - type: Transform - pos: 377.5,425.5 - parent: 1 - - uid: 2565 + rot: 3.141592653589793 rad + pos: -155.5,-46.5 + parent: 2 + - uid: 9817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,405.5 - parent: 1 - - uid: 2566 + pos: -126.5,5.5 + parent: 2 + - uid: 9912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,398.5 - parent: 1 - - uid: 2567 + pos: -126.5,11.5 + parent: 2 + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,394.5 - parent: 1 - - uid: 2568 + pos: -109.5,10.5 + parent: 2 + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,401.5 - parent: 1 - - uid: 2569 + pos: -110.5,10.5 + parent: 2 + - uid: 13499 components: - type: Transform - pos: 379.5,425.5 - parent: 1 - - uid: 2570 + pos: -111.5,10.5 + parent: 2 + - uid: 13661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,398.5 - parent: 1 - - uid: 2575 + rot: 1.5707963267948966 rad + pos: -146.5,-49.5 + parent: 2 + - uid: 13662 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,368.5 - parent: 1 - - uid: 2582 + pos: -151.5,-47.5 + parent: 2 + - uid: 13664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,401.5 - parent: 1 - - uid: 2583 + rot: 1.5707963267948966 rad + pos: -151.5,-46.5 + parent: 2 + - uid: 13670 components: - type: Transform - pos: 383.5,424.5 - parent: 1 - - uid: 2584 + rot: 1.5707963267948966 rad + pos: -151.5,-44.5 + parent: 2 + - uid: 13718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,401.5 - parent: 1 - - uid: 2585 + rot: 1.5707963267948966 rad + pos: -143.5,-43.5 + parent: 2 + - uid: 16466 components: - type: Transform - pos: 384.5,424.5 - parent: 1 - - uid: 2586 + rot: 3.141592653589793 rad + pos: -153.5,-42.5 + parent: 2 + - uid: 17059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,398.5 - parent: 1 - - uid: 2587 + pos: -68.5,-69.5 + parent: 2 + - uid: 20368 components: - type: Transform - pos: 382.5,424.5 - parent: 1 - - uid: 2593 + rot: 3.141592653589793 rad + pos: -124.5,-72.5 + parent: 2 + - uid: 20411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,377.5 - parent: 1 - - uid: 2596 + rot: 3.141592653589793 rad + pos: -122.5,-78.5 + parent: 2 + - uid: 22431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,421.5 - parent: 1 - - uid: 2597 + pos: -89.5,-74.5 + parent: 2 + - uid: 23079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,407.5 - parent: 1 - - uid: 2606 + rot: 3.141592653589793 rad + pos: -124.5,-73.5 + parent: 2 + - uid: 23103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,371.5 - parent: 1 - - uid: 2607 + rot: 3.141592653589793 rad + pos: -114.5,-73.5 + parent: 2 + - uid: 23104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,370.5 - parent: 1 - - uid: 2611 + rot: 3.141592653589793 rad + pos: -114.5,-71.5 + parent: 2 + - uid: 23108 components: - type: Transform - pos: 384.5,423.5 - parent: 1 - - uid: 2612 + rot: 3.141592653589793 rad + pos: -114.5,-72.5 + parent: 2 + - uid: 23396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,401.5 - parent: 1 - - uid: 2613 + rot: 3.141592653589793 rad + pos: -116.5,-71.5 + parent: 2 + - uid: 23401 components: - type: Transform - pos: 385.5,422.5 - parent: 1 - - uid: 2614 + rot: 3.141592653589793 rad + pos: -120.5,-81.5 + parent: 2 + - uid: 23448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,398.5 - parent: 1 - - uid: 2617 + pos: -67.5,-70.5 + parent: 2 + - uid: 23449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,368.5 - parent: 1 - - uid: 2621 + pos: -66.5,-70.5 + parent: 2 + - uid: 23450 components: - type: Transform - pos: 386.5,422.5 - parent: 1 - - uid: 2622 + pos: -66.5,-69.5 + parent: 2 + - uid: 23498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,401.5 - parent: 1 - - uid: 2623 + rot: 3.141592653589793 rad + pos: -116.5,-72.5 + parent: 2 + - uid: 24847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,398.5 - parent: 1 - - uid: 2626 + pos: -116.5,-65.5 + parent: 2 + - uid: 24880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,376.5 - parent: 1 - - uid: 2627 + rot: 1.5707963267948966 rad + pos: -118.5,-64.5 + parent: 2 + - uid: 24887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,376.5 - parent: 1 - - uid: 2628 + rot: 3.141592653589793 rad + pos: -116.5,-73.5 + parent: 2 + - uid: 24888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,375.5 - parent: 1 - - uid: 2638 + rot: 3.141592653589793 rad + pos: -126.5,-73.5 + parent: 2 + - uid: 24889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,376.5 - parent: 1 - - uid: 2639 + rot: 3.141592653589793 rad + pos: -126.5,-72.5 + parent: 2 + - uid: 24890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,413.5 - parent: 1 - - uid: 2640 + rot: 3.141592653589793 rad + pos: -126.5,-71.5 + parent: 2 + - uid: 24891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,401.5 - parent: 1 - - uid: 2641 + rot: 3.141592653589793 rad + pos: -124.5,-71.5 + parent: 2 + - uid: 24894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,398.5 - parent: 1 - - uid: 2642 + rot: 1.5707963267948966 rad + pos: -122.5,-64.5 + parent: 2 + - uid: 24901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,398.5 - parent: 1 - - uid: 2643 + pos: -124.5,9.5 + parent: 2 + - uid: 24921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,398.5 - parent: 1 - - uid: 2644 + rot: 3.141592653589793 rad + pos: -123.5,-78.5 + parent: 2 + - uid: 24933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,413.5 - parent: 1 - - uid: 2645 + rot: 3.141592653589793 rad + pos: -121.5,-78.5 + parent: 2 + - uid: 24934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,391.5 - parent: 1 - - uid: 2646 + rot: 3.141592653589793 rad + pos: -119.5,-78.5 + parent: 2 + - uid: 24935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,392.5 - parent: 1 - - uid: 2647 + rot: 3.141592653589793 rad + pos: -118.5,-78.5 + parent: 2 + - uid: 24936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,412.5 - parent: 1 - - uid: 2648 + rot: 3.141592653589793 rad + pos: -117.5,-78.5 + parent: 2 + - uid: 25187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,401.5 - parent: 1 - - uid: 2649 + pos: -124.5,-65.5 + parent: 2 +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 7308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,376.5 - parent: 1 - - uid: 2650 + pos: -155.5,-43.5 + parent: 2 + - uid: 7324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,375.5 - parent: 1 - - uid: 2651 + pos: -154.5,-42.5 + parent: 2 + - uid: 7332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,398.5 - parent: 1 - - uid: 2652 + rot: 3.141592653589793 rad + pos: -154.5,-43.5 + parent: 2 + - uid: 7333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 390.5,401.5 - parent: 1 - - uid: 2653 + rot: 1.5707963267948966 rad + pos: -154.5,-48.5 + parent: 2 + - uid: 7334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,401.5 - parent: 1 - - uid: 2654 + pos: -154.5,-47.5 + parent: 2 + - uid: 7342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,384.5 - parent: 1 - - uid: 2655 + rot: 1.5707963267948966 rad + pos: -155.5,-47.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 4 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,384.5 - parent: 1 - - uid: 2656 + pos: -114.5,-36.5 + parent: 2 + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,401.5 - parent: 1 - - uid: 2657 + pos: -69.5,5.5 + parent: 2 + - uid: 18 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,401.5 - parent: 1 - - uid: 2658 + pos: -69.5,6.5 + parent: 2 + - uid: 31 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,401.5 - parent: 1 - - uid: 2659 + pos: -69.5,4.5 + parent: 2 + - uid: 46 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,398.5 - parent: 1 - - uid: 2666 + pos: -66.5,8.5 + parent: 2 + - uid: 47 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 395.5,368.5 - parent: 1 - - uid: 2667 + pos: -64.5,8.5 + parent: 2 + - uid: 48 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,368.5 - parent: 1 - - uid: 2670 + pos: -65.5,8.5 + parent: 2 + - uid: 49 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,394.5 - parent: 1 - - uid: 2672 + pos: -64.5,9.5 + parent: 2 + - uid: 50 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,398.5 - parent: 1 - - uid: 2673 + pos: -62.5,9.5 + parent: 2 + - uid: 51 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,394.5 - parent: 1 - - uid: 2674 + pos: -61.5,9.5 + parent: 2 + - uid: 52 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,392.5 - parent: 1 - - uid: 2675 + pos: -60.5,9.5 + parent: 2 + - uid: 54 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,401.5 - parent: 1 - - uid: 2676 + pos: -58.5,9.5 + parent: 2 + - uid: 56 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,389.5 - parent: 1 - - uid: 2677 + pos: -58.5,8.5 + parent: 2 + - uid: 57 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,383.5 - parent: 1 - - uid: 2678 + pos: -57.5,8.5 + parent: 2 + - uid: 58 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,394.5 - parent: 1 - - uid: 2679 + pos: -56.5,8.5 + parent: 2 + - uid: 59 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 399.5,394.5 - parent: 1 - - uid: 2680 + pos: -53.5,6.5 + parent: 2 + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,398.5 - parent: 1 - - uid: 2681 + pos: -53.5,4.5 + parent: 2 + - uid: 61 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,390.5 - parent: 1 - - uid: 2682 + pos: -53.5,5.5 + parent: 2 + - uid: 71 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,382.5 - parent: 1 - - uid: 2683 + pos: -59.5,4.5 + parent: 2 + - uid: 73 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,394.5 - parent: 1 - - uid: 2686 + pos: -101.5,31.5 + parent: 2 + - uid: 107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,394.5 - parent: 1 - - uid: 2687 + pos: -65.5,-11.5 + parent: 2 + - uid: 109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,398.5 - parent: 1 - - uid: 2688 + pos: -65.5,-12.5 + parent: 2 + - uid: 110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,392.5 - parent: 1 - - uid: 2689 + pos: -64.5,-13.5 + parent: 2 + - uid: 111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,409.5 - parent: 1 - - uid: 2690 + pos: -63.5,-13.5 + parent: 2 + - uid: 112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,407.5 - parent: 1 - - uid: 2691 + pos: -62.5,-13.5 + parent: 2 + - uid: 113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,405.5 - parent: 1 - - uid: 2692 + pos: -60.5,-13.5 + parent: 2 + - uid: 114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,405.5 - parent: 1 - - uid: 2693 + pos: -59.5,-13.5 + parent: 2 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,415.5 - parent: 1 - - uid: 2694 + pos: -58.5,-13.5 + parent: 2 + - uid: 117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,412.5 - parent: 1 - - uid: 2695 + pos: -57.5,-12.5 + parent: 2 + - uid: 118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,412.5 - parent: 1 - - uid: 2696 + pos: -57.5,-11.5 + parent: 2 + - uid: 141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 411.5,415.5 - parent: 1 - - uid: 2698 + pos: -63.5,4.5 + parent: 2 + - uid: 167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,415.5 - parent: 1 - - uid: 2699 + pos: -52.5,-8.5 + parent: 2 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,408.5 - parent: 1 - - uid: 2706 + pos: -51.5,-8.5 + parent: 2 + - uid: 178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,368.5 - parent: 1 - - uid: 2707 + pos: -31.5,-8.5 + parent: 2 + - uid: 249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,353.5 - parent: 1 - - uid: 2708 + pos: -31.5,-9.5 + parent: 2 + - uid: 285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,400.5 - parent: 1 - - uid: 2709 + pos: -82.5,-6.5 + parent: 2 + - uid: 287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,401.5 - parent: 1 - - uid: 2710 + pos: -85.5,-6.5 + parent: 2 + - uid: 291 components: - type: Transform - pos: 416.5,427.5 - parent: 1 - - uid: 2711 + pos: -84.5,-6.5 + parent: 2 + - uid: 316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,415.5 - parent: 1 - - uid: 2712 + pos: -35.5,-25.5 + parent: 2 + - uid: 320 components: - type: Transform - pos: 417.5,427.5 - parent: 1 - - uid: 2713 + pos: -34.5,-22.5 + parent: 2 + - uid: 322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,415.5 - parent: 1 - - uid: 2714 + pos: -32.5,-22.5 + parent: 2 + - uid: 351 components: - type: Transform - pos: 415.5,427.5 - parent: 1 - - uid: 2715 + pos: -93.5,13.5 + parent: 2 + - uid: 398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,352.5 - parent: 1 - - uid: 2716 + pos: -48.5,-8.5 + parent: 2 + - uid: 474 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,350.5 - parent: 1 - - uid: 2717 + pos: -66.5,-18.5 + parent: 2 + - uid: 504 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,401.5 - parent: 1 - - uid: 2718 + pos: -116.5,-5.5 + parent: 2 + - uid: 751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,400.5 - parent: 1 - - uid: 2729 + pos: -83.5,14.5 + parent: 2 + - uid: 787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,350.5 - parent: 1 - - uid: 2730 + pos: -138.5,-8.5 + parent: 2 + - uid: 953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,350.5 - parent: 1 - - uid: 2736 + pos: -83.5,15.5 + parent: 2 + - uid: 1014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,352.5 - parent: 1 - - uid: 2750 + pos: -53.5,-17.5 + parent: 2 + - uid: 1015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,353.5 - parent: 1 - - uid: 2751 + pos: -54.5,-17.5 + parent: 2 + - uid: 1170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,355.5 - parent: 1 - - uid: 2755 + pos: -35.5,-23.5 + parent: 2 + - uid: 1174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,397.5 - parent: 1 - - uid: 2757 + pos: -35.5,-20.5 + parent: 2 + - uid: 1176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,398.5 - parent: 1 - - uid: 2759 + pos: -35.5,-18.5 + parent: 2 + - uid: 1252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,398.5 - parent: 1 - - uid: 2760 + pos: -20.5,-48.5 + parent: 2 + - uid: 1253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,394.5 - parent: 1 - - uid: 2770 + pos: -20.5,-52.5 + parent: 2 + - uid: 1254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,390.5 - parent: 1 - - uid: 2773 + pos: -20.5,-54.5 + parent: 2 + - uid: 1312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,390.5 - parent: 1 - - uid: 2775 + pos: -31.5,-2.5 + parent: 2 + - uid: 1313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,401.5 - parent: 1 - - uid: 2777 + pos: -31.5,-1.5 + parent: 2 + - uid: 1314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,400.5 - parent: 1 - - uid: 2781 + pos: -31.5,-3.5 + parent: 2 + - uid: 1328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,394.5 - parent: 1 - - uid: 2782 + pos: -84.5,-43.5 + parent: 2 + - uid: 1331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,392.5 - parent: 1 - - uid: 2783 + pos: -117.5,-23.5 + parent: 2 + - uid: 1534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,393.5 - parent: 1 - - uid: 2786 + pos: -20.5,-50.5 + parent: 2 + - uid: 1676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,405.5 - parent: 1 - - uid: 2787 + pos: -93.5,-17.5 + parent: 2 + - uid: 1712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,401.5 - parent: 1 - - uid: 2803 + pos: -24.5,9.5 + parent: 2 + - uid: 1713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,356.5 - parent: 1 - - uid: 2809 + pos: -27.5,7.5 + parent: 2 + - uid: 1714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,397.5 - parent: 1 - - uid: 2816 + pos: -27.5,5.5 + parent: 2 + - uid: 1715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,393.5 - parent: 1 - - uid: 2819 + pos: -22.5,8.5 + parent: 2 + - uid: 1716 components: - type: Transform - pos: 432.5,403.5 - parent: 1 - - uid: 2822 + pos: -22.5,4.5 + parent: 2 + - uid: 1809 components: - type: Transform - pos: 435.5,405.5 - parent: 1 - - uid: 2824 + rot: 1.5707963267948966 rad + pos: -56.5,-79.5 + parent: 2 + - uid: 1810 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,376.5 - parent: 1 - - uid: 2825 + rot: 1.5707963267948966 rad + pos: -55.5,-79.5 + parent: 2 + - uid: 1864 components: - type: Transform - pos: 432.5,404.5 - parent: 1 - - uid: 2836 + pos: -117.5,-21.5 + parent: 2 + - uid: 1873 components: - type: Transform - pos: 432.5,400.5 - parent: 1 - - uid: 2840 + pos: -106.5,-5.5 + parent: 2 + - uid: 1888 components: - type: Transform - pos: 432.5,399.5 - parent: 1 - - uid: 2841 + pos: -34.5,-16.5 + parent: 2 + - uid: 1892 components: - type: Transform - pos: 435.5,401.5 - parent: 1 - - uid: 2842 + pos: -106.5,-3.5 + parent: 2 + - uid: 1950 components: - type: Transform - pos: 432.5,395.5 - parent: 1 - - uid: 2843 + pos: -106.5,-4.5 + parent: 2 + - uid: 1958 components: - type: Transform - pos: 432.5,396.5 - parent: 1 - - uid: 2846 + pos: -101.5,-24.5 + parent: 2 + - uid: 1959 components: - type: Transform - pos: 436.5,397.5 - parent: 1 - - uid: 2862 + pos: -101.5,-26.5 + parent: 2 + - uid: 1960 components: - type: Transform - pos: 432.5,393.5 - parent: 1 - - uid: 2866 + pos: -101.5,-28.5 + parent: 2 + - uid: 1963 components: - type: Transform - pos: 435.5,403.5 - parent: 1 - - uid: 2869 + pos: -101.5,-27.5 + parent: 2 + - uid: 1964 components: - type: Transform - pos: 435.5,404.5 - parent: 1 - - uid: 2870 + pos: -101.5,-30.5 + parent: 2 + - uid: 1972 components: - type: Transform - pos: 435.5,399.5 - parent: 1 - - uid: 2871 + pos: -101.5,-31.5 + parent: 2 + - uid: 1974 components: - type: Transform - pos: 435.5,400.5 - parent: 1 - - uid: 2879 + pos: -97.5,-22.5 + parent: 2 + - uid: 1976 components: - type: Transform - pos: 432.5,405.5 - parent: 1 - - uid: 2886 + pos: -97.5,-26.5 + parent: 2 + - uid: 1977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 436.5,406.5 - parent: 1 - - uid: 2887 + pos: -101.5,-32.5 + parent: 2 + - uid: 1978 components: - type: Transform - pos: 436.5,396.5 - parent: 1 - - uid: 2889 + pos: -32.5,-16.5 + parent: 2 + - uid: 1980 components: - type: Transform - pos: 436.5,395.5 - parent: 1 - - uid: 2891 + pos: -97.5,-30.5 + parent: 2 + - uid: 2026 components: - type: Transform - pos: 418.5,412.5 - parent: 1 - - uid: 2896 + pos: -93.5,-22.5 + parent: 2 + - uid: 2041 components: - type: Transform - pos: 432.5,401.5 - parent: 1 - - uid: 2898 + pos: -93.5,-23.5 + parent: 2 + - uid: 2053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,394.5 - parent: 1 - - uid: 2901 + pos: -95.5,-16.5 + parent: 2 + - uid: 2054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 436.5,409.5 - parent: 1 - - uid: 2905 + pos: -95.5,-20.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: 432.5,391.5 - parent: 1 - - uid: 2910 + pos: -93.5,-24.5 + parent: 2 + - uid: 2129 components: - type: Transform - pos: 432.5,392.5 - parent: 1 - - uid: 2929 + pos: -33.5,-16.5 + parent: 2 + - uid: 2196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,401.5 - parent: 1 - - uid: 2932 + pos: -119.5,-54.5 + parent: 2 + - uid: 2221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,399.5 - parent: 1 - - uid: 2933 + pos: -123.5,-44.5 + parent: 2 + - uid: 2222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,398.5 - parent: 1 - - uid: 2934 + pos: -123.5,-46.5 + parent: 2 + - uid: 2223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,395.5 - parent: 1 - - uid: 2936 + pos: -123.5,-43.5 + parent: 2 + - uid: 2238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,409.5 - parent: 1 - - uid: 2937 + pos: -123.5,-47.5 + parent: 2 + - uid: 2363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,423.5 - parent: 1 - - uid: 2944 + pos: -89.5,-26.5 + parent: 2 + - uid: 2365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 449.5,423.5 - parent: 1 - - uid: 2945 + pos: -89.5,-25.5 + parent: 2 + - uid: 2367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 448.5,423.5 - parent: 1 - - uid: 2956 + pos: -93.5,-19.5 + parent: 2 + - uid: 2533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,423.5 - parent: 1 - - uid: 2958 + pos: -121.5,-17.5 + parent: 2 + - uid: 2648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,409.5 - parent: 1 - - uid: 2961 + pos: -89.5,-29.5 + parent: 2 + - uid: 2682 components: - type: Transform - pos: 453.5,418.5 - parent: 1 - - uid: 2963 + pos: -63.5,2.5 + parent: 2 + - uid: 2695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 437.5,409.5 - parent: 1 - - uid: 2964 + pos: -59.5,2.5 + parent: 2 + - uid: 2852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,399.5 - parent: 1 - - uid: 2967 + pos: -51.5,3.5 + parent: 2 + - uid: 2853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,398.5 - parent: 1 - - uid: 2968 + pos: -50.5,3.5 + parent: 2 + - uid: 2854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 440.5,395.5 - parent: 1 - - uid: 2971 + pos: -49.5,3.5 + parent: 2 + - uid: 2855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 453.5,421.5 - parent: 1 - - uid: 2976 + pos: -45.5,3.5 + parent: 2 + - uid: 2856 components: - type: Transform - pos: 448.5,413.5 - parent: 1 - - uid: 2982 + pos: -43.5,3.5 + parent: 2 + - uid: 2857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,409.5 - parent: 1 - - uid: 2983 + pos: -44.5,3.5 + parent: 2 + - uid: 2906 components: - type: Transform - pos: 445.5,413.5 - parent: 1 - - uid: 2985 + pos: -47.5,-9.5 + parent: 2 + - uid: 2939 components: - type: Transform - pos: 447.5,412.5 - parent: 1 - - uid: 2986 + pos: -50.5,-8.5 + parent: 2 + - uid: 2947 components: - type: Transform - pos: 447.5,411.5 - parent: 1 - - uid: 2987 + pos: -52.5,-10.5 + parent: 2 + - uid: 2948 components: - type: Transform - pos: 447.5,410.5 - parent: 1 - - uid: 2989 + pos: -51.5,-10.5 + parent: 2 + - uid: 2949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,409.5 - parent: 1 - - uid: 2990 + pos: -50.5,-10.5 + parent: 2 + - uid: 3313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,420.5 - parent: 1 - - uid: 2994 + pos: -8.5,7.5 + parent: 2 + - uid: 3415 components: - type: Transform - pos: 446.5,413.5 - parent: 1 - - uid: 2999 + pos: -48.5,-21.5 + parent: 2 + - uid: 3490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,416.5 - parent: 1 - - uid: 3001 + pos: -101.5,-22.5 + parent: 2 + - uid: 3751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 445.5,420.5 - parent: 1 - - uid: 3003 + pos: -7.5,5.5 + parent: 2 + - uid: 3775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,418.5 - parent: 1 - - uid: 3004 + pos: -9.5,7.5 + parent: 2 + - uid: 3785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,415.5 - parent: 1 - - uid: 3006 + pos: -7.5,7.5 + parent: 2 + - uid: 3809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 443.5,417.5 - parent: 1 - - uid: 3007 + pos: -67.5,-34.5 + parent: 2 + - uid: 3828 components: - type: Transform - pos: 457.5,415.5 - parent: 1 - - uid: 3009 + pos: -48.5,-19.5 + parent: 2 + - uid: 3829 components: - type: Transform - pos: 456.5,413.5 - parent: 1 - - uid: 3091 + pos: -48.5,-20.5 + parent: 2 + - uid: 3960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 431.5,390.5 - parent: 1 - - uid: 3124 + pos: -31.5,-17.5 + parent: 2 + - uid: 3963 components: - type: Transform - pos: 457.5,414.5 - parent: 1 - - uid: 3127 + pos: -31.5,-21.5 + parent: 2 + - uid: 3970 components: - type: Transform - pos: 454.5,415.5 - parent: 1 - - uid: 3128 + pos: -29.5,-22.5 + parent: 2 + - uid: 4017 components: - type: Transform - pos: 453.5,413.5 - parent: 1 - - uid: 3129 + pos: -89.5,-28.5 + parent: 2 + - uid: 4229 components: - type: Transform - pos: 454.5,414.5 - parent: 1 - - uid: 3142 + pos: -83.5,24.5 + parent: 2 + - uid: 4230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,412.5 - parent: 1 - - uid: 3143 + pos: -83.5,23.5 + parent: 2 + - uid: 4231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,411.5 - parent: 1 - - uid: 3144 + pos: -83.5,25.5 + parent: 2 + - uid: 4287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,409.5 - parent: 1 - - uid: 3148 + pos: -31.5,-7.5 + parent: 2 + - uid: 4402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,407.5 - parent: 1 - - uid: 3151 + pos: -101.5,-23.5 + parent: 2 + - uid: 4526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,406.5 - parent: 1 - - uid: 3175 + pos: -84.5,-0.5 + parent: 2 + - uid: 4541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,407.5 - parent: 1 - - uid: 3180 + pos: -97.5,9.5 + parent: 2 + - uid: 4548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,408.5 - parent: 1 - - uid: 3182 + pos: -97.5,14.5 + parent: 2 + - uid: 4583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,406.5 - parent: 1 - - uid: 3183 + pos: -80.5,-30.5 + parent: 2 + - uid: 4629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,409.5 - parent: 1 - - uid: 3454 + pos: -97.5,10.5 + parent: 2 + - uid: 4630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,420.5 - parent: 1 - - uid: 3459 + pos: -9.5,5.5 + parent: 2 + - uid: 4674 components: - type: Transform - pos: 319.5,431.5 - parent: 1 - - uid: 3471 + pos: -8.5,5.5 + parent: 2 + - uid: 4693 components: - type: Transform - pos: 320.5,431.5 - parent: 1 - - uid: 3482 + pos: -85.5,33.5 + parent: 2 + - uid: 4698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,391.5 - parent: 1 - - uid: 3483 + pos: -85.5,35.5 + parent: 2 + - uid: 4710 components: - type: Transform - pos: 327.5,409.5 - parent: 1 - - uid: 3600 + pos: -83.5,29.5 + parent: 2 + - uid: 4711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,376.5 - parent: 1 - - uid: 3610 + pos: -83.5,30.5 + parent: 2 + - uid: 4712 components: - type: Transform - pos: 329.5,407.5 - parent: 1 - - uid: 3640 + pos: -83.5,28.5 + parent: 2 + - uid: 4725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,363.5 - parent: 1 - - uid: 3723 + pos: -87.5,26.5 + parent: 2 + - uid: 4726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,389.5 - parent: 1 - - uid: 3739 + pos: -85.5,26.5 + parent: 2 + - uid: 4745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,362.5 - parent: 1 - - uid: 3740 + pos: -85.5,34.5 + parent: 2 + - uid: 4747 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,359.5 - parent: 1 - - uid: 3741 + pos: -140.5,-36.5 + parent: 2 + - uid: 4756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,358.5 - parent: 1 - - uid: 3742 + pos: -83.5,-30.5 + parent: 2 + - uid: 4762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,376.5 - parent: 1 - - uid: 3743 + pos: -84.5,-30.5 + parent: 2 + - uid: 4833 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,374.5 - parent: 1 - - uid: 3745 + pos: -127.5,-7.5 + parent: 2 + - uid: 4906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,373.5 - parent: 1 - - uid: 4214 + pos: -126.5,-7.5 + parent: 2 + - uid: 4907 components: - type: Transform - pos: 348.5,407.5 - parent: 1 - - uid: 4374 + pos: -125.5,-7.5 + parent: 2 + - uid: 5675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,388.5 - parent: 1 - - uid: 4592 + pos: -107.5,-63.5 + parent: 2 + - uid: 5676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 437.5,392.5 - parent: 1 - - uid: 4807 + pos: -108.5,-63.5 + parent: 2 + - uid: 5693 components: - type: Transform - pos: 402.5,367.5 - parent: 1 - - uid: 4808 + pos: -140.5,-1.5 + parent: 2 + - uid: 5700 components: - type: Transform - pos: 330.5,440.5 - parent: 1 - - uid: 4810 + pos: -120.5,-7.5 + parent: 2 + - uid: 5701 components: - type: Transform - pos: 327.5,442.5 - parent: 1 - - uid: 4811 + pos: -118.5,-7.5 + parent: 2 + - uid: 5715 components: - type: Transform - pos: 398.5,366.5 - parent: 1 - - uid: 4828 + pos: -106.5,-63.5 + parent: 2 + - uid: 5762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,454.5 - parent: 1 - - uid: 4841 + pos: -115.5,-19.5 + parent: 2 + - uid: 5774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,454.5 - parent: 1 - - uid: 4842 + pos: -117.5,-17.5 + parent: 2 + - uid: 5777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,454.5 - parent: 1 - - uid: 4851 + pos: -114.5,-19.5 + parent: 2 + - uid: 5778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,454.5 - parent: 1 - - uid: 4968 + pos: -117.5,-15.5 + parent: 2 + - uid: 5813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,454.5 - parent: 1 - - uid: 4975 + pos: -116.5,-11.5 + parent: 2 + - uid: 5814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,387.5 - parent: 1 - - uid: 5022 + pos: -113.5,-11.5 + parent: 2 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,408.5 - parent: 1 - - uid: 5023 + pos: -113.5,-9.5 + parent: 2 + - uid: 5816 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,410.5 - parent: 1 - - uid: 5160 + pos: -116.5,-9.5 + parent: 2 + - uid: 5867 components: - type: Transform - pos: 351.5,410.5 - parent: 1 - - uid: 5161 + pos: -106.5,-15.5 + parent: 2 + - uid: 5868 components: - type: Transform - pos: 348.5,406.5 - parent: 1 - - uid: 5162 + pos: -106.5,-16.5 + parent: 2 + - uid: 5869 components: - type: Transform - pos: 349.5,410.5 - parent: 1 - - uid: 5279 + pos: -106.5,-17.5 + parent: 2 + - uid: 6125 components: - type: Transform - pos: 453.5,419.5 - parent: 1 - - uid: 5532 + pos: -155.5,-10.5 + parent: 2 + - uid: 6198 components: - type: Transform - pos: 353.5,391.5 - parent: 1 - - uid: 5533 + pos: -126.5,-24.5 + parent: 2 + - uid: 6201 components: - type: Transform - pos: 354.5,390.5 - parent: 1 - - uid: 5568 + pos: -126.5,-20.5 + parent: 2 + - uid: 6202 components: - type: Transform - pos: 356.5,390.5 - parent: 1 - - uid: 5570 + pos: -126.5,-23.5 + parent: 2 + - uid: 6203 components: - type: Transform - pos: 353.5,393.5 - parent: 1 - - uid: 5587 + pos: -126.5,-21.5 + parent: 2 + - uid: 6267 components: - type: Transform - pos: 373.5,381.5 - parent: 1 - - uid: 5595 + pos: -125.5,-13.5 + parent: 2 + - uid: 6269 components: - type: Transform - pos: 357.5,393.5 - parent: 1 - - uid: 5964 + pos: -121.5,-16.5 + parent: 2 + - uid: 6270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,373.5 - parent: 1 - - uid: 5974 + pos: -121.5,-15.5 + parent: 2 + - uid: 6311 components: - type: Transform - pos: 326.5,407.5 - parent: 1 - - uid: 5976 + pos: -126.5,-13.5 + parent: 2 + - uid: 6516 components: - type: Transform - pos: 326.5,403.5 - parent: 1 - - uid: 5977 + pos: -92.5,-36.5 + parent: 2 + - uid: 6555 components: - type: Transform - pos: 326.5,404.5 - parent: 1 - - uid: 5979 + pos: -85.5,-37.5 + parent: 2 + - uid: 6682 components: - type: Transform - pos: 326.5,406.5 - parent: 1 - - uid: 6011 + pos: -81.5,-30.5 + parent: 2 + - uid: 6755 components: - type: Transform - pos: 376.5,392.5 - parent: 1 - - uid: 6012 + pos: -95.5,37.5 + parent: 2 + - uid: 6756 components: - type: Transform - pos: 376.5,391.5 - parent: 1 - - uid: 6013 + pos: -95.5,36.5 + parent: 2 + - uid: 6758 components: - type: Transform - pos: 376.5,390.5 - parent: 1 - - uid: 6014 + pos: -90.5,-36.5 + parent: 2 + - uid: 6760 components: - type: Transform - pos: 376.5,389.5 - parent: 1 - - uid: 6021 + pos: -82.5,-40.5 + parent: 2 + - uid: 6846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,383.5 - parent: 1 - - uid: 6022 + pos: -97.5,-32.5 + parent: 2 + - uid: 6897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,382.5 - parent: 1 - - uid: 12493 + pos: -86.5,-6.5 + parent: 2 + - uid: 6972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,452.5 - parent: 1 - - uid: 12503 + rot: 3.141592653589793 rad + pos: -140.5,12.5 + parent: 2 + - uid: 7025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,451.5 - parent: 1 - - uid: 12672 + pos: -85.5,-39.5 + parent: 2 + - uid: 7145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 349.5,413.5 - parent: 1 - - uid: 13236 + pos: -1.5,-21.5 + parent: 2 + - uid: 7159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,403.5 - parent: 1 - - uid: 14044 + pos: -2.5,-5.5 + parent: 2 + - uid: 7165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,447.5 - parent: 1 - - uid: 14452 + pos: -1.5,-6.5 + parent: 2 + - uid: 7171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,448.5 - parent: 1 - - uid: 15140 + pos: -1.5,-12.5 + parent: 2 + - uid: 7175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 411.5,412.5 - parent: 1 - - uid: 15176 + pos: -2.5,-21.5 + parent: 2 + - uid: 7183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 440.5,402.5 - parent: 1 - - uid: 16089 + pos: -1.5,-14.5 + parent: 2 + - uid: 7187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,350.5 - parent: 1 - - uid: 17049 + pos: -3.5,-5.5 + parent: 2 + - uid: 7203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,372.5 - parent: 1 - - uid: 18040 + pos: -1.5,-5.5 + parent: 2 + - uid: 7209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,374.5 - parent: 1 - - uid: 18375 + pos: -1.5,-13.5 + parent: 2 + - uid: 7219 components: - type: Transform - pos: 432.5,389.5 - parent: 1 - - uid: 18382 + pos: -1.5,-20.5 + parent: 2 + - uid: 7220 components: - type: Transform - pos: 334.5,412.5 - parent: 1 - - uid: 18383 + pos: -3.5,-21.5 + parent: 2 + - uid: 7242 components: - type: Transform - pos: 335.5,412.5 - parent: 1 - - uid: 18384 + pos: -97.5,-24.5 + parent: 2 + - uid: 7257 components: - type: Transform - pos: 337.5,412.5 - parent: 1 - - uid: 18386 + rot: 3.141592653589793 rad + pos: -141.5,12.5 + parent: 2 + - uid: 7280 components: - type: Transform - pos: 338.5,412.5 - parent: 1 - - uid: 18387 + pos: -117.5,-40.5 + parent: 2 + - uid: 7281 components: - type: Transform - pos: 340.5,412.5 - parent: 1 - - uid: 18388 + pos: -117.5,-38.5 + parent: 2 + - uid: 7284 components: - type: Transform - pos: 341.5,412.5 - parent: 1 - - uid: 18389 + pos: -117.5,-50.5 + parent: 2 + - uid: 7285 components: - type: Transform - pos: 344.5,412.5 - parent: 1 - - uid: 20434 + pos: -117.5,-52.5 + parent: 2 + - uid: 7318 components: - type: Transform - pos: 3.5,-0.5 - parent: 20181 - - uid: 20435 + rot: -1.5707963267948966 rad + pos: -131.5,-59.5 + parent: 2 + - uid: 7389 components: - type: Transform - pos: 7.5,0.5 - parent: 20181 - - uid: 20436 + pos: -131.5,-44.5 + parent: 2 + - uid: 7390 components: - type: Transform - pos: -3.5,0.5 - parent: 20181 - - uid: 20437 + pos: -131.5,-43.5 + parent: 2 + - uid: 7391 components: - type: Transform - pos: -3.5,1.5 - parent: 20181 - - uid: 20438 + pos: -131.5,-46.5 + parent: 2 + - uid: 7392 components: - type: Transform - pos: -3.5,2.5 - parent: 20181 - - uid: 20439 + pos: -131.5,-47.5 + parent: 2 + - uid: 7529 components: - type: Transform - pos: -2.5,3.5 - parent: 20181 - - uid: 20440 + rot: 1.5707963267948966 rad + pos: -137.5,-34.5 + parent: 2 + - uid: 7568 components: - type: Transform - pos: -2.5,0.5 - parent: 20181 - - uid: 20441 + pos: -141.5,-37.5 + parent: 2 + - uid: 7876 components: - type: Transform - pos: 8.5,-1.5 - parent: 20181 - - uid: 20442 + pos: -121.5,-54.5 + parent: 2 + - uid: 7898 components: - type: Transform - pos: 8.5,-2.5 - parent: 20181 - - uid: 20882 + pos: -81.5,19.5 + parent: 2 + - uid: 8052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,422.5 - parent: 1 - - uid: 21276 + rot: -1.5707963267948966 rad + pos: -130.5,-59.5 + parent: 2 + - uid: 8075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,422.5 - parent: 1 - - uid: 21311 + pos: -140.5,-41.5 + parent: 2 + - uid: 8164 components: - type: Transform - pos: 4.5,22.5 - parent: 5072 - - uid: 21346 + pos: -83.5,19.5 + parent: 2 + - uid: 8195 components: - type: Transform - pos: 2.5,26.5 - parent: 5072 - - uid: 21403 + pos: -0.5,-7.5 + parent: 2 + - uid: 8196 components: - type: Transform - pos: 6.5,19.5 - parent: 5072 - - uid: 21630 + pos: 1.5,-7.5 + parent: 2 + - uid: 8197 components: - type: Transform - pos: 15.5,21.5 - parent: 5072 - - uid: 21644 + pos: 0.5,-7.5 + parent: 2 + - uid: 8198 components: - type: Transform - pos: 15.5,20.5 - parent: 5072 - - uid: 21652 + pos: 1.5,-9.5 + parent: 2 + - uid: 8199 components: - type: Transform - pos: 10.5,29.5 - parent: 5072 - - uid: 21664 + pos: 0.5,-9.5 + parent: 2 + - uid: 8200 components: - type: Transform - pos: 9.5,31.5 - parent: 5072 - - uid: 21763 + pos: -0.5,-9.5 + parent: 2 + - uid: 8201 components: - type: Transform - pos: -5.5,30.5 - parent: 5072 - - uid: 21772 + pos: -0.5,-15.5 + parent: 2 + - uid: 8202 components: - type: Transform - pos: -1.5,27.5 - parent: 5072 - - uid: 21828 + pos: -0.5,-11.5 + parent: 2 + - uid: 8203 components: - type: Transform - pos: 0.5,33.5 - parent: 5072 - - uid: 21835 + pos: 0.5,-11.5 + parent: 2 + - uid: 8204 components: - type: Transform - pos: 2.5,33.5 - parent: 5072 - - uid: 21838 + pos: 1.5,-11.5 + parent: 2 + - uid: 8205 components: - type: Transform - pos: 3.5,33.5 - parent: 5072 - - uid: 21850 + pos: 0.5,-15.5 + parent: 2 + - uid: 8206 components: - type: Transform - pos: 6.5,33.5 - parent: 5072 - - uid: 21854 + pos: 1.5,-15.5 + parent: 2 + - uid: 8213 components: - type: Transform - pos: 7.5,33.5 - parent: 5072 - - uid: 21879 + pos: 1.5,-17.5 + parent: 2 + - uid: 8214 components: - type: Transform - pos: 17.5,20.5 - parent: 5072 - - uid: 21883 + pos: 0.5,-17.5 + parent: 2 + - uid: 8215 components: - type: Transform - pos: 17.5,21.5 - parent: 5072 - - uid: 21904 + pos: -0.5,-17.5 + parent: 2 + - uid: 8216 components: - type: Transform - pos: -0.5,33.5 - parent: 5072 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 4377 + pos: -0.5,-19.5 + parent: 2 + - uid: 8217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 436.5,393.5 - parent: 1 - - uid: 20443 + pos: 0.5,-19.5 + parent: 2 + - uid: 8218 components: - type: Transform - pos: -3.5,3.5 - parent: 20181 -- proto: RemoteSignaller - entities: - - uid: 18212 + pos: 1.5,-19.5 + parent: 2 + - uid: 8228 components: - - type: MetaData - desc: Активирует воспламенитель у камеры сжигания ТЭГа - type: Transform - pos: 320.5,422.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18211: - - Pressed: Trigger - - uid: 18393 + pos: -9.5,-9.5 + parent: 2 + - uid: 8229 components: - type: Transform - pos: 361.5,420.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18392: - - Pressed: Trigger -- proto: ResearchAndDevelopmentServer - entities: - - uid: 7493 + pos: -10.5,-9.5 + parent: 2 + - uid: 8230 components: - type: Transform - pos: 351.5,383.5 - parent: 1 -- proto: RevolverCapGun - entities: - - uid: 3517 + pos: -11.5,-9.5 + parent: 2 + - uid: 8236 components: - type: Transform - pos: 443.5,406.5 - parent: 1 - - uid: 4875 + pos: -5.5,-9.5 + parent: 2 + - uid: 8238 components: - type: Transform - pos: 389.5,414.5 - parent: 1 - - uid: 5008 + pos: -7.5,-6.5 + parent: 2 + - uid: 8239 components: - type: Transform - pos: 424.5,392.5 - parent: 1 -- proto: RGBStaff - entities: - - uid: 18273 + pos: -7.5,-8.5 + parent: 2 + - uid: 8244 components: - type: Transform - pos: 411.5,426.5 - parent: 1 -- proto: RiotBulletShield - entities: - - uid: 6143 + pos: -3.5,-9.5 + parent: 2 + - uid: 8253 components: - type: Transform - pos: 428.5,412.5 - parent: 1 -- proto: RiotLaserShield - entities: - - uid: 6144 + pos: -16.5,-64.5 + parent: 2 + - uid: 8260 components: - type: Transform - pos: 428.5,412.5 - parent: 1 -- proto: RiotShield - entities: - - uid: 6145 + pos: -11.5,-17.5 + parent: 2 + - uid: 8261 components: - type: Transform - pos: 428.5,410.5 - parent: 1 -- proto: RobocopCircuitBoard - entities: - - uid: 6657 + pos: -9.5,-17.5 + parent: 2 + - uid: 8262 components: - type: Transform - pos: 302.5,408.5 - parent: 1 -- proto: RollerBed - entities: - - uid: 6224 + pos: -5.5,-17.5 + parent: 2 + - uid: 8263 components: - type: Transform - pos: 428.5,399.5 - parent: 1 -- proto: RollingPin - entities: - - uid: 15145 + pos: -3.5,-17.5 + parent: 2 + - uid: 8296 components: - type: Transform - parent: 6164 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 20819 + pos: -6.5,-13.5 + parent: 2 + - uid: 8297 components: - type: Transform - pos: 395.5,422.5 - parent: 1 -- proto: RubberStampApproved - entities: - - uid: 16436 + pos: -7.5,-13.5 + parent: 2 + - uid: 8299 components: - type: Transform - pos: 367.5,397.5 - parent: 1 -- proto: RubberStampGreytide - entities: - - uid: 17718 + pos: -8.5,-13.5 + parent: 2 + - uid: 8343 components: - type: Transform - pos: 510.5,390.5 - parent: 1 -- proto: SalvageCanisterSpawner - entities: - - uid: 18005 + pos: -29.5,26.5 + parent: 2 + - uid: 8363 components: - type: Transform - pos: 504.5,387.5 - parent: 1 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 21940 + pos: -38.5,17.5 + parent: 2 + - uid: 8364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,27.5 - parent: 5072 -- proto: SalvageMagnet - entities: - - uid: 5702 + pos: -38.5,16.5 + parent: 2 + - uid: 8365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 358.5,380.5 - parent: 1 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 18007 + pos: -38.5,14.5 + parent: 2 + - uid: 8366 components: - type: Transform - pos: 505.5,392.5 - parent: 1 - - uid: 18988 + pos: -38.5,15.5 + parent: 2 + - uid: 8367 components: - type: Transform - pos: 340.5,384.5 - parent: 1 -- proto: ScalpelShiv - entities: - - uid: 1102 + pos: -36.5,14.5 + parent: 2 + - uid: 8368 components: - type: Transform - parent: 5369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 5147 + pos: -36.5,15.5 + parent: 2 + - uid: 8369 components: - type: Transform - parent: 2890 - - type: Physics - canCollide: False - - uid: 18548 + pos: -36.5,16.5 + parent: 2 + - uid: 8370 components: - type: Transform - pos: 359.5,406.5 - parent: 1 -- proto: ScrapCanister1 - entities: - - uid: 7524 + pos: -36.5,17.5 + parent: 2 + - uid: 8377 components: - type: Transform - pos: 351.5,389.5 - parent: 1 -- proto: ScrapFireExtinguisher - entities: - - uid: 18003 + pos: -82.5,19.5 + parent: 2 + - uid: 8522 components: - type: Transform - pos: 506.5,385.5 - parent: 1 -- proto: ScrapFirelock1 - entities: - - uid: 18611 + pos: -34.5,-34.5 + parent: 2 + - uid: 8529 components: - type: Transform - pos: 345.5,438.5 - parent: 1 -- proto: ScrapMedkit - entities: - - uid: 17999 + pos: -32.5,-34.5 + parent: 2 + - uid: 8708 components: - type: Transform - pos: 481.5,370.5 - parent: 1 - - uid: 21048 + pos: -5.5,-38.5 + parent: 2 + - uid: 8709 components: - type: Transform - pos: 403.5,392.5 - parent: 1 -- proto: ScrapPAI - entities: - - uid: 19006 + pos: -3.5,-38.5 + parent: 2 + - uid: 8710 components: - type: Transform - pos: 330.5,392.5 - parent: 1 - - uid: 21042 + pos: -4.5,-38.5 + parent: 2 + - uid: 8711 components: - type: Transform - pos: 418.5,379.5 - parent: 1 -- proto: ScrapPAIGold - entities: - - uid: 5847 + pos: -3.5,-36.5 + parent: 2 + - uid: 8714 components: - type: Transform - pos: 363.5,408.5 - parent: 1 -- proto: ScrapSteel - entities: - - uid: 17997 + pos: -4.5,-34.5 + parent: 2 + - uid: 8715 components: - type: Transform - pos: 480.5,369.5 - parent: 1 - - uid: 17998 + pos: -3.5,-34.5 + parent: 2 + - uid: 8716 components: - type: Transform - pos: 482.5,370.5 - parent: 1 -- proto: Screen - entities: - - uid: 1613 + pos: -5.5,-34.5 + parent: 2 + - uid: 8729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,385.5 - parent: 1 - - uid: 5104 + pos: -7.5,-30.5 + parent: 2 + - uid: 8737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,385.5 - parent: 1 - - uid: 15401 + pos: -7.5,-28.5 + parent: 2 + - uid: 8738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,391.5 - parent: 1 - - uid: 15402 + pos: -7.5,-31.5 + parent: 2 + - uid: 8739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,391.5 - parent: 1 - - uid: 15679 + pos: -7.5,-32.5 + parent: 2 + - uid: 8740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,385.5 - parent: 1 - - uid: 15680 + pos: -7.5,-29.5 + parent: 2 + - uid: 8901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,391.5 - parent: 1 - - uid: 15681 + pos: -83.5,-43.5 + parent: 2 + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,387.5 - parent: 1 - - uid: 15682 + pos: -14.5,-69.5 + parent: 2 + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,380.5 - parent: 1 - - uid: 15683 + pos: -14.5,-68.5 + parent: 2 + - uid: 8952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,384.5 - parent: 1 - - uid: 15684 + pos: -82.5,-39.5 + parent: 2 + - uid: 8964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,388.5 - parent: 1 - - uid: 15685 + pos: -81.5,-43.5 + parent: 2 + - uid: 9098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,394.5 - parent: 1 - - uid: 15686 + pos: -106.5,-45.5 + parent: 2 + - uid: 9108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,394.5 - parent: 1 - - uid: 15687 + pos: -111.5,-45.5 + parent: 2 + - uid: 9324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 382.5,400.5 - parent: 1 - - uid: 15688 + pos: -30.5,22.5 + parent: 2 + - uid: 9539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,400.5 - parent: 1 - - uid: 15689 + pos: -97.5,11.5 + parent: 2 + - uid: 9549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,401.5 - parent: 1 - - uid: 15690 + pos: -95.5,13.5 + parent: 2 + - uid: 9640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,401.5 - parent: 1 - - uid: 15691 + pos: -97.5,-28.5 + parent: 2 + - uid: 9647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,401.5 - parent: 1 - - uid: 15692 + pos: -80.5,-43.5 + parent: 2 + - uid: 9788 components: - type: Transform - pos: 389.5,405.5 - parent: 1 - - uid: 15693 + pos: -32.5,-75.5 + parent: 2 + - uid: 9838 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,394.5 - parent: 1 - - uid: 15694 + pos: -136.5,15.5 + parent: 2 + - uid: 9958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,390.5 - parent: 1 - - uid: 15695 + pos: -16.5,-69.5 + parent: 2 + - uid: 9964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,402.5 - parent: 1 - - uid: 15696 + pos: -16.5,-70.5 + parent: 2 + - uid: 9980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,409.5 - parent: 1 - - uid: 15697 + pos: -95.5,38.5 + parent: 2 + - uid: 9981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,409.5 - parent: 1 - - uid: 15698 + pos: -93.5,36.5 + parent: 2 + - uid: 9982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 451.5,414.5 - parent: 1 - - uid: 15699 + pos: -93.5,37.5 + parent: 2 + - uid: 9983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,420.5 - parent: 1 - - uid: 15700 + pos: -93.5,38.5 + parent: 2 + - uid: 9986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 455.5,403.5 - parent: 1 - - uid: 15701 + pos: -95.5,39.5 + parent: 2 + - uid: 9987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 443.5,419.5 - parent: 1 - - uid: 15702 + pos: -93.5,39.5 + parent: 2 + - uid: 10035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 448.5,420.5 - parent: 1 - - uid: 15703 + rot: -1.5707963267948966 rad + pos: -140.5,-12.5 + parent: 2 + - uid: 10084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 438.5,410.5 - parent: 1 - - uid: 15704 + pos: -34.5,-77.5 + parent: 2 + - uid: 10087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,411.5 - parent: 1 - - uid: 15705 + pos: -32.5,-77.5 + parent: 2 + - uid: 10488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,408.5 - parent: 1 - - uid: 15706 + pos: -16.5,-68.5 + parent: 2 + - uid: 10528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,409.5 - parent: 1 - - uid: 15707 + pos: -83.5,-6.5 + parent: 2 + - uid: 11035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,393.5 - parent: 1 - - uid: 15708 + pos: -28.5,22.5 + parent: 2 + - uid: 11047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,394.5 - parent: 1 - - uid: 15709 + pos: -34.5,-75.5 + parent: 2 + - uid: 11048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,394.5 - parent: 1 - - uid: 15710 + pos: -34.5,-76.5 + parent: 2 + - uid: 11059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,394.5 - parent: 1 - - uid: 21054 + pos: -108.5,-61.5 + parent: 2 + - uid: 11076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,411.5 - parent: 1 - - uid: 21055 + pos: -32.5,-76.5 + parent: 2 + - uid: 11080 components: - type: Transform - pos: 394.5,408.5 - parent: 1 -- proto: SecurityTechFab - entities: - - uid: 6121 + pos: -28.5,-69.5 + parent: 2 + - uid: 11092 components: - type: Transform - pos: 426.5,412.5 - parent: 1 -- proto: SeedExtractor - entities: - - uid: 525 + pos: -30.5,-61.5 + parent: 2 + - uid: 11358 components: - type: Transform - pos: 410.5,380.5 - parent: 1 -- proto: ServiceLightBulb - entities: - - uid: 18276 + pos: -22.5,11.5 + parent: 2 + - uid: 11359 components: - type: Transform - pos: 411.5,426.5 - parent: 1 -- proto: ShardGlass - entities: - - uid: 20072 + pos: -22.5,13.5 + parent: 2 + - uid: 11710 components: - type: Transform rot: -1.5707963267948966 rad - pos: 338.5,449.5 - parent: 1 - - uid: 20099 + pos: -99.5,34.5 + parent: 2 + - uid: 11716 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,450.5 - parent: 1 - - uid: 20167 + pos: -99.5,33.5 + parent: 2 + - uid: 11780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,451.5 - parent: 1 - - uid: 20168 + pos: -101.5,-44.5 + parent: 2 + - uid: 11783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,452.5 - parent: 1 - - uid: 20169 + pos: -101.5,-46.5 + parent: 2 + - uid: 12425 components: - type: Transform - pos: 337.5,447.5 - parent: 1 - - uid: 20170 + pos: -28.5,-61.5 + parent: 2 + - uid: 12546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,447.5 - parent: 1 - - uid: 20171 + pos: -31.5,-36.5 + parent: 2 + - uid: 12588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,445.5 - parent: 1 - - uid: 20172 + rot: -1.5707963267948966 rad + pos: -126.5,-59.5 + parent: 2 + - uid: 12748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,448.5 - parent: 1 -- proto: ShardGlassReinforced - entities: - - uid: 21295 + rot: -1.5707963267948966 rad + pos: -133.5,-57.5 + parent: 2 + - uid: 12840 components: - type: Transform - pos: -3.305931,32.319 - parent: 5072 - - uid: 21392 + pos: -13.5,-64.5 + parent: 2 + - uid: 13241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.8691406,34.14595 - parent: 5072 - - uid: 21410 + rot: 3.141592653589793 rad + pos: -138.5,15.5 + parent: 2 + - uid: 13248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5734253,23.310776 - parent: 5072 - - uid: 21500 + pos: -31.5,-40.5 + parent: 2 + - uid: 13523 components: - type: Transform - pos: -2.639145,24.8078 - parent: 5072 - - uid: 21668 + rot: 3.141592653589793 rad + pos: -140.5,14.5 + parent: 2 + - uid: 13879 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.042755,29.801987 - parent: 5072 - - uid: 21669 + pos: -138.5,12.5 + parent: 2 + - uid: 14003 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.883827,31.841904 - parent: 5072 - - uid: 21681 + pos: -137.5,21.5 + parent: 2 + - uid: 14499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.2254257,23.275864 - parent: 5072 - - uid: 21685 + pos: -13.5,-66.5 + parent: 2 + - uid: 15407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5783615,28.345337 - parent: 5072 - - uid: 21691 + rot: -1.5707963267948966 rad + pos: -125.5,-59.5 + parent: 2 + - uid: 16087 components: - type: Transform - pos: -0.101005554,26.820938 - parent: 5072 - - uid: 21742 + pos: -106.5,-61.5 + parent: 2 + - uid: 16091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.6316147,32.7612 - parent: 5072 - - uid: 21753 + rot: 3.141592653589793 rad + pos: -123.5,-50.5 + parent: 2 + - uid: 16320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.3101349,33.098663 - parent: 5072 - - uid: 21754 + pos: -82.5,-82.5 + parent: 2 + - uid: 16488 components: - type: Transform - pos: 4.293968,34.192505 - parent: 5072 - - uid: 21788 + rot: 3.141592653589793 rad + pos: -137.5,-40.5 + parent: 2 + - uid: 16505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.2976074,30.767838 - parent: 5072 - - uid: 21831 + pos: -138.5,-26.5 + parent: 2 + - uid: 16695 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.6807785,25.719559 - parent: 5072 - - uid: 21832 + pos: -129.5,-59.5 + parent: 2 + - uid: 16716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.3767548,33.948135 - parent: 5072 - - uid: 21842 + pos: -33.5,-43.5 + parent: 2 + - uid: 16836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.1824646,32.414032 - parent: 5072 - - uid: 21845 + pos: -107.5,-61.5 + parent: 2 + - uid: 16906 components: - type: Transform - pos: 3.9121857,27.360336 - parent: 5072 - - uid: 21846 + rot: 3.141592653589793 rad + pos: -22.5,6.5 + parent: 2 + - uid: 17005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.266754,31.318253 - parent: 5072 -- proto: ShardGlassUranium - entities: - - uid: 21124 + rot: -1.5707963267948966 rad + pos: -115.5,-36.5 + parent: 2 + - uid: 17075 components: - type: Transform - pos: 324.5,449.5 - parent: 1 - - type: RadiationSource - intensity: 2 -- proto: SheetGlass - entities: - - uid: 3990 + pos: -86.5,-0.5 + parent: 2 + - uid: 17161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,406.5 - parent: 1 - - uid: 7558 + pos: -31.5,-75.5 + parent: 2 + - uid: 17164 components: - type: Transform - pos: 352.5,395.5 - parent: 1 - - uid: 7559 + pos: -35.5,-75.5 + parent: 2 + - uid: 17359 components: - type: Transform - pos: 352.5,395.5 - parent: 1 -- proto: SheetGlass10 - entities: - - uid: 18983 + rot: -1.5707963267948966 rad + pos: -127.5,-59.5 + parent: 2 + - uid: 17513 components: - type: Transform - pos: 426.5,412.5 - parent: 1 - - uid: 21159 + rot: 3.141592653589793 rad + pos: -136.5,12.5 + parent: 2 + - uid: 17538 components: - type: Transform - pos: 399.5,408.5 - parent: 1 -- proto: SheetPlasma - entities: - - uid: 7411 + pos: -140.5,-54.5 + parent: 2 + - uid: 17651 components: - type: Transform - pos: 341.5,395.5 - parent: 1 - - uid: 10284 + pos: -14.5,-70.5 + parent: 2 + - uid: 18726 components: - type: Transform - pos: 366.5,417.5 - parent: 1 -- proto: SheetPlasma1 - entities: - - uid: 7414 + pos: -138.5,-12.5 + parent: 2 + - uid: 19623 components: - type: Transform - pos: 341.5,386.5 - parent: 1 -- proto: SheetPlasma10 - entities: - - uid: 7471 + rot: 1.5707963267948966 rad + pos: -114.5,-54.5 + parent: 2 + - uid: 19629 components: - type: Transform - pos: 352.5,389.5 - parent: 1 - - uid: 18547 + rot: 1.5707963267948966 rad + pos: -115.5,-54.5 + parent: 2 + - uid: 19750 components: - type: Transform - pos: 359.5,406.5 - parent: 1 -- proto: SheetPlastic - entities: - - uid: 6634 + rot: 1.5707963267948966 rad + pos: -113.5,-54.5 + parent: 2 + - uid: 19752 components: - type: Transform - pos: 302.5,413.5 - parent: 1 - - uid: 7562 + rot: 3.141592653589793 rad + pos: -69.5,-17.5 + parent: 2 + - uid: 19864 components: - type: Transform - pos: 351.5,400.5 - parent: 1 - - uid: 7563 + rot: 3.141592653589793 rad + pos: -67.5,-17.5 + parent: 2 + - uid: 20160 components: - type: Transform - pos: 351.5,400.5 - parent: 1 -- proto: SheetPlastic10 - entities: - - uid: 15639 + rot: 3.141592653589793 rad + pos: -139.5,-11.5 + parent: 2 + - uid: 20167 components: - type: Transform - pos: 399.5,409.5 - parent: 1 -- proto: SheetSteel - entities: - - uid: 2697 + pos: -123.5,-40.5 + parent: 2 + - uid: 20277 components: - type: Transform rot: 3.141592653589793 rad - pos: 337.5,406.5 - parent: 1 - - uid: 6125 + pos: -139.5,-9.5 + parent: 2 + - uid: 20319 components: - type: Transform - pos: 422.5,409.5 - parent: 1 - - uid: 6271 + rot: 1.5707963267948966 rad + pos: -57.5,-79.5 + parent: 2 + - uid: 20329 components: - type: Transform - pos: 339.5,419.5 - parent: 1 - - uid: 6272 + pos: -128.5,-7.5 + parent: 2 + - uid: 20445 components: - type: Transform - pos: 339.5,419.5 - parent: 1 - - uid: 6633 + rot: -1.5707963267948966 rad + pos: -119.5,37.5 + parent: 2 + - uid: 20449 components: - type: Transform - pos: 302.5,414.5 - parent: 1 - - uid: 6685 + rot: -1.5707963267948966 rad + pos: -122.5,36.5 + parent: 2 + - uid: 20450 components: - type: Transform - pos: 306.5,379.5 - parent: 1 - - uid: 7360 + rot: -1.5707963267948966 rad + pos: -122.5,37.5 + parent: 2 + - uid: 20456 components: - type: Transform - pos: 313.5,384.5 - parent: 1 - - uid: 7361 + rot: -1.5707963267948966 rad + pos: -121.5,37.5 + parent: 2 + - uid: 20466 components: - type: Transform - pos: 317.5,383.5 - parent: 1 - - uid: 7397 + rot: -1.5707963267948966 rad + pos: -120.5,37.5 + parent: 2 + - uid: 20844 components: - type: Transform - pos: 325.5,420.5 - parent: 1 - - uid: 7398 + pos: -36.5,-43.5 + parent: 2 + - uid: 20936 components: - type: Transform - pos: 325.5,420.5 - parent: 1 - - uid: 7399 + rot: -1.5707963267948966 rad + pos: -93.5,31.5 + parent: 2 + - uid: 21002 components: - type: Transform - pos: 325.5,420.5 - parent: 1 - - uid: 7400 + pos: -104.5,37.5 + parent: 2 + - uid: 21491 components: - type: Transform - pos: 325.5,420.5 - parent: 1 - - uid: 7535 + pos: -18.5,-16.5 + parent: 2 + - uid: 21492 components: - type: Transform - pos: 354.5,400.5 - parent: 1 - - uid: 7560 + pos: -20.5,-16.5 + parent: 2 + - uid: 21493 components: - type: Transform - pos: 352.5,396.5 - parent: 1 - - uid: 7561 + pos: -19.5,-16.5 + parent: 2 + - uid: 21873 components: - type: Transform - pos: 352.5,396.5 - parent: 1 - - uid: 9093 + pos: -36.5,-45.5 + parent: 2 + - uid: 21874 components: - type: Transform - pos: 367.5,391.5 - parent: 1 - - uid: 10270 + pos: -33.5,-45.5 + parent: 2 + - uid: 21879 components: - type: Transform - pos: 388.5,417.5 - parent: 1 - - uid: 17439 + pos: -141.5,-8.5 + parent: 2 + - uid: 22711 components: - type: Transform - pos: 503.5,394.5 - parent: 1 - - uid: 18576 + pos: -69.5,-34.5 + parent: 2 + - uid: 22904 components: - type: Transform - pos: 354.5,416.5 - parent: 1 - - uid: 18733 + rot: 3.141592653589793 rad + pos: -141.5,14.5 + parent: 2 + - uid: 22936 components: - type: Transform - pos: 421.5,370.5 - parent: 1 - - uid: 20444 + pos: -43.5,-65.5 + parent: 2 + - uid: 22962 components: - type: Transform - pos: 7.5,1.5 - parent: 20181 -- proto: SheetSteel1 - entities: - - uid: 7401 + pos: -44.5,-65.5 + parent: 2 + - uid: 22963 components: - type: Transform - pos: 317.5,422.5 - parent: 1 - - uid: 7579 + pos: -42.5,-65.5 + parent: 2 + - uid: 23053 components: - type: Transform - pos: 417.5,428.5 - parent: 1 - - uid: 11767 + pos: -91.5,26.5 + parent: 2 + - uid: 23504 components: - type: Transform - pos: 402.5,430.5 - parent: 1 - - uid: 15465 + rot: -1.5707963267948966 rad + pos: -95.5,31.5 + parent: 2 + - uid: 23751 components: - type: Transform - pos: 315.5,448.5 - parent: 1 - - uid: 17355 + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 + - uid: 23752 components: - type: Transform - pos: 481.5,380.5 - parent: 1 - - uid: 17361 + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 2 + - uid: 24036 components: - type: Transform - pos: 476.5,378.5 - parent: 1 - - uid: 17962 + rot: 3.141592653589793 rad + pos: -93.5,26.5 + parent: 2 + - uid: 24115 components: - type: Transform - pos: 481.5,375.5 - parent: 1 - - uid: 17963 + pos: -16.5,-66.5 + parent: 2 + - uid: 24214 components: - type: Transform - pos: 478.5,374.5 - parent: 1 - - uid: 18343 + pos: -32.5,-78.5 + parent: 2 + - uid: 24215 components: - type: Transform - pos: 433.5,391.5 - parent: 1 - - uid: 18344 + pos: -34.5,-78.5 + parent: 2 + - uid: 24333 components: - type: Transform - pos: 433.5,395.5 - parent: 1 - - uid: 18552 + pos: -19.5,-51.5 + parent: 2 + - uid: 24334 components: - type: Transform - pos: 360.5,409.5 - parent: 1 - - uid: 19089 + pos: -18.5,-51.5 + parent: 2 + - uid: 24335 components: - type: Transform - pos: 336.5,444.5 - parent: 1 - - uid: 19090 + pos: -17.5,-51.5 + parent: 2 + - uid: 25403 components: - type: Transform - pos: 333.5,446.5 - parent: 1 - - uid: 19091 + rot: -1.5707963267948966 rad + pos: -113.5,-36.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 3377 components: + - type: MetaData + name: remote signaller (Paramedic Shutters) - type: Transform - pos: 333.5,451.5 - parent: 1 - - uid: 19092 + pos: -24.505428,-26.354685 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 138: + - Pressed: Toggle + 3976: + - Pressed: Toggle + 132: + - Pressed: Toggle + - type: Label + currentLabel: Paramedic Shutters + - type: NameModifier + baseName: remote signaller + - uid: 6783 components: - type: Transform - pos: 337.5,452.5 - parent: 1 - - uid: 21107 + pos: -54.31237,3.42198 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 22084 components: - type: Transform - pos: 326.5,446.5 - parent: 1 - - uid: 21108 + pos: -136.5,-48.5 + parent: 2 +- proto: RobocopCircuitBoard + entities: + - uid: 24948 components: - type: Transform - pos: 309.5,445.5 - parent: 1 - - uid: 21109 + pos: -118.270996,-74.35101 + parent: 2 +- proto: RollingPin + entities: + - uid: 22096 components: - type: Transform - pos: 300.5,419.5 - parent: 1 - - uid: 21110 + pos: -53.694008,-30.212967 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 22015 components: - type: Transform - pos: 306.5,442.5 - parent: 1 - - uid: 21111 + rot: 3.141592653589793 rad + pos: -93.5,32.5 + parent: 2 +- proto: Scalpel + entities: + - uid: 21724 components: - type: Transform - pos: 303.5,435.5 - parent: 1 - - uid: 21112 + pos: -39.5,-46.5 + parent: 2 +- proto: ScrapFaxMachine + entities: + - uid: 3723 components: - type: Transform - pos: 303.5,430.5 - parent: 1 - - uid: 21113 + pos: -75.52578,-44.378353 + parent: 2 + - uid: 4992 components: - type: Transform - pos: 299.5,424.5 - parent: 1 - - uid: 21114 + pos: -101.510574,-66.35512 + parent: 2 + - uid: 9053 components: - type: Transform - pos: 299.5,412.5 - parent: 1 - - uid: 21115 + pos: -41.537453,-66.396194 + parent: 2 +- proto: Screen + entities: + - uid: 17848 components: - type: Transform - pos: 301.5,402.5 - parent: 1 - - uid: 21116 + rot: 3.141592653589793 rad + pos: -59.5,-21.5 + parent: 2 + - uid: 20938 components: - type: Transform - pos: 293.5,402.5 - parent: 1 - - uid: 21117 + pos: -36.5,-11.5 + parent: 2 + - uid: 24511 components: - type: Transform - pos: 272.5,393.5 - parent: 1 - - uid: 21118 + pos: -65.5,-0.5 + parent: 2 + - uid: 24512 components: - type: Transform - pos: 279.5,401.5 - parent: 1 - - uid: 21119 + pos: -57.5,-0.5 + parent: 2 + - uid: 24513 components: - type: Transform - pos: 281.5,387.5 - parent: 1 - - uid: 21120 + pos: -48.5,-10.5 + parent: 2 + - uid: 24514 components: - type: Transform - pos: 278.5,394.5 - parent: 1 - - uid: 21121 + pos: -22.5,-11.5 + parent: 2 + - uid: 24516 components: - type: Transform - pos: 283.5,395.5 - parent: 1 - - uid: 21122 + pos: -34.5,-0.5 + parent: 2 + - uid: 24517 components: - type: Transform - pos: 290.5,394.5 - parent: 1 - - uid: 21123 + pos: -5.5,-13.5 + parent: 2 + - uid: 24518 components: - type: Transform - pos: 292.5,395.5 - parent: 1 -- proto: SheetSteel10 - entities: - - uid: 19918 + pos: -9.5,-13.5 + parent: 2 + - uid: 24519 components: - type: Transform - pos: 426.5,412.5 - parent: 1 -- proto: SheetUranium1 - entities: - - uid: 17557 + pos: -61.5,-51.5 + parent: 2 + - uid: 24520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,411.5 - parent: 1 -- proto: ShelfBar - entities: - - uid: 18240 + pos: -106.5,-12.5 + parent: 2 + - uid: 24521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,451.5 - parent: 1 -- proto: ShelfChemistryChemistrySecure - entities: - - uid: 3714 + pos: -103.5,12.5 + parent: 2 + - uid: 24522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,411.5 - parent: 1 -- proto: ShelfKitchen - entities: - - uid: 4920 + pos: -58.5,-36.5 + parent: 2 + - uid: 25466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,391.5 - parent: 1 -- proto: ShellShotgunBeanbag - entities: - - uid: 4983 + rot: 1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - uid: 25467 components: - type: Transform - pos: 420.5,388.5 - parent: 1 -- proto: ShuttersNormal + rot: 3.141592653589793 rad + pos: -67.5,-21.5 + parent: 2 +- proto: Screwdriver entities: - - uid: 3716 + - uid: 6280 components: - type: Transform - pos: 362.5,391.5 - parent: 1 - - uid: 3717 + pos: -127.61036,-14.756046 + parent: 2 + - uid: 12891 components: - type: Transform - pos: 343.5,400.5 - parent: 1 - - uid: 3718 + pos: -23.497591,-6.4032135 + parent: 2 + - uid: 25201 components: - type: Transform - pos: 344.5,400.5 - parent: 1 - - uid: 5503 + pos: -118.52333,-76.418274 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 2119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,413.5 - parent: 1 - - uid: 5504 + pos: -82.5,-19.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 6131 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,413.5 - parent: 1 - - uid: 21722 + pos: -53.5,-18.5 + parent: 2 + - uid: 17831 components: - type: Transform - pos: -7.5,26.5 - parent: 5072 - - uid: 21725 + pos: -88.5,-50.5 + parent: 2 +- proto: ShardGlassPlasma + entities: + - uid: 11090 components: - type: Transform - pos: -6.5,26.5 - parent: 5072 -- proto: ShuttersNormalOpen + pos: -24.495424,-65.501526 + parent: 2 +- proto: SheetGlass entities: - - uid: 1950 + - uid: 1201 components: - type: Transform - pos: 368.5,392.5 - parent: 1 - - uid: 1951 + parent: 1199 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1202 components: - type: Transform - pos: 367.5,392.5 - parent: 1 - - uid: 2069 + parent: 1199 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,407.5 - parent: 1 - - uid: 2252 + pos: -118.5,-49.5 + parent: 2 + - uid: 22075 components: - type: Transform - pos: 366.5,392.5 - parent: 1 - - uid: 3093 + pos: -111.06298,-18.491226 + parent: 2 + - uid: 22165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,405.5 - parent: 1 - - uid: 3095 + pos: -111.06298,-18.491226 + parent: 2 + - uid: 22240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,405.5 - parent: 1 - - uid: 3096 + pos: -111.06298,-18.491226 + parent: 2 + - uid: 25202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,405.5 - parent: 1 - - uid: 3954 + pos: -119.38966,-65.66646 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 4307 components: - type: Transform - pos: 369.5,399.5 - parent: 1 - - uid: 3955 + pos: -73.72166,-4.4283886 + parent: 2 + - uid: 4308 components: - type: Transform - pos: 373.5,401.5 - parent: 1 - - uid: 3956 + pos: -73.15916,-4.4440136 + parent: 2 + - uid: 6249 components: - type: Transform - pos: 368.5,399.5 - parent: 1 - - uid: 3958 + pos: -125.32983,-24.36347 + parent: 2 + - uid: 6315 components: - type: Transform - pos: 366.5,399.5 - parent: 1 - - uid: 3986 + pos: -130.37454,-13.518744 + parent: 2 + - uid: 25168 components: - type: Transform - pos: 365.5,401.5 - parent: 1 - - uid: 4819 + pos: -119.53029,-65.43208 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 2811 components: - type: Transform - pos: 365.5,399.5 - parent: 1 - - uid: 4820 + pos: -64.44583,-9.386711 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 508 components: - type: Transform - pos: 367.5,399.5 - parent: 1 - - uid: 4880 + pos: -27.5,-71.5 + parent: 2 + - uid: 1192 components: - type: Transform - pos: -2.5,5.5 - parent: 16114 - - uid: 6102 + pos: -27.5,-71.5 + parent: 2 + - uid: 21888 components: - type: Transform - pos: 402.5,370.5 - parent: 1 - - uid: 6103 + pos: -110.40186,-18.491226 + parent: 2 + - uid: 22073 components: - type: Transform - pos: 402.5,369.5 - parent: 1 - - uid: 7520 + pos: -110.40186,-18.491226 + parent: 2 + - uid: 22074 components: - type: Transform - pos: -3.5,5.5 - parent: 16114 - - uid: 9071 + pos: -110.40186,-18.491226 + parent: 2 + - uid: 24494 components: - type: Transform - pos: -4.5,4.5 - parent: 16114 - - uid: 9081 + pos: -36.37284,-9.357885 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 20464 components: - type: Transform - pos: -3.5,3.5 - parent: 16114 - - uid: 15852 + pos: -118.5,-49.5 + parent: 2 + - uid: 22256 components: - type: Transform - pos: 413.5,390.5 - parent: 1 - - uid: 15853 + pos: -111.703606,-18.538101 + parent: 2 +- proto: SheetSteel + entities: + - uid: 18790 components: - type: Transform - pos: 413.5,389.5 - parent: 1 - - uid: 15854 + pos: -123.5,-0.5 + parent: 2 + - uid: 18791 components: - type: Transform - pos: 413.5,388.5 - parent: 1 - - uid: 15855 + pos: -123.5,-0.5 + parent: 2 + - uid: 18792 components: - type: Transform - pos: 410.5,389.5 - parent: 1 - - uid: 15856 + pos: -123.5,-0.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: -143.5,-2.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + pos: -143.5,-2.5 + parent: 2 + - uid: 18827 components: - type: Transform - pos: 410.5,388.5 - parent: 1 - - uid: 15858 + pos: -143.5,-2.5 + parent: 2 + - uid: 20455 components: - type: Transform - pos: 417.5,392.5 - parent: 1 - - uid: 16315 + pos: -118.5,-49.5 + parent: 2 + - uid: 20461 components: - type: Transform - pos: 416.5,415.5 - parent: 1 - - uid: 16316 + pos: -118.5,-49.5 + parent: 2 + - uid: 20462 components: - type: Transform - pos: 413.5,415.5 - parent: 1 - - uid: 16317 + pos: -118.5,-49.5 + parent: 2 + - uid: 21889 components: - type: Transform - pos: 415.5,415.5 - parent: 1 - - uid: 16318 + pos: -112.42362,-18.506851 + parent: 2 + - uid: 22097 components: - type: Transform - pos: 412.5,415.5 - parent: 1 - - uid: 16319 + pos: -112.42362,-18.491226 + parent: 2 + - uid: 22114 components: - type: Transform - pos: 411.5,415.5 - parent: 1 - - uid: 17442 + pos: -112.42362,-18.475601 + parent: 2 + - uid: 25203 components: - type: Transform - pos: 422.5,390.5 - parent: 1 - - uid: 18031 + pos: -119.60841,-65.46333 + parent: 2 +- proto: SheetUranium + entities: + - uid: 6248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,371.5 - parent: 1 - - uid: 18032 + pos: -125.61828,-24.535345 + parent: 2 + - uid: 6316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,370.5 - parent: 1 - - uid: 18033 + pos: -130.64761,-13.512508 + parent: 2 +- proto: ShelfBar + entities: + - uid: 20238 components: - type: Transform rot: -1.5707963267948966 rad - pos: 413.5,368.5 - parent: 1 - - uid: 18034 + pos: -66.5,-35.5 + parent: 2 +- proto: ShelfWood + entities: + - uid: 2907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 413.5,367.5 - parent: 1 - - uid: 18041 + pos: -46.5,-7.5 + parent: 2 +- proto: ShellTranquilizer + entities: + - uid: 11626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,410.5 - parent: 1 - - uid: 18043 + pos: -23.408735,4.649517 + parent: 2 + - uid: 11627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,409.5 - parent: 1 - - uid: 18044 + pos: -23.283735,4.493267 + parent: 2 +- proto: ShipBattlemap + entities: + - uid: 26071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,408.5 - parent: 1 - - uid: 18045 + pos: -54.00101,-51.878323 + parent: 2 +- proto: Shiv + entities: + - uid: 8867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,407.5 - parent: 1 - - uid: 21193 + pos: -36.506596,-52.548405 + parent: 2 +- proto: ShotGunCabinetFilled + entities: + - uid: 17779 components: - type: Transform - pos: 424.5,390.5 - parent: 1 -- proto: ShuttersRadiation + pos: -88.5,-19.5 + parent: 2 +- proto: ShotGunCabinetOpen entities: - - uid: 6404 + - uid: 23750 components: - type: Transform - pos: 348.5,407.5 - parent: 1 - - uid: 6405 + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 +- proto: Shovel + entities: + - uid: 22014 components: - type: Transform - pos: 348.5,406.5 - parent: 1 - - uid: 6406 + pos: -92.58183,28.614473 + parent: 2 + - uid: 23394 components: - type: Transform - pos: 349.5,410.5 - parent: 1 - - uid: 6407 + pos: -98.571655,4.4201365 + parent: 2 +- proto: ShowcaseRobotAntique + entities: + - uid: 2812 components: - type: Transform - pos: 351.5,410.5 - parent: 1 -- proto: ShuttersWindow + pos: -64.5,-12.5 + parent: 2 +- proto: ShuttersNormal entities: - - uid: 20087 + - uid: 132 components: - type: Transform - pos: 447.5,412.5 - parent: 1 - - uid: 22152 + pos: -24.5,-22.5 + parent: 2 + - uid: 138 components: - type: Transform - pos: 447.5,411.5 - parent: 1 - - uid: 22153 + pos: -26.5,-22.5 + parent: 2 + - uid: 7272 components: - type: Transform - pos: 447.5,410.5 - parent: 1 - - uid: 22154 + pos: -115.5,-42.5 + parent: 2 + - uid: 7273 components: - type: Transform - pos: 446.5,413.5 - parent: 1 - - uid: 22155 + pos: -113.5,-42.5 + parent: 2 + - uid: 7274 components: - type: Transform - pos: 445.5,413.5 - parent: 1 - - uid: 22156 + pos: -114.5,-42.5 + parent: 2 + - uid: 7275 components: - type: Transform - pos: 442.5,409.5 - parent: 1 - - uid: 22157 + pos: -113.5,-48.5 + parent: 2 + - uid: 7276 components: - type: Transform - pos: 443.5,409.5 - parent: 1 - - uid: 22158 + pos: -114.5,-48.5 + parent: 2 + - uid: 7277 components: - type: Transform - pos: 444.5,409.5 - parent: 1 - - uid: 22159 + pos: -115.5,-48.5 + parent: 2 + - uid: 8820 components: - type: Transform - pos: 445.5,409.5 - parent: 1 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 5855 + pos: -13.5,-41.5 + parent: 2 + - uid: 8821 components: - type: Transform - pos: 317.5,383.5 - parent: 1 -- proto: ShuttleWindow - entities: - - uid: 16186 + pos: -13.5,-40.5 + parent: 2 + - uid: 8822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 16114 - - uid: 16187 + pos: -13.5,-39.5 + parent: 2 + - uid: 9078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 16114 - - uid: 16188 + pos: -35.5,-68.5 + parent: 2 + - uid: 9414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 16114 - - uid: 16189 + pos: -34.5,-68.5 + parent: 2 + - uid: 9769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 - parent: 16114 - - uid: 16190 + pos: -33.5,-68.5 + parent: 2 + - uid: 15252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 16114 - - uid: 16191 + pos: -33.5,-61.5 + parent: 2 + - uid: 15282 components: - type: Transform - pos: 2.5,2.5 - parent: 16114 - - uid: 16192 + pos: -34.5,-61.5 + parent: 2 + - uid: 15283 components: - type: Transform - pos: 2.5,3.5 - parent: 16114 - - uid: 16193 + pos: -35.5,-61.5 + parent: 2 + - uid: 19536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 16114 - - uid: 20734 + pos: -89.5,13.5 + parent: 2 + - uid: 19537 components: - type: Transform - pos: 3.5,-0.5 - parent: 20527 - - uid: 20735 + pos: -88.5,13.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 399 components: - type: Transform - pos: 4.5,-0.5 - parent: 20527 - - uid: 20736 + pos: -50.5,-8.5 + parent: 2 + - uid: 2958 components: - type: Transform - pos: 5.5,1.5 - parent: 20527 - - uid: 20737 + pos: -47.5,-9.5 + parent: 2 + - uid: 2959 components: - type: Transform - pos: 5.5,0.5 - parent: 20527 - - uid: 20738 + pos: -49.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 2960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 20527 - - uid: 20739 + pos: -49.5,-8.5 + parent: 2 + - uid: 2962 components: - type: Transform - pos: 2.5,2.5 - parent: 20527 - - uid: 20740 + pos: -52.5,-8.5 + parent: 2 + - uid: 2963 components: - type: Transform - pos: 5.5,2.5 - parent: 20527 - - uid: 20741 + pos: -51.5,-8.5 + parent: 2 + - uid: 2964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 20527 - - uid: 20742 + pos: -48.5,-8.5 + parent: 2 + - uid: 2998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 20527 - - uid: 20743 + pos: -53.5,-10.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 20527 - - uid: 20744 + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 20527 - - uid: 20745 + rot: -1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3830 components: - type: Transform - pos: 9.5,5.5 - parent: 20527 - - uid: 20746 + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3831 components: - type: Transform - pos: 8.5,6.5 - parent: 20527 - - uid: 20747 + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3832 components: - type: Transform - pos: 7.5,6.5 - parent: 20527 - - uid: 20748 + rot: -1.5707963267948966 rad + pos: -56.5,-31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3833 components: - type: Transform - pos: 7.5,1.5 - parent: 20527 - - uid: 20749 + rot: -1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3997 components: - type: Transform - pos: 6.5,1.5 - parent: 20527 -- proto: ShuttleWindowDiagonal - entities: - - uid: 16194 + rot: -1.5707963267948966 rad + pos: -56.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 3999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 16114 - - uid: 16195 + pos: -121.5,-82.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4457 components: - type: Transform - pos: -4.5,5.5 - parent: 16114 - - uid: 20750 + pos: -120.5,-81.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 20527 - - uid: 20751 + rot: -1.5707963267948966 rad + pos: -126.5,-73.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 20527 - - uid: 20752 + rot: -1.5707963267948966 rad + pos: -124.5,-73.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 20527 -- proto: SignAi - entities: - - uid: 18667 + pos: -124.5,-72.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4468 components: - type: Transform - pos: 315.5,410.5 - parent: 1 -- proto: SignAiUpload - entities: - - uid: 19121 + rot: -1.5707963267948966 rad + pos: -119.5,-82.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4469 components: - type: Transform - pos: 308.5,409.5 - parent: 1 - - uid: 19123 + rot: -1.5707963267948966 rad + pos: -124.5,-71.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6265 components: - type: Transform - pos: 306.5,409.5 - parent: 1 -- proto: SignalButton - entities: - - uid: 6409 + pos: -125.5,-13.5 + parent: 2 + - uid: 6306 components: - - type: MetaData - desc: Переключает радиоактивные ставни РИТЭГа - name: переключатель - type: Transform - pos: 348.5,413.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 6405: - - Pressed: Toggle - 6404: - - Pressed: Toggle - 6406: - - Pressed: Toggle - 6407: - - Pressed: Toggle - - uid: 14869 + pos: -121.5,-17.5 + parent: 2 + - uid: 6307 components: - - type: MetaData - desc: Активирует гермозатворы ИИ - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,410.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 14856: - - Pressed: Toggle - 14857: - - Pressed: Toggle - 14858: - - Pressed: Toggle - 14859: - - Pressed: Toggle - 14862: - - Pressed: Toggle - 14863: - - Pressed: Toggle - 14860: - - Pressed: Toggle - 14861: - - Pressed: Toggle - 14864: - - Pressed: Toggle - 14865: - - Pressed: Toggle - 14868: - - Pressed: Toggle - 14866: - - Pressed: Toggle - 14867: - - Pressed: Toggle - - uid: 15603 + pos: -121.5,-16.5 + parent: 2 + - uid: 6308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,410.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 6603: - - Pressed: Toggle - - Pressed: AutoClose - 6602: - - Pressed: Toggle - - Pressed: AutoClose - 6596: - - Pressed: AutoClose - - Pressed: Toggle - 6597: - - Pressed: AutoClose - - Pressed: Toggle - 6598: - - Pressed: AutoClose - - Pressed: Toggle - 6599: - - Pressed: AutoClose - - Pressed: Toggle - 6600: - - Pressed: AutoClose - - Pressed: Toggle - 6601: - - Pressed: AutoClose - - Pressed: Toggle - 6606: - - Pressed: AutoClose - - Pressed: Toggle - 6607: - - Pressed: AutoClose - - Pressed: Toggle - 6605: - - Pressed: AutoClose - - Pressed: Toggle - 6608: - - Pressed: AutoClose - - Pressed: Toggle - 6604: - - Pressed: AutoClose - - Pressed: Toggle - - uid: 21807 + pos: -121.5,-15.5 + parent: 2 + - uid: 6310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,28.5 - parent: 5072 - - type: DeviceLinkSource - linkedPorts: - 21725: - - Pressed: Toggle - 21722: - - Pressed: Toggle -- proto: SignalButtonBridge - entities: - - uid: 5737 + pos: -126.5,-13.5 + parent: 2 + - uid: 6797 components: - type: Transform - pos: 377.5,424.5 - parent: 1 -- proto: SignalButtonDirectional - entities: - - uid: 428 + rot: -1.5707963267948966 rad + pos: -101.5,-22.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6798 components: - - type: MetaData - desc: Закрывает камеру 2 - name: кнопка камеры 2 - type: Transform rot: -1.5707963267948966 rad - pos: 460.5,414.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3817: - - Pressed: DoorBolt - - uid: 429 + pos: -101.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6805 components: - - type: MetaData - desc: Закрывает камеру 1 - name: кнопка камеры 1 - type: Transform - rot: 3.141592653589793 rad - pos: 460.5,414.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3816: - - Pressed: DoorBolt - - uid: 2029 + rot: -1.5707963267948966 rad + pos: -101.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6817 components: - - type: MetaData - desc: Переключает ставни окон ГП. - type: Transform rot: -1.5707963267948966 rad - pos: 367.5,398.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4819: - - Pressed: Toggle - 4820: - - Pressed: Toggle - 3958: - - Pressed: Toggle - 3956: - - Pressed: Toggle - 3954: - - Pressed: Toggle - 2252: - - Pressed: Toggle - 1951: - - Pressed: Toggle - 1950: - - Pressed: Toggle - - uid: 2762 + pos: -101.5,-30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6818 components: - - type: MetaData - desc: Закрывает некоторые входы на мостик. - name: кнопка - type: Transform - pos: 379.5,419.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2753: - - Pressed: Toggle - 2703: - - Pressed: Toggle - 1353: - - Pressed: Toggle - 3057: - - Pressed: Toggle - 3056: - - Pressed: Toggle - 2733: - - Pressed: Toggle - 2732: - - Pressed: Toggle - 2738: - - Pressed: Toggle - 2725: - - Pressed: Toggle - - uid: 3055 + rot: -1.5707963267948966 rad + pos: -101.5,-31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 6820 components: - - type: MetaData - desc: Закрывает окна мостика - name: кнопка - type: Transform - pos: 379.5,424.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 14612: - - Pressed: Toggle - 5013: - - Pressed: Toggle - 5106: - - Pressed: Toggle - 9406: - - Pressed: Toggle - 5107: - - Pressed: Toggle - 3071: - - Pressed: Toggle - 3069: - - Pressed: Toggle - 14960: - - Pressed: Toggle - 3062: - - Pressed: Toggle - 3064: - - Pressed: Toggle - 3067: - - Pressed: Toggle - 3063: - - Pressed: Toggle - 3058: - - Pressed: Toggle - 3060: - - Pressed: Toggle - 3061: - - Pressed: Toggle - - uid: 3906 + rot: -1.5707963267948966 rad + pos: -101.5,-27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6867 components: - - type: MetaData - desc: Переключает ставни входа к ГП. - type: Transform - rot: 1.5707963267948966 rad - pos: 365.5,398.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3986: - - Pressed: Toggle - 3955: - - Pressed: Toggle - - uid: 9082 + rot: -1.5707963267948966 rad + pos: -101.5,-28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6883 components: - - type: MetaData - desc: Переключает ставни шаттла СБ. - type: Transform - rot: 1.5707963267948966 rad - pos: -3.4998322,4.2935977 - parent: 16114 - - type: DeviceLinkSource - linkedPorts: - 9081: - - Pressed: Toggle - 9071: - - Pressed: Toggle - 7520: - - Pressed: Toggle - 4880: - - Pressed: Toggle - - uid: 15830 + rot: -1.5707963267948966 rad + pos: -101.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6896 components: - type: Transform - pos: 343.5,405.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15829: - - Pressed: Toggle - - uid: 15831 + rot: -1.5707963267948966 rad + pos: -101.5,-32.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 9559 components: - - type: MetaData - desc: Переключает гермозатворы ксеноархеологии. - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,388.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2765: - - Pressed: Toggle - 2728: - - Pressed: Toggle - 2766: - - Pressed: Toggle - - uid: 15851 + rot: -1.5707963267948966 rad + pos: -101.5,-44.5 + parent: 2 + - uid: 9646 components: - - type: MetaData - desc: Переключает гермозатвор оружейной - name: переключатель - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,409.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2461: - - Pressed: Toggle - - uid: 15857 + pos: -91.5,-43.5 + parent: 2 + - uid: 10172 components: - - type: MetaData - desc: Переключает ставни бара. - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,391.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15854: - - Pressed: Toggle - 15853: - - Pressed: Toggle - 15852: - - Pressed: Toggle - 15858: - - Pressed: Toggle - - uid: 15859 + pos: -87.5,-43.5 + parent: 2 + - uid: 11159 components: - - type: MetaData - desc: Переключает ставни кухни. - type: Transform rot: -1.5707963267948966 rad - pos: 409.5,387.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15856: - - Pressed: Toggle - 15855: - - Pressed: Toggle - - uid: 15875 + pos: -101.5,-46.5 + parent: 2 + - uid: 11616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,401.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15874: - - Pressed: Toggle - - uid: 15876 + pos: -30.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,415.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15877: - - Pressed: Toggle - - uid: 15879 + pos: -28.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11620 components: - - type: MetaData - desc: Кнопка вызова уборщика - name: кнопка - type: Transform - pos: 421.5,394.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15878: - - Pressed: Toggle - - uid: 15881 + pos: -28.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11621 components: - type: Transform - pos: 403.5,419.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 15880: - - Pressed: Toggle - - uid: 16200 + pos: -30.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11622 components: - - type: MetaData - desc: Переключает гермозатвор каптильни ТЭГа. - type: Transform - rot: 1.5707963267948966 rad - pos: 318.5,424.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 12246: - - Pressed: Toggle - - uid: 16320 + rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11623 components: - - type: MetaData - desc: Переключает ставни у психолога. - name: переключатель - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,414.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 16317: - - Pressed: Toggle - 16315: - - Pressed: Toggle - - uid: 16321 + pos: -27.5,6.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11624 components: - - type: MetaData - desc: Переключает ставни кабинета психолога. - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,413.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 16319: - - Pressed: Toggle - 16318: - - Pressed: Toggle - 16316: - - Pressed: Toggle - - uid: 17307 + pos: -27.5,5.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 14139 components: - - type: MetaData - desc: Переключает гермозатворы к УЧу - name: переключатель - type: Transform rot: 1.5707963267948966 rad - pos: 304.5,385.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3837: - - Pressed: Toggle - 1522: - - Pressed: Toggle - 974: - - Pressed: Toggle - - uid: 17574 + pos: -131.5,-47.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 14140 components: - - type: MetaData - desc: Переключает гермозатворы EVA - name: переключатель - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,400.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3460: - - Pressed: Toggle - 2630: - - Pressed: Toggle - 2070: - - Pressed: Toggle - - uid: 18035 + rot: 1.5707963267948966 rad + pos: -131.5,-46.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 14141 components: - type: Transform - pos: 410.5,372.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18031: - - Pressed: Toggle - 18032: - - Pressed: Toggle - 3655: - - Pressed: DoorBolt - - uid: 18036 + rot: 1.5707963267948966 rad + pos: -131.5,-44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 14142 components: - type: Transform - pos: 410.5,369.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18033: - - Pressed: Toggle - 18034: - - Pressed: Toggle - 3656: - - Pressed: DoorBolt - - uid: 18037 + rot: 1.5707963267948966 rad + pos: -131.5,-43.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 17815 components: - type: Transform - pos: 417.5,369.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 605: - - Pressed: DoorBolt - - uid: 18038 + rot: -1.5707963267948966 rad + pos: -93.5,-17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 17819 components: - type: Transform - pos: 417.5,372.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3658: - - Pressed: DoorBolt - - uid: 18039 + rot: -1.5707963267948966 rad + pos: -93.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 17820 components: - - type: MetaData - desc: Переключает ставни хим. лаборатории - name: переключатель - type: Transform - pos: 407.5,410.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18041: - - Pressed: Toggle - 2069: - - Pressed: Toggle - 18043: - - Pressed: Toggle - 18044: - - Pressed: Toggle - 18045: - - Pressed: Toggle - - uid: 18046 + rot: -1.5707963267948966 rad + pos: -93.5,-19.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 19528 components: - - type: MetaData - desc: Переключает ставни переговорной - name: переключатель - type: Transform - pos: 379.5,408.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3095: - - Pressed: Toggle - 3093: - - Pressed: Toggle - 3096: - - Pressed: Toggle - - uid: 18241 + rot: 1.5707963267948966 rad + pos: -85.5,33.5 + parent: 2 + - uid: 19529 components: - - type: MetaData - desc: Переключает гермозатвор мусорки. - name: кнопка - type: Transform rot: 1.5707963267948966 rad - pos: 326.5,439.5 - parent: 1 - - uid: 18632 + pos: -85.5,34.5 + parent: 2 + - uid: 19530 components: - type: Transform - pos: 337.5,436.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18631: - - Pressed: Forward - 18628: - - Pressed: Forward - 18630: - - Pressed: Forward - 18629: - - Pressed: Forward - - uid: 21141 + rot: 1.5707963267948966 rad + pos: -85.5,35.5 + parent: 2 + - uid: 19531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,360.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4353: - - Pressed: DoorBolt - - uid: 21142 + pos: -83.5,30.5 + parent: 2 + - uid: 19532 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,360.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4354: - - Pressed: DoorBolt - - uid: 21143 + pos: -83.5,29.5 + parent: 2 + - uid: 19533 components: - type: Transform rot: 1.5707963267948966 rad - pos: 424.5,360.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4355: - - Pressed: DoorBolt - - uid: 21165 + pos: -83.5,28.5 + parent: 2 + - uid: 19534 components: - - type: MetaData - desc: Переключает ставни робототехники - type: Transform - pos: 340.5,399.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3717: - - Pressed: Toggle - 3718: - - Pressed: Toggle - - uid: 21270 + pos: -85.5,26.5 + parent: 2 + - uid: 19535 components: - - type: MetaData - desc: Переключает СТРОБОСКОБ - name: кнопка "ВИУВИУ" - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 16114 - - type: DeviceLinkSource - linkedPorts: - 21269: - - Pressed: Toggle -- proto: SignalSwitch - entities: - - uid: 21673 + pos: -87.5,26.5 + parent: 2 + - uid: 22373 components: - - type: MetaData - name: EVA door toggle - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,27.5 - parent: 5072 -- proto: SignAnomaly - entities: - - uid: 18680 + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 22374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,391.5 - parent: 1 -- proto: SignAnomaly2 - entities: - - uid: 18681 + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - uid: 22375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,396.5 - parent: 1 -- proto: SignArmory - entities: - - uid: 18690 + rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - uid: 25385 components: - type: Transform - pos: 428.5,409.5 - parent: 1 -- proto: SignAtmos - entities: - - uid: 20445 + rot: -1.5707963267948966 rad + pos: -126.5,-72.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25386 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 20181 -- proto: SignBar - entities: - - uid: 18281 + pos: -126.5,-71.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,443.5 - parent: 1 -- proto: SignBlankMed - entities: - - uid: 18701 + rot: 1.5707963267948966 rad + pos: -116.5,-71.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25388 components: - type: Transform - pos: 348.5,405.5 - parent: 1 -- proto: SignBridge - entities: - - uid: 21671 + rot: 1.5707963267948966 rad + pos: -116.5,-72.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25389 components: - type: Transform - pos: 5.5,22.5 - parent: 5072 -- proto: SignCansScience - entities: - - uid: 5662 + rot: 1.5707963267948966 rad + pos: -116.5,-73.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,390.5 - parent: 1 -- proto: SignCargo - entities: - - uid: 5617 + rot: 1.5707963267948966 rad + pos: -114.5,-73.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25391 components: - type: Transform - pos: 363.5,391.5 - parent: 1 - - uid: 18692 + rot: 1.5707963267948966 rad + pos: -114.5,-72.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25392 components: - type: Transform - pos: 373.5,389.5 - parent: 1 -- proto: SignCargoDock - entities: - - uid: 5635 + rot: 1.5707963267948966 rad + pos: -114.5,-71.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 25623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,382.5 - parent: 1 - - uid: 5636 + rot: 1.5707963267948966 rad + pos: -66.5,-29.5 + parent: 2 + - uid: 25624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,377.5 - parent: 1 -- proto: SignChapel - entities: - - uid: 20045 + rot: 1.5707963267948966 rad + pos: -66.5,-30.5 + parent: 2 + - uid: 25625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,438.5 - parent: 1 -- proto: SignChem - entities: - - uid: 18697 + rot: 1.5707963267948966 rad + pos: -66.5,-31.5 + parent: 2 + - uid: 25626 components: - type: Transform - pos: 407.5,412.5 - parent: 1 -- proto: SignConference + rot: 1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 +- proto: ShuttersWindow entities: - - uid: 18670 + - uid: 3976 components: - type: Transform - pos: 376.5,405.5 - parent: 1 - - uid: 21672 + pos: -25.5,-22.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 11617 components: - type: Transform - pos: 1.5,26.5 - parent: 5072 -- proto: SignCryo - entities: - - uid: 185 + pos: -29.5,4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 11618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,373.5 - parent: 1 -- proto: SignCryogenics + pos: -29.5,8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: ShuttleConsoleCircuitboard entities: - - uid: 15127 + - uid: 1127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,415.5 - parent: 1 -- proto: SignDirectionalAtmos + pos: -29.41005,-72.5363 + parent: 2 +- proto: ShuttleWindow entities: - - uid: 3957 + - uid: 4384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5071,401.71375 - parent: 1 -- proto: SignDirectionalBar + rot: 3.141592653589793 rad + pos: -42.5,-73.5 + parent: 2 +- proto: SignAi entities: - - uid: 2157 + - uid: 25372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 382.5071,401.2909 - parent: 1 - - uid: 3637 + pos: -118.5,-75.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 25373 components: - type: Transform rot: 1.5707963267948966 rad - pos: 402.5,394.5 - parent: 1 - - uid: 19063 + pos: -118.5,-69.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 5657 components: + - type: MetaData + name: signal button (Burn Chamber Vent) - type: Transform - rot: 1.5707963267948966 rad - pos: 387.50238,395.71677 - parent: 1 - - uid: 19086 + pos: -114.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5666: + - Pressed: Trigger + 669: + - Pressed: Toggle + - type: Label + currentLabel: Burn Chamber Vent + - type: NameModifier + baseName: signal button + - uid: 5989 components: + - type: MetaData + name: signal button (Vent Chamber) - type: Transform - pos: 411.49896,394.71176 - parent: 1 - - uid: 19125 + rot: 1.5707963267948966 rad + pos: -148.5,4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5948: + - Pressed: Toggle + - type: Label + currentLabel: Vent Chamber + - type: NameModifier + baseName: signal button + - uid: 17823 components: + - type: MetaData + name: signal button (Open Doors) - type: Transform rot: 3.141592653589793 rad - pos: 414.4962,361.27972 - parent: 1 - - uid: 19126 + pos: -92.5,-19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1946: + - Pressed: Toggle + 1936: + - Pressed: Toggle + - type: Label + currentLabel: Open Doors + - type: NameModifier + baseName: signal button +- proto: SignalButtonDirectional + entities: + - uid: 1481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,376.5 - parent: 1 -- proto: SignDirectionalBridge - entities: - - uid: 4536 + pos: -69.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3776: + - Pressed: DoorBolt + - uid: 1521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.499,401.72568 - parent: 1 - - uid: 19073 + pos: -59.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3779: + - Pressed: DoorBolt + - uid: 2591 components: + - type: MetaData + name: signal button (Space Blast Doors) - type: Transform - rot: 3.141592653589793 rad - pos: 405.4999,377.71936 - parent: 1 -- proto: SignDirectionalBrig - entities: - - uid: 743 + pos: -97.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3300: + - Pressed: Toggle + - type: Label + currentLabel: Space Blast Doors + - type: NameModifier + baseName: signal button + - uid: 3619 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,398.5 - parent: 1 - - uid: 3636 + pos: -59.5,-59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3780: + - Pressed: DoorBolt + - uid: 3810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.49707,401.71402 - parent: 1 - - uid: 19064 + pos: -67.5,-59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3771: + - Pressed: DoorBolt + - uid: 3811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.50238,395.2895 - parent: 1 -- proto: SignDirectionalChapel - entities: - - uid: 4801 + pos: -67.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3772: + - Pressed: DoorBolt + - uid: 4222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,405.5 - parent: 1 - - uid: 20100 + pos: -38.5,-48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4096: + - Pressed: DoorBolt + - uid: 6068 components: + - type: MetaData + name: signal button (Ignite Chamber) - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,405.5 - parent: 1 - - uid: 20101 + pos: -145.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6071: + - Pressed: Trigger + - type: Label + currentLabel: Ignite Chamber + - type: NameModifier + baseName: signal button + - uid: 6069 components: + - type: MetaData + name: signal button (Vent Chamber) - type: Transform - rot: 3.141592653589793 rad - pos: 353.49738,410.28232 - parent: 1 - - uid: 20102 + pos: -144.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5948: + - Pressed: Toggle + - type: Label + currentLabel: Vent Chamber + - type: NameModifier + baseName: signal button + - uid: 6163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.50003,430.71744 - parent: 1 - - uid: 20103 + rot: 1.5707963267948966 rad + pos: -112.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6157: + - Pressed: DoorBolt + - uid: 6164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5006,436.71692 - parent: 1 - - uid: 20104 + rot: 1.5707963267948966 rad + pos: -110.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6156: + - Pressed: DoorBolt + - uid: 6168 components: + - type: MetaData + name: signal button (Vent Chamber) - type: Transform - rot: 3.141592653589793 rad - pos: 343.5018,436.71698 - parent: 1 - - uid: 20105 + pos: -138.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5948: + - Pressed: Toggle + - type: Label + currentLabel: Vent Chamber + - type: NameModifier + baseName: signal button + - uid: 6169 components: + - type: MetaData + name: signal button (Ignite Chamber) - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5011,435.2834 - parent: 1 - - uid: 20106 + pos: -139.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6071: + - Pressed: Trigger + - type: Label + currentLabel: Ignite Chamber + - type: NameModifier + baseName: signal button + - uid: 19541 components: + - type: MetaData + name: signal button (Dock Blast Doors) - type: Transform - rot: 3.141592653589793 rad - pos: 324.49875,431.2838 - parent: 1 - - uid: 20108 + rot: -1.5707963267948966 rad + pos: -83.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19524: + - Pressed: Toggle + - type: Label + currentLabel: Dock Blast Doors + - type: NameModifier + baseName: signal button + - uid: 19560 + components: + - type: MetaData + name: signal button (Dock Blast Doors) + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19525: + - Pressed: Toggle + - type: Label + currentLabel: Dock Blast Doors + - type: NameModifier + baseName: signal button + - uid: 19735 components: + - type: MetaData + name: signal button (Salvage Blast Doors) - type: Transform rot: 3.141592653589793 rad - pos: 361.5,394.5 - parent: 1 -- proto: SignDirectionalCryo - entities: - - uid: 3982 + pos: -97.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23508: + - Pressed: Toggle + - type: Label + currentLabel: Salvage Blast Doors + - type: NameModifier + baseName: signal button + - uid: 19741 components: + - type: MetaData + name: signal button (Disposals Blast Doors) - type: Transform - rot: 1.5707963267948966 rad - pos: 382.4983,405.71597 - parent: 1 - - uid: 4621 + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7764: + - Pressed: Toggle + - type: Label + currentLabel: Disposals Blast Doors + - type: NameModifier + baseName: signal button + - uid: 21465 components: + - type: MetaData + name: signal button (Disposals Blast Doors) - type: Transform rot: 1.5707963267948966 rad - pos: 363.499,401.2764 - parent: 1 - - uid: 19071 + pos: -97.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7766: + - Pressed: Toggle + - type: Label + currentLabel: Disposals Blast Doors + - type: NameModifier + baseName: signal button + - uid: 22347 components: + - type: MetaData + name: signal button (Space Blast Doors) - type: Transform - rot: 1.5707963267948966 rad - pos: 406.5,374.5 - parent: 1 - - uid: 19124 + pos: -102.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16763: + - Pressed: Trigger + - type: Label + currentLabel: Space Blast Doors + - type: NameModifier + baseName: signal button + - uid: 24029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.4962,361.7158 - parent: 1 -- proto: SignDirectionalDorms - entities: - - uid: 19066 + rot: -1.5707963267948966 rad + pos: -69.5,-59.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14940: + - Pressed: DoorBolt + - uid: 25417 components: - type: Transform - pos: 405.49786,394.71738 - parent: 1 -- proto: SignDirectionalEng + rot: 1.5707963267948966 rad + pos: -131.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12466: + - Pressed: DoorBolt + - uid: 25418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -129.5,-53.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12043: + - Pressed: DoorBolt +- proto: SignalSwitch entities: - - uid: 2187 + - uid: 1217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.50174,405.28455 - parent: 1 - - uid: 4817 + pos: -32.5,-68.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9769: + - On: Open + - Off: Close + 9414: + - On: Open + - Off: Close + 9078: + - On: Open + - Off: Close + - uid: 1220 components: - type: Transform rot: -1.5707963267948966 rad - pos: 382.5,405.5 - parent: 1 - - uid: 19067 + pos: -32.5,-61.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15252: + - On: Open + - Off: Close + 15282: + - On: Open + - Off: Close + 15283: + - On: Open + - Off: Close + - uid: 2791 components: + - type: MetaData + name: signal switch (Bridge Entrance Blastdoors) - type: Transform - rot: -1.5707963267948966 rad - pos: 405.49786,394.2857 - parent: 1 - - uid: 19120 + pos: -60.5,4.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2795: + - On: Open + - Off: Close + 2796: + - On: Open + - Off: Close + 2793: + - On: Open + - Off: Close + 2794: + - On: Open + - Off: Close + 1825: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Bridge Entrance Blastdoors + - type: NameModifier + baseName: signal switch + - uid: 2792 components: + - type: MetaData + name: signal switch (Bridge Window Blastdoors) - type: Transform rot: 3.141592653589793 rad - pos: 414.5,361.5 - parent: 1 -- proto: SignDirectionalEvac - entities: - - uid: 19081 + pos: -60.5,4.25 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2773: + - On: Open + - Off: Close + 2775: + - On: Open + - Off: Close + 2776: + - On: Open + - Off: Close + 2777: + - On: Open + - Off: Close + 2779: + - On: Open + - Off: Close + 2780: + - On: Open + - Off: Close + 2782: + - On: Open + - Off: Close + 2783: + - On: Open + - Off: Close + 2784: + - On: Open + - Off: Close + 2785: + - On: Open + - Off: Close + 2787: + - On: Open + - Off: Close + 2786: + - On: Open + - Off: Close + 2788: + - On: Open + - Off: Close + 2789: + - On: Open + - Off: Close + 2790: + - On: Open + - Off: Close + 2781: + - On: Open + - Off: Close + 2778: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Bridge Window Blastdoors + - type: NameModifier + baseName: signal switch + - uid: 2965 components: + - type: MetaData + name: signal switch (Line Shutters) - type: Transform - rot: -1.5707963267948966 rad - pos: 414.49872,373.29907 - parent: 1 -- proto: SignDirectionalFood - entities: - - uid: 4816 + pos: -50.5,-7.35 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2959: + - On: Open + - Off: Close + 2998: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Line Shutters + - type: NameModifier + baseName: signal switch + - uid: 2999 components: + - type: MetaData + name: signal switch (Window Shutters) - type: Transform - rot: 1.5707963267948966 rad - pos: 402.49792,394.7155 - parent: 1 - - uid: 19065 + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 2962: + - On: Open + - Off: Close + 2963: + - On: Open + - Off: Close + 399: + - On: Open + - Off: Close + 2960: + - On: Open + - Off: Close + 2964: + - On: Open + - Off: Close + 2958: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Window Shutters + - type: NameModifier + baseName: signal switch + - uid: 4618 components: - type: Transform - pos: 411.5,394.5 - parent: 1 -- proto: SignDirectionalGravity - entities: - - uid: 19122 + pos: -32.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25628: + - On: On + - Off: Off + - uid: 7079 components: - type: Transform rot: 3.141592653589793 rad - pos: 371.5,408.5 - parent: 1 -- proto: SignDirectionalHop - entities: - - uid: 3638 + pos: -122.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7134: + - On: On + - Off: Off + - uid: 7335 components: + - type: MetaData + name: signal switch (Warehouse Shutters) - type: Transform rot: -1.5707963267948966 rad - pos: 410.50018,398.70932 - parent: 1 - - uid: 3961 + pos: -87.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19537: + - On: Open + - Off: Close + 19536: + - On: Open + - Off: Close + - type: Label + currentLabel: Warehouse Shutters + - type: NameModifier + baseName: signal switch + - uid: 8624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,401.5 - parent: 1 -- proto: SignDirectionalHydro - entities: - - uid: 1737 + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 11622: + - On: Open + - Off: Close + 11623: + - On: Open + - Off: Close + 11624: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 11613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.50018,398.28204 - parent: 1 - - uid: 4815 + pos: -26.5,7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 11619: + - On: Open + - Off: Close + 11617: + - On: Open + - Off: Close + 11616: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 11614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.50235,394.29266 - parent: 1 -- proto: SignDirectionalJanitor - entities: - - uid: 19076 + rot: 3.141592653589793 rad + pos: -26.5,7.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 11620: + - On: Open + - Off: Close + 11618: + - On: Open + - Off: Close + 11621: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 17822 components: + - type: MetaData + name: signal switch (Desk Shutters) - type: Transform - rot: 1.5707963267948966 rad - pos: 378.4995,395.71542 - parent: 1 - - uid: 19077 + rot: 3.141592653589793 rad + pos: -92.8,-19.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 17820: + - On: Open + - Off: Close + 17819: + - On: Open + - Off: Close + 17815: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Desk Shutters + - type: NameModifier + baseName: signal switch + - uid: 22376 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5008,374.71832 - parent: 1 - - uid: 19080 + pos: -22.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22373: + - On: Open + - Off: Close + 22374: + - On: Open + - Off: Close + 22375: + - On: Open + - Off: Close + - uid: 25663 components: - type: Transform - pos: 414.49872,373.7043 - parent: 1 -- proto: SignDirectionalLibrary + rot: 1.5707963267948966 rad + pos: -93.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18983: + - On: On + - Off: Off +- proto: SignalSwitchDirectional entities: - - uid: 19061 + - uid: 3053 components: - type: Transform - pos: 405.5,394.5 - parent: 1 - - uid: 19062 + pos: -124.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6265: + - On: Open + - Off: Close + 6310: + - On: Open + - Off: Close + 6308: + - On: Open + - Off: Close + 6307: + - On: Open + - Off: Close + 6306: + - On: Open + - Off: Close + - uid: 3834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 387.5,395.5 - parent: 1 -- proto: SignDirectionalMed - entities: - - uid: 3479 + pos: -56.5,-28.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 3830: + - On: Open + - Off: Close + 3831: + - On: Open + - Off: Close + 3832: + - On: Open + - Off: Close + 3833: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 3974 components: + - type: MetaData + name: signal switch (Paramedic Shutters) - type: Transform rot: 1.5707963267948966 rad - pos: 382.5049,405.2667 - parent: 1 - - uid: 19072 + pos: -27.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 138: + - On: Open + - Off: Close + 3976: + - On: Open + - Off: Close + 132: + - On: Open + - Off: Close + 3985: + - On: On + - Off: Off + - type: Label + currentLabel: Paramedic Shutters + - type: NameModifier + baseName: signal switch + - uid: 3996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,377.5 - parent: 1 - - uid: 19087 + rot: 1.5707963267948966 rad + pos: -56.5,-24.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 3997: + - On: Open + - Off: Close + 3998: + - On: Open + - Off: Close + 3999: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 6852 components: + - type: MetaData + name: signal switch (Perma Lockdown) - type: Transform - rot: 3.141592653589793 rad - pos: 411.49896,394.2801 - parent: 1 -- proto: SignDirectionalSalvage - entities: - - uid: 19118 + rot: -1.5707963267948966 rad + pos: -89.5,-35.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4818: + - On: Open + - Off: Close + 6757: + - On: Open + - Off: Close + 6659: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Perma Lockdown + - type: NameModifier + baseName: signal switch + - uid: 8067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,384.5 - parent: 1 - - uid: 19119 + pos: -145.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13676: + - On: Open + - Off: Close + 13637: + - Off: Close + - On: Open + 13665: + - On: Open + - Off: Close + - uid: 8073 components: - type: Transform - pos: 360.5,383.5 - parent: 1 -- proto: SignDirectionalSci - entities: - - uid: 1946 + rot: 3.141592653589793 rad + pos: -145.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13625: + - On: Open + - Off: Close + 7181: + - On: Open + - Off: Close + 1798: + - On: Open + - Off: Close + - uid: 8823 components: - type: Transform - pos: 402.5,401.5 - parent: 1 - - uid: 3639 + pos: -12.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8822: + - On: Open + - Off: Close + 8821: + - On: Open + - Off: Close + 8820: + - On: Open + - Off: Close + - uid: 10204 components: + - type: MetaData + name: signal switch (Cell Shutters) - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,401.5 - parent: 1 - - uid: 19074 + rot: 3.141592653589793 rad + pos: -89.5,-40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9646: + - On: Open + - Off: Close + 10172: + - On: Open + - Off: Close + - type: Label + currentLabel: Cell Shutters + - type: NameModifier + baseName: signal switch + - uid: 11163 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.50067,377.2877 - parent: 1 -- proto: SignDirectionalSolar - entities: - - uid: 19095 + pos: -100.5,-48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11159: + - On: Open + - Off: Close + 9559: + - On: Open + - Off: Close + - uid: 16924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 404.5,424.5 - parent: 1 - - uid: 19096 + rot: -1.5707963267948966 rad + pos: -66.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25626: + - On: Open + - Off: Close + 25625: + - On: Open + - Off: Close + 25624: + - On: Open + - Off: Close + 25623: + - On: Open + - Off: Close + - uid: 17816 components: + - type: MetaData + name: signal switch (Perma Lockdown) - type: Transform rot: 1.5707963267948966 rad - pos: 414.5,425.5 - parent: 1 - - uid: 19097 + pos: -93.5,-21.8 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 6659: + - On: Open + - Off: Close + 6757: + - On: Open + - Off: Close + 4818: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Perma Lockdown + - type: NameModifier + baseName: signal switch + - uid: 17817 components: + - type: MetaData + name: signal switch (Cell Shutters) - type: Transform rot: 1.5707963267948966 rad - pos: 394.5,423.5 - parent: 1 - - uid: 19098 + pos: -93.5,-21.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 6797: + - On: Open + - Off: Close + 6805: + - On: Open + - Off: Close + 6798: + - On: Open + - Off: Close + 6883: + - On: Open + - Off: Close + 6820: + - On: Open + - Off: Close + 6867: + - On: Open + - Off: Close + 6817: + - On: Open + - Off: Close + 6818: + - On: Open + - Off: Close + 6896: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Cell Shutters + - type: NameModifier + baseName: signal switch + - uid: 17818 components: + - type: MetaData + name: signal switch (Entrance Lockdown) - type: Transform rot: 1.5707963267948966 rad - pos: 420.5,423.5 - parent: 1 - - uid: 19099 + pos: -93.5,-21.2 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 17813: + - On: Open + - Off: Close + 17814: + - On: Open + - Off: Close + 9642: + - On: Open + - Off: Close + lastSignals: + Status: True + - type: Label + currentLabel: Entrance Lockdown + - type: NameModifier + baseName: signal switch + - uid: 19538 components: + - type: MetaData + name: signal switch (Privacy Shutters) - type: Transform rot: -1.5707963267948966 rad - pos: 420.5,366.5 - parent: 1 - - uid: 19100 + pos: -83.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19533: + - On: Open + - Off: Close + 19532: + - On: Open + - Off: Close + 19531: + - On: Open + - Off: Close + 19534: + - On: Open + - Off: Close + 19535: + - On: Open + - Off: Close + 19528: + - On: Open + - Off: Close + 19529: + - On: Open + - Off: Close + 19530: + - On: Open + - Off: Close + - type: Label + currentLabel: Privacy Shutters + - type: NameModifier + baseName: signal switch + - uid: 22810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7272: + - On: Open + - Off: Close + 7274: + - On: Open + - Off: Close + 7273: + - Off: Close + - On: Open + - uid: 22811 + components: + - type: Transform + pos: -116.5,-48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7277: + - On: Open + - Off: Close + 7276: + - On: Open + - Off: Close + 7275: + - On: Open + - Off: Close + - uid: 24811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 3344: + - On: Open + - Off: Close + 3382: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 25393 components: - type: Transform - pos: 423.5,371.5 - parent: 1 - - uid: 19101 + rot: 1.5707963267948966 rad + pos: -124.5,-74.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4466: + - On: Open + - Off: Close + 4467: + - On: Open + - Off: Close + 4469: + - On: Open + - Off: Close + 4459: + - On: Open + - Off: Close + 25385: + - On: Open + - Off: Close + 25386: + - On: Open + - Off: Close + 25389: + - On: Open + - Off: Close + 25388: + - On: Open + - Off: Close + 25387: + - On: Open + - Off: Close + 25392: + - On: Open + - Off: Close + 25391: + - Off: Close + - On: Open + 25390: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 25397 components: - type: Transform - pos: 423.5,378.5 - parent: 1 - - uid: 19102 + pos: -119.5,-81.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4457: + - On: Open + - Off: Close + 4468: + - On: Open + - Off: Close + 4456: + - On: Open + - Off: Close + lastSignals: + Status: True + - uid: 25613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,366.5 - parent: 1 - - uid: 19103 + pos: -69.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9583: + - On: On + - Off: Off + - uid: 25656 components: - type: Transform rot: -1.5707963267948966 rad - pos: 403.5,364.5 - parent: 1 - - uid: 19104 - components: - - type: Transform - pos: 435.5,390.5 - parent: 1 - - uid: 19105 + pos: -54.5,-8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25654: + - On: On + - Off: Off + - uid: 25659 components: - type: Transform - pos: 435.5,402.5 - parent: 1 - - uid: 19106 + pos: -112.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25657: + - On: On + - Off: Off + - uid: 25661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,384.5 - parent: 1 - - uid: 19107 + rot: 3.141592653589793 rad + pos: -98.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17852: + - On: On + - Off: Off + - uid: 25694 components: - type: Transform rot: -1.5707963267948966 rad - pos: 341.5,382.5 - parent: 1 - - uid: 19108 + pos: -131.5,-48.5 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 14139: + - On: Open + - Off: Close + 14140: + - On: Open + - Off: Close + 14141: + - On: Open + - Off: Close + 14142: + - On: Open + - Off: Close + lastSignals: + Status: True +- proto: SignalTimer + entities: + - uid: 16763 components: - type: Transform - pos: 335.5,381.5 - parent: 1 - - uid: 19109 + rot: 3.141592653589793 rad + pos: -102.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4631: + - Start: Open + - Timer: Close +- proto: SignAnomaly + entities: + - uid: 8081 components: - type: Transform - pos: 335.5,391.5 - parent: 1 - - uid: 19110 + pos: -137.5,-38.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 7372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,435.5 - parent: 1 - - uid: 19111 + pos: -131.5,-37.5 + parent: 2 +- proto: SignArcade + entities: + - uid: 16484 components: - type: Transform - pos: 324.5,431.5 - parent: 1 - - uid: 19112 + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 15880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,436.5 - parent: 1 - - uid: 19113 + rot: 1.5707963267948966 rad + pos: -81.5,-24.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 25602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,436.5 - parent: 1 - - uid: 19114 + rot: 3.141592653589793 rad + pos: -117.5,-7.5 + parent: 2 +- proto: SignBar + entities: + - uid: 15030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,430.5 - parent: 1 - - uid: 19115 + pos: -66.5,-34.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 2507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,416.5 - parent: 1 - - uid: 19116 + pos: -27.5,-50.5 + parent: 2 + - uid: 9210 components: - type: Transform rot: 3.141592653589793 rad - pos: 358.5,410.5 - parent: 1 - - uid: 19117 + pos: -23.5,-57.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 19161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,410.5 - parent: 1 - - uid: 20107 + pos: -65.5,-10.5 + parent: 2 + - uid: 24510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.50317,405.71542 - parent: 1 -- proto: SignDirectionalSupply + pos: -57.5,-10.5 + parent: 2 +- proto: SignCans entities: - - uid: 3959 + - uid: 5805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.49707,401.28674 - parent: 1 - - uid: 19075 + rot: 1.5707963267948966 rad + pos: -114.5,15.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 16508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,395.5 - parent: 1 -- proto: SignDirectionalWash + pos: -97.5,12.5 + parent: 2 +- proto: SignChapel entities: - - uid: 19078 + - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 406.5008,374.28662 - parent: 1 - - uid: 19079 + pos: -55.5,-43.5 + parent: 2 +- proto: SignChem + entities: + - uid: 2494 components: - type: Transform - pos: 414.5,373.5 - parent: 1 -- proto: SignDisposalSpace + pos: -35.5,-22.5 + parent: 2 +- proto: SignCloning entities: - - uid: 18684 + - uid: 4199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,438.5 - parent: 1 -- proto: SignEngine + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 +- proto: SignCryo entities: - - uid: 18700 + - uid: 2500 components: - type: Transform - pos: 350.5,413.5 - parent: 1 - - uid: 20446 + pos: -27.5,-32.5 + parent: 2 + - uid: 19590 components: - type: Transform - pos: 9.5,2.5 - parent: 20181 -- proto: SignEngineering + rot: 1.5707963267948966 rad + pos: -66.5,-17.5 + parent: 2 +- proto: SignCryogenicsMed entities: - - uid: 6693 + - uid: 4207 components: - type: Transform - pos: 332.5,405.5 - parent: 1 -- proto: SignEVA + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 +- proto: SignDangerMed entities: - - uid: 18936 + - uid: 26057 components: - type: Transform - pos: 330.5,401.5 - parent: 1 - - uid: 18937 + pos: -101.5,-1.5 + parent: 2 + - uid: 26059 components: - type: Transform - pos: 336.5,394.5 - parent: 1 -- proto: SignHead + pos: -93.5,-58.5 + parent: 2 +- proto: SignDirectionalAtmos entities: - - uid: 781 + - uid: 812 components: - type: Transform - pos: 363.5,398.5 - parent: 1 -- proto: SignInterrogation + rot: -1.5707963267948966 rad + pos: -106.5,-8.4 + parent: 2 + - uid: 24161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,17.8 + parent: 2 +- proto: SignDirectionalBar entities: - - uid: 5012 + - uid: 24507 components: - type: Transform rot: 3.141592653589793 rad - pos: 417.5,405.5 - parent: 1 -- proto: SignJanitor + pos: -66.5,-50.4 + parent: 2 +- proto: SignDirectionalBridge entities: - - uid: 18696 + - uid: 15867 components: - type: Transform - pos: 413.5,363.5 - parent: 1 -- proto: SignKitchen - entities: - - uid: 18678 + rot: 1.5707963267948966 rad + pos: -99.5,-11.4 + parent: 2 + - uid: 19889 components: - type: Transform - pos: 409.5,394.5 - parent: 1 -- proto: SignLawyer - entities: - - uid: 5200 + rot: -1.5707963267948966 rad + pos: -27.5,-10.2 + parent: 2 + - uid: 22131 components: - type: Transform - pos: 441.5,409.5 - parent: 1 -- proto: SignLibrary + rot: 3.141592653589793 rad + pos: -71.5,-54.2 + parent: 2 +- proto: SignDirectionalChapel entities: - - uid: 13779 + - uid: 15862 + components: + - type: Transform + pos: -62.5,-36.6 + parent: 2 + - uid: 24506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,361.5 - parent: 1 -- proto: SignMaterials + pos: -62.5,-50.6 + parent: 2 +- proto: SignDirectionalCryo entities: - - uid: 18682 + - uid: 9650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,385.5 - parent: 1 -- proto: SignMorgue - entities: - - uid: 18683 + pos: -92.5,-48.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-13.2 + parent: 2 + - uid: 15869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -99.5,-11.2 + parent: 2 + - uid: 19904 components: - type: Transform rot: 3.141592653589793 rad - pos: 398.5,420.5 - parent: 1 -- proto: SignNews + pos: -66.5,-50.2 + parent: 2 +- proto: SignDirectionalDorms entities: - - uid: 18688 + - uid: 16423 components: - type: Transform - pos: 401.5,375.5 - parent: 1 -- proto: SignNTMine - entities: - - uid: 18668 + rot: 1.5707963267948966 rad + pos: -77.5,-58.5 + parent: 2 + - uid: 24508 components: - type: Transform - pos: 358.5,379.5 - parent: 1 -- proto: SignPlaque + pos: -66.5,-50.6 + parent: 2 +- proto: SignDirectionalEng entities: - - uid: 4294 + - uid: 3304 components: - type: Transform - pos: 327.5,399.5 - parent: 1 -- proto: SignPrison - entities: - - uid: 18695 + pos: -105.5,-0.5 + parent: 2 + - uid: 14748 components: - type: Transform - pos: 425.5,399.5 - parent: 1 -- proto: SignPsychology - entities: - - uid: 2346 + rot: -1.5707963267948966 rad + pos: -101.5,-11.4 + parent: 2 + - uid: 15849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,413.5 - parent: 1 -- proto: SignRadiationMed - entities: - - uid: 20964 + rot: -1.5707963267948966 rad + pos: -65.5,-13.4 + parent: 2 + - uid: 19897 components: - type: Transform - pos: 352.5,412.5 - parent: 1 -- proto: SignRedFour - entities: - - uid: 18059 + rot: -1.5707963267948966 rad + pos: -31.5,-10.4 + parent: 2 + - uid: 19898 components: - type: Transform - pos: 429.5,393.5 - parent: 1 -- proto: SignRedOne - entities: - - uid: 18056 + rot: 3.141592653589793 rad + pos: -105.5,-21.5 + parent: 2 + - uid: 22137 components: - type: Transform - pos: 429.5,405.5 - parent: 1 - - uid: 20031 + rot: -1.5707963267948966 rad + pos: -73.5,-54.4 + parent: 2 + - uid: 23338 components: - type: Transform rot: -1.5707963267948966 rad - pos: 451.5,413.5 - parent: 1 -- proto: SignRedThree - entities: - - uid: 18058 + pos: -41.5,-11.5 + parent: 2 + - uid: 23361 components: - type: Transform - pos: 429.5,397.5 - parent: 1 -- proto: SignRedTwo - entities: - - uid: 18057 + rot: 3.141592653589793 rad + pos: -106.5,-36.5 + parent: 2 + - uid: 24488 components: - type: Transform - pos: 429.5,401.5 - parent: 1 - - uid: 20032 + rot: -1.5707963267948966 rad + pos: -106.5,-8.6 + parent: 2 + - uid: 25469 components: - type: Transform rot: -1.5707963267948966 rad - pos: 454.5,413.5 - parent: 1 -- proto: SignRestroom + pos: -76.5,-11.5 + parent: 2 +- proto: SignDirectionalEvac entities: - - uid: 16229 + - uid: 1991 components: - type: Transform - pos: 418.5,363.5 - parent: 1 -- proto: SignRobo - entities: - - uid: 18685 + pos: -101.5,-0.7 + parent: 2 + - uid: 15858 components: - type: Transform - pos: 341.5,400.5 - parent: 1 -- proto: SignSalvage - entities: - - uid: 5645 + rot: 1.5707963267948966 rad + pos: -57.5,-13.4 + parent: 2 + - uid: 15868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 358.5,383.5 - parent: 1 -- proto: SignSecurearea - entities: - - uid: 1499 + pos: -99.5,-11.6 + parent: 2 + - uid: 19756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,392.5 - parent: 1 - - uid: 1559 + rot: 1.5707963267948966 rad + pos: -41.5,-11.7 + parent: 2 + - uid: 19901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-10.4 + parent: 2 + - uid: 19914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -101.5,-21.3 + parent: 2 + - uid: 22132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-54.4 + parent: 2 + - uid: 23992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-36.3 + parent: 2 + - uid: 25470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-11.7 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 3646 components: - type: Transform rot: -1.5707963267948966 rad - pos: 310.5,393.5 - parent: 1 - - uid: 6385 + pos: -27.5,-10.6 + parent: 2 + - uid: 15856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,426.5 - parent: 1 - - uid: 6386 + pos: -57.5,-13.8 + parent: 2 + - uid: 19164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,426.5 - parent: 1 - - uid: 6387 + rot: 3.141592653589793 rad + pos: -62.5,-50.4 + parent: 2 + - uid: 22133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,426.5 - parent: 1 - - uid: 6388 + rot: 3.141592653589793 rad + pos: -71.5,-54.6 + parent: 2 + - uid: 24503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,426.5 - parent: 1 - - uid: 6389 + rot: 3.141592653589793 rad + pos: -62.5,-36.4 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 19721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,426.5 - parent: 1 - - uid: 6390 + rot: 3.141592653589793 rad + pos: -54.5,-10.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 19162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,423.5 - parent: 1 - - uid: 6391 + rot: 3.141592653589793 rad + pos: -62.5,-50.2 + parent: 2 + - uid: 24504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 352.5,426.5 - parent: 1 - - uid: 6392 + rot: 3.141592653589793 rad + pos: -62.5,-36.2 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 24493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 352.5,420.5 - parent: 1 - - uid: 7262 + pos: -27.5,-0.5 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 3653 components: - type: Transform - pos: 478.5,410.5 - parent: 1 - - uid: 7280 + rot: 1.5707963267948966 rad + pos: -55.5,-48.5 + parent: 2 + - uid: 7554 components: - type: Transform - pos: 494.5,408.5 - parent: 1 - - uid: 18390 + pos: -62.5,-36.8 + parent: 2 + - uid: 24505 components: - type: Transform - pos: 439.5,378.5 - parent: 1 - - uid: 18430 + rot: 1.5707963267948966 rad + pos: -62.5,-50.8 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 1153 components: - type: Transform - pos: 439.5,376.5 - parent: 1 - - uid: 18431 + rot: 3.141592653589793 rad + pos: -102.5,-36.5 + parent: 2 + - uid: 11833 components: - type: Transform - pos: 439.5,371.5 - parent: 1 - - uid: 18432 + pos: -27.5,-10.8 + parent: 2 + - uid: 15857 components: - type: Transform - pos: 439.5,368.5 - parent: 1 - - uid: 18433 + rot: 1.5707963267948966 rad + pos: -57.5,-13.6 + parent: 2 + - uid: 15870 components: - type: Transform - pos: 452.5,368.5 - parent: 1 - - uid: 18434 + rot: 1.5707963267948966 rad + pos: -99.5,-11.8 + parent: 2 + - uid: 19775 components: - type: Transform - pos: 452.5,376.5 - parent: 1 - - uid: 18435 + pos: -101.5,-0.5 + parent: 2 + - uid: 19968 components: - type: Transform - pos: 450.5,397.5 - parent: 1 - - uid: 18436 + rot: 3.141592653589793 rad + pos: -101.5,-21.5 + parent: 2 + - uid: 22134 components: - type: Transform - pos: 474.5,376.5 - parent: 1 - - uid: 18437 + rot: 3.141592653589793 rad + pos: -71.5,-54.8 + parent: 2 + - uid: 22636 components: - type: Transform - pos: 474.5,378.5 - parent: 1 - - uid: 18438 + rot: 1.5707963267948966 rad + pos: -41.5,-15.3 + parent: 2 + - uid: 25471 components: - type: Transform - pos: 480.5,382.5 - parent: 1 - - uid: 18439 + rot: 1.5707963267948966 rad + pos: -76.5,-15.3 + parent: 2 +- proto: SignDirectionalSalvage + entities: + - uid: 4603 components: - type: Transform - pos: 478.5,382.5 - parent: 1 - - uid: 18440 + rot: -1.5707963267948966 rad + pos: -97.5,23.8 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 3306 components: - type: Transform - pos: 484.5,378.5 - parent: 1 - - uid: 18441 + pos: -105.5,-0.7 + parent: 2 + - uid: 3662 components: - type: Transform - pos: 484.5,376.5 - parent: 1 - - uid: 18442 + rot: -1.5707963267948966 rad + pos: -31.5,-10.8 + parent: 2 + - uid: 7614 components: - type: Transform - pos: 480.5,372.5 - parent: 1 - - uid: 18443 + rot: -1.5707963267948966 rad + pos: -73.5,-54.8 + parent: 2 + - uid: 12470 components: - type: Transform - pos: 478.5,372.5 - parent: 1 - - uid: 18444 + rot: -1.5707963267948966 rad + pos: -41.5,-15.7 + parent: 2 + - uid: 15851 components: - type: Transform - pos: 465.5,399.5 - parent: 1 - - uid: 18445 + rot: -1.5707963267948966 rad + pos: -65.5,-13.8 + parent: 2 + - uid: 15865 components: - type: Transform - pos: 461.5,398.5 - parent: 1 - - uid: 18446 + pos: -101.5,-11.8 + parent: 2 + - uid: 17092 components: - type: Transform - pos: 457.5,396.5 - parent: 1 - - uid: 18447 + pos: -106.5,-36.7 + parent: 2 + - uid: 19170 components: - type: Transform - pos: 447.5,392.5 - parent: 1 - - uid: 18448 + rot: -1.5707963267948966 rad + pos: -106.5,-43.5 + parent: 2 + - uid: 19967 components: - type: Transform - pos: 466.5,410.5 - parent: 1 - - uid: 18449 + pos: -105.5,-21.7 + parent: 2 + - uid: 24492 components: - type: Transform - pos: 468.5,403.5 - parent: 1 - - uid: 18450 + rot: -1.5707963267948966 rad + pos: -106.5,-47.5 + parent: 2 + - uid: 25473 components: - type: Transform - pos: 464.5,414.5 - parent: 1 - - uid: 18451 + rot: -1.5707963267948966 rad + pos: -76.5,-15.7 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 2013 components: - type: Transform - pos: 441.5,419.5 - parent: 1 - - uid: 18452 + pos: -101.5,-0.3 + parent: 2 + - uid: 15852 components: - type: Transform - pos: 461.5,419.5 - parent: 1 - - uid: 18453 + rot: -1.5707963267948966 rad + pos: -65.5,-13.6 + parent: 2 + - uid: 15871 components: - type: Transform - pos: 456.5,420.5 - parent: 1 - - uid: 18454 + rot: 1.5707963267948966 rad + pos: -101.5,-11.6 + parent: 2 + - uid: 17416 components: - type: Transform - pos: 449.5,425.5 - parent: 1 - - uid: 18455 + rot: 3.141592653589793 rad + pos: -102.5,-36.7 + parent: 2 + - uid: 19966 components: - type: Transform - pos: 444.5,426.5 - parent: 1 - - uid: 18456 + rot: -1.5707963267948966 rad + pos: -31.5,-10.6 + parent: 2 + - uid: 20897 components: - type: Transform - pos: 432.5,435.5 - parent: 1 - - uid: 18457 + rot: 3.141592653589793 rad + pos: -101.5,-21.7 + parent: 2 + - uid: 22135 components: - type: Transform - pos: 431.5,430.5 - parent: 1 - - uid: 18458 + rot: -1.5707963267948966 rad + pos: -73.5,-54.6 + parent: 2 + - uid: 23720 components: - type: Transform - pos: 426.5,426.5 - parent: 1 - - uid: 18459 + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 + parent: 2 + - uid: 25472 components: - type: Transform - pos: 430.5,443.5 - parent: 1 - - uid: 18460 + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 1028 components: - type: Transform - pos: 423.5,448.5 - parent: 1 - - uid: 18461 + rot: 3.141592653589793 rad + pos: -16.5,-10.5 + parent: 2 + - uid: 13228 components: - type: Transform - pos: 415.5,444.5 - parent: 1 - - uid: 18462 + pos: -16.5,-63.5 + parent: 2 + - uid: 17458 components: - type: Transform - pos: 412.5,442.5 - parent: 1 - - uid: 18463 + rot: -1.5707963267948966 rad + pos: -135.5,-26.5 + parent: 2 + - uid: 26113 components: - type: Transform - pos: 412.5,437.5 - parent: 1 - - uid: 18464 + rot: -1.5707963267948966 rad + pos: -107.5,-25.5 + parent: 2 + - uid: 26168 components: - type: Transform - pos: 414.5,432.5 - parent: 1 - - uid: 18465 + pos: -135.5,-12.5 + parent: 2 + - uid: 26169 components: - type: Transform - pos: 379.5,427.5 - parent: 1 - - uid: 18466 + rot: 3.141592653589793 rad + pos: -135.5,-8.5 + parent: 2 + - uid: 26170 components: - type: Transform - pos: 324.5,446.5 - parent: 1 - - uid: 18467 + rot: -1.5707963267948966 rad + pos: -135.5,12.5 + parent: 2 + - uid: 26172 components: - type: Transform - pos: 327.5,444.5 - parent: 1 - - uid: 18468 + pos: -16.5,-16.5 + parent: 2 + - uid: 26173 components: - type: Transform - pos: 322.5,441.5 - parent: 1 - - uid: 18469 + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 2 + - uid: 26174 components: - type: Transform - pos: 322.5,437.5 - parent: 1 - - uid: 18470 + rot: 1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 1933 components: - type: Transform - pos: 319.5,446.5 - parent: 1 - - uid: 18471 + rot: 3.141592653589793 rad + pos: -106.5,-36.3 + parent: 2 + - uid: 3307 components: - type: Transform - pos: 318.5,448.5 - parent: 1 - - uid: 18472 + rot: 3.141592653589793 rad + pos: -105.5,-0.3 + parent: 2 + - uid: 4633 components: - type: Transform - pos: 315.5,449.5 - parent: 1 - - uid: 18473 + rot: -1.5707963267948966 rad + pos: -97.5,17.2 + parent: 2 + - uid: 4635 components: - type: Transform - pos: 310.5,447.5 - parent: 1 - - uid: 18474 + rot: 1.5707963267948966 rad + pos: -106.5,17.8 + parent: 2 + - uid: 15850 components: - type: Transform - pos: 296.5,419.5 - parent: 1 - - uid: 18475 + rot: -1.5707963267948966 rad + pos: -65.5,-13.2 + parent: 2 + - uid: 15866 components: - type: Transform - pos: 304.5,445.5 - parent: 1 - - uid: 18476 + rot: 3.141592653589793 rad + pos: -101.5,-11.2 + parent: 2 + - uid: 19890 components: - type: Transform - pos: 307.5,443.5 - parent: 1 - - uid: 18477 + rot: -1.5707963267948966 rad + pos: -41.5,-11.3 + parent: 2 + - uid: 19912 components: - type: Transform - pos: 306.5,437.5 - parent: 1 - - uid: 18478 + rot: -1.5707963267948966 rad + pos: -31.5,-10.2 + parent: 2 + - uid: 19913 components: - type: Transform - pos: 307.5,431.5 - parent: 1 - - uid: 18479 + rot: 3.141592653589793 rad + pos: -105.5,-21.3 + parent: 2 + - uid: 22136 components: - type: Transform - pos: 313.5,429.5 - parent: 1 - - uid: 18480 + rot: -1.5707963267948966 rad + pos: -73.5,-54.2 + parent: 2 + - uid: 25468 components: - type: Transform - pos: 302.5,430.5 - parent: 1 - - uid: 18481 + rot: -1.5707963267948966 rad + pos: -76.5,-11.3 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 18084 components: - type: Transform - pos: 297.5,424.5 - parent: 1 - - uid: 18482 + pos: -129.5,-7.5 + parent: 2 + - uid: 19175 components: - type: Transform - pos: 299.5,404.5 - parent: 1 - - uid: 18483 + pos: -132.5,-8.5 + parent: 2 + - uid: 19176 components: - type: Transform - pos: 297.5,413.5 - parent: 1 - - uid: 18484 + pos: -124.5,-7.5 + parent: 2 + - uid: 19490 components: - type: Transform - pos: 304.5,402.5 - parent: 1 - - uid: 18485 + pos: -139.5,-12.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 15883 components: - type: Transform - pos: 319.5,413.5 - parent: 1 - - uid: 18486 + rot: 1.5707963267948966 rad + pos: -132.5,-12.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 19165 components: - type: Transform - pos: 312.5,403.5 - parent: 1 - - uid: 18487 + rot: 3.141592653589793 rad + pos: -113.5,-12.5 + parent: 2 + - uid: 19643 components: - type: Transform - pos: 316.5,406.5 - parent: 1 - - uid: 18488 + rot: 3.141592653589793 rad + pos: -117.5,-13.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 13227 components: - type: Transform - pos: 325.5,412.5 - parent: 1 - - uid: 18489 + rot: -1.5707963267948966 rad + pos: -13.5,-63.5 + parent: 2 + - uid: 17539 components: - type: Transform - pos: 316.5,417.5 - parent: 1 - - uid: 18490 + pos: -133.5,-55.5 + parent: 2 + - uid: 22995 components: - type: Transform - pos: 315.5,424.5 - parent: 1 - - uid: 18491 + rot: -1.5707963267948966 rad + pos: -103.5,-60.5 + parent: 2 + - uid: 23006 components: - type: Transform - pos: 315.5,420.5 - parent: 1 - - uid: 18492 + rot: 1.5707963267948966 rad + pos: -79.5,6.5 + parent: 2 + - uid: 26171 components: - type: Transform - pos: 317.5,431.5 - parent: 1 - - uid: 18493 + rot: -1.5707963267948966 rad + pos: -135.5,15.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 15900 components: - type: Transform - pos: 321.5,435.5 - parent: 1 - - uid: 18494 + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - uid: 24566 components: - type: Transform - pos: 314.5,395.5 - parent: 1 - - uid: 18495 + pos: -34.5,-11.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 25637 components: - type: Transform - pos: 282.5,402.5 - parent: 1 - - uid: 18496 + pos: -31.5,-27.5 + parent: 2 +- proto: SignFire + entities: + - uid: 5538 components: - type: Transform - pos: 271.5,394.5 - parent: 1 - - uid: 18497 + rot: -1.5707963267948966 rad + pos: -114.5,12.5 + parent: 2 + - uid: 5662 components: - type: Transform - pos: 271.5,383.5 - parent: 1 - - uid: 18498 + rot: -1.5707963267948966 rad + pos: -112.5,0.5 + parent: 2 + - uid: 5663 components: - type: Transform - pos: 277.5,374.5 - parent: 1 - - uid: 18499 + rot: -1.5707963267948966 rad + pos: -108.5,4.5 + parent: 2 + - uid: 5664 components: - type: Transform - pos: 290.5,371.5 - parent: 1 - - uid: 18500 + rot: -1.5707963267948966 rad + pos: -112.5,6.5 + parent: 2 + - uid: 5665 components: - type: Transform - pos: 300.5,378.5 - parent: 1 - - uid: 18501 + rot: -1.5707963267948966 rad + pos: -108.5,10.5 + parent: 2 + - uid: 19492 components: - type: Transform - pos: 322.5,381.5 - parent: 1 - - uid: 18502 + pos: -142.5,-8.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 8290 components: - type: Transform - pos: 328.5,376.5 - parent: 1 - - uid: 18503 + rot: 1.5707963267948966 rad + pos: -106.5,4.5 + parent: 2 + - uid: 8293 components: - type: Transform - pos: 329.5,373.5 - parent: 1 - - uid: 18504 + rot: 1.5707963267948966 rad + pos: -106.5,10.5 + parent: 2 + - uid: 8295 components: - type: Transform - pos: 326.5,370.5 - parent: 1 - - uid: 18505 + rot: 1.5707963267948966 rad + pos: -106.5,6.5 + parent: 2 + - uid: 8298 components: - type: Transform - pos: 328.5,365.5 - parent: 1 - - uid: 18506 + rot: 1.5707963267948966 rad + pos: -106.5,0.5 + parent: 2 + - uid: 26058 components: - type: Transform - pos: 330.5,362.5 - parent: 1 - - uid: 18507 + pos: -101.5,-3.5 + parent: 2 + - uid: 26060 components: - type: Transform - pos: 345.5,361.5 - parent: 1 - - uid: 18508 + pos: -91.5,-58.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 6196 components: - type: Transform - pos: 336.5,359.5 - parent: 1 - - uid: 18509 + pos: -121.5,-23.5 + parent: 2 +- proto: SignHead + entities: + - uid: 15420 components: - type: Transform - pos: 341.5,358.5 - parent: 1 - - uid: 18510 + pos: -31.5,-42.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 348 components: - type: Transform - pos: 346.5,373.5 - parent: 1 - - uid: 18511 + pos: -56.5,-20.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 15913 components: - type: Transform - pos: 350.5,366.5 - parent: 1 - - uid: 18512 + rot: 1.5707963267948966 rad + pos: -89.5,-31.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 24812 components: - type: Transform - pos: 340.5,377.5 - parent: 1 - - uid: 18513 + pos: -20.5,-6.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 11849 components: + - type: MetaData + desc: Prestigeous certificate or backwater fake? You be the judge. + name: Law Diploma - type: Transform - pos: 466.5,370.5 - parent: 1 - - uid: 18514 + pos: -95.5,-44.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 15907 components: - type: Transform - pos: 392.5,364.5 - parent: 1 - - uid: 18515 + rot: 3.141592653589793 rad + pos: -56.5,-33.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 11851 components: - type: Transform - pos: 389.5,356.5 - parent: 1 - - uid: 18516 + pos: -101.5,-47.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 3841 components: - type: Transform - pos: 392.5,349.5 - parent: 1 - - uid: 18517 + rot: 1.5707963267948966 rad + pos: -52.5,-49.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 7561 components: - type: Transform - pos: 399.5,345.5 - parent: 1 - - uid: 18518 + rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 2 +- proto: SignMemetic + entities: + - uid: 18808 components: - type: Transform - pos: 407.5,348.5 - parent: 1 - - uid: 18519 + pos: -88.5,-73.5 + parent: 2 + - uid: 21476 components: - type: Transform - pos: 410.5,356.5 - parent: 1 - - uid: 18520 + pos: -90.5,-73.5 + parent: 2 + - uid: 21477 components: - type: Transform - pos: 469.5,378.5 - parent: 1 - - uid: 18521 + pos: -90.5,-71.5 + parent: 2 + - uid: 22432 components: - type: Transform - pos: 468.5,367.5 - parent: 1 - - uid: 18522 + pos: -88.5,-71.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 2007 components: - type: Transform - pos: 473.5,365.5 - parent: 1 - - uid: 18524 + pos: -44.5,-39.5 + parent: 2 + - uid: 2508 components: - type: Transform - pos: 477.5,360.5 - parent: 1 -- proto: SignSecureMed + pos: -40.5,-34.5 + parent: 2 +- proto: SignNews entities: - - uid: 16948 + - uid: 16011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,421.5 - parent: 1 - - uid: 16949 + rot: -1.5707963267948966 rad + pos: -108.5,-32.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 2815 components: + - type: MetaData + desc: Plasma. The very substance that catapulted Nanotrasen to the place it is today. Its use is so ubiquitous, and found in so many technologies, it's easy to forget how much of an impact it has. + name: Plasma Plaque - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,419.5 - parent: 1 -- proto: SignSecurity - entities: - - uid: 1947 + rot: -1.5707963267948966 rad + pos: -63.5,-8.5 + parent: 2 + - uid: 21071 components: + - type: MetaData + desc: A plaque comemorating the installation of the research module. Seems it happened only a year ago. + name: Research Module Plaque - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,394.5 - parent: 1 - - uid: 3099 + pos: -108.5,-43.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 15914 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,398.5 - parent: 1 -- proto: SignShipDock + pos: -93.5,-36.5 + parent: 2 +- proto: SignPsychology entities: - - uid: 18699 + - uid: 9239 components: - type: Transform - pos: 403.5,394.5 - parent: 1 -- proto: SignShock + pos: -22.5,-17.5 + parent: 2 +- proto: SignRadiationMed entities: - - uid: 20883 + - uid: 409 components: - type: Transform - pos: 325.5,442.5 - parent: 1 - - uid: 20884 + pos: -121.5,-21.5 + parent: 2 + - uid: 22228 components: - type: Transform - pos: 302.5,425.5 - parent: 1 - - uid: 20893 + pos: -111.5,34.5 + parent: 2 +- proto: SignRedFive + entities: + - uid: 17798 components: - type: Transform - pos: 366.5,424.5 - parent: 1 - - uid: 20896 + pos: -88.5,-40.5 + parent: 2 +- proto: SignRedFour + entities: + - uid: 17797 components: - type: Transform - pos: 358.5,433.5 - parent: 1 - - uid: 21003 + pos: -92.5,-40.5 + parent: 2 + - uid: 20951 components: - type: Transform - pos: 301.5,406.5 - parent: 1 - - uid: 21004 + rot: 3.141592653589793 rad + pos: -59.5,-58.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 3778 components: - type: Transform - pos: 308.5,428.5 - parent: 1 - - uid: 21005 + pos: -69.5,-54.5 + parent: 2 + - uid: 17794 components: - type: Transform - pos: 315.5,413.5 - parent: 1 - - uid: 21006 + pos: -97.5,-24.5 + parent: 2 +- proto: SignRedThree + entities: + - uid: 17548 components: - type: Transform - pos: 315.5,408.5 - parent: 1 - - uid: 21007 + rot: 3.141592653589793 rad + pos: -69.5,-58.5 + parent: 2 + - uid: 17796 components: - type: Transform - pos: 307.5,404.5 - parent: 1 - - uid: 21009 + pos: -97.5,-32.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 16509 components: - type: Transform - pos: 300.5,412.5 - parent: 1 - - uid: 21010 + rot: 3.141592653589793 rad + pos: -59.5,-54.5 + parent: 2 + - uid: 17795 components: - type: Transform - pos: 303.5,416.5 - parent: 1 - - uid: 21018 + pos: -97.5,-28.5 + parent: 2 +- proto: SignRestroom + entities: + - uid: 2199 components: - type: Transform - pos: 323.5,395.5 - parent: 1 - - uid: 21019 + pos: -38.5,-50.5 + parent: 2 + - uid: 3787 components: - type: Transform - pos: 327.5,393.5 - parent: 1 - - uid: 21020 + pos: -65.5,-58.5 + parent: 2 + - uid: 24322 components: - type: Transform - pos: 344.5,382.5 - parent: 1 - - uid: 21021 + pos: -89.5,-48.5 + parent: 2 +- proto: SignRND + entities: + - uid: 15919 components: - type: Transform - pos: 351.5,380.5 - parent: 1 - - uid: 21022 + rot: 1.5707963267948966 rad + pos: -118.5,-42.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 15918 components: - type: Transform - pos: 329.5,390.5 - parent: 1 - - uid: 21023 + rot: 1.5707963267948966 rad + pos: -118.5,-48.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 4672 components: - type: Transform - pos: 323.5,401.5 - parent: 1 - - uid: 21024 + rot: 3.141592653589793 rad + pos: -92.5,26.5 + parent: 2 +- proto: SignScience + entities: + - uid: 24491 components: - type: Transform - pos: 305.5,428.5 - parent: 1 - - uid: 21027 + rot: -1.5707963267948966 rad + pos: -111.5,-47.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 25361 components: - type: Transform - pos: 311.5,416.5 - parent: 1 - - uid: 21028 + rot: 1.5707963267948966 rad + pos: -112.5,-82.5 + parent: 2 + - uid: 25362 components: - type: Transform - pos: 312.5,420.5 - parent: 1 - - uid: 21029 + rot: 1.5707963267948966 rad + pos: -112.5,-89.5 + parent: 2 + - uid: 25363 components: - type: Transform - pos: 312.5,426.5 - parent: 1 - - uid: 21953 + rot: 1.5707963267948966 rad + pos: -115.5,-92.5 + parent: 2 + - uid: 25365 components: - type: Transform - pos: 339.5,379.5 - parent: 1 - - uid: 21954 + rot: 1.5707963267948966 rad + pos: -125.5,-92.5 + parent: 2 + - uid: 25366 components: - type: Transform - pos: 363.5,379.5 - parent: 1 - - uid: 21955 + rot: 1.5707963267948966 rad + pos: -128.5,-89.5 + parent: 2 + - uid: 25367 components: - type: Transform - pos: 379.5,373.5 - parent: 1 - - uid: 21956 + rot: 1.5707963267948966 rad + pos: -128.5,-82.5 + parent: 2 + - uid: 25368 components: - type: Transform - pos: 385.5,373.5 - parent: 1 - - uid: 21957 + rot: 1.5707963267948966 rad + pos: -128.5,-75.5 + parent: 2 + - uid: 25369 components: - type: Transform - pos: 391.5,424.5 - parent: 1 - - uid: 21958 + rot: 1.5707963267948966 rad + pos: -112.5,-75.5 + parent: 2 + - uid: 25370 components: - type: Transform - pos: 401.5,426.5 - parent: 1 - - uid: 21959 + rot: 1.5707963267948966 rad + pos: -112.5,-69.5 + parent: 2 + - uid: 25371 components: - type: Transform - pos: 412.5,427.5 - parent: 1 -- proto: SignSmoking + rot: 1.5707963267948966 rad + pos: -128.5,-69.5 + parent: 2 +- proto: SignSecureMedRed entities: - - uid: 18686 + - uid: 21066 components: - type: Transform - pos: 420.5,363.5 - parent: 1 - - uid: 18687 + pos: -37.5,-70.5 + parent: 2 + - uid: 21067 components: - type: Transform - pos: 422.5,361.5 - parent: 1 -- proto: SignSpace + pos: -39.5,-70.5 + parent: 2 +- proto: SignSecurity entities: - - uid: 6585 + - uid: 15911 components: - type: Transform - pos: 319.5,429.5 - parent: 1 - - uid: 18671 + rot: 3.141592653589793 rad + pos: -93.5,-16.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 16513 components: - type: Transform - pos: 328.5,410.5 - parent: 1 - - uid: 18672 + rot: 1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 2844 components: - type: Transform - pos: 423.5,426.5 - parent: 1 - - uid: 18673 + pos: -59.5,-8.5 + parent: 2 + - uid: 23436 components: - type: Transform - pos: 443.5,393.5 - parent: 1 - - uid: 18674 + rot: 3.141592653589793 rad + pos: -132.5,1.5 + parent: 2 + - uid: 23438 components: - type: Transform - pos: 437.5,384.5 - parent: 1 - - uid: 18675 + rot: 3.141592653589793 rad + pos: -116.5,-1.5 + parent: 2 + - uid: 23439 components: - type: Transform - pos: 429.5,375.5 - parent: 1 - - uid: 18676 + rot: 3.141592653589793 rad + pos: -106.5,5.5 + parent: 2 + - uid: 23440 components: - type: Transform - pos: 401.5,364.5 - parent: 1 - - uid: 18677 + rot: 3.141592653589793 rad + pos: -114.5,17.5 + parent: 2 + - uid: 23442 components: - type: Transform - pos: 371.5,379.5 - parent: 1 -- proto: SignSurgery + rot: 3.141592653589793 rad + pos: -124.5,-0.5 + parent: 2 +- proto: SignSpace entities: - - uid: 5368 + - uid: 4613 components: - type: Transform - pos: 402.5,414.5 - parent: 1 - - uid: 7437 + rot: -1.5707963267948966 rad + pos: -101.5,25.5 + parent: 2 + - uid: 5983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,396.5 - parent: 1 -- proto: SignTelecomms - entities: - - uid: 6416 + pos: -152.5,-2.5 + parent: 2 + - uid: 19325 components: - type: Transform - pos: 308.5,421.5 - parent: 1 - - uid: 18694 + rot: 3.141592653589793 rad + pos: -152.5,-12.5 + parent: 2 + - uid: 23004 components: - type: Transform - pos: 306.5,421.5 - parent: 1 -- proto: SignTheater + pos: -12.5,-35.5 + parent: 2 +- proto: SignTelecomms entities: - - uid: 18693 + - uid: 17026 components: - type: Transform - pos: 391.5,405.5 - parent: 1 + pos: -84.5,-11.5 + parent: 2 - proto: SignToolStorage entities: - - uid: 18689 + - uid: 15898 components: - type: Transform - pos: 406.5,368.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 - proto: SignVault entities: - - uid: 18698 + - uid: 1172 components: - type: Transform - pos: 329.5,396.5 - parent: 1 -- proto: SignVirology - entities: - - uid: 5449 + rot: -1.5707963267948966 rad + pos: -37.5,-68.5 + parent: 2 + - uid: 15909 components: - type: Transform - pos: 410.5,416.5 - parent: 1 -- proto: SignZomlab + rot: 3.141592653589793 rad + pos: -68.5,-1.5 + parent: 2 +- proto: SignVirology entities: - - uid: 2661 + - uid: 4168 components: - type: Transform - pos: 428.5,385.5 - parent: 1 -- proto: SilverRingGem + pos: -27.5,-48.5 + parent: 2 +- proto: Sink entities: - - uid: 5820 + - uid: 698 components: - type: Transform - pos: 328.5,397.5 - parent: 1 -- proto: SingularityGenerator - entities: - - uid: 15411 + pos: -109.5,-20.5 + parent: 2 + - uid: 2845 components: - type: Transform - pos: 285.5,387.5 - parent: 1 -- proto: Sink - entities: - - uid: 2789 + pos: -43.5,-1.5 + parent: 2 + - uid: 3819 components: - type: Transform - pos: 421.5,363.5 - parent: 1 - - uid: 5275 + rot: -1.5707963267948966 rad + pos: -63.5,-59.5 + parent: 2 + - uid: 3820 components: - type: Transform rot: -1.5707963267948966 rad - pos: 450.5,401.5 - parent: 1 - - uid: 16103 + pos: -63.5,-60.5 + parent: 2 + - uid: 4142 components: - type: Transform - pos: 425.5,363.5 - parent: 1 - - uid: 16104 + rot: 1.5707963267948966 rad + pos: -39.5,-50.5 + parent: 2 + - uid: 4205 components: - type: Transform - pos: 424.5,363.5 - parent: 1 - - uid: 18635 + rot: -1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 5776 components: - type: Transform - pos: 338.5,437.5 - parent: 1 - - uid: 18636 + pos: -111.5,-20.5 + parent: 2 + - uid: 12021 components: - type: Transform - pos: 339.5,437.5 - parent: 1 - - uid: 21713 + pos: -130.5,-50.5 + parent: 2 + - uid: 12459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,26.5 - parent: 5072 -- proto: SinkWide - entities: - - uid: 4987 + pos: -128.5,-50.5 + parent: 2 + - uid: 20093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,389.5 - parent: 1 - - uid: 4989 + rot: 1.5707963267948966 rad + pos: -126.5,-53.5 + parent: 2 + - uid: 24867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 416.5,389.5 - parent: 1 - - uid: 5899 + pos: -90.5,-49.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 10787 components: - type: Transform - pos: 407.5,382.5 - parent: 1 - - uid: 5910 + rot: -1.5707963267948966 rad + pos: -52.5,-28.5 + parent: 2 + - uid: 25674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 410.5,362.5 - parent: 1 - - uid: 6172 - components: - - type: Transform - pos: 447.5,422.5 - parent: 1 - - uid: 18574 + pos: -19.5,-3.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 3405 components: - type: Transform - pos: 354.5,417.5 - parent: 1 - - uid: 21157 + pos: -53.5,-25.5 + parent: 2 + - uid: 3920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 407.5,409.5 - parent: 1 - - uid: 21161 + pos: -37.5,-26.5 + parent: 2 +- proto: SMESAdvanced + entities: + - uid: 7621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,417.5 - parent: 1 -- proto: SmartFridge - entities: - - uid: 2074 + pos: -128.5,-3.5 + parent: 2 + - uid: 7988 components: - type: Transform - pos: 410.5,389.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 18288 - - 18286 - - 4961 - - 18287 - - uid: 3734 + pos: -128.5,-5.5 + parent: 2 + - uid: 19479 components: - type: Transform - pos: 407.5,383.5 - parent: 1 - - uid: 5324 + pos: -127.5,-3.5 + parent: 2 + - uid: 19482 components: - type: Transform - pos: 406.5,409.5 - parent: 1 -- proto: SMESAdvanced - entities: - - uid: 6240 + pos: -125.5,-3.5 + parent: 2 + - uid: 19484 components: - type: Transform - pos: 369.5,423.5 - parent: 1 - - uid: 8497 + pos: -126.5,-3.5 + parent: 2 + - uid: 19488 components: - type: Transform - pos: 325.5,427.5 - parent: 1 - - uid: 8498 + pos: -127.5,-5.5 + parent: 2 + - uid: 19489 components: - type: Transform - pos: 325.5,428.5 - parent: 1 - - uid: 8499 + pos: -125.5,-5.5 + parent: 2 + - uid: 19508 components: - type: Transform - pos: 325.5,429.5 - parent: 1 + pos: -126.5,-5.5 + parent: 2 - proto: SMESBasic entities: - - uid: 66 - components: - - type: MetaData - name: СМЭС солнечных панелей - - type: Transform - pos: 321.5,430.5 - parent: 1 - - uid: 2926 + - uid: 257 components: - type: MetaData - name: СМЭС солнечных панелей + name: Bridge SMES - type: Transform - pos: 421.5,426.5 - parent: 1 - - uid: 3198 + pos: -71.5,-8.5 + parent: 2 + - uid: 2028 components: - type: MetaData - name: СМЭС солнечных панелей + name: Bridge Deterance SMES - type: Transform - pos: 334.5,380.5 - parent: 1 - - uid: 3205 + pos: -72.5,-8.5 + parent: 2 + - uid: 2110 components: - type: MetaData - name: СМЭС инженерный + name: Security Deterance SMES - type: Transform - pos: 330.5,407.5 - parent: 1 - - uid: 3215 + pos: -86.5,-17.5 + parent: 2 + - uid: 4397 components: - type: MetaData - name: СМЭС солнечных панелей + name: Telecommunications SMES - type: Transform - pos: 401.5,367.5 - parent: 1 - - uid: 3216 + pos: -82.5,-9.5 + parent: 2 + - uid: 6210 components: - type: MetaData - name: СМЭС солнечных панелей + name: Gravity Generator SMES - type: Transform - pos: 400.5,367.5 - parent: 1 - - uid: 6496 + pos: -123.5,-20.5 + parent: 2 + - uid: 12909 components: - type: MetaData - name: СМЭС телекомов + name: Solars SMES - type: Transform - pos: 305.5,427.5 - parent: 1 - - uid: 8540 + pos: -19.5,-64.5 + parent: 2 + - uid: 21094 components: - type: MetaData - name: СМЭС камеры содержания + name: Solars SMES - type: Transform - pos: 298.5,390.5 - parent: 1 - - uid: 8541 + pos: -12.5,7.5 + parent: 2 + - uid: 22341 components: - type: MetaData - name: СМЭС камеры содержания + name: AI Core SMES - type: Transform - pos: 297.5,390.5 - parent: 1 - - uid: 8545 + pos: -121.5,-87.5 + parent: 2 + - uid: 24881 components: - type: MetaData - name: СМЭС камеры содержания - - type: Transform - pos: 299.5,390.5 - parent: 1 -- proto: SMESMachineCircuitboard - entities: - - uid: 5872 - components: - - type: Transform - pos: 311.5,382.5 - parent: 1 - - uid: 16405 - components: + name: AI Satelite SMES - type: Transform - pos: 301.5,411.5 - parent: 1 -- proto: SoapNT + pos: -117.5,-65.5 + parent: 2 +- proto: SoapDeluxe entities: - - uid: 21712 + - uid: 22265 components: - type: Transform - pos: 12.820141,26.438648 - parent: 5072 + pos: -42.5,-1.5 + parent: 2 - proto: SodaDispenser entities: - - uid: 4906 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,387.5 - parent: 1 - - uid: 15906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,453.5 - parent: 1 -- proto: SolarPanel - entities: - - uid: 3219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 394.5,360.5 - parent: 1 - - uid: 3220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,360.5 - parent: 1 - - uid: 3221 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,360.5 - parent: 1 - - uid: 3222 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,360.5 - parent: 1 - - uid: 3223 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,360.5 - parent: 1 - - uid: 3224 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,360.5 - parent: 1 - - uid: 3225 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,360.5 - parent: 1 - - uid: 3226 + - uid: 8792 components: - type: Transform rot: 3.141592653589793 rad - pos: 402.5,360.5 - parent: 1 - - uid: 3227 + pos: -8.5,-33.5 + parent: 2 + - uid: 10599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,360.5 - parent: 1 - - uid: 3228 + rot: 1.5707963267948966 rad + pos: -70.5,-30.5 + parent: 2 + - uid: 22633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,360.5 - parent: 1 - - uid: 3229 + pos: -69.5,-35.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 548 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,358.5 - parent: 1 - - uid: 3230 + pos: -147.5,15.5 + parent: 2 + - uid: 774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,358.5 - parent: 1 - - uid: 3231 + pos: -147.5,10.5 + parent: 2 + - uid: 1784 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,358.5 - parent: 1 - - uid: 3232 + pos: -149.5,18.5 + parent: 2 + - uid: 1791 components: - type: Transform rot: 3.141592653589793 rad - pos: 402.5,358.5 - parent: 1 - - uid: 3233 + pos: -155.5,17.5 + parent: 2 + - uid: 1793 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,358.5 - parent: 1 - - uid: 3234 + pos: -145.5,18.5 + parent: 2 + - uid: 1797 components: - type: Transform rot: 3.141592653589793 rad - pos: 406.5,358.5 - parent: 1 - - uid: 3235 + pos: -149.5,15.5 + parent: 2 + - uid: 2150 components: - type: Transform rot: 3.141592653589793 rad - pos: 404.5,356.5 - parent: 1 - - uid: 3236 + pos: -153.5,19.5 + parent: 2 + - uid: 2165 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,356.5 - parent: 1 - - uid: 3237 + pos: -155.5,19.5 + parent: 2 + - uid: 2205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,356.5 - parent: 1 - - uid: 3238 + pos: -145.5,9.5 + parent: 2 + - uid: 2248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,356.5 - parent: 1 - - uid: 3239 + pos: -153.5,7.5 + parent: 2 + - uid: 2253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,356.5 - parent: 1 - - uid: 3240 + pos: -151.5,9.5 + parent: 2 + - uid: 2332 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,356.5 - parent: 1 - - uid: 3241 + pos: -145.5,19.5 + parent: 2 + - uid: 2334 components: - type: Transform rot: 3.141592653589793 rad - pos: 403.5,354.5 - parent: 1 - - uid: 3242 + pos: -151.5,11.5 + parent: 2 + - uid: 2346 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,354.5 - parent: 1 - - uid: 3243 + pos: -155.5,15.5 + parent: 2 + - uid: 2405 components: - type: Transform rot: 3.141592653589793 rad - pos: 406.5,354.5 - parent: 1 - - uid: 3244 + pos: -145.5,15.5 + parent: 2 + - uid: 2429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,354.5 - parent: 1 - - uid: 3245 + pos: -149.5,8.5 + parent: 2 + - uid: 2430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,354.5 - parent: 1 - - uid: 3246 + pos: -145.5,10.5 + parent: 2 + - uid: 2431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,354.5 - parent: 1 - - uid: 3247 + pos: -147.5,7.5 + parent: 2 + - uid: 2433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,354.5 - parent: 1 - - uid: 3248 + pos: -145.5,7.5 + parent: 2 + - uid: 2440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,354.5 - parent: 1 - - uid: 3249 + pos: -147.5,8.5 + parent: 2 + - uid: 3363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,354.5 - parent: 1 - - uid: 3250 + pos: -55.5,-80.5 + parent: 2 + - uid: 3595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,352.5 - parent: 1 - - uid: 3251 + pos: -56.5,-80.5 + parent: 2 + - uid: 4339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,354.5 - parent: 1 - - uid: 3252 + pos: -57.5,-80.5 + parent: 2 + - uid: 4422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,352.5 - parent: 1 - - uid: 3253 + pos: -58.5,-80.5 + parent: 2 + - uid: 4617 components: - type: Transform rot: 3.141592653589793 rad - pos: 392.5,356.5 - parent: 1 - - uid: 3254 + pos: -153.5,11.5 + parent: 2 + - uid: 4848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,356.5 - parent: 1 - - uid: 3255 + pos: -143.5,18.5 + parent: 2 + - uid: 5557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,356.5 - parent: 1 - - uid: 3256 + pos: -141.5,15.5 + parent: 2 + - uid: 5953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,352.5 - parent: 1 - - uid: 3257 + pos: -143.5,11.5 + parent: 2 + - uid: 6579 components: - type: Transform rot: 3.141592653589793 rad - pos: 399.5,352.5 - parent: 1 - - uid: 3258 + pos: -153.5,17.5 + parent: 2 + - uid: 6597 components: - type: Transform rot: 3.141592653589793 rad - pos: 394.5,350.5 - parent: 1 - - uid: 3259 + pos: -149.5,19.5 + parent: 2 + - uid: 6646 components: - type: Transform rot: 3.141592653589793 rad - pos: 396.5,350.5 - parent: 1 - - uid: 3260 + pos: -151.5,16.5 + parent: 2 + - uid: 6791 components: - type: Transform rot: 3.141592653589793 rad - pos: 395.5,350.5 - parent: 1 - - uid: 3261 + pos: -151.5,18.5 + parent: 2 + - uid: 6917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,350.5 - parent: 1 - - uid: 3262 + pos: -143.5,9.5 + parent: 2 + - uid: 6965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,350.5 - parent: 1 - - uid: 3263 + pos: -143.5,10.5 + parent: 2 + - uid: 7258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,350.5 - parent: 1 - - uid: 3264 + pos: -143.5,8.5 + parent: 2 + - uid: 7420 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,350.5 - parent: 1 - - uid: 3265 + pos: -153.5,15.5 + parent: 2 + - uid: 7436 components: - type: Transform rot: 3.141592653589793 rad - pos: 402.5,350.5 - parent: 1 - - uid: 3266 + pos: -151.5,19.5 + parent: 2 + - uid: 7448 components: - type: Transform rot: 3.141592653589793 rad - pos: 403.5,350.5 - parent: 1 - - uid: 3267 + pos: -155.5,11.5 + parent: 2 + - uid: 7892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,352.5 - parent: 1 - - uid: 3268 + pos: -145.5,8.5 + parent: 2 + - uid: 10009 components: - type: Transform rot: 3.141592653589793 rad - pos: 405.5,352.5 - parent: 1 - - uid: 3269 + pos: -151.5,15.5 + parent: 2 + - uid: 10429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,352.5 - parent: 1 - - uid: 3270 + pos: -141.5,19.5 + parent: 2 + - uid: 10541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,352.5 - parent: 1 - - uid: 3271 + pos: -143.5,17.5 + parent: 2 + - uid: 10573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,350.5 - parent: 1 - - uid: 3272 + pos: -143.5,19.5 + parent: 2 + - uid: 10745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,350.5 - parent: 1 - - uid: 3277 + pos: -143.5,16.5 + parent: 2 + - uid: 10751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 394.5,358.5 - parent: 1 - - uid: 3278 + pos: -141.5,16.5 + parent: 2 + - uid: 10798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 395.5,358.5 - parent: 1 - - uid: 3279 + pos: -143.5,15.5 + parent: 2 + - uid: 10835 components: - - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,358.5 - parent: 1 - - uid: 3280 + - type: Transform + pos: -153.5,10.5 + parent: 2 + - uid: 11088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,358.5 - parent: 1 - - uid: 3283 + pos: -141.5,17.5 + parent: 2 + - uid: 11119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,371.5 - parent: 1 - - uid: 3284 + pos: -141.5,9.5 + parent: 2 + - uid: 11313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,363.5 - parent: 1 - - uid: 3285 + pos: -141.5,18.5 + parent: 2 + - uid: 13242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,363.5 - parent: 1 - - uid: 3286 + pos: -143.5,7.5 + parent: 2 + - uid: 13516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,363.5 - parent: 1 - - uid: 3287 + pos: -141.5,7.5 + parent: 2 + - uid: 13604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,363.5 - parent: 1 - - uid: 3288 + pos: -153.5,8.5 + parent: 2 + - uid: 13784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,363.5 - parent: 1 - - uid: 3289 + pos: -151.5,-24.5 + parent: 2 + - uid: 13869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,363.5 - parent: 1 - - uid: 3290 + pos: -155.5,10.5 + parent: 2 + - uid: 13872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,365.5 - parent: 1 - - uid: 3291 + pos: -155.5,7.5 + parent: 2 + - uid: 13873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,365.5 - parent: 1 - - uid: 3292 + pos: -141.5,8.5 + parent: 2 + - uid: 13949 components: - type: Transform rot: 3.141592653589793 rad - pos: 334.5,365.5 - parent: 1 - - uid: 3293 + pos: -149.5,11.5 + parent: 2 + - uid: 13953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,365.5 - parent: 1 - - uid: 3294 + pos: -141.5,11.5 + parent: 2 + - uid: 13954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,365.5 - parent: 1 - - uid: 3295 + pos: -155.5,-23.5 + parent: 2 + - uid: 13957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,365.5 - parent: 1 - - uid: 3296 + pos: -153.5,-21.5 + parent: 2 + - uid: 13960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,365.5 - parent: 1 - - uid: 3297 + pos: -155.5,-22.5 + parent: 2 + - uid: 13962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,365.5 - parent: 1 - - uid: 3298 + pos: -153.5,-22.5 + parent: 2 + - uid: 13963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,365.5 - parent: 1 - - uid: 3299 + pos: -141.5,10.5 + parent: 2 + - uid: 13995 components: - type: Transform rot: 3.141592653589793 rad - pos: 342.5,365.5 - parent: 1 - - uid: 3300 + pos: -153.5,16.5 + parent: 2 + - uid: 14050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,363.5 - parent: 1 - - uid: 3301 + pos: -141.5,-32.5 + parent: 2 + - uid: 14051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,363.5 - parent: 1 - - uid: 3302 + pos: -141.5,-33.5 + parent: 2 + - uid: 14052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,363.5 - parent: 1 - - uid: 3303 + pos: -141.5,-29.5 + parent: 2 + - uid: 14053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,363.5 - parent: 1 - - uid: 3304 + pos: -143.5,-31.5 + parent: 2 + - uid: 14054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,363.5 - parent: 1 - - uid: 3305 + pos: -143.5,-32.5 + parent: 2 + - uid: 14055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,363.5 - parent: 1 - - uid: 3306 + pos: -143.5,-30.5 + parent: 2 + - uid: 14056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,367.5 - parent: 1 - - uid: 3307 + pos: -149.5,-33.5 + parent: 2 + - uid: 14057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,367.5 - parent: 1 - - uid: 3308 + pos: -143.5,-33.5 + parent: 2 + - uid: 14058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,367.5 - parent: 1 - - uid: 3309 + pos: -149.5,-31.5 + parent: 2 + - uid: 14059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,367.5 - parent: 1 - - uid: 3310 + pos: -147.5,-30.5 + parent: 2 + - uid: 14060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,367.5 - parent: 1 - - uid: 3311 + pos: -149.5,-25.5 + parent: 2 + - uid: 14061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,367.5 - parent: 1 - - uid: 3312 + pos: -147.5,-25.5 + parent: 2 + - uid: 14062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,369.5 - parent: 1 - - uid: 3313 + pos: -149.5,-24.5 + parent: 2 + - uid: 14085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,369.5 - parent: 1 - - uid: 3314 + pos: -151.5,-22.5 + parent: 2 + - uid: 14086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,369.5 - parent: 1 - - uid: 3315 + pos: -149.5,-21.5 + parent: 2 + - uid: 14087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,369.5 - parent: 1 - - uid: 3316 + pos: -151.5,-23.5 + parent: 2 + - uid: 14088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,369.5 - parent: 1 - - uid: 3317 + pos: -151.5,-25.5 + parent: 2 + - uid: 14089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,369.5 - parent: 1 - - uid: 3318 + pos: -149.5,-22.5 + parent: 2 + - uid: 14112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,369.5 - parent: 1 - - uid: 3319 + pos: -151.5,10.5 + parent: 2 + - uid: 14148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,369.5 - parent: 1 - - uid: 3320 + pos: -149.5,9.5 + parent: 2 + - uid: 14149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,369.5 - parent: 1 - - uid: 3321 + pos: -149.5,10.5 + parent: 2 + - uid: 14151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,369.5 - parent: 1 - - uid: 3322 + pos: -151.5,7.5 + parent: 2 + - uid: 14648 components: - type: Transform rot: 3.141592653589793 rad - pos: 345.5,369.5 - parent: 1 - - uid: 3323 + pos: -145.5,16.5 + parent: 2 + - uid: 14661 components: - type: Transform rot: 3.141592653589793 rad - pos: 346.5,369.5 - parent: 1 - - uid: 3324 + pos: -155.5,16.5 + parent: 2 + - uid: 15802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,367.5 - parent: 1 - - uid: 3325 + pos: -12.5,-78.5 + parent: 2 + - uid: 15808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,367.5 - parent: 1 - - uid: 3326 + pos: -9.5,-76.5 + parent: 2 + - uid: 16235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,367.5 - parent: 1 - - uid: 3327 + pos: -155.5,9.5 + parent: 2 + - uid: 16261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,367.5 - parent: 1 - - uid: 3328 + pos: -155.5,8.5 + parent: 2 + - uid: 16303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,367.5 - parent: 1 - - uid: 3329 + pos: -149.5,7.5 + parent: 2 + - uid: 16577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,367.5 - parent: 1 - - uid: 3330 + pos: -9.5,-78.5 + parent: 2 + - uid: 16583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,371.5 - parent: 1 - - uid: 3331 + pos: -11.5,-78.5 + parent: 2 + - uid: 16588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,371.5 - parent: 1 - - uid: 3332 + pos: -10.5,-78.5 + parent: 2 + - uid: 16589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,371.5 - parent: 1 - - uid: 3333 + pos: -21.5,-78.5 + parent: 2 + - uid: 16591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,373.5 - parent: 1 - - uid: 3334 + pos: -21.5,-76.5 + parent: 2 + - uid: 16600 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,373.5 - parent: 1 - - uid: 3335 + pos: -20.5,-76.5 + parent: 2 + - uid: 16604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,373.5 - parent: 1 - - uid: 3336 + pos: -19.5,-76.5 + parent: 2 + - uid: 16605 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,373.5 - parent: 1 - - uid: 3337 + pos: -18.5,-76.5 + parent: 2 + - uid: 16606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,373.5 - parent: 1 - - uid: 3338 + pos: -20.5,-82.5 + parent: 2 + - uid: 16607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,373.5 - parent: 1 - - uid: 3339 + pos: -19.5,-82.5 + parent: 2 + - uid: 16608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,373.5 - parent: 1 - - uid: 3340 + pos: -18.5,-82.5 + parent: 2 + - uid: 16609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,371.5 - parent: 1 - - uid: 3341 + pos: -17.5,-82.5 + parent: 2 + - uid: 16610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,371.5 - parent: 1 - - uid: 3342 + pos: -17.5,-84.5 + parent: 2 + - uid: 16611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,371.5 - parent: 1 - - uid: 3343 + pos: -12.5,-82.5 + parent: 2 + - uid: 16612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,371.5 - parent: 1 - - uid: 3344 + pos: -11.5,-82.5 + parent: 2 + - uid: 16613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,371.5 - parent: 1 - - uid: 3345 + pos: -10.5,-82.5 + parent: 2 + - uid: 16967 components: - type: Transform rot: 3.141592653589793 rad - pos: 337.5,371.5 - parent: 1 - - uid: 3352 + pos: -147.5,11.5 + parent: 2 + - uid: 17105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,435.5 - parent: 1 - - uid: 3353 + pos: -9.5,-80.5 + parent: 2 + - uid: 17147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,443.5 - parent: 1 - - uid: 3354 + pos: -147.5,-33.5 + parent: 2 + - uid: 17149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,443.5 - parent: 1 - - uid: 3355 + pos: -153.5,-32.5 + parent: 2 + - uid: 17179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,443.5 - parent: 1 - - uid: 3356 + pos: -9.5,-82.5 + parent: 2 + - uid: 17186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,443.5 - parent: 1 - - uid: 3357 + pos: -18.5,-72.5 + parent: 2 + - uid: 17197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,441.5 - parent: 1 - - uid: 3358 + pos: -19.5,-74.5 + parent: 2 + - uid: 17204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,441.5 - parent: 1 - - uid: 3359 + pos: -21.5,-74.5 + parent: 2 + - uid: 17213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,441.5 - parent: 1 - - uid: 3360 + pos: -21.5,-72.5 + parent: 2 + - uid: 17214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,441.5 - parent: 1 - - uid: 3361 + pos: -18.5,-74.5 + parent: 2 + - uid: 17215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,437.5 - parent: 1 - - uid: 3362 + pos: -13.5,-72.5 + parent: 2 + - uid: 17217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,437.5 - parent: 1 - - uid: 3363 + pos: -11.5,-72.5 + parent: 2 + - uid: 17218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,437.5 - parent: 1 - - uid: 3364 + pos: -10.5,-74.5 + parent: 2 + - uid: 17220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,439.5 - parent: 1 - - uid: 3365 + pos: -13.5,-74.5 + parent: 2 + - uid: 17221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,439.5 - parent: 1 - - uid: 3366 + pos: -12.5,-74.5 + parent: 2 + - uid: 17222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,439.5 - parent: 1 - - uid: 3367 + pos: -12.5,-86.5 + parent: 2 + - uid: 17223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,437.5 - parent: 1 - - uid: 3368 + pos: -9.5,-86.5 + parent: 2 + - uid: 17224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,437.5 - parent: 1 - - uid: 3369 + pos: -12.5,-84.5 + parent: 2 + - uid: 17225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,441.5 - parent: 1 - - uid: 3370 + pos: -11.5,-86.5 + parent: 2 + - uid: 17229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,441.5 - parent: 1 - - uid: 3371 + pos: -10.5,-86.5 + parent: 2 + - uid: 17237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,443.5 - parent: 1 - - uid: 3372 + pos: -155.5,-29.5 + parent: 2 + - uid: 17239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,443.5 - parent: 1 - - uid: 3373 + pos: -153.5,-31.5 + parent: 2 + - uid: 17240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,443.5 - parent: 1 - - uid: 3374 + pos: -155.5,-33.5 + parent: 2 + - uid: 17242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,443.5 - parent: 1 - - uid: 3375 + pos: -153.5,-30.5 + parent: 2 + - uid: 17243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,435.5 - parent: 1 - - uid: 3376 + pos: -155.5,-21.5 + parent: 2 + - uid: 17246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,435.5 - parent: 1 - - uid: 3377 + pos: -153.5,-29.5 + parent: 2 + - uid: 17248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,435.5 - parent: 1 - - uid: 3378 + pos: -155.5,-30.5 + parent: 2 + - uid: 17249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,433.5 - parent: 1 - - uid: 3379 + pos: -155.5,-25.5 + parent: 2 + - uid: 17250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,433.5 - parent: 1 - - uid: 3380 + pos: -155.5,-32.5 + parent: 2 + - uid: 17251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,433.5 - parent: 1 - - uid: 3381 + pos: -155.5,-24.5 + parent: 2 + - uid: 17253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,433.5 - parent: 1 - - uid: 3382 + pos: -155.5,-31.5 + parent: 2 + - uid: 17254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,433.5 - parent: 1 - - uid: 3383 + pos: -153.5,-23.5 + parent: 2 + - uid: 17257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,435.5 - parent: 1 - - uid: 3384 + pos: -153.5,-25.5 + parent: 2 + - uid: 17258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,435.5 - parent: 1 - - uid: 3385 + pos: -151.5,-21.5 + parent: 2 + - uid: 17259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,435.5 - parent: 1 - - uid: 3388 + pos: -145.5,-31.5 + parent: 2 + - uid: 17260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,434.5 - parent: 1 - - uid: 3392 + pos: -153.5,-24.5 + parent: 2 + - uid: 17261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,442.5 - parent: 1 - - uid: 3393 + pos: -141.5,-30.5 + parent: 2 + - uid: 17262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,442.5 - parent: 1 - - uid: 3394 + pos: -141.5,-31.5 + parent: 2 + - uid: 17263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,442.5 - parent: 1 - - uid: 3395 + pos: -143.5,-29.5 + parent: 2 + - uid: 17264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,440.5 - parent: 1 - - uid: 3396 + pos: -145.5,-33.5 + parent: 2 + - uid: 17265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,440.5 - parent: 1 - - uid: 3397 + pos: -145.5,-30.5 + parent: 2 + - uid: 17266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,440.5 - parent: 1 - - uid: 3398 + pos: -145.5,-32.5 + parent: 2 + - uid: 17267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,440.5 - parent: 1 - - uid: 3399 + pos: -147.5,-31.5 + parent: 2 + - uid: 17268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,438.5 - parent: 1 - - uid: 3400 + pos: -147.5,-23.5 + parent: 2 + - uid: 17269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,438.5 - parent: 1 - - uid: 3401 + pos: -147.5,-24.5 + parent: 2 + - uid: 17270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,438.5 - parent: 1 - - uid: 3402 + pos: -147.5,-21.5 + parent: 2 + - uid: 17271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,438.5 - parent: 1 - - uid: 3403 + pos: -147.5,-32.5 + parent: 2 + - uid: 17272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 415.5,436.5 - parent: 1 - - uid: 3404 + pos: -145.5,-22.5 + parent: 2 + - uid: 17273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,436.5 - parent: 1 - - uid: 3405 + pos: -145.5,-21.5 + parent: 2 + - uid: 17274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,436.5 - parent: 1 - - uid: 3406 + pos: -145.5,-29.5 + parent: 2 + - uid: 17275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,442.5 - parent: 1 - - uid: 3407 + pos: -147.5,-29.5 + parent: 2 + - uid: 17276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,442.5 - parent: 1 - - uid: 3408 + pos: -149.5,-30.5 + parent: 2 + - uid: 17277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,442.5 - parent: 1 - - uid: 3409 + pos: -147.5,-22.5 + parent: 2 + - uid: 17278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,442.5 - parent: 1 - - uid: 3410 + pos: -151.5,-29.5 + parent: 2 + - uid: 17279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,442.5 - parent: 1 - - uid: 3411 + pos: -149.5,-29.5 + parent: 2 + - uid: 17280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,440.5 - parent: 1 - - uid: 3412 + pos: -145.5,-24.5 + parent: 2 + - uid: 17281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,440.5 - parent: 1 - - uid: 3413 + pos: -145.5,-23.5 + parent: 2 + - uid: 17283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,440.5 - parent: 1 - - uid: 3414 + pos: -151.5,-32.5 + parent: 2 + - uid: 17284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,440.5 - parent: 1 - - uid: 3415 + pos: -149.5,-23.5 + parent: 2 + - uid: 17285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,440.5 - parent: 1 - - uid: 3416 + pos: -145.5,-25.5 + parent: 2 + - uid: 17286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,438.5 - parent: 1 - - uid: 3417 + pos: -151.5,-30.5 + parent: 2 + - uid: 17287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,438.5 - parent: 1 - - uid: 3418 + pos: -151.5,-33.5 + parent: 2 + - uid: 17288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,438.5 - parent: 1 - - uid: 3419 + pos: -151.5,-31.5 + parent: 2 + - uid: 17317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,438.5 - parent: 1 - - uid: 3420 + pos: -149.5,-32.5 + parent: 2 + - uid: 17328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,438.5 - parent: 1 - - uid: 3421 + pos: -153.5,9.5 + parent: 2 + - uid: 17354 components: - type: Transform rot: 3.141592653589793 rad - pos: 430.5,438.5 - parent: 1 - - uid: 3422 + pos: -145.5,11.5 + parent: 2 + - uid: 17362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,436.5 - parent: 1 - - uid: 3423 + pos: -151.5,8.5 + parent: 2 + - uid: 17369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,436.5 - parent: 1 - - uid: 3424 + pos: -153.5,-33.5 + parent: 2 + - uid: 17497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,436.5 - parent: 1 - - uid: 3425 + pos: -147.5,9.5 + parent: 2 + - uid: 17498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,436.5 - parent: 1 - - uid: 3426 + pos: -18.5,-86.5 + parent: 2 + - uid: 17540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,436.5 - parent: 1 - - uid: 3427 + pos: -17.5,-86.5 + parent: 2 + - uid: 17552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,434.5 - parent: 1 - - uid: 3428 + pos: -20.5,-86.5 + parent: 2 + - uid: 17553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,434.5 - parent: 1 - - uid: 3429 + pos: -21.5,-86.5 + parent: 2 + - uid: 17554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,434.5 - parent: 1 - - uid: 3430 + pos: -19.5,-86.5 + parent: 2 + - uid: 17555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,432.5 - parent: 1 - - uid: 3431 + pos: -13.5,-90.5 + parent: 2 + - uid: 17556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,432.5 - parent: 1 - - uid: 3432 + pos: -12.5,-90.5 + parent: 2 + - uid: 17558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,432.5 - parent: 1 - - uid: 3433 + pos: -11.5,-90.5 + parent: 2 + - uid: 17559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,432.5 - parent: 1 - - uid: 3434 + pos: -9.5,-90.5 + parent: 2 + - uid: 17560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,432.5 - parent: 1 - - uid: 3435 + pos: -9.5,-88.5 + parent: 2 + - uid: 17659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,432.5 - parent: 1 - - uid: 3436 + pos: -13.5,-86.5 + parent: 2 + - uid: 17711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,432.5 - parent: 1 - - uid: 3437 + pos: -20.5,-88.5 + parent: 2 + - uid: 17714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,432.5 - parent: 1 - - uid: 3438 + pos: -18.5,-90.5 + parent: 2 + - uid: 17715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,432.5 - parent: 1 - - uid: 3439 + pos: -19.5,-90.5 + parent: 2 + - uid: 17716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,432.5 - parent: 1 - - uid: 3440 + pos: -17.5,-90.5 + parent: 2 + - uid: 17717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,434.5 - parent: 1 - - uid: 3441 + pos: -17.5,-88.5 + parent: 2 + - uid: 17718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,434.5 - parent: 1 - - uid: 3442 + pos: -20.5,-90.5 + parent: 2 + - uid: 17719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,434.5 - parent: 1 - - uid: 3443 + pos: -21.5,-90.5 + parent: 2 + - uid: 17720 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,434.5 - parent: 1 - - uid: 3444 + pos: -19.5,-88.5 + parent: 2 + - uid: 17722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,434.5 - parent: 1 - - uid: 6528 + pos: -18.5,-88.5 + parent: 2 + - uid: 17752 components: - type: Transform - pos: 309.5,439.5 - parent: 1 -- proto: SolarPanelBroken - entities: - - uid: 282 + pos: -17.5,-76.5 + parent: 2 + - uid: 17758 components: - type: Transform - pos: 311.5,439.5 - parent: 1 - - uid: 3273 + pos: -21.5,-88.5 + parent: 2 + - uid: 17759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,350.5 - parent: 1 - - uid: 3274 + pos: -10.5,-90.5 + parent: 2 + - uid: 17760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,352.5 - parent: 1 - - uid: 3275 + pos: -10.5,-88.5 + parent: 2 + - uid: 17761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,352.5 - parent: 1 - - uid: 3276 + pos: -13.5,-88.5 + parent: 2 + - uid: 17762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,356.5 - parent: 1 - - uid: 3281 + pos: -12.5,-88.5 + parent: 2 + - uid: 17763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,358.5 - parent: 1 - - uid: 3282 + pos: -9.5,-84.5 + parent: 2 + - uid: 17764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,360.5 - parent: 1 - - uid: 3346 + pos: -10.5,-84.5 + parent: 2 + - uid: 17765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,373.5 - parent: 1 - - uid: 3347 + pos: -11.5,-84.5 + parent: 2 + - uid: 17766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,373.5 - parent: 1 - - uid: 3348 + pos: -13.5,-84.5 + parent: 2 + - uid: 17767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,373.5 - parent: 1 - - uid: 3349 + pos: -13.5,-82.5 + parent: 2 + - uid: 17768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,371.5 - parent: 1 - - uid: 3350 + pos: -18.5,-84.5 + parent: 2 + - uid: 17769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,365.5 - parent: 1 - - uid: 3386 + pos: -11.5,-88.5 + parent: 2 + - uid: 17770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,433.5 - parent: 1 - - uid: 3387 + pos: -19.5,-84.5 + parent: 2 + - uid: 17771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,433.5 - parent: 1 - - uid: 3389 + pos: -21.5,-84.5 + parent: 2 + - uid: 17772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,439.5 - parent: 1 - - uid: 3391 + pos: -20.5,-84.5 + parent: 2 + - uid: 17773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,441.5 - parent: 1 - - uid: 3445 + pos: -21.5,-82.5 + parent: 2 + - uid: 17774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,434.5 - parent: 1 - - uid: 3446 + pos: -21.5,-80.5 + parent: 2 + - uid: 17775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,432.5 - parent: 1 - - uid: 3447 + pos: -17.5,-80.5 + parent: 2 + - uid: 17776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,434.5 - parent: 1 - - uid: 3448 + pos: -19.5,-80.5 + parent: 2 + - uid: 17777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,436.5 - parent: 1 - - uid: 3449 + pos: -18.5,-80.5 + parent: 2 + - uid: 17778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,438.5 - parent: 1 - - uid: 3450 + pos: -11.5,-80.5 + parent: 2 + - uid: 19767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,440.5 - parent: 1 - - uid: 3451 + pos: -12.5,-80.5 + parent: 2 + - uid: 20648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,440.5 - parent: 1 - - uid: 3452 + pos: -10.5,-80.5 + parent: 2 + - uid: 20649 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,436.5 - parent: 1 -- proto: SolarTracker - entities: - - uid: 3212 + pos: -13.5,-78.5 + parent: 2 + - uid: 20650 components: - type: Transform - pos: 400.5,348.5 - parent: 1 - - uid: 3351 + pos: -20.5,-80.5 + parent: 2 + - uid: 20651 components: - type: Transform - pos: 338.5,361.5 - parent: 1 - - uid: 3453 + pos: -13.5,-76.5 + parent: 2 + - uid: 20652 components: - type: Transform - pos: 422.5,444.5 - parent: 1 - - uid: 4314 + pos: -11.5,-76.5 + parent: 2 + - uid: 20653 components: - type: Transform - pos: 314.5,445.5 - parent: 1 -- proto: SolidSecretDoor - entities: - - uid: 3824 + pos: -10.5,-76.5 + parent: 2 + - uid: 20654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 359.5,430.5 - parent: 1 -- proto: SpaceCash10 - entities: - - uid: 20060 + pos: -12.5,-76.5 + parent: 2 + - uid: 20655 components: - type: Transform - pos: 331.5,442.5 - parent: 1 - - uid: 20062 + pos: -19.5,-78.5 + parent: 2 + - uid: 20656 components: - type: Transform - pos: 342.5,441.5 - parent: 1 -- proto: SpaceCash500 - entities: - - uid: 20753 + pos: -18.5,-78.5 + parent: 2 + - uid: 20657 components: - type: Transform - pos: 3.5,0.5 - parent: 20527 - - uid: 21808 + pos: -20.5,-78.5 + parent: 2 + - uid: 20658 components: - type: Transform - pos: -6.962518,29.44575 - parent: 5072 -- proto: SpaceHeater - entities: - - uid: 6264 + pos: -17.5,-74.5 + parent: 2 + - uid: 20659 components: - type: Transform - pos: 340.5,419.5 - parent: 1 - - uid: 6265 + pos: -13.5,-80.5 + parent: 2 + - uid: 20663 components: - type: Transform - pos: 341.5,419.5 - parent: 1 - - uid: 6276 + pos: -20.5,-72.5 + parent: 2 + - uid: 20664 components: - type: Transform - pos: 340.5,413.5 - parent: 1 - - uid: 6278 + pos: -17.5,-78.5 + parent: 2 + - uid: 20665 components: - type: Transform - pos: 341.5,413.5 - parent: 1 - - uid: 10331 + pos: -20.5,-74.5 + parent: 2 + - uid: 20666 components: - type: Transform - pos: 419.5,380.5 - parent: 1 -- proto: SpacemenFigureSpawner - entities: - - uid: 4885 + pos: -17.5,-72.5 + parent: 2 + - uid: 20668 components: - type: Transform - pos: 414.5,352.5 - parent: 1 -- proto: SpawnMobAlexander - entities: - - uid: 5890 + pos: -19.5,-72.5 + parent: 2 + - uid: 20692 components: - type: Transform - pos: 408.5,384.5 - parent: 1 -- proto: SpawnMobBandito - entities: - - uid: 16406 + pos: -11.5,-74.5 + parent: 2 + - uid: 20845 components: - type: Transform - pos: 411.5,380.5 - parent: 1 -- proto: SpawnMobBear - entities: - - uid: 3097 + pos: -9.5,-74.5 + parent: 2 + - uid: 20847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,420.5 - parent: 1 - - uid: 18525 + pos: -9.5,-72.5 + parent: 2 + - uid: 20848 components: - type: Transform - pos: 491.5,392.5 - parent: 1 - - uid: 18526 + pos: -10.5,-72.5 + parent: 2 + - uid: 20849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 490.5,387.5 - parent: 1 - - uid: 18528 + pos: -12.5,-72.5 + parent: 2 + - uid: 21102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 502.5,392.5 - parent: 1 - - uid: 18530 + pos: -5.5,8.5 + parent: 2 + - uid: 21103 components: - type: Transform - pos: 495.5,396.5 - parent: 1 - - uid: 18536 + pos: -5.5,9.5 + parent: 2 + - uid: 21104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 479.5,367.5 - parent: 1 - - uid: 22160 + pos: -5.5,11.5 + parent: 2 + - uid: 21105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 491.5,374.5 - parent: 1 - - uid: 22162 + pos: -5.5,12.5 + parent: 2 + - uid: 21106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 483.5,368.5 - parent: 1 - - uid: 22165 + pos: -5.5,13.5 + parent: 2 + - uid: 21107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 500.5,396.5 - parent: 1 -- proto: SpawnMobButterfly - entities: - - uid: 21030 + pos: -5.5,10.5 + parent: 2 + - uid: 21108 components: - type: Transform - pos: 395.5,406.5 - parent: 1 -- proto: SpawnMobCarp - entities: - - uid: 17558 + pos: -3.5,13.5 + parent: 2 + - uid: 21109 components: - type: Transform - pos: 508.5,385.5 - parent: 1 - - uid: 17964 + pos: -3.5,12.5 + parent: 2 + - uid: 21110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 483.5,379.5 - parent: 1 - - uid: 17965 + pos: -3.5,10.5 + parent: 2 + - uid: 21111 components: - type: Transform - pos: 500.5,386.5 - parent: 1 - - uid: 21213 + pos: -3.5,9.5 + parent: 2 + - uid: 21112 components: - type: Transform - pos: 509.5,388.5 - parent: 1 - - uid: 21214 + pos: -3.5,8.5 + parent: 2 + - uid: 21113 components: - type: Transform - pos: 510.5,385.5 - parent: 1 - - uid: 21372 + pos: -3.5,11.5 + parent: 2 + - uid: 21114 components: - type: Transform - pos: -1.5,26.5 - parent: 5072 - - uid: 21374 + pos: -1.5,8.5 + parent: 2 + - uid: 21115 components: - type: Transform - pos: 12.5,24.5 - parent: 5072 - - uid: 21467 + pos: -1.5,9.5 + parent: 2 + - uid: 21116 components: - type: Transform - pos: 6.5,25.5 - parent: 5072 - - uid: 21511 + pos: -1.5,11.5 + parent: 2 + - uid: 21117 components: - type: Transform - pos: 4.5,28.5 - parent: 5072 - - uid: 21932 + pos: -1.5,12.5 + parent: 2 + - uid: 21118 components: - type: Transform - pos: -0.5,24.5 - parent: 5072 - - uid: 21933 + pos: -1.5,13.5 + parent: 2 + - uid: 21119 components: - type: Transform - pos: -5.5,28.5 - parent: 5072 - - uid: 21934 + pos: -1.5,10.5 + parent: 2 + - uid: 21120 components: - type: Transform - pos: 10.5,20.5 - parent: 5072 - - uid: 21935 + pos: 0.5,13.5 + parent: 2 + - uid: 21121 components: - type: Transform - pos: 10.5,16.5 - parent: 5072 -- proto: SpawnMobCat - entities: - - uid: 21975 + pos: 0.5,12.5 + parent: 2 + - uid: 21122 components: - type: Transform - pos: 379.5,423.5 - parent: 1 -- proto: SpawnMobCatBingus - entities: - - uid: 4916 + pos: 0.5,10.5 + parent: 2 + - uid: 21123 components: - type: Transform - pos: 346.5,415.5 - parent: 1 -- proto: SpawnMobCatException - entities: - - uid: 16295 + pos: 0.5,9.5 + parent: 2 + - uid: 21124 components: - type: Transform - pos: 396.5,413.5 - parent: 1 -- proto: SpawnMobCatFloppa - entities: - - uid: 721 + pos: 0.5,8.5 + parent: 2 + - uid: 21125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 380.5,410.5 - parent: 1 -- proto: SpawnMobCatRuntime - entities: - - uid: 16298 + pos: 0.5,11.5 + parent: 2 + - uid: 21126 components: - type: Transform - pos: 392.5,415.5 - parent: 1 -- proto: SpawnMobCockroach - entities: - - uid: 15883 + pos: -5.5,17.5 + parent: 2 + - uid: 21127 components: - type: Transform - pos: 409.5,421.5 - parent: 1 - - uid: 15884 + pos: -5.5,18.5 + parent: 2 + - uid: 21128 components: - type: Transform - pos: 415.5,426.5 - parent: 1 -- proto: SpawnMobCorgi - entities: - - uid: 5806 + pos: -5.5,20.5 + parent: 2 + - uid: 21129 components: - type: Transform - pos: 368.5,398.5 - parent: 1 -- proto: SpawnMobCow - entities: - - uid: 3738 + pos: -5.5,21.5 + parent: 2 + - uid: 21130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,385.5 - parent: 1 -- proto: SpawnMobCrabAtmos - entities: - - uid: 6393 + pos: -5.5,22.5 + parent: 2 + - uid: 21131 components: - type: Transform - pos: 339.5,422.5 - parent: 1 -- proto: SpawnMobFoxRenault - entities: - - uid: 22167 + pos: -5.5,19.5 + parent: 2 + - uid: 21132 components: - type: Transform - pos: 363.5,411.5 - parent: 1 -- proto: SpawnMobGorilla - entities: - - uid: 21973 + pos: -3.5,22.5 + parent: 2 + - uid: 21133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,394.5 - parent: 1 -- proto: SpawnMobGorillaLargo - entities: - - uid: 5661 + pos: -3.5,21.5 + parent: 2 + - uid: 21134 components: - type: Transform - pos: 355.5,381.5 - parent: 1 -- proto: SpawnMobKangarooWillow - entities: - - uid: 4803 + pos: -3.5,20.5 + parent: 2 + - uid: 21135 components: - type: Transform - pos: 392.5,371.5 - parent: 1 -- proto: SpawnMobMcGriff - entities: - - uid: 5241 + pos: -3.5,19.5 + parent: 2 + - uid: 21136 components: - type: Transform - pos: 420.5,411.5 - parent: 1 -- proto: SpawnMobMedibot - entities: - - uid: 20033 + pos: -3.5,18.5 + parent: 2 + - uid: 21137 components: - type: Transform - pos: 406.5,416.5 - parent: 1 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 16396 + pos: -3.5,17.5 + parent: 2 + - uid: 21138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,392.5 - parent: 1 -- proto: SpawnMobPossumMorty - entities: - - uid: 722 + pos: -1.5,17.5 + parent: 2 + - uid: 21139 components: - type: Transform - pos: 396.5,421.5 - parent: 1 -- proto: SpawnMobShiva - entities: - - uid: 6106 + pos: -1.5,18.5 + parent: 2 + - uid: 21140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,387.5 - parent: 1 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 5946 + pos: -1.5,19.5 + parent: 2 + - uid: 21141 components: - type: Transform - pos: 424.5,357.5 - parent: 1 -- proto: SpawnMobSmile - entities: - - uid: 7504 + pos: -1.5,20.5 + parent: 2 + - uid: 21142 components: - type: Transform - pos: 351.5,388.5 - parent: 1 -- proto: SpawnMobWalter - entities: - - uid: 16276 + pos: -1.5,22.5 + parent: 2 + - uid: 21143 components: - type: Transform - pos: 407.5,409.5 - parent: 1 -- proto: SpawnPointAtmos - entities: - - uid: 22061 + pos: -1.5,21.5 + parent: 2 + - uid: 21144 components: - type: Transform - pos: 331.5,413.5 - parent: 1 - - uid: 22062 + pos: 0.5,22.5 + parent: 2 + - uid: 21145 components: - type: Transform - pos: 342.5,407.5 - parent: 1 - - uid: 22063 + pos: 0.5,20.5 + parent: 2 + - uid: 21146 components: - type: Transform - pos: 340.5,422.5 - parent: 1 - - uid: 22064 + pos: 0.5,19.5 + parent: 2 + - uid: 21147 components: - type: Transform - pos: 339.5,414.5 - parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 16409 + pos: 0.5,18.5 + parent: 2 + - uid: 21148 components: - type: Transform - pos: 419.5,388.5 - parent: 1 - - uid: 16410 + pos: 0.5,17.5 + parent: 2 + - uid: 21149 components: - type: Transform - pos: 415.5,392.5 - parent: 1 -- proto: SpawnPointBorg - entities: - - uid: 7447 + pos: 0.5,21.5 + parent: 2 + - uid: 21150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,397.5 - parent: 1 - - uid: 7448 + pos: 0.5,4.5 + parent: 2 + - uid: 21151 components: - type: Transform - pos: 307.5,411.5 - parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 16401 + pos: 0.5,3.5 + parent: 2 + - uid: 21152 components: - type: Transform - pos: 409.5,380.5 - parent: 1 - - uid: 16403 + pos: 0.5,1.5 + parent: 2 + - uid: 21153 components: - type: Transform - pos: 415.5,378.5 - parent: 1 -- proto: SpawnPointBoxer - entities: - - uid: 18702 + pos: 0.5,0.5 + parent: 2 + - uid: 21154 components: - type: Transform - pos: 393.5,371.5 - parent: 1 -- proto: SpawnPointCaptain - entities: - - uid: 16429 + pos: 0.5,-0.5 + parent: 2 + - uid: 21155 components: - type: Transform - pos: 364.5,414.5 - parent: 1 - - uid: 16430 + pos: 0.5,2.5 + parent: 2 + - uid: 21156 components: - type: Transform - pos: 390.5,412.5 - parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 16419 + pos: -1.5,-0.5 + parent: 2 + - uid: 21157 components: - type: Transform - pos: 360.5,389.5 - parent: 1 - - uid: 16420 + pos: -1.5,0.5 + parent: 2 + - uid: 21158 components: - type: Transform - pos: 369.5,378.5 - parent: 1 - - uid: 16422 + pos: -1.5,2.5 + parent: 2 + - uid: 21159 components: - type: Transform - pos: 339.5,401.5 - parent: 1 -- proto: SpawnPointChaplain - entities: - - uid: 16099 + pos: -1.5,3.5 + parent: 2 + - uid: 21160 components: - type: Transform - pos: 412.5,389.5 - parent: 1 - - uid: 20073 + pos: -1.5,4.5 + parent: 2 + - uid: 21161 components: - type: Transform - pos: 335.5,441.5 - parent: 1 - - uid: 20074 + pos: -1.5,1.5 + parent: 2 + - uid: 21162 components: - type: Transform - pos: 342.5,437.5 - parent: 1 - - uid: 20075 + pos: -3.5,4.5 + parent: 2 + - uid: 21163 components: - type: Transform - pos: 332.5,438.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 16397 + pos: -3.5,3.5 + parent: 2 + - uid: 21164 components: - type: Transform - pos: 408.5,392.5 - parent: 1 - - uid: 16398 + pos: -3.5,2.5 + parent: 2 + - uid: 21165 components: - type: Transform - pos: 409.5,382.5 - parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 22020 + pos: -3.5,1.5 + parent: 2 + - uid: 21166 components: - type: Transform - pos: 408.5,406.5 - parent: 1 - - uid: 22021 + pos: -3.5,-0.5 + parent: 2 + - uid: 21167 components: - type: Transform - pos: 411.5,413.5 - parent: 1 - - uid: 22023 + pos: -3.5,0.5 + parent: 2 + - uid: 21168 components: - type: Transform - pos: 409.5,410.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 21999 + pos: -5.5,-0.5 + parent: 2 + - uid: 21169 components: - type: Transform - pos: 349.5,416.5 - parent: 1 - - uid: 22000 + pos: -5.5,0.5 + parent: 2 + - uid: 21170 components: - type: Transform - pos: 378.5,423.5 - parent: 1 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 16296 + pos: -5.5,1.5 + parent: 2 + - uid: 21171 components: - type: Transform - pos: 393.5,415.5 - parent: 1 -- proto: SpawnPointClown - entities: - - uid: 5546 + pos: -5.5,3.5 + parent: 2 + - uid: 21172 components: - type: Transform - pos: 390.5,418.5 - parent: 1 - - uid: 5548 + pos: -5.5,4.5 + parent: 2 + - uid: 21173 components: - type: Transform - pos: 396.5,407.5 - parent: 1 -- proto: SpawnPointDetective - entities: - - uid: 16391 + pos: -5.5,2.5 + parent: 2 + - uid: 22483 components: - type: Transform rot: 3.141592653589793 rad - pos: 415.5,407.5 - parent: 1 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 16432 + pos: -149.5,16.5 + parent: 2 + - uid: 22669 components: - type: Transform - pos: 366.5,398.5 - parent: 1 - - uid: 16433 + rot: 3.141592653589793 rad + pos: -155.5,18.5 + parent: 2 + - uid: 22906 components: - type: Transform - pos: 371.5,392.5 - parent: 1 - - uid: 16434 + rot: 3.141592653589793 rad + pos: -151.5,17.5 + parent: 2 + - uid: 23158 components: - type: Transform - pos: 379.5,413.5 - parent: 1 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 16358 + rot: 3.141592653589793 rad + pos: -153.5,18.5 + parent: 2 + - uid: 24361 components: - type: Transform - pos: 429.5,388.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 16407 + rot: 3.141592653589793 rad + pos: -147.5,19.5 + parent: 2 + - uid: 24443 components: - type: Transform - pos: 411.5,362.5 - parent: 1 -- proto: SpawnPointLawyer - entities: - - uid: 5547 + rot: 3.141592653589793 rad + pos: -147.5,17.5 + parent: 2 + - uid: 24453 components: - type: Transform - pos: 415.5,403.5 - parent: 1 - - uid: 16437 + rot: 3.141592653589793 rad + pos: -147.5,16.5 + parent: 2 + - uid: 24458 components: - type: Transform - pos: 436.5,412.5 - parent: 1 -- proto: SpawnPointLibrarian - entities: - - uid: 16264 + rot: 3.141592653589793 rad + pos: -145.5,17.5 + parent: 2 + - uid: 24459 components: - type: Transform - pos: 415.5,353.5 - parent: 1 - - uid: 16414 + rot: 3.141592653589793 rad + pos: -147.5,18.5 + parent: 2 + - uid: 24469 components: - type: Transform - pos: 424.5,356.5 - parent: 1 - - uid: 16415 + rot: 3.141592653589793 rad + pos: -149.5,17.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 4431 components: - type: Transform - pos: 421.5,359.5 - parent: 1 - - uid: 16416 + pos: -54.5,-80.5 + parent: 2 + - uid: 7232 components: - type: Transform - pos: 412.5,368.5 - parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 16328 + pos: -15.5,-90.5 + parent: 2 + - uid: 14669 components: - type: Transform - pos: 400.5,407.5 - parent: 1 - - uid: 16329 + pos: -155.5,13.5 + parent: 2 + - uid: 17255 components: - type: Transform - pos: 408.5,414.5 - parent: 1 - - uid: 16330 + pos: -155.5,-27.5 + parent: 2 + - uid: 21247 components: - type: Transform - pos: 396.5,419.5 - parent: 1 -- proto: SpawnPointMedicalIntern + pos: 0.5,6.5 + parent: 2 +- proto: SolidSecretDoor entities: - - uid: 21201 + - uid: 501 components: - type: Transform - pos: 400.5,406.5 - parent: 1 - - uid: 22024 + pos: -39.5,-47.5 + parent: 2 + - uid: 1163 components: - type: Transform - pos: 406.5,413.5 - parent: 1 - - uid: 22027 + rot: -1.5707963267948966 rad + pos: -122.5,33.5 + parent: 2 + - uid: 20339 components: - type: Transform - pos: 400.5,417.5 - parent: 1 -- proto: SpawnPointMime - entities: - - uid: 5549 + pos: -43.5,-70.5 + parent: 2 + - uid: 20383 components: - type: Transform - pos: 396.5,410.5 - parent: 1 -- proto: SpawnPointMusician + rot: -1.5707963267948966 rad + pos: -72.5,-53.5 + parent: 2 +- proto: SpaceCash10 entities: - - uid: 5528 + - uid: 9835 components: - type: Transform - pos: 390.5,407.5 - parent: 1 -- proto: SpawnPointObserver - entities: - - uid: 20034 + pos: -21.315592,1.8239067 + parent: 2 + - uid: 19879 components: - type: Transform - pos: 384.5,399.5 - parent: 1 -- proto: SpawnPointParamedic + pos: -21.659342,1.4020317 + parent: 2 +- proto: SpaceHeaterEnabled entities: - - uid: 22030 + - uid: 16180 components: - type: Transform - pos: 407.5,421.5 - parent: 1 - - uid: 22031 + pos: -86.5,-9.5 + parent: 2 +- proto: SpacemenFigureSpawner + entities: + - uid: 26079 components: - type: Transform - pos: 404.5,421.5 - parent: 1 - - uid: 22032 + pos: -50.5,-56.5 + parent: 2 + - uid: 26080 components: - type: Transform - pos: 396.5,420.5 - parent: 1 -- proto: SpawnPointPassenger - entities: - - uid: 18159 + pos: -49.5,-56.5 + parent: 2 + - uid: 26081 components: - type: Transform - pos: 415.5,352.5 - parent: 1 - - uid: 18197 + pos: -50.5,-56.5 + parent: 2 + - uid: 26083 components: - type: Transform - pos: 366.5,400.5 - parent: 1 - - uid: 18198 + pos: -49.5,-56.5 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 9588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 389.5,388.5 - parent: 1 - - uid: 18199 - components: - - type: Transform - pos: 419.5,370.5 - parent: 1 - - uid: 18200 + pos: -92.5,-46.5 + parent: 2 + - uid: 9724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,359.5 - parent: 1 - - uid: 18204 + rot: -1.5707963267948966 rad + pos: -115.5,20.5 + parent: 2 +- proto: SpawnMechRipley + entities: + - uid: 19753 components: - type: Transform - pos: 409.5,416.5 - parent: 1 - - uid: 18205 + pos: -86.5,19.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 4258 components: - type: Transform - pos: 358.5,392.5 - parent: 1 -- proto: SpawnPointPilot + pos: -37.5,-50.5 + parent: 2 +- proto: SpawnMobCatRuntime entities: - - uid: 5236 + - uid: 13271 components: - type: Transform - pos: 443.5,395.5 - parent: 1 -- proto: SpawnPointPsychologist + pos: -32.5,-42.5 + parent: 2 +- proto: SpawnMobCleanBot entities: - - uid: 16302 + - uid: 2419 components: - type: Transform - pos: 416.5,414.5 - parent: 1 -- proto: SpawnPointQuartermaster + pos: -132.5,-35.5 + parent: 2 +- proto: SpawnMobCorgi entities: - - uid: 16423 + - uid: 2955 components: - type: Transform - pos: 353.5,381.5 - parent: 1 -- proto: SpawnPointReporter + pos: -46.5,-9.5 + parent: 2 +- proto: SpawnMobFoxRenault entities: - - uid: 16413 + - uid: 22264 components: - type: Transform - pos: 400.5,370.5 - parent: 1 -- proto: SpawnPointResearchAssistant + pos: -53.5,-1.5 + parent: 2 +- proto: SpawnMobMcGriff entities: - - uid: 16338 + - uid: 22277 components: - type: Transform - pos: 355.5,388.5 - parent: 1 - - uid: 16339 + pos: -92.5,-20.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 15901 components: - type: Transform - pos: 347.5,399.5 - parent: 1 -- proto: SpawnPointResearchDirector + pos: -68.5,-26.5 + parent: 2 +- proto: SpawnMobParrot entities: - - uid: 16337 + - uid: 16489 components: - type: Transform - pos: 351.5,384.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist + pos: -126.5,-18.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia entities: - - uid: 16425 + - uid: 12764 components: - type: Transform - pos: 359.5,377.5 - parent: 1 - - uid: 16426 + pos: -88.5,33.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 17787 components: - type: Transform - pos: 412.5,390.5 - parent: 1 -- proto: SpawnPointScientist + pos: -80.5,-35.5 + parent: 2 +- proto: SpawnMobSmile entities: - - uid: 16332 + - uid: 16196 components: - type: Transform - pos: 352.5,388.5 - parent: 1 - - uid: 16333 + pos: -125.5,-45.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 21747 components: - type: Transform - pos: 341.5,398.5 - parent: 1 - - uid: 16334 + pos: -119.5,2.5 + parent: 2 + - uid: 21750 components: - type: Transform - pos: 355.5,400.5 - parent: 1 - - uid: 16335 + pos: -110.5,-6.5 + parent: 2 + - uid: 21754 components: - type: Transform - pos: 350.5,388.5 - parent: 1 - - uid: 16336 + pos: -140.5,-4.5 + parent: 2 + - uid: 22805 components: - type: Transform - pos: 361.5,393.5 - parent: 1 -- proto: SpawnPointSecurityCadet + pos: -122.5,15.5 + parent: 2 +- proto: SpawnPointBartender entities: - - uid: 16359 + - uid: 3838 components: - type: Transform - pos: 419.5,392.5 - parent: 1 - - uid: 16360 + pos: -68.5,-36.5 + parent: 2 + - uid: 9219 components: - type: Transform - pos: 431.5,401.5 - parent: 1 - - uid: 16361 + pos: -68.5,-31.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 22242 components: - type: Transform - pos: 421.5,404.5 - parent: 1 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 16362 + pos: -115.5,-50.5 + parent: 2 + - uid: 22243 components: - type: Transform - pos: 420.5,392.5 - parent: 1 - - uid: 16363 + pos: -115.5,-52.5 + parent: 2 + - uid: 22244 components: - type: Transform - pos: 415.5,405.5 - parent: 1 - - uid: 16364 + pos: -113.5,-52.5 + parent: 2 + - uid: 22245 components: - type: Transform - pos: 460.5,416.5 - parent: 1 -- proto: SpawnPointServiceWorker + pos: -113.5,-50.5 + parent: 2 +- proto: SpawnPointBotanist entities: - - uid: 22022 + - uid: 16533 components: - type: Transform - pos: 408.5,391.5 - parent: 1 - - uid: 22025 + pos: -55.5,-22.5 + parent: 2 + - uid: 22089 components: - type: Transform - pos: 412.5,388.5 - parent: 1 - - uid: 22026 + pos: -46.5,-23.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 2872 components: - type: Transform - pos: 415.5,391.5 - parent: 1 -- proto: SpawnPointStationEngineer + pos: -50.5,2.5 + parent: 2 +- proto: SpawnPointCargoTechnician entities: - - uid: 21993 + - uid: 21762 components: - type: Transform - pos: 341.5,406.5 - parent: 1 - - uid: 21994 + pos: -100.5,13.5 + parent: 2 + - uid: 21763 components: - type: Transform - pos: 350.5,411.5 - parent: 1 - - uid: 21995 + pos: -96.5,11.5 + parent: 2 + - uid: 21764 components: - type: Transform - pos: 327.5,411.5 - parent: 1 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 21996 + pos: -95.5,11.5 + parent: 2 + - uid: 21765 components: - type: Transform - pos: 342.5,406.5 - parent: 1 - - uid: 21997 + pos: -95.5,9.5 + parent: 2 + - uid: 21766 components: - type: Transform - pos: 341.5,411.5 - parent: 1 - - uid: 21998 + pos: -96.5,9.5 + parent: 2 + - uid: 21767 components: - type: Transform - pos: 341.5,404.5 - parent: 1 -- proto: SpawnPointWarden + pos: -90.5,24.5 + parent: 2 +- proto: SpawnPointChaplain entities: - - uid: 16368 + - uid: 22111 components: - type: Transform - pos: 424.5,408.5 - parent: 1 - - uid: 16369 + pos: -45.5,-51.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 22091 components: - type: Transform - pos: 448.5,403.5 - parent: 1 -- proto: SpectralLocatorUnpowered - entities: - - uid: 16265 + pos: -55.5,-31.5 + parent: 2 + - uid: 22093 components: - type: Transform - pos: 355.5,413.5 - parent: 1 -- proto: SpiderWebClown + pos: -53.5,-27.5 + parent: 2 +- proto: SpawnPointChemist entities: - - uid: 5516 + - uid: 22248 components: - type: Transform - pos: 390.5,412.5 - parent: 1 - - uid: 5517 + pos: -38.5,-25.5 + parent: 2 + - uid: 22249 components: - type: Transform - pos: 390.5,413.5 - parent: 1 - - uid: 5518 + pos: -38.5,-17.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 21761 components: - type: Transform - pos: 390.5,414.5 - parent: 1 - - uid: 5519 + pos: -123.5,-17.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 25677 components: - type: Transform - pos: 389.5,414.5 - parent: 1 - - uid: 5520 + pos: -36.5,-41.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 22959 components: - type: Transform - pos: 390.5,415.5 - parent: 1 - - uid: 5521 + pos: -52.5,-37.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 22076 components: - type: Transform - pos: 390.5,416.5 - parent: 1 -- proto: SprayPainter - entities: - - uid: 18734 + pos: -97.5,-38.5 + parent: 2 + - uid: 22077 components: - type: Transform - pos: 421.5,370.5 - parent: 1 - - uid: 21147 + pos: -98.5,-34.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 22085 components: - type: Transform - pos: 405.5,368.5 - parent: 1 -- proto: StairDark + pos: -45.5,-5.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity entities: - - uid: 3475 + - uid: 22080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,401.5 - parent: 1 - - uid: 3476 + pos: -82.5,-34.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 25669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,401.5 - parent: 1 - - uid: 5136 + pos: -18.5,-3.5 + parent: 2 + - uid: 25670 components: - type: Transform - pos: 418.5,409.5 - parent: 1 - - uid: 5496 + pos: -18.5,-5.5 + parent: 2 + - uid: 25671 components: - type: Transform - pos: 395.5,414.5 - parent: 1 - - uid: 18385 + pos: -18.5,-4.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 22057 components: - type: Transform - pos: 338.5,388.5 - parent: 1 - - uid: 18645 + pos: -97.5,-46.5 + parent: 2 + - uid: 22059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,439.5 - parent: 1 -- proto: StairStageDark + pos: -94.5,-28.5 + parent: 2 +- proto: SpawnPointLibrarian entities: - - uid: 5980 + - uid: 22107 components: - type: Transform - pos: 327.5,405.5 - parent: 1 - - uid: 6002 + pos: -45.5,-55.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 22252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,393.5 - parent: 1 - - uid: 18350 + pos: -25.5,-43.5 + parent: 2 + - uid: 22253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 434.5,391.5 - parent: 1 - - uid: 18379 + pos: -24.5,-43.5 + parent: 2 + - uid: 22254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 434.5,389.5 - parent: 1 - - uid: 18380 + pos: -23.5,-43.5 + parent: 2 + - uid: 22255 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,388.5 - parent: 1 -- proto: StasisBed + pos: -22.5,-43.5 + parent: 2 +- proto: SpawnPointMedicalIntern entities: - - uid: 5381 + - uid: 8372 components: - type: Transform - pos: 409.5,418.5 - parent: 1 - - uid: 5382 + pos: -32.5,-19.5 + parent: 2 + - uid: 22257 components: - type: Transform - pos: 407.5,418.5 - parent: 1 - - uid: 5393 + pos: -34.5,-49.5 + parent: 2 + - uid: 22258 components: - type: Transform - pos: 403.5,418.5 - parent: 1 - - uid: 5394 + pos: -35.5,-50.5 + parent: 2 + - uid: 22259 components: - type: Transform - pos: 403.5,417.5 - parent: 1 -- proto: StationAiUploadComputer + pos: -33.5,-50.5 + parent: 2 +- proto: SpawnPointMime entities: - - uid: 6586 + - uid: 21744 components: - type: Transform - pos: 307.5,408.5 - parent: 1 -- proto: StationAnchor + pos: -53.5,-37.5 + parent: 2 +- proto: SpawnPointMusician entities: - - uid: 3599 + - uid: 22113 components: - type: Transform - pos: 362.5,421.5 - parent: 1 -- proto: StationEfficiencyCircuitBoard + pos: -54.5,-37.5 + parent: 2 +- proto: SpawnPointObserver entities: - - uid: 6659 + - uid: 23941 components: - type: Transform - pos: 306.5,408.5 - parent: 1 -- proto: StationMap + pos: -61.5,-15.5 + parent: 2 +- proto: SpawnPointParamedic entities: - - uid: 15908 + - uid: 22246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 388.5,384.5 - parent: 1 - - uid: 15909 + pos: -23.5,-25.5 + parent: 2 + - uid: 22247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,387.5 - parent: 1 - - uid: 15910 + pos: -22.5,-25.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 3497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,378.5 - parent: 1 - - uid: 15911 + pos: -25.5,-4.5 + parent: 2 + - uid: 3498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,401.5 - parent: 1 - - uid: 15912 + pos: -25.5,-5.5 + parent: 2 + - uid: 19801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,399.5 - parent: 1 - - uid: 15913 + pos: -22.5,-5.5 + parent: 2 + - uid: 19807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,401.5 - parent: 1 - - uid: 15915 + pos: -22.5,-4.5 + parent: 2 + - uid: 21472 components: - type: Transform - pos: 388.5,405.5 - parent: 1 - - uid: 15916 + pos: -56.5,-15.5 + parent: 2 + - uid: 22115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,386.5 - parent: 1 - - uid: 15917 + pos: -61.5,-30.5 + parent: 2 + - uid: 22116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,398.5 - parent: 1 - - uid: 15918 + pos: -66.5,-15.5 + parent: 2 + - uid: 22117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,402.5 - parent: 1 - - uid: 15919 + pos: -61.5,-24.5 + parent: 2 + - uid: 22119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,409.5 - parent: 1 - - uid: 15920 + pos: -29.5,15.5 + parent: 2 + - uid: 22127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,409.5 - parent: 1 -- proto: StationMapBroken - entities: - - uid: 15914 + pos: -62.5,-52.5 + parent: 2 + - uid: 22129 components: - type: Transform - pos: 371.5,405.5 - parent: 1 -- proto: StealthBox - entities: - - uid: 5063 + pos: -62.5,-53.5 + parent: 2 + - uid: 22130 components: - type: Transform - pos: 415.5,399.5 - parent: 1 -- proto: SteelOre1 - entities: - - uid: 15399 + pos: -62.5,-54.5 + parent: 2 + - uid: 23360 components: - type: Transform - pos: 331.5,396.5 - parent: 1 - - uid: 15400 + pos: -22.5,-6.5 + parent: 2 + - uid: 23748 components: - type: Transform - pos: 333.5,399.5 - parent: 1 -- proto: StoolBar + pos: -25.5,-6.5 + parent: 2 +- proto: SpawnPointPsychologist entities: - - uid: 435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,388.5 - parent: 1 - - uid: 4479 + - uid: 25678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,389.5 - parent: 1 - - uid: 4480 + pos: -18.5,-17.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 16460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,390.5 - parent: 1 - - uid: 4907 + pos: -86.5,30.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 25675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,389.5 - parent: 1 - - uid: 4910 + pos: -110.5,-31.5 + parent: 2 + - uid: 25676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,388.5 - parent: 1 - - uid: 4911 + pos: -113.5,-30.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 25700 components: - type: Transform - pos: 415.5,388.5 - parent: 1 - - uid: 4982 + pos: -128.5,-46.5 + parent: 2 + - uid: 25701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,392.5 - parent: 1 - - uid: 5294 + pos: -128.5,-44.5 + parent: 2 + - uid: 25702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,416.5 - parent: 1 - - uid: 5295 + pos: -126.5,-44.5 + parent: 2 + - uid: 25703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 448.5,416.5 - parent: 1 - - uid: 5296 + pos: -126.5,-46.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 21489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,416.5 - parent: 1 - - uid: 5297 + pos: -133.5,-47.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 25679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,416.5 - parent: 1 - - uid: 17096 + pos: -93.5,29.5 + parent: 2 + - uid: 25680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,449.5 - parent: 1 - - uid: 17115 + pos: -92.5,29.5 + parent: 2 + - uid: 25681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,449.5 - parent: 1 - - uid: 17117 + pos: -92.5,27.5 + parent: 2 + - uid: 25682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,449.5 - parent: 1 - - uid: 17176 + pos: -93.5,27.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 21456 components: - type: Transform - pos: 337.5,451.5 - parent: 1 - - uid: 17193 + pos: -120.5,-41.5 + parent: 2 + - uid: 21457 components: - type: Transform - pos: 336.5,451.5 - parent: 1 - - uid: 17194 + pos: -120.5,-49.5 + parent: 2 + - uid: 21462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,453.5 - parent: 1 -- proto: StorageCanister + pos: -127.5,-38.5 + parent: 2 +- proto: SpawnPointSecurityCadet entities: - - uid: 4877 + - uid: 22060 components: - type: Transform - pos: 345.5,430.5 - parent: 1 - - uid: 7373 + pos: -94.5,-31.5 + parent: 2 + - uid: 22061 components: - type: Transform - pos: 328.5,423.5 - parent: 1 - - uid: 7374 + pos: -94.5,-32.5 + parent: 2 + - uid: 22062 components: - type: Transform - pos: 351.5,425.5 - parent: 1 - - uid: 7375 + pos: -92.5,-31.5 + parent: 2 + - uid: 22063 components: - type: Transform - pos: 351.5,424.5 - parent: 1 - - uid: 7376 + pos: -92.5,-32.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 16192 components: - type: Transform - pos: 351.5,422.5 - parent: 1 - - uid: 7377 + pos: -85.5,-26.5 + parent: 2 + - uid: 22067 components: - type: Transform - pos: 351.5,421.5 - parent: 1 - - uid: 7391 + pos: -84.5,-26.5 + parent: 2 + - uid: 22068 components: - type: Transform - pos: 349.5,430.5 - parent: 1 - - uid: 7394 + pos: -83.5,-26.5 + parent: 2 + - uid: 22069 components: - type: Transform - pos: 316.5,422.5 - parent: 1 - - uid: 20447 + pos: -83.5,-28.5 + parent: 2 + - uid: 22070 components: - type: Transform - pos: 4.5,2.5 - parent: 20181 -- proto: Stunbaton + pos: -84.5,-28.5 + parent: 2 + - uid: 22071 + components: + - type: Transform + pos: -85.5,-28.5 + parent: 2 +- proto: SpawnPointServiceWorker entities: - - uid: 16393 + - uid: 22110 components: - type: Transform - pos: 422.5,395.5 - parent: 1 -- proto: SubstationBasic + pos: -64.5,-31.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 +- proto: SpawnPointStationEngineer entities: - - uid: 3196 + - uid: 21748 components: - - type: MetaData - name: подстанция карго - type: Transform - pos: 362.5,380.5 - parent: 1 - - uid: 3197 + pos: -140.5,-5.5 + parent: 2 + - uid: 21755 components: - - type: MetaData - name: подстанция рнд - type: Transform - pos: 347.5,383.5 - parent: 1 - - uid: 3203 + pos: -110.5,-14.5 + parent: 2 + - uid: 21756 components: - - type: MetaData - name: подстанция теслы&сингулярности - type: Transform - pos: 297.5,382.5 - parent: 1 - - uid: 3204 + pos: -114.5,-17.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 21757 components: - - type: MetaData - name: подстанция инженерии - type: Transform - pos: 330.5,408.5 - parent: 1 - - uid: 3206 + pos: -116.5,-20.5 + parent: 2 + - uid: 21758 components: - - type: MetaData - name: подстанция общего коридора - type: Transform - pos: 355.5,414.5 - parent: 1 - - uid: 3207 + pos: -116.5,-21.5 + parent: 2 + - uid: 21759 components: - - type: MetaData - name: подстанция солнечных панелей - type: Transform - pos: 318.5,430.5 - parent: 1 - - uid: 3208 + pos: -114.5,-20.5 + parent: 2 + - uid: 21760 components: - - type: MetaData - name: подстанция капитана - type: Transform - pos: 361.5,406.5 - parent: 1 - - uid: 3209 + pos: -114.5,-21.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 22079 components: - - type: MetaData - name: подстанция мостика - type: Transform - pos: 393.5,419.5 - parent: 1 - - uid: 3211 + pos: -92.5,-18.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 6994 components: - - type: MetaData - name: подстанция брига - type: Transform - pos: 434.5,413.5 - parent: 1 - - uid: 3213 + parent: 3368 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 7495 components: - - type: MetaData - name: подстанция брига&дорм - type: Transform - pos: 420.5,383.5 - parent: 1 - - uid: 3217 + parent: 3368 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8032 components: - - type: MetaData - name: подстанция меда - type: Transform - pos: 422.5,420.5 - parent: 1 - - uid: 5818 + parent: 3368 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8160 components: - - type: MetaData - name: подстанция хранилища - type: Transform - pos: 328.5,396.5 - parent: 1 - - uid: 6242 + parent: 7826 + - type: Physics + canCollide: False + - uid: 12886 components: - - type: MetaData - name: подстанция генератора гравитации - type: Transform - pos: 369.5,422.5 - parent: 1 - - uid: 6427 + pos: -66.5,-54.5 + parent: 2 + - uid: 18921 components: - - type: MetaData - name: подстанция ИИ - type: Transform - pos: 308.5,420.5 - parent: 1 - - uid: 17680 + pos: -36.536697,-46.489597 + parent: 2 + - uid: 23202 components: - type: Transform - pos: 499.5,385.5 - parent: 1 - - uid: 21556 + pos: -21.5,-36.5 + parent: 2 + - uid: 24635 components: - - type: MetaData - name: bridge substation - type: Transform - pos: 12.5,21.5 - parent: 5072 -- proto: SubstationMachineCircuitboard - entities: - - uid: 5871 + pos: -37.085976,-30.474735 + parent: 2 + - uid: 25710 components: - type: Transform - pos: 310.5,382.5 - parent: 1 -- proto: SubstationWallBasic + pos: -85.4901,-44.3657 + parent: 2 +- proto: StairDark entities: - - uid: 16196 + - uid: 3867 components: - type: Transform - pos: 1.5,5.5 - parent: 16114 - - uid: 20448 + rot: -1.5707963267948966 rad + pos: -46.5,-47.5 + parent: 2 + - uid: 3868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 20181 - - uid: 20449 + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 + parent: 2 +- proto: Stairs + entities: + - uid: 5582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 20181 - - uid: 20754 + pos: -119.5,11.5 + parent: 2 + - uid: 6003 components: - type: Transform - pos: 1.5,9.5 - parent: 20527 -- proto: SuitStorageAtmos - entities: - - uid: 6284 + pos: -120.5,11.5 + parent: 2 + - uid: 9563 components: - type: Transform - pos: 329.5,413.5 - parent: 1 -- proto: SuitStorageBase + pos: -118.5,11.5 + parent: 2 +- proto: StairStage entities: - - uid: 17690 + - uid: 2716 components: - type: Transform - pos: 502.5,380.5 - parent: 1 - - uid: 17716 + rot: -1.5707963267948966 rad + pos: -63.5,3.5 + parent: 2 + - uid: 2717 components: - type: Transform - pos: 502.5,381.5 - parent: 1 -- proto: SuitStorageCaptain - entities: - - uid: 5755 + rot: 1.5707963267948966 rad + pos: -59.5,3.5 + parent: 2 + - uid: 2722 components: - type: Transform - pos: 363.5,413.5 - parent: 1 -- proto: SuitStorageCMO - entities: - - uid: 5483 + pos: -58.5,-1.5 + parent: 2 + - uid: 2734 components: - type: Transform - pos: 392.5,416.5 - parent: 1 -- proto: SuitStorageEVA - entities: - - uid: 3838 + pos: -64.5,-1.5 + parent: 2 + - uid: 7254 components: - type: Transform - pos: 332.5,398.5 - parent: 1 - - uid: 3839 + rot: -1.5707963267948966 rad + pos: -96.5,34.5 + parent: 2 + - uid: 17828 components: - type: Transform - pos: 333.5,398.5 - parent: 1 - - uid: 3840 + rot: 1.5707963267948966 rad + pos: -87.5,-49.5 + parent: 2 + - uid: 20310 components: - type: Transform - pos: 334.5,398.5 - parent: 1 - - uid: 3841 + rot: -1.5707963267948966 rad + pos: -96.5,29.5 + parent: 2 + - uid: 23190 components: - type: Transform - pos: 334.5,397.5 - parent: 1 - - uid: 3842 + rot: -1.5707963267948966 rad + pos: -56.5,-71.5 + parent: 2 +- proto: StairStageDark + entities: + - uid: 1203 components: - type: Transform - pos: 333.5,397.5 - parent: 1 - - uid: 3843 + rot: -1.5707963267948966 rad + pos: -62.5,-35.5 + parent: 2 + - uid: 16806 components: - type: Transform - pos: 332.5,397.5 - parent: 1 - - uid: 3847 + pos: -69.5,-72.5 + parent: 2 + - uid: 16826 components: - type: Transform - pos: 336.5,399.5 - parent: 1 - - uid: 3848 + pos: -65.5,-72.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 4033 components: - type: Transform - pos: 336.5,398.5 - parent: 1 - - uid: 3849 + pos: -25.5,-32.5 + parent: 2 + - uid: 4034 components: - type: Transform - pos: 336.5,395.5 - parent: 1 - - uid: 3850 + pos: -23.5,-32.5 + parent: 2 + - uid: 16909 components: - type: Transform - pos: 336.5,396.5 - parent: 1 -- proto: SuitStorageSalv + pos: -32.5,-35.5 + parent: 2 +- proto: StationAiUploadComputer entities: - - uid: 17701 + - uid: 24920 components: - type: Transform - pos: 502.5,382.5 - parent: 1 -- proto: SuitStorageSec + rot: 1.5707963267948966 rad + pos: -122.5,-72.5 + parent: 2 +- proto: StationAnchor entities: - - uid: 4417 + - uid: 6724 components: - type: Transform - pos: 425.5,414.5 - parent: 1 - - uid: 5045 + pos: -137.5,0.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 24949 components: - type: Transform - pos: 443.5,401.5 - parent: 1 - - uid: 5055 + pos: -118.41162,-74.456314 + parent: 2 +- proto: StationMap + entities: + - uid: 11725 components: - type: Transform - pos: 441.5,402.5 - parent: 1 - - uid: 5057 + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 2 + - uid: 13225 components: - type: Transform - pos: 441.5,401.5 - parent: 1 - - uid: 6132 + pos: -24.5,0.5 + parent: 2 + - uid: 15674 components: - type: Transform - pos: 426.5,414.5 - parent: 1 - - uid: 6133 + rot: 3.141592653589793 rad + pos: -58.5,-17.5 + parent: 2 + - uid: 15902 components: - type: Transform - pos: 426.5,411.5 - parent: 1 - - uid: 6135 + pos: -32.5,-10.5 + parent: 2 + - uid: 15998 components: - type: Transform - pos: 426.5,407.5 - parent: 1 - - uid: 6136 + pos: -113.5,-28.5 + parent: 2 + - uid: 20033 components: - type: Transform - pos: 428.5,408.5 - parent: 1 - - uid: 6137 + pos: -100.5,-11.5 + parent: 2 + - uid: 22128 components: - type: Transform - pos: 429.5,408.5 - parent: 1 - - uid: 6138 + pos: -72.5,-54.5 + parent: 2 + - uid: 22142 components: - type: Transform - pos: 430.5,408.5 - parent: 1 -- proto: SuitStorageWarden - entities: - - uid: 5096 + pos: -70.5,-17.5 + parent: 2 + - uid: 24489 components: - type: Transform - pos: 424.5,411.5 - parent: 1 -- proto: SurveillanceCameraCommand - entities: - - uid: 15962 + rot: 3.141592653589793 rad + pos: -98.5,6.5 + parent: 2 + - uid: 26149 components: - type: Transform rot: 3.141592653589793 rad - pos: 349.5,416.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Инженерия: каюта СИ' - - uid: 15964 + pos: -108.5,-47.5 + parent: 2 +- proto: Stool + entities: + - uid: 385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,416.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Комната ГВ - - uid: 15983 + pos: -89.5,-45.5 + parent: 2 + - uid: 3652 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,400.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: ЕВА' - - uid: 15985 + pos: -55.5,-52.5 + parent: 2 + - uid: 3655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 328.5,398.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: хранилище' - - uid: 16019 + pos: -55.5,-51.5 + parent: 2 + - uid: 3657 components: - type: Transform - pos: 365.5,393.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ГП: приёмная' - - uid: 16020 + pos: -53.5,-50.5 + parent: 2 + - uid: 3658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,393.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ГП: спальня ГП' - - uid: 16061 + rot: -1.5707963267948966 rad + pos: -52.5,-51.5 + parent: 2 + - uid: 3673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 351.5,416.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Инженерия: спальня СИ' - - uid: 16064 + rot: -1.5707963267948966 rad + pos: -52.5,-52.5 + parent: 2 + - uid: 3674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,410.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор правый 2' - - uid: 16065 + pos: -54.5,-50.5 + parent: 2 + - uid: 6504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 387.5,407.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор правый 3' - - uid: 16066 + pos: -92.5,-41.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: -88.5,-45.5 + parent: 2 + - uid: 6590 components: - type: Transform rot: 1.5707963267948966 rad - pos: 387.5,414.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор правый 1' - - uid: 16067 + pos: -90.5,-46.5 + parent: 2 + - uid: 14099 components: - type: Transform - pos: 384.5,417.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: залл 2' - - uid: 16068 + rot: -1.5707963267948966 rad + pos: -65.5,-56.5 + parent: 2 + - uid: 14101 components: - type: Transform - pos: 370.5,425.5 - parent: 1 - - uid: 16069 + rot: -1.5707963267948966 rad + pos: -65.5,-55.5 + parent: 2 + - uid: 14153 components: - type: Transform - pos: 374.5,417.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: залл 1' - - uid: 16070 + rot: -1.5707963267948966 rad + pos: -65.5,-54.5 + parent: 2 + - uid: 14545 components: - type: Transform rot: 1.5707963267948966 rad - pos: 390.5,425.5 - parent: 1 - - uid: 16071 + pos: -67.5,-55.5 + parent: 2 + - uid: 14548 components: - type: Transform rot: 1.5707963267948966 rad - pos: 369.5,421.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: генератор гравы' - - uid: 16072 + pos: -67.5,-56.5 + parent: 2 + - uid: 14550 components: - type: Transform rot: 1.5707963267948966 rad - pos: 363.5,422.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: якорь' - - uid: 16073 + pos: -67.5,-54.5 + parent: 2 + - uid: 14790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 366.5,417.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: вход гравитации' - - uid: 16074 + pos: -44.5,-44.5 + parent: 2 + - uid: 17832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,408.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: капитанский бар' - - uid: 16075 + pos: -88.5,-41.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 3422 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,409.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: капитанская каюта' - - uid: 16076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,414.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: спальня капитана' - - uid: 16077 + pos: -71.5,-37.5 + parent: 2 + - uid: 7541 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: капитанский туалет' - - uid: 16078 + pos: -57.5,-29.5 + parent: 2 + - uid: 7542 components: - type: Transform rot: 1.5707963267948966 rad - pos: 382.5,409.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: переговорная' - - uid: 16079 + pos: -57.5,-32.5 + parent: 2 + - uid: 7870 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,409.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор левый 2' - - uid: 16080 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,426.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: мостик' - - uid: 16081 + pos: -57.5,-30.5 + parent: 2 + - uid: 7877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 374.5,407.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор левый 3' - - uid: 16459 + pos: -57.5,-31.5 + parent: 2 + - uid: 8357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 374.5,414.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'Командование: коридор левый 1' - - uid: 16460 + rot: -1.5707963267948966 rad + pos: -65.5,-31.5 + parent: 2 + - uid: 8793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 313.5,410.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: вход' - - uid: 16461 + pos: -11.5,-30.5 + parent: 2 + - uid: 8794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,410.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: правый вход к ИИ' - - uid: 16462 + pos: -10.5,-30.5 + parent: 2 + - uid: 8795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,408.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: коридор к смене законов' - - uid: 16463 + pos: -9.5,-30.5 + parent: 2 + - uid: 8857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,408.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: вход к смене законов левый' - - uid: 16464 + rot: 3.141592653589793 rad + pos: -70.5,-38.5 + parent: 2 + - uid: 8942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,411.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: левый вход к ядру' - - uid: 16465 + rot: -1.5707963267948966 rad + pos: -66.5,-37.5 + parent: 2 + - uid: 9302 components: - type: Transform - pos: 303.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: материалы' - - uid: 16466 + rot: 3.141592653589793 rad + pos: -67.5,-38.5 + parent: 2 + - uid: 9836 components: - type: Transform - pos: 306.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: вход в проход в телекомы' - - uid: 16467 + rot: 3.141592653589793 rad + pos: -68.5,-38.5 + parent: 2 + - uid: 15020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: копировальня' - - uid: 16468 + rot: 3.141592653589793 rad + pos: -69.5,-38.5 + parent: 2 + - uid: 15928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 306.5,416.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: коридор к серверной' - - uid: 16469 + pos: -65.5,-32.5 + parent: 2 + - uid: 16752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 307.5,421.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: коридор серверной' - - uid: 16470 + rot: -1.5707963267948966 rad + pos: -65.5,-30.5 + parent: 2 + - uid: 19744 components: - type: Transform - pos: 310.5,421.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: телекоммуникации' - - uid: 16471 + rot: -1.5707963267948966 rad + pos: -65.5,-29.5 + parent: 2 + - uid: 25463 components: - type: Transform - pos: 304.5,421.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: маршрутизаторная' - - uid: 16472 + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 2 + - uid: 25464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,419.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 3' - - uid: 16473 + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - uid: 25480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 324.5,410.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: вход в ядро ИИ' - - uid: 16474 + pos: -23.5,16.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 1916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,403.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 1' - - uid: 16475 + pos: -21.5,-57.5 + parent: 2 + - uid: 5806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,405.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 2' - - uid: 16476 + pos: -112.5,18.5 + parent: 2 + - uid: 5807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 301.5,424.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 4' - - uid: 16477 + pos: -108.5,15.5 + parent: 2 + - uid: 5809 components: - type: Transform - pos: 305.5,429.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 5' - - uid: 16478 + pos: -109.5,18.5 + parent: 2 + - uid: 8610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,426.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: 'ИИ: обшивка 6' - - uid: 21338 + pos: -58.5,-9.5 + parent: 2 + - uid: 13419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 - parent: 5072 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge Entrance - - uid: 21384 + pos: -112.5,-2.5 + parent: 2 + - uid: 13420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,24.5 - parent: 5072 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Office - - uid: 21468 + pos: -112.5,-3.5 + parent: 2 + - uid: 13699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 5072 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: HoP Office - - uid: 21523 + pos: -140.5,-46.5 + parent: 2 + - uid: 13700 components: - type: Transform - pos: 11.5,23.5 - parent: 5072 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's Room - - uid: 21849 + pos: -140.5,-48.5 + parent: 2 + - uid: 16886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,32.5 - parent: 5072 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Bridge East -- proto: SurveillanceCameraEngineering - entities: - - uid: 3076 + pos: -24.5,-63.5 + parent: 2 + - uid: 21736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 353.5,425.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: проход между газами' - - uid: 15957 + pos: -121.5,19.5 + parent: 2 + - uid: 21737 components: - type: Transform - pos: 337.5,410.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: холл' - - uid: 15958 + pos: -122.5,20.5 + parent: 2 + - uid: 21738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,411.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: вход в атмос' - - uid: 15959 + pos: -123.5,22.5 + parent: 2 + - uid: 22054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,411.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: вход к питанию' - - uid: 15960 + pos: -129.5,3.5 + parent: 2 +- proto: Stunbaton + entities: + - uid: 17784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,411.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Выход в космос у входа в атмос - - uid: 15961 + pos: -81.55603,-25.39786 + parent: 2 + - uid: 17785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,412.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: основное питание' - - uid: 15963 + pos: -81.30603,-25.42911 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 2020 components: + - type: MetaData + name: Bridge Substation - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,409.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: РИТЭГ' - - uid: 15965 + pos: -70.5,-8.5 + parent: 2 + - uid: 2068 components: + - type: MetaData + name: Security Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,417.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: основной зал' - - uid: 15966 + pos: -87.5,-17.5 + parent: 2 + - uid: 4396 components: + - type: MetaData + name: Telecommunications Substation - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: основной зал 3' - - uid: 15967 + pos: -83.5,-9.5 + parent: 2 + - uid: 6227 components: + - type: MetaData + name: Gravity Generator Substation - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,418.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: вход к ТЭГу' - - uid: 15968 + pos: -124.5,-20.5 + parent: 2 + - uid: 7472 components: + - type: MetaData + name: Cargo Substation - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,418.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: канистры' - - uid: 15969 + pos: -88.5,0.5 + parent: 2 + - uid: 7746 components: + - type: MetaData + name: RAGE CAGE Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,422.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: ТЭГ' - - uid: 15970 + pos: -52.5,-68.5 + parent: 2 + - uid: 15872 components: + - type: MetaData + name: Service Substation - type: Transform - pos: 319.5,430.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: солнечные панели 1' - - uid: 15971 + pos: -39.5,-40.5 + parent: 2 + - uid: 16864 components: + - type: MetaData + name: Engineering Substation - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,423.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: камера сжигания ТЭГа' - - uid: 15972 + pos: -123.5,-2.5 + parent: 2 + - uid: 17505 components: + - type: MetaData + name: Medical Substation - type: Transform - rot: 1.5707963267948966 rad - pos: 293.5,383.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 7' - - uid: 15973 + pos: -26.5,-57.5 + parent: 2 + - uid: 17618 components: + - type: MetaData + name: Solars Substation - type: Transform - pos: 336.5,420.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: основной зал 5' - - uid: 15974 + pos: -17.5,-64.5 + parent: 2 + - uid: 19799 components: + - type: MetaData + name: Arrivals Substation - type: Transform - pos: 342.5,420.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: основной зал 2' - - uid: 15975 + pos: -19.5,-9.5 + parent: 2 + - uid: 20350 components: + - type: MetaData + name: Science Substation - type: Transform - pos: 350.5,421.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: основной зал 4' - - uid: 15976 + pos: -110.5,-50.5 + parent: 2 + - uid: 22346 components: + - type: MetaData + name: AI Core Substation - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,430.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: камера сжигания' - - uid: 15977 + pos: -119.5,-87.5 + parent: 2 + - uid: 25181 components: + - type: MetaData + name: AI Satelite Substation - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,430.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: хранение трития' - - uid: 15978 + pos: -117.5,-67.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 1899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 341.5,431.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: газодобытчик CO2' - - uid: 15979 + pos: -57.5,-76.5 + parent: 2 + - uid: 4420 components: - type: Transform rot: 3.141592653589793 rad - pos: 338.5,431.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: газодобытчик пара' - - uid: 15980 + pos: -44.5,-74.5 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 2525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 335.5,431.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: газодобытчик плазмы' - - uid: 15981 + pos: -117.5,-6.5 + parent: 2 + - uid: 2526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,431.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: газодобытчик N2' - - uid: 15982 + pos: -117.5,-5.5 + parent: 2 + - uid: 10075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,431.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: газодобытчик O2' - - uid: 15986 + pos: -117.5,-2.5 + parent: 2 + - uid: 18296 components: - type: Transform - pos: 330.5,386.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: коридор к доку' - - uid: 15987 + pos: -117.5,-3.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 2897 components: - type: Transform - pos: 323.5,386.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: вход к доку' - - uid: 15988 + pos: -46.5,2.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 6284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 317.5,388.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'ИНЖ: вход в док' - - uid: 15989 + pos: -127.5,-18.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 12563 components: - type: Transform - pos: 309.5,386.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: коридор дока' - - uid: 15990 + pos: -32.5,-39.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 19279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,384.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: коридор дока 2' - - uid: 15991 + pos: -140.5,-9.5 + parent: 2 + - uid: 22290 components: - type: Transform - pos: 301.5,386.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: УЧ' - - uid: 15992 + pos: -140.5,-11.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 24363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 298.5,382.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: вход к синге' - - uid: 15993 + pos: -33.5,-3.5 + parent: 2 + - uid: 24364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 277.5,393.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 4' - - uid: 15994 + pos: -32.5,-3.5 + parent: 2 + - uid: 24365 components: - type: Transform - pos: 287.5,379.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 1' - - uid: 15995 + pos: -33.5,-1.5 + parent: 2 + - uid: 24366 components: - type: Transform - pos: 279.5,379.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 2' - - uid: 15996 + pos: -32.5,-1.5 + parent: 2 + - uid: 24370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 277.5,383.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 3' - - uid: 15997 + pos: -33.5,-7.5 + parent: 2 + - uid: 24371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 283.5,395.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 5' - - uid: 15998 + pos: -32.5,-7.5 + parent: 2 + - uid: 24372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,395.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: сдерживающее поле 6' - - uid: 15999 + pos: -33.5,-9.5 + parent: 2 + - uid: 24373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 317.5,383.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерный: главное хранилище' - - uid: 16456 + pos: -32.5,-9.5 + parent: 2 +- proto: SuitStorageEVAEmergency + entities: + - uid: 13690 components: - type: Transform - pos: 337.5,406.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: гардероб' - - uid: 16457 + pos: -142.5,-52.5 + parent: 2 + - uid: 17316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,408.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Инженерия: вход' - - uid: 16458 + pos: -142.5,-50.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 6775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,413.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: 'Атмос: гардероб' -- proto: SurveillanceCameraGeneral + pos: -84.5,-31.5 + parent: 2 +- proto: SuitStorageRD entities: - - uid: 3927 + - uid: 7610 components: - type: Transform - pos: 410.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор у меда и детектива - - uid: 15921 + pos: -136.5,-43.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 12659 components: - type: Transform - pos: 332.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у ЕВЫ и входа в ИНЖ' - - uid: 15922 + pos: -92.5,32.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -90.5,32.5 + parent: 2 + - uid: 12745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 338.5,404.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у стойки в инженерию' - - uid: 15923 + pos: -90.5,35.5 + parent: 2 + - uid: 19549 components: - type: Transform - pos: 345.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у робототехники' - - uid: 15924 + pos: -92.5,35.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 2157 components: - type: Transform - pos: 352.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у стойки РНД' - - uid: 15925 + pos: -80.5,-23.5 + parent: 2 + - uid: 6669 components: - type: Transform - pos: 359.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у входа в РНД' - - uid: 15926 + pos: -84.5,-23.5 + parent: 2 + - uid: 6671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,404.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у стойки гп 2' - - uid: 15927 + pos: -84.5,-22.5 + parent: 2 + - uid: 6672 components: - type: Transform - pos: 374.5,402.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: у стойки гп' - - uid: 15928 + pos: -80.5,-22.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 4004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,404.5 - parent: 1 + pos: -86.5,-23.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 1677 + components: + - type: Transform + pos: -119.5,-68.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Коридор: у входа на мостик' - - uid: 15929 + id: AI Utility Room + - uid: 1872 components: - type: Transform rot: 3.141592653589793 rad - pos: 394.5,404.5 - parent: 1 + pos: -121.5,-70.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Коридор: около кают клоунов' - - uid: 15930 + id: AI Upload + - uid: 2200 components: - type: Transform rot: 3.141592653589793 rad - pos: 379.5,397.5 - parent: 1 + pos: -120.5,-91.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Прибытие: холл 3' - - uid: 15931 + id: AI Satelite South + - uid: 2388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,395.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -127.5,-85.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Коридор у прибытия - - uid: 15939 + id: AI Satelite Southwest + - uid: 3617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 405.5,373.5 - parent: 1 + pos: -120.5,-80.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Склад инструментов - - uid: 15942 + id: AI Core North + - uid: 5354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 375.5,393.5 - parent: 1 + pos: -120.5,-87.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Прибытие: холл 1' - - uid: 15943 + id: AI Core South + - uid: 5356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,371.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -120.5,-61.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Дормы: спальня ' - - uid: 15944 + id: AI Satelite Hallway + - uid: 5477 components: - type: Transform rot: -1.5707963267948966 rad - pos: 374.5,382.5 - parent: 1 + pos: -113.5,-72.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Прибытие: холл 2' - - uid: 15945 + id: AI Satelite Northeast + - uid: 17171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,368.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -70.5,8.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Дормы: спальня 2' - - uid: 15946 + id: Bridge Exterior West + - uid: 23729 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,371.5 - parent: 1 + pos: -62.5,-9.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Дормы: спальня 4' - - uid: 15947 + id: Showcase Room + - uid: 23730 components: - type: Transform rot: 3.141592653589793 rad - pos: 419.5,368.5 - parent: 1 + pos: -60.5,0.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Дормы: спальня 3' - - uid: 15948 + id: Boardroom + - uid: 23731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,370.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -67.5,-3.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Дормы: холл' - - uid: 15949 + id: Bridge Hallway West + - uid: 23732 components: - type: Transform - pos: 412.5,373.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Гардеробная 2 - - uid: 15950 + id: Bridge Hallway East + - uid: 23733 components: - type: Transform - pos: 419.5,373.5 - parent: 1 + pos: -61.5,5.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Гардеробная 1 - - uid: 15951 + id: Bridge + - uid: 23734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,410.5 - parent: 1 + pos: -52.5,8.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Коридор: спальни клоунов' - - uid: 15953 + id: Bridge Exterior East + - uid: 23735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,404.5 - parent: 1 + pos: -50.5,-1.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Вход к медикам - - uid: 15954 + id: Captain Office + - uid: 23736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,403.5 - parent: 1 + pos: -45.5,0.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Коридор около детектива - - uid: 15955 + id: Captain Bedroom + - uid: 23738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 412.5,393.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -50.5,-4.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: Бар - - uid: 16002 + id: HoP Office + - uid: 23739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,399.5 - parent: 1 + pos: -44.5,-6.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Коридор: вход ГП и РНД' - - uid: 16003 + id: HoP Bedroom + - uid: 23740 components: - type: Transform rot: 3.141592653589793 rad - pos: 360.5,393.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Коридор: стойка карго' - - uid: 16095 - components: - - type: Transform - pos: 419.5,362.5 - parent: 1 + pos: -46.5,-8.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Туалет: вход' - - uid: 16096 + id: Ian Bedroom + - uid: 23744 components: - type: Transform - pos: 424.5,362.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Туалет: умывальники' - - uid: 16098 + id: Vault + - uid: 23745 components: - type: Transform - pos: 421.5,359.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraGeneral + - SurveillanceCameraCommand nameSet: True - id: 'Туалет: кабинка 3' -- proto: SurveillanceCameraMedical - entities: - - uid: 4646 + id: EVA + - uid: 25665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,418.5 - parent: 1 + pos: -127.5,-72.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraCommand nameSet: True - id: 'Вирусология: палаты' - - uid: 16058 + id: AI Satelite Northwest + - uid: 25666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,411.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -113.5,-85.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraCommand nameSet: True - id: Хим лаборатория - - uid: 16059 + id: AI Satelite Southeast +- proto: SurveillanceCameraEngineering + entities: + - uid: 960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,415.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Мед блок - - uid: 16060 + rot: -1.5707963267948966 rad + pos: -123.5,10.5 + parent: 2 + - uid: 1004 components: - type: Transform rot: -1.5707963267948966 rad - pos: 411.5,419.5 - parent: 1 + pos: -110.5,-49.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: 'Вирусология: вход' - - uid: 16062 + id: Science Substation + - uid: 9837 components: - type: Transform - pos: 399.5,415.5 - parent: 1 + pos: -18.5,-9.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Криогеника - - uid: 16063 + id: Northeast Maintenance Substation + - uid: 23759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,413.5 - parent: 1 + pos: -10.5,-20.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Операционная - - uid: 16082 + id: Evac Storage + - uid: 23784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,408.5 - parent: 1 + pos: -84.5,-9.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Гардероб медиков - - uid: 16279 + id: Telecommunications South + - uid: 23793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -111.5,3.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Комната парамедиков - - uid: 16280 + id: Plasma Storage + - uid: 23794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,422.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -111.5,9.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Комната отдыха медиков - - uid: 16281 + id: Atmospherics Burn Chamber + - uid: 23797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,422.5 - parent: 1 + pos: -118.5,-0.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Морг - - uid: 16450 + id: Atmospherics South + - uid: 23798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,413.5 - parent: 1 + pos: -109.5,13.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraMedical + - SurveillanceCameraEngineering nameSet: True - id: Комната психолога -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 6420 - components: - - type: Transform - pos: 305.5,422.5 - parent: 1 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 6425 - components: - - type: Transform - pos: 303.5,422.5 - parent: 1 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 6464 - components: - - type: Transform - pos: 303.5,425.5 - parent: 1 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 6460 - components: - - type: Transform - pos: 305.5,423.5 - parent: 1 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 6463 - components: - - type: Transform - pos: 303.5,424.5 - parent: 1 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 6495 - components: - - type: Transform - pos: 303.5,426.5 - parent: 1 -- proto: SurveillanceCameraRouterService - entities: - - uid: 6426 - components: - - type: Transform - pos: 303.5,421.5 - parent: 1 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 6422 - components: - - type: Transform - pos: 303.5,423.5 - parent: 1 -- proto: SurveillanceCameraScience - entities: - - uid: 16000 + id: Canister Storage + - uid: 23799 components: - type: Transform - pos: 352.5,399.5 - parent: 1 + pos: -112.5,-6.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: стойка' - - uid: 16001 + id: Atmospherics Front Desk + - uid: 23800 components: - type: Transform rot: -1.5707963267948966 rad - pos: 346.5,400.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: 'РНД: вход в рнд' - - uid: 16005 - components: - - type: Transform - pos: 348.5,387.5 - parent: 1 + pos: -121.5,-4.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: ксеноархеология' - - uid: 16006 + id: Atmospherics Entrance + - uid: 23801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,390.5 - parent: 1 + pos: -110.5,-18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: камера артефакта' - - uid: 16007 + id: Workshop + - uid: 23802 components: - type: Transform rot: -1.5707963267948966 rad - pos: 344.5,394.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: 'РНД: хранилище аномалий' - - uid: 16008 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,394.5 - parent: 1 + pos: -115.5,-11.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: генератор аномалий' - - uid: 16009 + id: Entrance + - uid: 23803 components: - type: Transform rot: 1.5707963267948966 rad - pos: 344.5,399.5 - parent: 1 + pos: -113.5,-22.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: робототехника' - - uid: 16010 + id: Breakroom + - uid: 23805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,385.5 - parent: 1 + pos: -125.5,-18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: каюта НРа' - - uid: 16011 + id: CE Office + - uid: 23806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,385.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -131.5,-17.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: спальня НРа' - - uid: 16479 + id: CE Bedroom + - uid: 23807 components: - type: Transform rot: 3.141592653589793 rad - pos: 350.5,393.5 - parent: 1 + pos: -127.5,-2.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraScience + - SurveillanceCameraEngineering nameSet: True - id: 'РНД: хранилище канистр' -- proto: SurveillanceCameraSecurity - entities: - - uid: 15863 + id: SMES Bank + - uid: 23809 components: - type: Transform rot: -1.5707963267948966 rad - pos: 447.5,421.5 - parent: 1 + pos: -134.5,-11.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'Перма: холодильник' - - uid: 15866 + id: West Maint Crossover + - uid: 23812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,421.5 - parent: 1 + pos: -140.5,-7.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'Перма: подсобка столовой' - - uid: 15870 + id: TEG Control Room + - uid: 23813 components: - type: Transform rot: 1.5707963267948966 rad - pos: 460.5,415.5 - parent: 1 + pos: -143.5,-7.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'Перма: камера 3' - - uid: 15871 + id: TEG + - uid: 23816 components: - type: Transform - pos: 444.5,414.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -149.5,-14.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'Перма: столовая' - - uid: 16026 + id: TEG Radiator + - uid: 23838 components: - type: Transform - pos: 421.5,392.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -110.5,-41.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: Гардероб СБ - - uid: 16027 + id: Science Atmospherics + - uid: 24323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,399.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -118.5,-19.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: Переговорная СБ 2 - - uid: 16028 + id: Hallway South + - uid: 24324 components: - type: Transform - pos: 424.5,399.5 - parent: 1 + pos: -128.5,-12.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: Переговорная СБ 1 - - uid: 16029 + id: Hallway West + - uid: 24330 components: - type: Transform - pos: 416.5,403.5 - parent: 1 + pos: -70.5,-9.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: Допросная - - uid: 16031 + id: Command Substation + - uid: 25688 components: - type: Transform rot: 3.141592653589793 rad - pos: 426.5,389.5 - parent: 1 + pos: -120.5,17.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'СБ: каюта ГСБ' - - uid: 16032 + id: Atmospherics North + - uid: 25689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,389.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -124.5,-20.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'СБ: спальня ГСБ' - - uid: 16033 + id: Gravity Generator + - uid: 25690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,393.5 - parent: 1 + pos: -136.5,-0.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraEngineering nameSet: True - id: 'СБ: камера 1' - - uid: 16034 + id: Station Anchor + - uid: 25693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,397.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'СБ: камера 2' - - uid: 16035 + rot: -1.5707963267948966 rad + pos: -123.5,4.5 + parent: 2 +- proto: SurveillanceCameraGeneral + entities: + - uid: 2400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,401.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -106.5,-56.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: камера 3' - - uid: 16036 + id: Southwest Hallway + - uid: 23707 components: - type: Transform rot: 3.141592653589793 rad - pos: 430.5,405.5 - parent: 1 + pos: -69.5,-55.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: камера 4' - - uid: 16037 + id: Dorm West + - uid: 23708 components: - type: Transform - pos: 428.5,407.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -59.5,-55.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: вход в оружейную общий' - - uid: 16038 + id: Dorm East + - uid: 23709 components: - type: Transform - pos: 424.5,413.5 - parent: 1 + pos: -66.5,-49.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: Оружейная садистов 2 - - uid: 16039 + id: Pool South + - uid: 23727 components: - type: Transform - pos: 426.5,410.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -63.5,-22.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: Оружейная садистов - - uid: 16040 + id: Plaza Centre + - uid: 23741 components: - type: Transform rot: 3.141592653589793 rad - pos: 423.5,411.5 - parent: 1 + pos: -47.5,-12.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: Каюта смотрителя - - uid: 16041 + id: Central Hallway East + - uid: 23743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -71.5,-12.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: Оффис смотрителя - - uid: 16042 + id: Central Hallway West + - uid: 23746 components: - type: Transform rot: 3.141592653589793 rad - pos: 437.5,408.5 - parent: 1 + pos: -31.5,-11.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: проход к перме' - - uid: 16043 + id: East Hallway + - uid: 23753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 439.5,408.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: гардероб пермы' - - uid: 16045 + id: Arrivals West + - uid: 23754 components: - type: Transform - pos: 446.5,410.5 - parent: 1 + pos: -27.5,10.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'АВД: приёмная' - - uid: 16046 + id: Arrivals South + - uid: 23755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 443.5,401.5 - parent: 1 + pos: -18.5,18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: пилот коридор 1' - - uid: 16047 + id: Arrivals Cafe + - uid: 23756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 442.5,397.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -18.5,12.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'СБ: пилот коридор 2' - - uid: 16048 + id: Arrivals Cryo + - uid: 23757 components: - type: Transform rot: 3.141592653589793 rad - pos: 455.5,407.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: холл 1' - - uid: 16049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 448.5,405.5 - parent: 1 + pos: -26.5,21.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'Перма: холл 3' - - uid: 16050 + id: Arrivals North + - uid: 23758 components: - type: Transform rot: 3.141592653589793 rad - pos: 456.5,403.5 - parent: 1 + pos: -7.5,-10.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'Перма: холл 2' - - uid: 16051 + id: Evac Centre + - uid: 23792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,403.5 - parent: 1 + pos: -99.5,7.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'Перма: туалет' - - uid: 16052 + id: Cargo Front + - uid: 23819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,414.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -102.5,-11.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: 'Перма: камера 1' - - uid: 16054 + id: West Hallway + - uid: 23835 components: - type: Transform rot: 3.141592653589793 rad - pos: 455.5,416.5 - parent: 1 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: камера 2' - - uid: 16449 - components: - - type: Transform - pos: 424.5,396.5 - parent: 1 + pos: -117.5,-43.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSecurity + - SurveillanceCameraGeneral nameSet: True - id: Гардероб СБ 2 -- proto: SurveillanceCameraService - entities: - - uid: 15636 + id: Science Hallway + - uid: 24675 components: - type: Transform rot: 3.141592653589793 rad - pos: 401.5,370.5 - parent: 1 + pos: -70.5,-18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraGeneral nameSet: True - id: 'Репортёр: допросная' - - uid: 15937 + id: Cryosleep + - uid: 25683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,379.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -75.5,-56.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraGeneral nameSet: True - id: Гардероб ботаников - - uid: 15956 + id: Dorms Entrance + - uid: 25686 components: - type: Transform rot: 3.141592653589793 rad - pos: 414.5,393.5 - parent: 1 + pos: -61.5,-18.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraGeneral nameSet: True - id: Стойка барменов - - uid: 16021 + id: Service Plaza North + - uid: 25687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 409.5,391.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -86.5,-12.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraGeneral nameSet: True - id: Кухня - - uid: 16022 + id: West Hallway +- proto: SurveillanceCameraMedical + entities: + - uid: 8625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,387.5 - parent: 1 + pos: -22.5,-54.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Комната барменов - - uid: 16023 + id: Virology + - uid: 9037 components: - type: Transform rot: 3.141592653589793 rad - pos: 409.5,385.5 - parent: 1 + pos: -35.5,-39.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Пересечение кухни и ботаники - - uid: 16025 + id: CMO Office + - uid: 12012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,382.5 - parent: 1 + pos: -19.5,-32.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Ботаника - - uid: 16083 + id: Surgery Recovery + - uid: 13251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 397.5,409.5 - parent: 1 + pos: -32.5,-37.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Сервис: каюта мима' - - uid: 16084 + id: CMO Exam Room + - uid: 19575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 390.5,408.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -34.5,-46.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Сервис: каюта музыканта' - - uid: 16085 + id: Breakroom + - uid: 23762 components: - type: Transform rot: 1.5707963267948966 rad - pos: 390.5,410.5 - parent: 1 + pos: -36.5,-21.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Сервис: каюта клоуна' - - uid: 16086 + id: Chemistry + - uid: 23763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,360.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -34.5,-19.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Библиотека: холл 2' - - uid: 16087 + id: Front Desk + - uid: 23764 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,358.5 - parent: 1 + pos: -17.5,-19.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Библиотека: холл' - - uid: 16088 + id: Psychologist + - uid: 23765 components: - type: Transform - pos: 423.5,351.5 - parent: 1 + pos: -27.5,-21.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Библиотека: стойка' - - uid: 16090 + id: Waiting Room + - uid: 23766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,356.5 - parent: 1 + pos: -24.5,-26.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: 'Библиотека: каюта библиотекаря' - - uid: 16447 + id: Paramedic + - uid: 23767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,385.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Холодильник - - uid: 16448 + id: Cloning + - uid: 23768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 410.5,363.5 - parent: 1 + pos: -24.5,-32.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Уборщик - - uid: 20091 + id: Cryogenics + - uid: 23770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 342.5,440.5 - parent: 1 + pos: -17.5,-37.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Вход в церковь - - uid: 20092 + id: Surgery Staging + - uid: 23771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,441.5 - parent: 1 + pos: -22.5,-36.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Церковный зал - - uid: 20093 + id: Surgery North + - uid: 23772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,438.5 - parent: 1 + rot: 3.141592653589793 rad + pos: -22.5,-38.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraMedical nameSet: True - id: Гробы священника -- proto: SurveillanceCameraSupply - entities: - - uid: 3768 + id: Surgery South + - uid: 23773 components: - type: Transform rot: 1.5707963267948966 rad - pos: 353.5,376.5 - parent: 1 + pos: -25.5,-37.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: космос утилизаторов' - - uid: 16012 + id: Surgery Observation + - uid: 23774 components: - type: Transform rot: 3.141592653589793 rad - pos: 356.5,381.5 - parent: 1 + pos: -36.5,-27.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: каюта КМа' - - uid: 16013 + id: Examination + - uid: 23777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,381.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -21.5,-43.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: спальня КМа' - - uid: 16014 + id: Storage + - uid: 23778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,378.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: утилизаторы' - - uid: 16015 + id: Freezer + - uid: 23780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,377.5 - parent: 1 + rot: 1.5707963267948966 rad + pos: -25.5,-48.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: выход в космос' - - uid: 16016 + id: Virology Entrance + - uid: 23783 components: - type: Transform rot: 3.141592653589793 rad - pos: 358.5,386.5 - parent: 1 + pos: -43.5,-34.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: холл 2' - - uid: 16017 + id: Morgue + - uid: 24339 components: - type: Transform rot: -1.5707963267948966 rad - pos: 365.5,387.5 - parent: 1 + pos: -30.5,-46.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: холл' - - uid: 16018 + id: Hallway South + - uid: 24340 components: - type: Transform - pos: 368.5,380.5 - parent: 1 + rot: -1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - - SurveillanceCameraSupply + - SurveillanceCameraMedical nameSet: True - id: 'Карго: стык порт' -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 6412 - components: - - type: Transform - pos: 307.5,426.5 - parent: 1 -- proto: SurveillanceWirelessCameraMovableConstructed - entities: - - uid: 5919 + id: Hallway Centre + - uid: 24341 components: - type: Transform rot: 3.141592653589793 rad - pos: 399.5,372.5 - parent: 1 -- proto: SurveillanceWirelessCameraMovableEntertainment + pos: -31.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Hallway North +- proto: SurveillanceCameraRouterCommand entities: - - uid: 6085 + - uid: 16844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,369.5 - parent: 1 -- proto: SyndicateBusinessCard + pos: -84.5,0.5 + parent: 2 +- proto: SurveillanceCameraRouterConstructed entities: - - uid: 17468 + - uid: 22275 components: - type: Transform - pos: 425.5,389.5 - parent: 1 - - type: Paper - content: Привет, в техах около твоего кабинета спрятан пулемёт. С любовью для тебя. - - type: ActiveUserInterface -- proto: SyndieFlag + pos: -84.5,1.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering entities: - - uid: 18306 + - uid: 14350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,391.5 - parent: 1 -- proto: SyndieHandyFlag + pos: -84.5,-5.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral entities: - - uid: 18307 + - uid: 12233 components: - type: Transform - pos: 422.5,420.5 - parent: 1 -- proto: Syringe + pos: -86.5,-5.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical entities: - - uid: 20996 + - uid: 17042 components: - type: Transform - pos: 416.5,391.5 - parent: 1 -- proto: SyringeBicaridine + pos: -86.5,-1.5 + parent: 2 +- proto: SurveillanceCameraRouterScience entities: - - uid: 20913 + - uid: 17078 components: - type: Transform - pos: 409.5,410.5 - parent: 1 -- proto: SyringeEphedrine + pos: -84.5,-1.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity entities: - - uid: 16283 - components: - - type: Transform - pos: 407.5,414.5 - parent: 1 - - uid: 18401 + - uid: 17007 components: - type: Transform - pos: 361.5,424.5 - parent: 1 - - uid: 18594 + pos: -86.5,0.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 10187 components: - type: Transform - pos: 355.5,438.5 - parent: 1 -- proto: SyringeSigynate + pos: -86.5,-3.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply entities: - - uid: 16284 + - uid: 10196 components: - type: Transform - pos: 407.5,415.5 - parent: 1 -- proto: Table + pos: -84.5,-3.5 + parent: 2 +- proto: SurveillanceCameraScience entities: - - uid: 1187 + - uid: 5390 components: - type: Transform - pos: 358.5,391.5 - parent: 1 - - uid: 1337 + rot: -1.5707963267948966 rad + pos: -150.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarcheology + - uid: 5993 components: - type: Transform - pos: 366.5,399.5 - parent: 1 - - uid: 2173 + rot: 1.5707963267948966 rad + pos: -140.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarcheology Hallway + - uid: 6509 components: - type: Transform - pos: 412.5,409.5 - parent: 1 - - uid: 2185 + rot: 1.5707963267948966 rad + pos: -146.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarcheology South Chamber + - uid: 6858 components: - type: Transform - pos: 413.5,409.5 - parent: 1 - - uid: 2625 + rot: 1.5707963267948966 rad + pos: -141.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Xenoarcheology Airlock + - uid: 16976 components: - type: Transform - pos: 410.5,388.5 - parent: 1 - - uid: 2722 + rot: 1.5707963267948966 rad + pos: -112.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Cargo Bay + - uid: 17055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,396.5 - parent: 1 - - uid: 2806 + rot: 1.5707963267948966 rad + pos: -112.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Charging Bay + - uid: 23054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,403.5 - parent: 1 - - uid: 2828 + pos: -134.5,-52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: RD Bedroom + - uid: 23823 components: - type: Transform - pos: 441.5,406.5 - parent: 1 - - uid: 2837 + pos: -128.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Anomally Generator + - uid: 25404 components: - type: Transform - pos: 442.5,406.5 - parent: 1 - - uid: 2847 + rot: -1.5707963267948966 rad + pos: -122.5,-52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Robotics + - uid: 25405 components: - type: Transform - pos: 443.5,406.5 - parent: 1 - - uid: 2857 + rot: -1.5707963267948966 rad + pos: -126.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Surgery + - uid: 25406 components: - type: Transform - pos: 444.5,406.5 - parent: 1 - - uid: 2883 + pos: -108.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Entrance + - uid: 25861 components: + - type: MetaData + name: RD Office - type: Transform - pos: 447.5,417.5 - parent: 1 - - uid: 2906 + rot: -1.5707963267948966 rad + pos: -136.5,-45.5 + parent: 2 +- proto: SurveillanceCameraSecurity + entities: + - uid: 23747 components: - type: Transform - pos: 450.5,417.5 - parent: 1 - - uid: 5143 + rot: -1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Checkpoint Exterior + - uid: 23749 components: - type: Transform rot: 1.5707963267948966 rad - pos: 431.5,395.5 - parent: 1 - - uid: 5145 + pos: -23.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Arrivals Checkpoint + - uid: 23761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,399.5 - parent: 1 - - uid: 5149 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Evac Checkpoint + - uid: 24300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 431.5,391.5 - parent: 1 - - uid: 5261 + rot: -1.5707963267948966 rad + pos: -97.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Entrance + - uid: 24301 components: - type: Transform - pos: 455.5,416.5 - parent: 1 - - uid: 5262 + rot: -1.5707963267948966 rad + pos: -92.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Warden Office + - uid: 24302 components: - type: Transform - pos: 452.5,416.5 - parent: 1 - - uid: 5270 + pos: -86.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Utility Room + - uid: 24303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,408.5 - parent: 1 - - uid: 5271 + rot: 3.141592653589793 rad + pos: -82.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Armory + - uid: 24304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 448.5,405.5 - parent: 1 - - uid: 5272 + pos: -85.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Locker Room + - uid: 24305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 448.5,406.5 - parent: 1 - - uid: 5273 + rot: 1.5707963267948966 rad + pos: -90.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Breakroom + - uid: 24306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,403.5 - parent: 1 - - uid: 5284 + rot: 3.141592653589793 rad + pos: -99.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 1 + - uid: 24307 components: - type: Transform - pos: 447.5,419.5 - parent: 1 - - uid: 5285 + rot: 3.141592653589793 rad + pos: -99.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 2 + - uid: 24308 components: - type: Transform - pos: 448.5,419.5 - parent: 1 - - uid: 5286 + rot: 3.141592653589793 rad + pos: -99.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 3 + - uid: 24309 components: - type: Transform - pos: 449.5,419.5 - parent: 1 - - uid: 5287 + rot: 1.5707963267948966 rad + pos: -102.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell Exterior + - uid: 24310 components: - type: Transform - pos: 452.5,419.5 - parent: 1 - - uid: 5288 + pos: -97.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Office + - uid: 24311 components: - type: Transform - pos: 450.5,419.5 - parent: 1 - - uid: 5304 + rot: 1.5707963267948966 rad + pos: -96.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Lawyer Office + - uid: 24312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 445.5,414.5 - parent: 1 - - uid: 5305 + pos: -86.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Interogation + - uid: 24313 components: - type: Transform - pos: 462.5,409.5 - parent: 1 - - uid: 5306 + pos: -82.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: HoS Office + - uid: 24315 components: - type: Transform - pos: 463.5,409.5 - parent: 1 - - uid: 5307 + rot: -1.5707963267948966 rad + pos: -100.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Detective Bedroom + - uid: 24316 components: - type: Transform - pos: 462.5,406.5 - parent: 1 - - uid: 5308 + rot: 3.141592653589793 rad + pos: -89.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Permabrig Hallway + - uid: 24317 components: - type: Transform - pos: 463.5,406.5 - parent: 1 - - uid: 6176 + rot: -1.5707963267948966 rad + pos: -92.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 4 + - uid: 24318 components: - type: Transform - pos: 448.5,411.5 - parent: 1 - - uid: 6188 + rot: -1.5707963267948966 rad + pos: -88.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Cell 5 + - uid: 24319 components: - type: Transform rot: 3.141592653589793 rad - pos: 458.5,401.5 - parent: 1 - - uid: 6189 + pos: -82.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Visitation + - uid: 24320 components: - type: Transform rot: 3.141592653589793 rad - pos: 459.5,401.5 - parent: 1 - - uid: 6190 + pos: -85.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Permabrig + - uid: 24321 + components: + - type: Transform + pos: -91.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Permabrig Restroom +- proto: SurveillanceCameraService + entities: + - uid: 23712 components: - type: Transform rot: 3.141592653589793 rad - pos: 457.5,401.5 - parent: 1 - - uid: 20813 + pos: -48.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Chapel + - uid: 23714 components: - type: Transform - pos: 444.5,418.5 - parent: 1 - - uid: 20814 + rot: 3.141592653589793 rad + pos: -52.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Library + - uid: 23718 components: - type: Transform - pos: 444.5,417.5 - parent: 1 - - uid: 21721 + rot: 1.5707963267948966 rad + pos: -109.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Newsroom + - uid: 23722 components: - type: Transform - pos: -7.5,26.5 - parent: 5072 - - uid: 21724 + rot: 1.5707963267948966 rad + pos: -52.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Kitchen + - uid: 23723 components: - type: Transform - pos: -6.5,26.5 - parent: 5072 - - uid: 21728 + rot: 3.141592653589793 rad + pos: -47.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Freezer + - uid: 23724 components: - type: Transform - pos: -7.5,28.5 - parent: 5072 - - uid: 21734 + rot: 3.141592653589793 rad + pos: -52.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany + - uid: 23725 components: - type: Transform - pos: -7.5,29.5 - parent: 5072 - - uid: 21740 + rot: 1.5707963267948966 rad + pos: -45.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Botany Backroom + - uid: 24345 components: - type: Transform - pos: -6.5,29.5 - parent: 5072 - - uid: 21799 + pos: -53.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Theatre +- proto: SurveillanceCameraSupply + entities: + - uid: 23760 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Evac Storage + - uid: 23786 components: - type: Transform - pos: -2.5,30.5 - parent: 5072 -- proto: TableCarpet - entities: - - uid: 1160 + pos: -88.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Warehouse + - uid: 23787 components: - type: Transform - pos: 414.5,352.5 - parent: 1 - - uid: 1163 + rot: 1.5707963267948966 rad + pos: -92.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Breakroom + - uid: 23788 components: - type: Transform - pos: 418.5,356.5 - parent: 1 - - uid: 2555 + pos: -90.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay South + - uid: 23789 components: - type: Transform - pos: 420.5,357.5 - parent: 1 - - uid: 2556 + rot: 3.141592653589793 rad + pos: -90.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Cargo Bay North + - uid: 23790 components: - type: Transform - pos: 421.5,357.5 - parent: 1 - - uid: 2557 + rot: 1.5707963267948966 rad + pos: -84.5,19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Dock + - uid: 23791 components: - type: Transform - pos: 421.5,356.5 - parent: 1 - - uid: 5928 + rot: 3.141592653589793 rad + pos: -100.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Front Desk + - uid: 24326 components: - type: Transform - pos: 414.5,351.5 - parent: 1 - - uid: 5930 + rot: 3.141592653589793 rad + pos: -95.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Staging Area + - uid: 24327 components: - type: Transform - pos: 414.5,353.5 - parent: 1 - - uid: 21949 + pos: -92.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Salvage Breakroom + - uid: 24328 components: - type: Transform - pos: 418.5,352.5 - parent: 1 - - uid: 22189 + rot: -1.5707963267948966 rad + pos: -88.5,29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM Office + - uid: 24329 components: - type: Transform - pos: 418.5,354.5 - parent: 1 -- proto: TableCounterWood + rot: -1.5707963267948966 rad + pos: -88.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM Bedroom +- proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 2829 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,390.5 - parent: 1 - - uid: 2845 + - uid: 15992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,388.5 - parent: 1 - - uid: 2848 + pos: -111.5,-30.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 7560 components: - type: Transform rot: 1.5707963267948966 rad - pos: 413.5,389.5 - parent: 1 - - uid: 18366 + pos: -64.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Captain's Address + - uid: 13719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 434.5,387.5 - parent: 1 - - uid: 18367 + pos: -149.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Hydraulic Press Channel + - uid: 15704 components: - type: Transform rot: -1.5707963267948966 rad - pos: 434.5,386.5 - parent: 1 - - uid: 18368 + pos: -57.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Classics of Nanotrasen + - uid: 16747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,387.5 - parent: 1 - - uid: 18369 + rot: 1.5707963267948966 rad + pos: -133.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Weh + - uid: 16880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,386.5 - parent: 1 - - uid: 18370 + pos: -46.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: IanCam + - uid: 22473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 436.5,386.5 - parent: 1 -- proto: TableFancyBlack + rot: 3.141592653589793 rad + pos: -147.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: PlasmaFire TV +- proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 20755 + - uid: 16003 components: - type: Transform - pos: 7.5,3.5 - parent: 20527 - - uid: 20756 + rot: 1.5707963267948966 rad + pos: -114.5,-33.5 + parent: 2 + - uid: 16023 components: - type: Transform - pos: 7.5,4.5 - parent: 20527 - - uid: 20757 + rot: 3.141592653589793 rad + pos: -113.5,-32.5 + parent: 2 + - uid: 16989 components: - type: Transform - pos: 7.5,2.5 - parent: 20527 -- proto: TableFrame + rot: 3.141592653589793 rad + pos: -94.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: LiveLeak +- proto: SynthesizerInstrument entities: - - uid: 4956 + - uid: 26036 components: - type: Transform - pos: 449.5,417.5 - parent: 1 -- proto: TableReinforced + pos: -24.533735,4.587017 + parent: 2 +- proto: Syringe entities: - - uid: 756 - components: - - type: Transform - pos: 415.5,404.5 - parent: 1 - - uid: 802 - components: - - type: Transform - pos: 355.5,401.5 - parent: 1 - - uid: 848 + - uid: 2609 components: - type: Transform - pos: 339.5,400.5 - parent: 1 - - uid: 892 + pos: -60.35623,-4.475757 + parent: 2 + - uid: 7290 components: - type: Transform - pos: 341.5,405.5 - parent: 1 - - uid: 916 + pos: -147.91812,-45.469967 + parent: 2 + - uid: 7367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,392.5 - parent: 1 - - uid: 917 + pos: -149.48795,-42.47385 + parent: 2 +- proto: Table + entities: + - uid: 505 components: - type: Transform - pos: 419.5,406.5 - parent: 1 - - uid: 1458 + pos: -36.5,-17.5 + parent: 2 + - uid: 699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,392.5 - parent: 1 - - uid: 1463 + pos: -30.5,-66.5 + parent: 2 + - uid: 703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,392.5 - parent: 1 - - uid: 1523 + rot: -1.5707963267948966 rad + pos: -116.5,-24.5 + parent: 2 + - uid: 834 components: - type: Transform - pos: 379.5,410.5 - parent: 1 - - uid: 1537 + rot: -1.5707963267948966 rad + pos: -115.5,-24.5 + parent: 2 + - uid: 835 components: - type: Transform - pos: 378.5,412.5 - parent: 1 - - uid: 1538 + rot: 1.5707963267948966 rad + pos: -141.5,-7.5 + parent: 2 + - uid: 837 components: - type: Transform - pos: 378.5,408.5 - parent: 1 - - uid: 1539 + rot: 1.5707963267948966 rad + pos: -140.5,-7.5 + parent: 2 + - uid: 842 components: - type: Transform - pos: 379.5,411.5 - parent: 1 - - uid: 1540 + rot: 1.5707963267948966 rad + pos: -139.5,-7.5 + parent: 2 + - uid: 1082 components: - type: Transform - pos: 380.5,412.5 - parent: 1 - - uid: 1541 + pos: -81.5,-40.5 + parent: 2 + - uid: 1121 components: - type: Transform - pos: 379.5,409.5 - parent: 1 - - uid: 1551 + pos: -27.5,-71.5 + parent: 2 + - uid: 1124 components: - type: Transform - pos: 379.5,412.5 - parent: 1 - - uid: 1552 + pos: -27.5,-72.5 + parent: 2 + - uid: 1198 components: - type: Transform - pos: 380.5,408.5 - parent: 1 - - uid: 1828 + pos: -23.5,-6.5 + parent: 2 + - uid: 1382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,417.5 - parent: 1 - - uid: 1901 + rot: 1.5707963267948966 rad + pos: -22.5,-36.5 + parent: 2 + - uid: 1392 components: - type: Transform - pos: 379.5,408.5 - parent: 1 - - uid: 2521 + rot: 1.5707963267948966 rad + pos: -23.5,-36.5 + parent: 2 + - uid: 1431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,375.5 - parent: 1 - - uid: 2529 + rot: 1.5707963267948966 rad + pos: -51.5,-33.5 + parent: 2 + - uid: 1446 components: - type: Transform - pos: 422.5,354.5 - parent: 1 - - uid: 2553 + rot: 1.5707963267948966 rad + pos: -53.5,-29.5 + parent: 2 + - uid: 1659 components: - type: Transform - pos: 422.5,353.5 - parent: 1 - - uid: 3671 + pos: -101.5,-66.5 + parent: 2 + - uid: 1674 components: - type: Transform - pos: 382.5,407.5 - parent: 1 - - uid: 3672 + rot: -1.5707963267948966 rad + pos: -75.5,-44.5 + parent: 2 + - uid: 1998 components: - type: Transform - pos: 382.5,406.5 - parent: 1 - - uid: 3673 + pos: -34.5,-30.5 + parent: 2 + - uid: 2299 components: - type: Transform - pos: 381.5,406.5 - parent: 1 - - uid: 3674 + rot: -1.5707963267948966 rad + pos: -127.5,-45.5 + parent: 2 + - uid: 2300 components: - type: Transform rot: -1.5707963267948966 rad - pos: 376.5,406.5 - parent: 1 - - uid: 3675 + pos: -127.5,-44.5 + parent: 2 + - uid: 2393 components: - type: Transform rot: -1.5707963267948966 rad - pos: 377.5,406.5 - parent: 1 - - uid: 3677 + pos: -80.5,-25.5 + parent: 2 + - uid: 2474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,407.5 - parent: 1 - - uid: 3720 + pos: -134.5,-38.5 + parent: 2 + - uid: 2497 components: - type: Transform - pos: 367.5,391.5 - parent: 1 - - uid: 3857 + pos: -35.5,-30.5 + parent: 2 + - uid: 2530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 391.5,384.5 - parent: 1 - - uid: 3928 + pos: -37.5,-30.5 + parent: 2 + - uid: 2531 components: - type: Transform - pos: 364.5,398.5 - parent: 1 - - uid: 4062 + pos: -36.5,-30.5 + parent: 2 + - uid: 2546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 403.5,384.5 - parent: 1 - - uid: 4171 + rot: -1.5707963267948966 rad + pos: -75.5,-43.5 + parent: 2 + - uid: 2595 components: - type: Transform - pos: 356.5,379.5 - parent: 1 - - uid: 4260 + pos: -88.5,-26.5 + parent: 2 + - uid: 2647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,396.5 - parent: 1 - - uid: 4261 + pos: -90.5,-17.5 + parent: 2 + - uid: 2941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 326.5,397.5 - parent: 1 - - uid: 4291 + pos: -48.5,-9.5 + parent: 2 + - uid: 2995 components: - type: Transform - pos: 326.5,398.5 - parent: 1 - - uid: 4292 + pos: -48.5,-11.5 + parent: 2 + - uid: 3338 components: - type: Transform - pos: 327.5,398.5 - parent: 1 - - uid: 4293 + rot: -1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 3379 components: - type: Transform - pos: 327.5,396.5 - parent: 1 - - uid: 4446 + rot: -1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 3397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,405.5 - parent: 1 - - uid: 4557 + pos: -55.5,-38.5 + parent: 2 + - uid: 3398 components: - type: Transform - pos: 373.5,387.5 - parent: 1 - - uid: 4837 + pos: -55.5,-37.5 + parent: 2 + - uid: 3399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,395.5 - parent: 1 - - uid: 4838 + pos: -55.5,-36.5 + parent: 2 + - uid: 3451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 389.5,395.5 - parent: 1 - - uid: 4924 + pos: -54.5,-29.5 + parent: 2 + - uid: 3452 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,389.5 - parent: 1 - - uid: 4925 + pos: -54.5,-33.5 + parent: 2 + - uid: 3453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,388.5 - parent: 1 - - uid: 4926 + pos: -53.5,-33.5 + parent: 2 + - uid: 3454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,387.5 - parent: 1 - - uid: 4931 + pos: -52.5,-33.5 + parent: 2 + - uid: 3457 components: - type: Transform - pos: 409.5,387.5 - parent: 1 - - uid: 4938 + rot: 1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - uid: 3458 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,385.5 - parent: 1 - - uid: 4957 + pos: -51.5,-31.5 + parent: 2 + - uid: 3488 components: - type: Transform - pos: 407.5,390.5 - parent: 1 - - uid: 4958 + pos: -54.5,-30.5 + parent: 2 + - uid: 3932 components: - type: Transform - pos: 407.5,391.5 - parent: 1 - - uid: 4964 + pos: -36.5,-18.5 + parent: 2 + - uid: 3933 components: - type: Transform - pos: 412.5,381.5 - parent: 1 - - uid: 5002 + pos: -36.5,-19.5 + parent: 2 + - uid: 3934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,397.5 - parent: 1 - - uid: 5003 + pos: -36.5,-21.5 + parent: 2 + - uid: 3935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,397.5 - parent: 1 - - uid: 5004 + pos: -36.5,-20.5 + parent: 2 + - uid: 3956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 424.5,392.5 - parent: 1 - - uid: 5010 + pos: -31.5,-19.5 + parent: 2 + - uid: 3957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,403.5 - parent: 1 - - uid: 5011 + pos: -31.5,-18.5 + parent: 2 + - uid: 3959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,403.5 - parent: 1 - - uid: 5019 + pos: -31.5,-20.5 + parent: 2 + - uid: 3981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,403.5 - parent: 1 - - uid: 5095 + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 3984 components: - type: Transform - pos: 420.5,409.5 - parent: 1 - - uid: 5101 + pos: -25.5,-26.5 + parent: 2 + - uid: 3987 components: - type: Transform - pos: 424.5,407.5 - parent: 1 - - uid: 5140 + pos: -24.5,-26.5 + parent: 2 + - uid: 4052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 419.5,409.5 - parent: 1 - - uid: 5141 + pos: -21.5,-36.5 + parent: 2 + - uid: 4053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 418.5,407.5 - parent: 1 - - uid: 5151 - components: - - type: Transform - pos: 419.5,411.5 - parent: 1 - - uid: 5184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,412.5 - parent: 1 - - uid: 5185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,411.5 - parent: 1 - - uid: 5197 + pos: -22.5,-38.5 + parent: 2 + - uid: 4054 components: - type: Transform - pos: 440.5,413.5 - parent: 1 - - uid: 5198 + rot: 1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - uid: 4057 components: - type: Transform - pos: 439.5,413.5 - parent: 1 - - uid: 5199 + rot: 1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - uid: 4115 components: - type: Transform - pos: 441.5,413.5 - parent: 1 - - uid: 5204 + rot: -1.5707963267948966 rad + pos: -22.5,-46.5 + parent: 2 + - uid: 4117 components: - type: Transform - pos: 439.5,410.5 - parent: 1 - - uid: 5209 + rot: -1.5707963267948966 rad + pos: -21.5,-46.5 + parent: 2 + - uid: 4121 components: - type: Transform - pos: 437.5,413.5 - parent: 1 - - uid: 5210 + pos: -24.5,-46.5 + parent: 2 + - uid: 4122 components: - type: Transform - pos: 436.5,413.5 - parent: 1 - - uid: 5211 + pos: -23.5,-46.5 + parent: 2 + - uid: 4138 components: - type: Transform - pos: 437.5,410.5 - parent: 1 - - uid: 5212 + rot: 1.5707963267948966 rad + pos: -34.5,-50.5 + parent: 2 + - uid: 4155 components: - type: Transform - pos: 437.5,412.5 - parent: 1 - - uid: 5245 + pos: -17.5,-54.5 + parent: 2 + - uid: 4156 components: - type: Transform - pos: 355.5,379.5 - parent: 1 - - uid: 5260 + pos: -17.5,-50.5 + parent: 2 + - uid: 4172 components: - type: Transform - pos: 459.5,416.5 - parent: 1 - - uid: 5264 + pos: -26.5,-54.5 + parent: 2 + - uid: 4176 components: - type: Transform - pos: 458.5,414.5 - parent: 1 - - uid: 5265 + pos: -26.5,-53.5 + parent: 2 + - uid: 4178 components: - type: Transform - pos: 460.5,414.5 - parent: 1 - - uid: 5321 + pos: -26.5,-52.5 + parent: 2 + - uid: 4179 components: - type: Transform - pos: 403.5,406.5 - parent: 1 - - uid: 5335 + rot: -1.5707963267948966 rad + pos: -22.5,-48.5 + parent: 2 + - uid: 4180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 399.5,410.5 - parent: 1 - - uid: 5336 + pos: -21.5,-48.5 + parent: 2 + - uid: 4254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 400.5,410.5 - parent: 1 - - uid: 5356 + pos: -54.5,-68.5 + parent: 2 + - uid: 4282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,407.5 - parent: 1 - - uid: 5358 + pos: -55.5,-68.5 + parent: 2 + - uid: 4291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,408.5 - parent: 1 - - uid: 5359 + rot: 1.5707963267948966 rad + pos: -71.5,-0.5 + parent: 2 + - uid: 4293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,408.5 - parent: 1 - - uid: 5363 + rot: 1.5707963267948966 rad + pos: -72.5,-0.5 + parent: 2 + - uid: 4294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,410.5 - parent: 1 - - uid: 5384 + rot: 1.5707963267948966 rad + pos: -73.5,-0.5 + parent: 2 + - uid: 4295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 408.5,418.5 - parent: 1 - - uid: 5385 + pos: -74.5,-0.5 + parent: 2 + - uid: 4296 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,415.5 - parent: 1 - - uid: 5386 + pos: -71.5,-4.5 + parent: 2 + - uid: 4297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,414.5 - parent: 1 - - uid: 5387 + pos: -73.5,-4.5 + parent: 2 + - uid: 4298 components: - type: Transform rot: 1.5707963267948966 rad - pos: 407.5,413.5 - parent: 1 - - uid: 5413 + pos: -74.5,-4.5 + parent: 2 + - uid: 4299 components: - type: Transform - pos: 408.5,422.5 - parent: 1 - - uid: 5429 + rot: 1.5707963267948966 rad + pos: -75.5,-4.5 + parent: 2 + - uid: 4300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,422.5 - parent: 1 - - uid: 5433 + rot: 1.5707963267948966 rad + pos: -72.5,-4.5 + parent: 2 + - uid: 4361 components: - type: Transform - pos: 399.5,420.5 - parent: 1 - - uid: 5434 + pos: -26.5,-4.5 + parent: 2 + - uid: 4362 components: - type: Transform - pos: 400.5,420.5 - parent: 1 - - uid: 5436 + pos: -26.5,-5.5 + parent: 2 + - uid: 4365 components: - type: Transform - pos: 402.5,420.5 - parent: 1 - - uid: 5437 + pos: -26.5,-6.5 + parent: 2 + - uid: 4515 components: - type: Transform - pos: 399.5,422.5 - parent: 1 - - uid: 5438 + pos: -81.5,0.5 + parent: 2 + - uid: 4640 components: - type: Transform - pos: 400.5,422.5 - parent: 1 - - uid: 5439 + pos: -96.5,10.5 + parent: 2 + - uid: 4641 components: - type: Transform - pos: 402.5,422.5 - parent: 1 - - uid: 5464 + pos: -95.5,10.5 + parent: 2 + - uid: 5351 components: - type: Transform - pos: 413.5,422.5 - parent: 1 - - uid: 5465 + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 5641 components: - type: Transform - pos: 411.5,420.5 - parent: 1 - - uid: 5466 + pos: -101.5,-65.5 + parent: 2 + - uid: 5678 components: - type: Transform - pos: 411.5,419.5 - parent: 1 - - uid: 5467 + rot: 3.141592653589793 rad + pos: -115.5,12.5 + parent: 2 + - uid: 5679 components: - type: Transform - pos: 411.5,418.5 - parent: 1 - - uid: 5474 + rot: 3.141592653589793 rad + pos: -116.5,12.5 + parent: 2 + - uid: 5680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,417.5 - parent: 1 - - uid: 5475 + rot: 3.141592653589793 rad + pos: -117.5,12.5 + parent: 2 + - uid: 5732 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,418.5 - parent: 1 - - uid: 5488 + pos: -115.5,-6.5 + parent: 2 + - uid: 5733 components: - type: Transform - pos: 395.5,412.5 - parent: 1 - - uid: 5491 + rot: 1.5707963267948966 rad + pos: -114.5,-6.5 + parent: 2 + - uid: 5734 components: - type: Transform - pos: 397.5,412.5 - parent: 1 - - uid: 5497 + rot: 1.5707963267948966 rad + pos: -113.5,-6.5 + parent: 2 + - uid: 5768 components: - type: Transform - pos: 397.5,414.5 - parent: 1 - - uid: 5498 + rot: -1.5707963267948966 rad + pos: -115.5,-20.5 + parent: 2 + - uid: 5771 components: - type: Transform - pos: 396.5,414.5 - parent: 1 - - uid: 5550 + rot: -1.5707963267948966 rad + pos: -115.5,-21.5 + parent: 2 + - uid: 5818 components: - type: Transform rot: 1.5707963267948966 rad - pos: 367.5,398.5 - parent: 1 - - uid: 5551 + pos: -22.5,-28.5 + parent: 2 + - uid: 5833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 367.5,397.5 - parent: 1 - - uid: 5552 + pos: -38.5,-30.5 + parent: 2 + - uid: 5878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,398.5 - parent: 1 - - uid: 5553 + pos: -111.5,-18.5 + parent: 2 + - uid: 5879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,397.5 - parent: 1 - - uid: 5562 + pos: -110.5,-18.5 + parent: 2 + - uid: 5884 components: - type: Transform - pos: 368.5,394.5 - parent: 1 - - uid: 5610 + rot: 3.141592653589793 rad + pos: -116.5,-18.5 + parent: 2 + - uid: 5887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,391.5 - parent: 1 - - uid: 5611 + rot: 3.141592653589793 rad + pos: -116.5,-17.5 + parent: 2 + - uid: 5987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,391.5 - parent: 1 - - uid: 5616 + pos: -150.5,-42.5 + parent: 2 + - uid: 5988 components: - type: Transform - pos: 360.5,390.5 - parent: 1 - - uid: 5630 + pos: -149.5,-42.5 + parent: 2 + - uid: 6153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,384.5 - parent: 1 - - uid: 5699 + pos: -133.5,-38.5 + parent: 2 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 356.5,380.5 - parent: 1 - - uid: 5704 + pos: -127.5,-14.5 + parent: 2 + - uid: 6279 components: - type: Transform - pos: 377.5,424.5 - parent: 1 - - uid: 5705 + pos: -127.5,-15.5 + parent: 2 + - uid: 6281 components: - type: Transform - pos: 381.5,424.5 - parent: 1 - - uid: 5726 + pos: -127.5,-16.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 6466 components: - type: Transform rot: 3.141592653589793 rad - pos: 374.5,422.5 - parent: 1 - - uid: 5727 + pos: -33.5,-27.5 + parent: 2 + - uid: 6467 components: - type: Transform rot: 3.141592653589793 rad - pos: 384.5,422.5 - parent: 1 - - uid: 5765 + pos: -34.5,-27.5 + parent: 2 + - uid: 6468 components: - type: Transform - pos: 369.5,409.5 - parent: 1 - - uid: 5774 + rot: 3.141592653589793 rad + pos: -35.5,-27.5 + parent: 2 + - uid: 6474 components: - type: Transform - pos: 363.5,406.5 - parent: 1 - - uid: 5775 + pos: -40.5,-33.5 + parent: 2 + - uid: 6636 components: - type: Transform - pos: 363.5,407.5 - parent: 1 - - uid: 5781 + pos: -86.5,-33.5 + parent: 2 + - uid: 6665 components: - type: Transform - pos: 363.5,408.5 - parent: 1 - - uid: 5782 + pos: -89.5,-22.5 + parent: 2 + - uid: 6686 components: - type: Transform - pos: 364.5,408.5 - parent: 1 - - uid: 5838 + pos: -89.5,-23.5 + parent: 2 + - uid: 6708 components: - type: Transform - pos: 382.5,414.5 - parent: 1 - - uid: 5840 + pos: -90.5,-32.5 + parent: 2 + - uid: 6710 components: - type: Transform - pos: 376.5,414.5 - parent: 1 - - uid: 5841 + pos: -81.5,-39.5 + parent: 2 + - uid: 6711 components: - type: Transform - pos: 376.5,413.5 - parent: 1 - - uid: 5857 + pos: -84.5,-39.5 + parent: 2 + - uid: 6712 components: - type: Transform - pos: 312.5,384.5 - parent: 1 - - uid: 5858 + pos: -83.5,-39.5 + parent: 2 + - uid: 6716 components: - type: Transform - pos: 313.5,384.5 - parent: 1 - - uid: 5859 + pos: -80.5,-39.5 + parent: 2 + - uid: 6721 components: - type: Transform - pos: 314.5,384.5 - parent: 1 - - uid: 5866 + pos: -80.5,-40.5 + parent: 2 + - uid: 6731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 309.5,382.5 - parent: 1 - - uid: 5867 + pos: -90.5,-31.5 + parent: 2 + - uid: 6839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,382.5 - parent: 1 - - uid: 5868 + pos: -87.5,-33.5 + parent: 2 + - uid: 6845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 311.5,382.5 - parent: 1 - - uid: 5962 + pos: -90.5,-30.5 + parent: 2 + - uid: 6853 components: - type: Transform - pos: 425.5,353.5 - parent: 1 - - uid: 5963 + pos: -88.5,-25.5 + parent: 2 + - uid: 6854 components: - type: Transform - pos: 425.5,352.5 - parent: 1 - - uid: 5969 + pos: -84.5,-40.5 + parent: 2 + - uid: 6868 components: - type: Transform - pos: 329.5,402.5 - parent: 1 - - uid: 5971 + pos: -93.5,-29.5 + parent: 2 + - uid: 6893 components: - type: Transform - pos: 328.5,402.5 - parent: 1 - - uid: 6003 + pos: -83.5,-40.5 + parent: 2 + - uid: 6992 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,391.5 - parent: 1 - - uid: 6039 + rot: -1.5707963267948966 rad + pos: -108.5,-48.5 + parent: 2 + - uid: 7097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,368.5 - parent: 1 - - uid: 6040 + pos: -93.5,-28.5 + parent: 2 + - uid: 7328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,370.5 - parent: 1 - - uid: 6041 + pos: -126.5,-42.5 + parent: 2 + - uid: 7329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,369.5 - parent: 1 - - uid: 6044 + pos: -125.5,-42.5 + parent: 2 + - uid: 7330 components: - type: Transform - pos: 422.5,411.5 - parent: 1 - - uid: 6048 + pos: -124.5,-42.5 + parent: 2 + - uid: 7339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,376.5 - parent: 1 - - uid: 6049 + pos: -118.5,-41.5 + parent: 2 + - uid: 7526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,376.5 - parent: 1 - - uid: 6050 + pos: -124.5,-55.5 + parent: 2 + - uid: 7574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,376.5 - parent: 1 - - uid: 6070 + pos: -60.5,-31.5 + parent: 2 + - uid: 7598 components: - type: Transform rot: 1.5707963267948966 rad - pos: 398.5,372.5 - parent: 1 - - uid: 6076 + pos: -134.5,-43.5 + parent: 2 + - uid: 7606 components: - type: Transform - pos: 401.5,372.5 - parent: 1 - - uid: 6077 + pos: -132.5,-43.5 + parent: 2 + - uid: 7607 components: - type: Transform - pos: 401.5,374.5 - parent: 1 - - uid: 6082 + pos: -133.5,-43.5 + parent: 2 + - uid: 7754 components: - type: Transform - pos: 400.5,369.5 - parent: 1 - - uid: 6090 + rot: 3.141592653589793 rad + pos: -118.5,-40.5 + parent: 2 + - uid: 7865 components: - type: Transform - pos: 395.5,409.5 - parent: 1 - - uid: 6123 + rot: 1.5707963267948966 rad + pos: -122.5,-49.5 + parent: 2 + - uid: 7989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,409.5 - parent: 1 - - uid: 6124 + pos: -131.5,-4.5 + parent: 2 + - uid: 8055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,408.5 - parent: 1 - - uid: 6151 + pos: -148.5,-45.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -147.5,-45.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: -146.5,-45.5 + parent: 2 + - uid: 8159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 452.5,404.5 - parent: 1 - - uid: 6152 + pos: -61.5,-23.5 + parent: 2 + - uid: 8274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 452.5,405.5 - parent: 1 - - uid: 6209 + pos: -22.5,17.5 + parent: 2 + - uid: 8338 components: - type: Transform - pos: 426.5,400.5 - parent: 1 - - uid: 6225 + rot: 3.141592653589793 rad + pos: -32.5,-21.5 + parent: 2 + - uid: 8344 components: - type: Transform - pos: 441.5,399.5 - parent: 1 - - uid: 6226 + pos: -34.5,-37.5 + parent: 2 + - uid: 8442 components: - type: Transform - pos: 441.5,398.5 - parent: 1 - - uid: 6263 + rot: -1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + - uid: 8447 components: - type: Transform - pos: 339.5,419.5 - parent: 1 - - uid: 6609 + rot: -1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - uid: 8448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,414.5 - parent: 1 - - uid: 6610 + rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + - uid: 8563 components: - type: Transform rot: 3.141592653589793 rad - pos: 311.5,407.5 - parent: 1 - - uid: 6611 + pos: -10.5,-3.5 + parent: 2 + - uid: 8564 components: - type: Transform rot: 3.141592653589793 rad - pos: 313.5,412.5 - parent: 1 - - uid: 6612 + pos: -11.5,-3.5 + parent: 2 + - uid: 8656 components: - type: Transform rot: 3.141592653589793 rad - pos: 312.5,412.5 - parent: 1 - - uid: 6613 + pos: -26.5,7.5 + parent: 2 + - uid: 8667 components: - type: Transform rot: 3.141592653589793 rad - pos: 311.5,414.5 - parent: 1 - - uid: 6614 + pos: -23.5,4.5 + parent: 2 + - uid: 8668 components: - type: Transform rot: 3.141592653589793 rad - pos: 308.5,416.5 - parent: 1 - - uid: 6623 + pos: -24.5,4.5 + parent: 2 + - uid: 8813 components: - type: Transform - pos: 308.5,408.5 - parent: 1 - - uid: 6624 + pos: -13.5,-39.5 + parent: 2 + - uid: 8814 components: - type: Transform - pos: 306.5,408.5 - parent: 1 - - uid: 6627 + pos: -13.5,-40.5 + parent: 2 + - uid: 8815 components: - type: Transform - pos: 301.5,411.5 - parent: 1 - - uid: 6628 + pos: -13.5,-41.5 + parent: 2 + - uid: 8864 components: - type: Transform - pos: 301.5,410.5 - parent: 1 - - uid: 6683 + rot: 3.141592653589793 rad + pos: -36.5,-54.5 + parent: 2 + - uid: 8865 components: - type: Transform - pos: 317.5,388.5 - parent: 1 - - uid: 6684 + rot: 3.141592653589793 rad + pos: -36.5,-53.5 + parent: 2 + - uid: 8866 components: - type: Transform - pos: 317.5,386.5 - parent: 1 - - uid: 6688 + rot: 3.141592653589793 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 8981 components: - type: Transform - pos: 319.5,386.5 - parent: 1 - - uid: 7412 + pos: -62.5,-31.5 + parent: 2 + - uid: 8983 components: - type: Transform - pos: 341.5,395.5 - parent: 1 - - uid: 7413 + pos: -61.5,-31.5 + parent: 2 + - uid: 9041 components: - type: Transform - pos: 342.5,395.5 - parent: 1 - - uid: 7440 + rot: 3.141592653589793 rad + pos: -45.5,-67.5 + parent: 2 + - uid: 9051 components: - type: Transform - pos: 340.5,399.5 - parent: 1 - - uid: 7453 + pos: -42.5,-66.5 + parent: 2 + - uid: 9075 components: - type: Transform - pos: 346.5,397.5 - parent: 1 - - uid: 7458 + pos: -41.5,-66.5 + parent: 2 + - uid: 9128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,387.5 - parent: 1 - - uid: 7495 + pos: -52.5,-61.5 + parent: 2 + - uid: 9194 components: - type: Transform rot: 3.141592653589793 rad - pos: 354.5,384.5 - parent: 1 - - uid: 7496 + pos: -45.5,-66.5 + parent: 2 + - uid: 9312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,383.5 - parent: 1 - - uid: 7507 + pos: -23.5,-17.5 + parent: 2 + - uid: 9341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,384.5 - parent: 1 - - uid: 7529 + pos: -46.5,-24.5 + parent: 2 + - uid: 9343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 354.5,400.5 - parent: 1 - - uid: 7530 + pos: -62.5,-23.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 + - uid: 9461 components: - type: Transform rot: -1.5707963267948966 rad - pos: 354.5,399.5 - parent: 1 - - uid: 7538 + pos: -85.5,-44.5 + parent: 2 + - uid: 9625 components: - type: Transform - pos: 350.5,400.5 - parent: 1 - - uid: 7539 + rot: 1.5707963267948966 rad + pos: -92.5,-42.5 + parent: 2 + - uid: 9626 components: - type: Transform - pos: 351.5,400.5 - parent: 1 - - uid: 7543 + rot: 1.5707963267948966 rad + pos: -88.5,-42.5 + parent: 2 + - uid: 9702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 352.5,396.5 - parent: 1 - - uid: 7546 + pos: -115.5,29.5 + parent: 2 + - uid: 9703 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,400.5 - parent: 1 - - uid: 7547 + pos: -114.5,29.5 + parent: 2 + - uid: 9704 components: - type: Transform rot: -1.5707963267948966 rad - pos: 357.5,399.5 - parent: 1 - - uid: 7548 + pos: -113.5,29.5 + parent: 2 + - uid: 9725 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,399.5 - parent: 1 - - uid: 7553 + pos: -115.5,19.5 + parent: 2 + - uid: 9862 components: - type: Transform - pos: 357.5,395.5 - parent: 1 - - uid: 7554 + rot: -1.5707963267948966 rad + pos: -93.5,28.5 + parent: 2 + - uid: 10165 components: - type: Transform - pos: 356.5,395.5 - parent: 1 - - uid: 7566 + rot: -1.5707963267948966 rad + pos: -92.5,-47.5 + parent: 2 + - uid: 10171 components: - type: Transform - pos: 354.5,397.5 - parent: 1 - - uid: 7567 + pos: -89.5,-46.5 + parent: 2 + - uid: 10180 components: - type: Transform - pos: 355.5,397.5 - parent: 1 - - uid: 7568 + pos: -92.5,-19.5 + parent: 2 + - uid: 10203 components: - type: Transform - pos: 356.5,397.5 - parent: 1 - - uid: 7569 + rot: -1.5707963267948966 rad + pos: -85.5,-44.5 + parent: 2 + - uid: 10455 components: - type: Transform - pos: 357.5,397.5 - parent: 1 - - uid: 8486 + rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 2 + - uid: 10906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 416.5,416.5 - parent: 1 - - uid: 8986 + rot: -1.5707963267948966 rad + pos: -60.5,-23.5 + parent: 2 + - uid: 11104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 365.5,419.5 - parent: 1 - - uid: 8987 + pos: -26.5,-32.5 + parent: 2 + - uid: 11106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 366.5,419.5 - parent: 1 - - uid: 10025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,373.5 - parent: 1 - - uid: 10265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,416.5 - parent: 1 - - uid: 10266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,416.5 - parent: 1 - - uid: 10268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,418.5 - parent: 1 - - uid: 13841 + pos: -22.5,-32.5 + parent: 2 + - uid: 11629 components: - type: Transform rot: -1.5707963267948966 rad - pos: 348.5,415.5 - parent: 1 - - uid: 16108 - components: - - type: Transform - pos: 403.5,367.5 - parent: 1 - - uid: 16248 - components: - - type: Transform - pos: 339.5,406.5 - parent: 1 - - uid: 16249 + pos: -26.5,8.5 + parent: 2 + - uid: 13560 components: - type: Transform - pos: 338.5,406.5 - parent: 1 - - uid: 16303 + rot: 1.5707963267948966 rad + pos: -88.5,-46.5 + parent: 2 + - uid: 14047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,413.5 - parent: 1 - - uid: 16307 + rot: 1.5707963267948966 rad + pos: -66.5,-55.5 + parent: 2 + - uid: 14048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 415.5,413.5 - parent: 1 - - uid: 16323 + pos: -129.5,-33.5 + parent: 2 + - uid: 14098 components: - type: Transform - pos: 400.5,415.5 - parent: 1 - - uid: 17308 + rot: 1.5707963267948966 rad + pos: -66.5,-56.5 + parent: 2 + - uid: 14100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 405.5,368.5 - parent: 1 - - uid: 17313 + pos: -66.5,-54.5 + parent: 2 + - uid: 14657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,375.5 - parent: 1 - - uid: 17314 + pos: -136.5,26.5 + parent: 2 + - uid: 15011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,373.5 - parent: 1 - - uid: 17315 + rot: 1.5707963267948966 rad + pos: -71.5,-42.5 + parent: 2 + - uid: 15332 components: - type: Transform rot: 3.141592653589793 rad - pos: 424.5,372.5 - parent: 1 - - uid: 17316 + pos: -35.5,0.5 + parent: 2 + - uid: 16000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,372.5 - parent: 1 - - uid: 17644 + pos: -109.5,-29.5 + parent: 2 + - uid: 16001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 508.5,389.5 - parent: 1 - - uid: 18354 + pos: -109.5,-30.5 + parent: 2 + - uid: 16476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 435.5,393.5 - parent: 1 - - uid: 18406 + pos: -37.5,-65.5 + parent: 2 + - uid: 16477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,426.5 - parent: 1 - - uid: 18651 + pos: -37.5,-66.5 + parent: 2 + - uid: 16478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,435.5 - parent: 1 - - uid: 18653 + pos: -38.5,-65.5 + parent: 2 + - uid: 16522 components: - type: Transform - pos: 326.5,435.5 - parent: 1 - - uid: 18731 + pos: -45.5,-24.5 + parent: 2 + - uid: 16625 components: - type: Transform - pos: 421.5,370.5 - parent: 1 - - uid: 18996 + pos: -30.5,-65.5 + parent: 2 + - uid: 16945 components: - type: Transform - pos: 330.5,392.5 - parent: 1 - - uid: 18997 + pos: -30.5,-64.5 + parent: 2 + - uid: 16977 components: - type: Transform - pos: 336.5,392.5 - parent: 1 - - uid: 18998 + pos: -34.5,-17.5 + parent: 2 + - uid: 16998 components: - type: Transform - pos: 336.5,393.5 - parent: 1 - - uid: 20758 + rot: -1.5707963267948966 rad + pos: -96.5,35.5 + parent: 2 + - uid: 17058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 20527 - - uid: 21166 + rot: -1.5707963267948966 rad + pos: -92.5,28.5 + parent: 2 + - uid: 17304 components: - type: Transform - pos: 348.5,416.5 - parent: 1 - - uid: 21218 + pos: -135.5,-38.5 + parent: 2 + - uid: 17433 components: - type: Transform - pos: 508.5,390.5 - parent: 1 - - uid: 21219 + rot: -1.5707963267948966 rad + pos: -127.5,-46.5 + parent: 2 + - uid: 17453 components: - type: Transform - pos: 509.5,390.5 - parent: 1 - - uid: 21504 + rot: 1.5707963267948966 rad + pos: -130.5,-58.5 + parent: 2 + - uid: 17527 components: - type: Transform - pos: 2.5,31.5 - parent: 5072 - - uid: 21606 + rot: 3.141592653589793 rad + pos: -40.5,-20.5 + parent: 2 + - uid: 17535 components: - type: Transform - pos: 5.5,31.5 - parent: 5072 - - uid: 21622 + rot: 3.141592653589793 rad + pos: -40.5,-21.5 + parent: 2 + - uid: 17801 components: - type: Transform - pos: 9.5,28.5 - parent: 5072 - - uid: 21654 + rot: 3.141592653589793 rad + pos: -93.5,-31.5 + parent: 2 + - uid: 17802 components: - type: Transform - pos: 9.5,30.5 - parent: 5072 - - uid: 21658 + rot: 3.141592653589793 rad + pos: -93.5,-32.5 + parent: 2 + - uid: 17821 components: - type: Transform - pos: 8.5,31.5 - parent: 5072 - - uid: 21826 + pos: -91.5,-17.5 + parent: 2 + - uid: 17825 components: - type: Transform - pos: 1.5,32.5 - parent: 5072 - - uid: 21830 + rot: -1.5707963267948966 rad + pos: -84.5,-44.5 + parent: 2 + - uid: 18291 components: - type: Transform - pos: 2.5,32.5 - parent: 5072 - - uid: 21837 + rot: 1.5707963267948966 rad + pos: -101.5,30.5 + parent: 2 + - uid: 18788 components: - type: Transform - pos: 4.5,32.5 - parent: 5072 - - uid: 21840 + pos: -123.5,-0.5 + parent: 2 + - uid: 18789 components: - type: Transform - pos: 5.5,32.5 - parent: 5072 - - uid: 21848 + pos: -122.5,-0.5 + parent: 2 + - uid: 18816 components: - type: Transform - pos: 7.5,32.5 - parent: 5072 - - uid: 21902 + pos: -143.5,-9.5 + parent: 2 + - uid: 18817 components: - type: Transform - pos: -0.5,32.5 - parent: 5072 -- proto: TableWood - entities: - - uid: 1320 + pos: -143.5,-7.5 + parent: 2 + - uid: 18818 components: - type: Transform - pos: 371.5,395.5 - parent: 1 - - uid: 4901 + pos: -143.5,-8.5 + parent: 2 + - uid: 19256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,387.5 - parent: 1 - - uid: 4902 + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 19332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,387.5 - parent: 1 - - uid: 4903 + pos: -112.5,-18.5 + parent: 2 + - uid: 19333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,387.5 - parent: 1 - - uid: 4977 - components: - - type: Transform - pos: 420.5,387.5 - parent: 1 - - uid: 4978 - components: - - type: Transform - pos: 420.5,388.5 - parent: 1 - - uid: 4979 + pos: -81.5,-25.5 + parent: 2 + - uid: 19539 components: - type: Transform - pos: 420.5,389.5 - parent: 1 - - uid: 4980 + rot: 3.141592653589793 rad + pos: -92.5,25.5 + parent: 2 + - uid: 20302 components: - type: Transform - pos: 416.5,391.5 - parent: 1 - - uid: 4981 + pos: -131.5,-5.5 + parent: 2 + - uid: 20441 components: - type: Transform - pos: 416.5,390.5 - parent: 1 - - uid: 4984 + pos: -121.5,36.5 + parent: 2 + - uid: 20632 components: - type: Transform - pos: 414.5,391.5 - parent: 1 - - uid: 5118 + pos: -39.5,-54.5 + parent: 2 + - uid: 20633 components: - type: Transform - pos: 422.5,388.5 - parent: 1 - - uid: 5120 + pos: -38.5,-54.5 + parent: 2 + - uid: 20637 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,387.5 - parent: 1 - - uid: 5121 + pos: -32.5,-57.5 + parent: 2 + - uid: 20638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,388.5 - parent: 1 - - uid: 5131 + pos: -32.5,-56.5 + parent: 2 + - uid: 20639 components: - type: Transform - pos: 427.5,387.5 - parent: 1 - - uid: 5169 + pos: -34.5,-57.5 + parent: 2 + - uid: 20640 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,406.5 - parent: 1 - - uid: 5509 + pos: -35.5,-57.5 + parent: 2 + - uid: 20931 components: - type: Transform - pos: 389.5,410.5 - parent: 1 - - uid: 5511 + pos: -53.5,-40.5 + parent: 2 + - uid: 20953 components: - type: Transform - pos: 389.5,406.5 - parent: 1 - - uid: 5513 + pos: -48.5,-37.5 + parent: 2 + - uid: 20958 components: - type: Transform - pos: 389.5,414.5 - parent: 1 - - uid: 5576 + rot: 3.141592653589793 rad + pos: -35.5,-46.5 + parent: 2 + - uid: 21047 components: - type: Transform rot: 3.141592653589793 rad - pos: 371.5,393.5 - parent: 1 - - uid: 5745 + pos: -74.5,-73.5 + parent: 2 + - uid: 22086 components: - type: Transform - pos: 368.5,407.5 - parent: 1 - - uid: 5746 + pos: -23.5,-5.5 + parent: 2 + - uid: 22092 components: - type: Transform - pos: 368.5,406.5 - parent: 1 - - uid: 5761 + pos: -23.5,-4.5 + parent: 2 + - uid: 22298 components: - type: Transform - pos: 367.5,411.5 - parent: 1 - - uid: 5762 + pos: -34.5,-21.5 + parent: 2 + - uid: 22385 components: - type: Transform - pos: 368.5,411.5 - parent: 1 - - uid: 5940 + pos: -13.5,-24.5 + parent: 2 + - uid: 22386 components: - type: Transform - pos: 425.5,357.5 - parent: 1 - - uid: 12925 + pos: -14.5,-24.5 + parent: 2 + - uid: 22830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,450.5 - parent: 1 - - uid: 15343 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - uid: 22966 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,450.5 - parent: 1 - - uid: 15510 + pos: -3.5,-6.5 + parent: 2 + - uid: 22967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 337.5,450.5 - parent: 1 - - uid: 15889 + pos: -2.5,-6.5 + parent: 2 + - uid: 22968 components: - type: Transform - pos: 339.5,452.5 - parent: 1 - - uid: 15890 + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 23295 components: - type: Transform - pos: 339.5,453.5 - parent: 1 - - uid: 16293 + pos: -35.5,-4.5 + parent: 2 + - uid: 23340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,448.5 - parent: 1 - - uid: 16341 + rot: 3.141592653589793 rad + pos: -36.5,-46.5 + parent: 2 + - uid: 23443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,447.5 - parent: 1 - - uid: 16488 + rot: 3.141592653589793 rad + pos: -134.5,-1.5 + parent: 2 + - uid: 23704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,447.5 - parent: 1 - - uid: 16490 + pos: -119.5,34.5 + parent: 2 + - uid: 23947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,447.5 - parent: 1 - - uid: 16491 + pos: -98.5,14.5 + parent: 2 + - uid: 24133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,447.5 - parent: 1 - - uid: 16492 + rot: 3.141592653589793 rad + pos: -119.5,33.5 + parent: 2 + - uid: 24367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,446.5 - parent: 1 - - uid: 16493 + pos: -37.5,-8.5 + parent: 2 + - uid: 24368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,445.5 - parent: 1 - - uid: 18016 + pos: -37.5,-7.5 + parent: 2 + - uid: 24377 components: - type: Transform - pos: 418.5,367.5 - parent: 1 - - uid: 18017 + pos: -35.5,-5.5 + parent: 2 + - uid: 24496 components: - type: Transform - pos: 418.5,370.5 - parent: 1 - - uid: 18018 + pos: -35.5,-6.5 + parent: 2 + - uid: 25434 components: - type: Transform - pos: 411.5,370.5 - parent: 1 - - uid: 18019 + pos: -98.5,-32.5 + parent: 2 + - uid: 25435 components: - type: Transform - pos: 411.5,367.5 - parent: 1 - - uid: 18614 + pos: -98.5,-28.5 + parent: 2 + - uid: 25436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 336.5,440.5 - parent: 1 - - uid: 20051 + pos: -98.5,-24.5 + parent: 2 + - uid: 25909 components: - type: Transform rot: -1.5707963267948966 rad - pos: 333.5,442.5 - parent: 1 - - uid: 21383 + pos: -75.5,-42.5 + parent: 2 + - uid: 26055 components: - type: Transform - pos: 6.5,24.5 - parent: 5072 - - uid: 21416 + pos: -93.5,-61.5 + parent: 2 + - uid: 26145 components: - type: Transform - pos: 7.5,24.5 - parent: 5072 - - uid: 21437 + pos: -138.5,23.5 + parent: 2 + - uid: 26146 components: - type: Transform - pos: 7.5,19.5 - parent: 5072 - - uid: 21482 + pos: -138.5,24.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 8784 components: - type: Transform - pos: 10.5,23.5 - parent: 5072 - - uid: 21509 + pos: -11.5,-28.5 + parent: 2 + - uid: 8786 components: - type: Transform - pos: 8.5,18.5 - parent: 5072 - - uid: 21767 + pos: -10.5,-28.5 + parent: 2 + - uid: 15127 components: - type: Transform - pos: -1.5,25.5 - parent: 5072 - - uid: 21783 + pos: -53.5,-51.5 + parent: 2 + - uid: 15128 components: - type: Transform - pos: -1.5,24.5 - parent: 5072 -- proto: TargetClown - entities: - - uid: 5512 + pos: -54.5,-51.5 + parent: 2 + - uid: 15137 components: - type: Transform - pos: 389.5,411.5 - parent: 1 - - uid: 17346 + pos: -53.5,-52.5 + parent: 2 + - uid: 15141 components: - type: Transform - pos: 479.5,373.5 - parent: 1 - - uid: 17348 + pos: -54.5,-52.5 + parent: 2 + - uid: 19818 components: - type: Transform - pos: 479.5,381.5 - parent: 1 - - uid: 21101 + rot: 1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 21479 components: - type: Transform - pos: 421.5,402.5 - parent: 1 -- proto: TargetDarts + pos: -112.5,36.5 + parent: 2 +- proto: TableFancyBlue entities: - - uid: 19069 + - uid: 23451 components: - type: Transform - pos: 341.5,449.5 - parent: 1 -- proto: TargetStrange + pos: -67.5,-69.5 + parent: 2 +- proto: TableFancyRed entities: - - uid: 17351 + - uid: 17100 components: - type: Transform - pos: 475.5,378.5 - parent: 1 - - uid: 17365 + rot: 1.5707963267948966 rad + pos: -119.5,26.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 321 components: - type: Transform - pos: 475.5,376.5 - parent: 1 - - uid: 21102 + rot: 1.5707963267948966 rad + pos: -39.5,-16.5 + parent: 2 + - uid: 323 components: - type: Transform - pos: 423.5,370.5 - parent: 1 -- proto: TargetSyndicate - entities: - - uid: 17356 + rot: 1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - uid: 324 components: - type: Transform - pos: 483.5,377.5 - parent: 1 -- proto: TegCenter - entities: - - uid: 1766 + rot: 1.5707963267948966 rad + pos: -56.5,-31.5 + parent: 2 + - uid: 327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 323.5,423.5 - parent: 1 -- proto: TegCirculator - entities: - - uid: 1779 + rot: 1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 + - uid: 328 components: - type: Transform - pos: 324.5,423.5 - parent: 1 - - type: PointLight - color: '#FF3300FF' - - uid: 1804 + rot: 1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 2 + - uid: 329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,423.5 - parent: 1 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServerFilledCargo - entities: - - uid: 6494 + rot: 1.5707963267948966 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 330 components: - type: Transform - pos: 309.5,423.5 - parent: 1 -- proto: TelecomServerFilledCommand - entities: - - uid: 4800 + rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 1232 components: - type: Transform - pos: 311.5,422.5 - parent: 1 -- proto: TelecomServerFilledCommon - entities: - - uid: 6491 + rot: 1.5707963267948966 rad + pos: -56.5,-23.5 + parent: 2 + - uid: 1578 components: - type: Transform - pos: 311.5,425.5 - parent: 1 -- proto: TelecomServerFilledEngineering - entities: - - uid: 6414 + rot: 1.5707963267948966 rad + pos: -21.5,11.5 + parent: 2 + - uid: 2070 components: - type: Transform - pos: 311.5,421.5 - parent: 1 -- proto: TelecomServerFilledMedical - entities: - - uid: 4798 + rot: -1.5707963267948966 rad + pos: -109.5,-7.5 + parent: 2 + - uid: 2088 components: - type: Transform - pos: 311.5,423.5 - parent: 1 -- proto: TelecomServerFilledScience - entities: - - uid: 6410 + pos: -93.5,-18.5 + parent: 2 + - uid: 2092 components: - type: Transform - pos: 311.5,424.5 - parent: 1 -- proto: TelecomServerFilledSecurity - entities: - - uid: 6493 + rot: -1.5707963267948966 rad + pos: -110.5,-7.5 + parent: 2 + - uid: 2096 components: - type: Transform - pos: 309.5,422.5 - parent: 1 -- proto: TelecomServerFilledService - entities: - - uid: 6492 + rot: -1.5707963267948966 rad + pos: -111.5,-7.5 + parent: 2 + - uid: 2514 components: - type: Transform - pos: 311.5,426.5 - parent: 1 -- proto: Telecrystal1 - entities: - - uid: 17994 + pos: -91.5,-24.5 + parent: 2 + - uid: 2515 components: - type: Transform - pos: 485.5,371.5 - parent: 1 -- proto: ThrowingStar - entities: - - uid: 21964 + pos: -92.5,-24.5 + parent: 2 + - uid: 2519 components: - type: Transform - pos: 421.5,382.5 - parent: 1 -- proto: Thruster - entities: - - uid: 4884 + pos: -90.5,-24.5 + parent: 2 + - uid: 2683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 16114 - - uid: 5851 + pos: -63.5,8.5 + parent: 2 + - uid: 2684 components: - type: Transform - pos: 316.5,384.5 - parent: 1 - - uid: 5852 + pos: -63.5,7.5 + parent: 2 + - uid: 2685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,384.5 - parent: 1 - - uid: 5853 + pos: -59.5,8.5 + parent: 2 + - uid: 2686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 317.5,382.5 - parent: 1 - - uid: 5854 + pos: -59.5,7.5 + parent: 2 + - uid: 2697 components: - type: Transform - pos: 316.5,382.5 - parent: 1 - - uid: 7521 + pos: -67.5,7.5 + parent: 2 + - uid: 2698 components: - type: Transform - pos: -3.5,1.5 - parent: 16114 - - uid: 8482 + pos: -68.5,7.5 + parent: 2 + - uid: 2699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 16114 - - uid: 8483 + pos: -55.5,7.5 + parent: 2 + - uid: 2700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 16114 - - uid: 9070 + pos: -54.5,7.5 + parent: 2 + - uid: 2702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 16114 - - uid: 9079 + pos: -60.5,4.5 + parent: 2 + - uid: 2715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 16114 - - uid: 20450 + rot: -1.5707963267948966 rad + pos: -54.5,3.5 + parent: 2 + - uid: 2924 components: - type: Transform - pos: 5.5,4.5 - parent: 20181 - - uid: 20451 + pos: -49.5,-8.5 + parent: 2 + - uid: 3311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 - parent: 20181 - - uid: 20452 + rot: 1.5707963267948966 rad + pos: -56.5,-22.5 + parent: 2 + - uid: 3406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 20181 - - uid: 20453 + rot: 1.5707963267948966 rad + pos: -54.5,-25.5 + parent: 2 + - uid: 3408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 20181 - - uid: 20454 + pos: -56.5,-21.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 3918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 20181 - - uid: 20455 + pos: -38.5,-26.5 + parent: 2 + - uid: 3919 components: - type: Transform - pos: -2.5,4.5 - parent: 20181 - - uid: 20456 + pos: -39.5,-26.5 + parent: 2 + - uid: 4543 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,1.5 - parent: 20181 - - uid: 20457 + pos: -99.5,12.5 + parent: 2 + - uid: 4544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 20181 - - uid: 20759 + pos: -100.5,12.5 + parent: 2 + - uid: 5720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 20527 - - uid: 20760 + pos: -109.5,-13.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -110.5,-13.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: -111.5,-13.5 + parent: 2 + - uid: 7292 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 20527 - - uid: 20761 + pos: -119.5,-48.5 + parent: 2 + - uid: 7293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 20527 - - uid: 20762 + rot: 1.5707963267948966 rad + pos: -120.5,-48.5 + parent: 2 + - uid: 7294 components: - type: Transform - pos: -1.5,8.5 - parent: 20527 - - uid: 20763 + rot: 1.5707963267948966 rad + pos: -121.5,-48.5 + parent: 2 + - uid: 7295 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 20527 -- proto: ThrusterFlatpack - entities: - - uid: 20017 + pos: -121.5,-42.5 + parent: 2 + - uid: 7296 components: - type: Transform - pos: 441.5,396.5 - parent: 1 -- proto: TintedWindow - entities: - - uid: 2050 + rot: 1.5707963267948966 rad + pos: -120.5,-42.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,-42.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 2 + - uid: 11612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 415.5,402.5 - parent: 1 - - uid: 8043 + pos: -27.5,6.5 + parent: 2 + - uid: 16013 components: - type: Transform rot: 3.141592653589793 rad - pos: 343.5,441.5 - parent: 1 - - uid: 8044 + pos: -114.5,-31.5 + parent: 2 + - uid: 16029 components: - type: Transform rot: 3.141592653589793 rad - pos: 339.5,443.5 - parent: 1 - - uid: 20043 + pos: -113.5,-31.5 + parent: 2 + - uid: 16032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,439.5 - parent: 1 - - uid: 20044 + rot: 3.141592653589793 rad + pos: -112.5,-31.5 + parent: 2 + - uid: 23881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,439.5 - parent: 1 -- proto: ToiletDirtyWater - entities: - - uid: 2855 + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 23883 components: - type: Transform - pos: 431.5,397.5 - parent: 1 - - uid: 2884 + rot: 3.141592653589793 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 24919 components: - type: Transform - pos: 431.5,401.5 - parent: 1 - - uid: 2888 + pos: -117.5,-74.5 + parent: 2 + - uid: 24923 components: - type: Transform - pos: 431.5,405.5 - parent: 1 - - uid: 2890 + pos: -117.5,-70.5 + parent: 2 + - uid: 24924 components: - type: Transform - pos: 431.5,393.5 - parent: 1 - - type: DisposalUnit - nextFlush: 0 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - disposals: !type:Container - showEnts: False - occludes: True - ents: - - 5147 - - uid: 4350 + pos: -118.5,-70.5 + parent: 2 + - uid: 24927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,359.5 - parent: 1 - - uid: 4351 + pos: -118.5,-74.5 + parent: 2 + - uid: 24928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,359.5 - parent: 1 - - uid: 4352 + pos: -122.5,-74.5 + parent: 2 + - uid: 24929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,359.5 - parent: 1 - - uid: 5247 + pos: -123.5,-74.5 + parent: 2 + - uid: 24930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 456.5,414.5 - parent: 1 - - uid: 5248 + pos: -122.5,-70.5 + parent: 2 + - uid: 24931 + components: + - type: Transform + pos: -123.5,-70.5 + parent: 2 +- proto: TableWood + entities: + - uid: 331 + components: + - type: Transform + pos: -69.5,-35.5 + parent: 2 + - uid: 897 components: - type: Transform rot: -1.5707963267948966 rad - pos: 453.5,414.5 - parent: 1 - - uid: 5274 + pos: -132.5,-50.5 + parent: 2 + - uid: 1468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,403.5 - parent: 1 - - uid: 6159 + pos: -50.5,-56.5 + parent: 2 + - uid: 1471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,402.5 - parent: 1 - - uid: 6160 + pos: -49.5,-56.5 + parent: 2 + - uid: 2051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 448.5,401.5 - parent: 1 -- proto: ToiletEmpty - entities: - - uid: 21647 + rot: 3.141592653589793 rad + pos: -98.5,-35.5 + parent: 2 + - uid: 2631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,26.5 - parent: 5072 -- proto: ToiletGoldenDirtyWater - entities: - - uid: 4349 + pos: -82.5,-33.5 + parent: 2 + - uid: 2633 components: - type: Transform - pos: 367.5,414.5 - parent: 1 -- proto: ToolboxElectricalFilled - entities: - - uid: 21149 + pos: -81.5,-33.5 + parent: 2 + - uid: 2719 components: - type: Transform - pos: 405.5,368.5 - parent: 1 - - uid: 21705 + rot: 1.5707963267948966 rad + pos: -62.5,-3.5 + parent: 2 + - uid: 2721 components: - type: Transform - pos: 9.510484,28.980497 - parent: 5072 -- proto: ToolboxEmergency - entities: - - uid: 21103 + rot: 1.5707963267948966 rad + pos: -62.5,-2.5 + parent: 2 + - uid: 2723 components: - - type: MetaData - desc: Это 100% настоящий тулбокс, ты же не будешь его проверять? - name: робастный тулбокс - type: Transform - pos: 374.5,391.5 - parent: 1 - missingComponents: - - MeleeWeapon -- proto: ToolboxEmergencyFilled - entities: - - uid: 21704 + rot: 1.5707963267948966 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 2724 components: - type: Transform - pos: 9.510484,28.589872 - parent: 5072 - - uid: 21809 + rot: 1.5707963267948966 rad + pos: -60.5,-3.5 + parent: 2 + - uid: 2727 components: - type: Transform - pos: -5.51474,29.649992 - parent: 5072 -- proto: ToolboxGoldFilled - entities: - - uid: 4296 + rot: 1.5707963267948966 rad + pos: -61.5,-2.5 + parent: 2 + - uid: 2728 components: - type: Transform - pos: 327.5,396.5 - parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 6231 + rot: 1.5707963267948966 rad + pos: -61.5,-3.5 + parent: 2 + - uid: 2807 components: - type: Transform - pos: 443.5,396.5 - parent: 1 - - uid: 6620 + pos: -64.5,-9.5 + parent: 2 + - uid: 2810 components: - type: Transform - pos: 311.5,407.5 - parent: 1 - - uid: 16285 + pos: -63.5,-9.5 + parent: 2 + - uid: 2828 components: - type: Transform - pos: 407.5,414.5 - parent: 1 - - uid: 20764 + rot: -1.5707963267948966 rad + pos: -59.5,-12.5 + parent: 2 + - uid: 2829 components: - type: Transform - pos: 0.5,1.5 - parent: 20527 - - uid: 21148 + rot: -1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 2866 components: - type: Transform - pos: 403.5,368.5 - parent: 1 -- proto: TowelColorOrange - entities: - - uid: 5226 + rot: 3.141592653589793 rad + pos: -51.5,0.5 + parent: 2 + - uid: 2867 components: - type: Transform - pos: 444.5,406.5 - parent: 1 - - uid: 5227 + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 2 + - uid: 2868 components: - type: Transform - pos: 444.5,406.5 - parent: 1 -- proto: TowelColorSyndicate - entities: - - uid: 5277 + rot: 3.141592653589793 rad + pos: -49.5,0.5 + parent: 2 + - uid: 2873 components: - type: Transform - pos: 450.5,403.5 - parent: 1 -- proto: TowelColorTeal - entities: - - uid: 5276 + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 2901 components: - type: Transform - pos: 450.5,403.5 - parent: 1 -- proto: ToyAi - entities: - - uid: 6630 + pos: -42.5,0.5 + parent: 2 + - uid: 2914 components: - type: Transform - pos: 302.5,408.5 - parent: 1 -- proto: ToyFigurineAtmosTech - entities: - - uid: 20458 + pos: -46.5,-4.5 + parent: 2 + - uid: 2915 components: - type: Transform - pos: 7.5,-2.5 - parent: 20181 -- proto: ToyFigurineChiefMedicalOfficer - entities: - - uid: 5492 + pos: -45.5,-4.5 + parent: 2 + - uid: 2916 components: - type: Transform - pos: 395.5,412.5 - parent: 1 -- proto: ToyFigurineDetective - entities: - - uid: 5155 + pos: -44.5,-4.5 + parent: 2 + - uid: 2929 components: - type: Transform - pos: 412.5,409.5 - parent: 1 -- proto: ToyFigurineGreytider - entities: - - uid: 17444 + pos: -53.5,-7.5 + parent: 2 + - uid: 2936 components: - type: Transform - pos: 504.5,394.5 - parent: 1 -- proto: ToyFigurineHoloClown - entities: - - uid: 5522 + pos: -52.5,-7.5 + parent: 2 + - uid: 2937 components: - type: Transform - pos: 389.5,410.5 - parent: 1 -- proto: ToyFigurineLawyer - entities: - - uid: 20765 + rot: -1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 2 + - uid: 3008 components: - type: Transform - pos: 4.5,1.5 - parent: 20527 -- proto: ToyFigurineMusician - entities: - - uid: 5529 + rot: 1.5707963267948966 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 3574 components: - type: Transform - pos: 389.5,406.5 - parent: 1 -- proto: ToyFigurineSalvage - entities: - - uid: 5653 + rot: 1.5707963267948966 rad + pos: -48.5,-54.5 + parent: 2 + - uid: 3683 components: - type: Transform - pos: 357.5,377.5 - parent: 1 -- proto: ToyRubberDuck - entities: - - uid: 16106 + rot: 3.141592653589793 rad + pos: -60.5,-53.5 + parent: 2 + - uid: 3685 components: - type: Transform - pos: 424.5,363.5 - parent: 1 - - uid: 21715 + rot: 3.141592653589793 rad + pos: -60.5,-54.5 + parent: 2 + - uid: 3848 components: - type: Transform - pos: 12.492016,27.532398 - parent: 5072 -- proto: TrashMimanaPeel - entities: - - uid: 5540 + rot: 1.5707963267948966 rad + pos: -51.5,-54.5 + parent: 2 + - uid: 3849 components: - type: Transform - pos: 396.5,408.5 - parent: 1 -- proto: TrumpetInstrument - entities: - - uid: 16331 + rot: 1.5707963267948966 rad + pos: -52.5,-54.5 + parent: 2 + - uid: 3852 components: - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TwoWayLever - entities: - - uid: 18242 + rot: 1.5707963267948966 rad + pos: -44.5,-56.5 + parent: 2 + - uid: 3853 components: - type: Transform - pos: 328.5,441.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3834: - - Left: Forward - - Right: Reverse - - Middle: Off - 7587: - - Left: Forward - - Right: Reverse - - Middle: Off - 4805: - - Left: Forward - - Right: Reverse - - Middle: Off - 1874: - - Left: Forward - - Right: Reverse - - Middle: Off - 4809: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 18254 + rot: 1.5707963267948966 rad + pos: -44.5,-55.5 + parent: 2 + - uid: 3854 components: - type: Transform - pos: 366.5,380.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 3081: - - Left: Forward - - Right: Reverse - - Middle: Off - 3082: - - Left: Forward - - Right: Reverse - - Middle: Off - 3084: - - Left: Forward - - Right: Reverse - - Middle: Off - 2213: - - Left: Open - - Right: Open - - Middle: Close - - uid: 18255 + rot: 1.5707963267948966 rad + pos: -44.5,-54.5 + parent: 2 + - uid: 3879 components: - type: Transform - pos: 370.5,380.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 5685: - - Left: Forward - - Right: Reverse - - Middle: Off - 5686: - - Left: Forward - - Right: Reverse - - Middle: Off - 5684: - - Left: Forward - - Right: Reverse - - Middle: Off - 1339: - - Left: Open - - Right: Open - - Middle: Close -- proto: UniformPrinter - entities: - - uid: 5808 + rot: 1.5707963267948966 rad + pos: -44.5,-52.5 + parent: 2 + - uid: 4440 components: - type: Transform - pos: 365.5,395.5 - parent: 1 - - uid: 21409 + rot: 1.5707963267948966 rad + pos: -55.5,-78.5 + parent: 2 + - uid: 4447 components: - type: Transform - pos: 8.5,21.5 - parent: 5072 - - type: MaterialStorage - materialWhiteList: - - Cloth - - Durathread -- proto: UniformShortsRed - entities: - - uid: 6028 + rot: 1.5707963267948966 rad + pos: -55.5,-77.5 + parent: 2 + - uid: 4715 components: - type: Transform - pos: 393.5,374.5 - parent: 1 -- proto: UniformShortsRedWithTop - entities: - - uid: 6029 + rot: 3.141592653589793 rad + pos: -87.5,29.5 + parent: 2 + - uid: 4716 components: - type: Transform - pos: 392.5,374.5 - parent: 1 -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 17088 + rot: 3.141592653589793 rad + pos: -86.5,29.5 + parent: 2 + - uid: 4717 components: - type: Transform - pos: 410.5,378.5 - parent: 1 -- proto: UraniumReinforcedWindowDirectional - entities: - - uid: 5447 + rot: 3.141592653589793 rad + pos: -85.5,29.5 + parent: 2 + - uid: 4978 components: - type: Transform - pos: 415.5,421.5 - parent: 1 - - uid: 5452 + rot: -1.5707963267948966 rad + pos: -69.5,-27.5 + parent: 2 + - uid: 6273 components: - type: Transform - pos: 417.5,421.5 - parent: 1 - - uid: 18274 + pos: -123.5,-16.5 + parent: 2 + - uid: 6276 components: - type: Transform - pos: 411.5,426.5 - parent: 1 -- proto: UraniumShiv - entities: - - uid: 5021 + pos: -124.5,-16.5 + parent: 2 + - uid: 6277 components: - type: Transform - pos: 460.5,414.5 - parent: 1 -- proto: Vaccinator - entities: - - uid: 5453 + pos: -122.5,-16.5 + parent: 2 + - uid: 6286 components: - type: Transform - pos: 411.5,422.5 - parent: 1 -- proto: VendingBarDrobe - entities: - - uid: 4967 + pos: -131.5,-18.5 + parent: 2 + - uid: 6287 components: - type: Transform - pos: 418.5,387.5 - parent: 1 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 6279 + pos: -131.5,-17.5 + parent: 2 + - uid: 6291 components: - type: Transform - pos: 329.5,414.5 - parent: 1 - - uid: 20459 + pos: -131.5,-16.5 + parent: 2 + - uid: 6558 components: - type: Transform - pos: 0.5,3.5 - parent: 20181 -- proto: VendingMachineBooze - entities: - - uid: 4900 + rot: 1.5707963267948966 rad + pos: -98.5,-43.5 + parent: 2 + - uid: 6713 components: - type: Transform - pos: 416.5,393.5 - parent: 1 - - uid: 5232 + pos: -100.5,-37.5 + parent: 2 + - uid: 6772 components: - type: Transform - pos: 441.5,404.5 - parent: 1 - - type: AccessReader - access: - - - Brig - - uid: 5751 + pos: -83.5,-33.5 + parent: 2 + - uid: 6850 components: - type: Transform - pos: 369.5,411.5 - parent: 1 - - uid: 15885 + pos: -100.5,-38.5 + parent: 2 + - uid: 6888 components: - type: Transform - pos: 339.5,450.5 - parent: 1 -- proto: VendingMachineCargoDrobe - entities: - - uid: 5643 + rot: 3.141592653589793 rad + pos: -98.5,-39.5 + parent: 2 + - uid: 6956 components: - type: Transform - pos: 365.5,383.5 - parent: 1 -- proto: VendingMachineCart - entities: - - uid: 5805 + rot: 1.5707963267948966 rad + pos: -97.5,-43.5 + parent: 2 + - uid: 7039 components: - type: Transform - pos: 367.5,395.5 - parent: 1 -- proto: VendingMachineChapel - entities: - - uid: 791 + pos: -100.5,-39.5 + parent: 2 + - uid: 7088 components: - type: Transform - pos: 332.5,436.5 - parent: 1 -- proto: VendingMachineChefvend - entities: - - uid: 4921 + rot: 3.141592653589793 rad + pos: -97.5,-39.5 + parent: 2 + - uid: 7599 components: - type: Transform - pos: 409.5,393.5 - parent: 1 -- proto: VendingMachineChemDrobe - entities: - - uid: 18042 + rot: 1.5707963267948966 rad + pos: -133.5,-46.5 + parent: 2 + - uid: 7600 components: - type: Transform - pos: 401.5,410.5 - parent: 1 -- proto: VendingMachineChemicals - entities: - - uid: 12306 + rot: 1.5707963267948966 rad + pos: -134.5,-46.5 + parent: 2 + - uid: 7602 components: - type: Transform - pos: 407.5,411.5 - parent: 1 -- proto: VendingMachineCigs - entities: - - uid: 5583 + rot: 3.141592653589793 rad + pos: -132.5,-46.5 + parent: 2 + - uid: 7769 components: - type: Transform - pos: 371.5,398.5 - parent: 1 - - uid: 5584 + rot: 3.141592653589793 rad + pos: -96.5,-39.5 + parent: 2 + - uid: 7923 components: - type: Transform - pos: 371.5,397.5 - parent: 1 - - uid: 21612 + rot: 1.5707963267948966 rad + pos: -35.5,-40.5 + parent: 2 + - uid: 8355 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: 14.5,21.5 - parent: 5072 -- proto: VendingMachineClothing - entities: - - uid: 6030 + rot: 3.141592653589793 rad + pos: -50.5,-54.5 + parent: 2 + - uid: 8511 components: - type: Transform - pos: 410.5,373.5 - parent: 1 -- proto: VendingMachineCoffee - entities: - - uid: 5073 + rot: -1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - uid: 8654 components: - type: Transform - pos: 424.5,405.5 - parent: 1 - - uid: 5074 + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 8670 components: - type: Transform - pos: 426.5,391.5 - parent: 1 - - uid: 5075 + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 8768 components: - type: Transform - pos: 426.5,408.5 - parent: 1 - - uid: 20766 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 + parent: 2 + - uid: 8769 components: - type: Transform - pos: 0.5,0.5 - parent: 20527 - - uid: 21294 + rot: 1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 8770 components: - - type: MetaData - name: Hot drinks machine - type: Transform - pos: 0.5,23.5 - parent: 5072 -- proto: VendingMachineColaBlack - entities: - - uid: 4969 + rot: 1.5707963267948966 rad + pos: -11.5,-33.5 + parent: 2 + - uid: 8771 components: - type: Transform - pos: 420.5,397.5 - parent: 1 -- proto: VendingMachineCondiments - entities: - - uid: 4939 + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 8772 components: - type: Transform - pos: 407.5,385.5 - parent: 1 -- proto: VendingMachineCuraDrobe - entities: - - uid: 1140 + pos: -8.5,-31.5 + parent: 2 + - uid: 8773 components: - type: Transform - pos: 423.5,356.5 - parent: 1 -- proto: VendingMachineDetDrobe - entities: - - uid: 5659 + rot: 1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - uid: 8774 components: - type: Transform - pos: 416.5,410.5 - parent: 1 -- proto: VendingMachineDinnerware - entities: - - uid: 4919 + rot: 1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 8775 components: - type: Transform - pos: 408.5,393.5 - parent: 1 -- proto: VendingMachineEngiDrobe - entities: - - uid: 4304 + rot: 1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - uid: 8971 components: - type: Transform - pos: 333.5,408.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 4300 + pos: -17.5,-18.5 + parent: 2 + - uid: 9267 components: - type: Transform - pos: 343.5,406.5 - parent: 1 - - uid: 20460 + rot: 1.5707963267948966 rad + pos: -62.5,-1.5 + parent: 2 + - uid: 9296 components: - type: Transform - pos: 7.5,-1.5 - parent: 20181 -- proto: VendingMachineGames - entities: - - uid: 2274 + rot: 1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - uid: 9338 components: - type: Transform - pos: 414.5,354.5 - parent: 1 - - uid: 5268 + rot: 1.5707963267948966 rad + pos: -60.5,-1.5 + parent: 2 + - uid: 9340 components: - type: Transform - pos: 450.5,405.5 - parent: 1 - - uid: 5269 + rot: 1.5707963267948966 rad + pos: -61.5,-1.5 + parent: 2 + - uid: 10562 components: - type: Transform - pos: 456.5,405.5 - parent: 1 -- proto: VendingMachineHappyHonk - entities: - - uid: 6066 + rot: 1.5707963267948966 rad + pos: -62.5,-34.5 + parent: 2 + - uid: 10645 components: - type: Transform - pos: 389.5,419.5 - parent: 1 -- proto: VendingMachineJaniDrobe - entities: - - uid: 16408 + pos: -63.5,-7.5 + parent: 2 + - uid: 11173 components: - type: Transform - pos: 408.5,364.5 - parent: 1 -- proto: VendingMachineLawDrobe - entities: - - uid: 5196 + rot: 1.5707963267948966 rad + pos: -97.5,-45.5 + parent: 2 + - uid: 11174 components: - type: Transform - pos: 442.5,413.5 - parent: 1 - - uid: 20767 + rot: 3.141592653589793 rad + pos: -98.5,-46.5 + parent: 2 + - uid: 11176 components: - type: Transform - pos: 3.5,3.5 - parent: 20527 -- proto: VendingMachineMedical - entities: - - uid: 5417 + rot: 3.141592653589793 rad + pos: -98.5,-45.5 + parent: 2 + - uid: 11615 components: - type: Transform - pos: 406.5,420.5 - parent: 1 - - uid: 6214 + pos: -62.5,-7.5 + parent: 2 + - uid: 11793 components: - type: Transform - pos: 426.5,394.5 - parent: 1 - - uid: 17051 + rot: 1.5707963267948966 rad + pos: -99.5,-43.5 + parent: 2 + - uid: 11878 components: - type: Transform - pos: 404.5,422.5 - parent: 1 - - uid: 22045 + rot: 1.5707963267948966 rad + pos: -98.5,-47.5 + parent: 2 + - uid: 14541 components: - type: Transform - pos: 409.5,413.5 - parent: 1 -- proto: VendingMachineMediDrobe - entities: - - uid: 5370 + rot: 3.141592653589793 rad + pos: -60.5,-52.5 + parent: 2 + - uid: 14795 components: - type: Transform - pos: 401.5,408.5 - parent: 1 -- proto: VendingMachineNutri - entities: - - uid: 4962 + pos: -46.5,-44.5 + parent: 2 + - uid: 14796 components: - type: Transform - pos: 408.5,380.5 - parent: 1 -- proto: VendingMachineRoboDrobe - entities: - - uid: 7432 + pos: -46.5,-46.5 + parent: 2 + - uid: 15012 components: - type: Transform - pos: 344.5,397.5 - parent: 1 -- proto: VendingMachineRobotics - entities: - - uid: 7436 + rot: 3.141592653589793 rad + pos: -69.5,-37.5 + parent: 2 + - uid: 15142 components: - type: Transform - pos: 338.5,399.5 - parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 1378 + rot: -1.5707963267948966 rad + pos: -54.5,-43.5 + parent: 2 + - uid: 15266 components: - type: Transform - pos: 358.5,378.5 - parent: 1 -- proto: VendingMachineSciDrobe - entities: - - uid: 7541 + rot: 1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 + - uid: 15684 components: - type: Transform - pos: 352.5,400.5 - parent: 1 -- proto: VendingMachineSec - entities: - - uid: 5005 + rot: 1.5707963267948966 rad + pos: -66.5,-30.5 + parent: 2 + - uid: 15892 components: - type: Transform - pos: 424.5,394.5 - parent: 1 - - uid: 5440 + pos: -68.5,-37.5 + parent: 2 + - uid: 16506 components: - type: Transform - pos: 418.5,405.5 - parent: 1 -- proto: VendingMachineSecDrobe - entities: - - uid: 5007 + rot: 1.5707963267948966 rad + pos: -66.5,-31.5 + parent: 2 + - uid: 16524 components: - type: Transform - pos: 424.5,393.5 - parent: 1 -- proto: VendingMachineSeeds - entities: - - uid: 4966 + pos: -62.5,-4.5 + parent: 2 + - uid: 16526 components: - type: Transform - pos: 408.5,381.5 - parent: 1 - - uid: 6147 + pos: -61.5,-4.5 + parent: 2 + - uid: 16528 components: - type: Transform - pos: 452.5,403.5 - parent: 1 -- proto: VendingMachineSnackOrange - entities: - - uid: 18579 + pos: -60.5,-4.5 + parent: 2 + - uid: 16784 components: - type: Transform - pos: 356.5,408.5 - parent: 1 -- proto: VendingMachineSovietSoda - entities: - - uid: 18573 + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 17109 components: - type: Transform - pos: 357.5,418.5 - parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 16389 + rot: 1.5707963267948966 rad + pos: -66.5,-29.5 + parent: 2 + - uid: 17860 components: - type: Transform - pos: 454.5,405.5 - parent: 1 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 6237 + pos: -70.5,-35.5 + parent: 2 + - uid: 18195 components: - type: Transform - pos: 349.5,409.5 - parent: 1 - - uid: 6238 + rot: -1.5707963267948966 rad + pos: -54.5,-44.5 + parent: 2 + - uid: 19257 components: - type: Transform - pos: 297.5,384.5 - parent: 1 - - uid: 20461 + rot: 3.141592653589793 rad + pos: -78.5,-31.5 + parent: 2 + - uid: 19768 components: - type: Transform - pos: 2.5,4.5 - parent: 20181 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 1424 + pos: -67.5,-37.5 + parent: 2 + - uid: 20159 components: - type: Transform - pos: 355.5,376.5 - parent: 1 - - uid: 5240 + rot: 1.5707963267948966 rad + pos: -69.5,-26.5 + parent: 2 + - uid: 20336 components: - type: Transform - pos: 443.5,402.5 - parent: 1 - - uid: 5821 + rot: 3.141592653589793 rad + pos: -70.5,-37.5 + parent: 2 + - uid: 21474 components: - type: Transform - pos: 330.5,400.5 - parent: 1 - - uid: 6141 + rot: 3.141592653589793 rad + pos: -70.5,-32.5 + parent: 2 + - uid: 22827 components: - type: Transform - pos: 431.5,408.5 - parent: 1 - - uid: 6155 + pos: -118.5,-76.5 + parent: 2 + - uid: 23010 components: - type: Transform - pos: 326.5,410.5 - parent: 1 - - uid: 6382 + pos: -117.5,-76.5 + parent: 2 + - uid: 23366 components: - type: Transform - pos: 1.5,4.5 - parent: 16114 -- proto: VendingMachineTheater - entities: - - uid: 3533 + rot: 3.141592653589793 rad + pos: -70.5,-29.5 + parent: 2 + - uid: 23402 components: - type: Transform - pos: 392.5,412.5 - parent: 1 - - uid: 21192 + pos: -119.5,-76.5 + parent: 2 + - uid: 23435 components: - type: Transform - pos: 414.5,367.5 - parent: 1 -- proto: VendingMachineVendomat - entities: - - uid: 6270 + rot: 3.141592653589793 rad + pos: -78.5,-29.5 + parent: 2 + - uid: 23453 components: - type: Transform - pos: 339.5,417.5 - parent: 1 -- proto: VendingMachineViroDrobe - entities: - - uid: 5431 + pos: -69.5,-70.5 + parent: 2 + - uid: 23454 components: - type: Transform - pos: 415.5,416.5 - parent: 1 -- proto: VendingMachineWallMedical - entities: - - uid: 21164 + pos: -65.5,-70.5 + parent: 2 + - uid: 23667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 398.5,406.5 - parent: 1 -- proto: VendingMachineWinter - entities: - - uid: 6031 + rot: 3.141592653589793 rad + pos: -78.5,-30.5 + parent: 2 + - uid: 23866 components: - type: Transform - pos: 411.5,373.5 - parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 4298 + rot: 3.141592653589793 rad + pos: -70.5,-31.5 + parent: 2 + - uid: 23878 components: - type: Transform - pos: 343.5,407.5 - parent: 1 - - uid: 16107 + rot: 3.141592653589793 rad + pos: -70.5,-30.5 + parent: 2 + - uid: 25841 components: - type: Transform - pos: 405.5,367.5 - parent: 1 - - uid: 20462 + pos: -67.5,-33.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 24557 components: - type: Transform - pos: 7.5,-0.5 - parent: 20181 -- proto: VisitorAtmosTechSpawner + pos: -39.5,0.5 + parent: 2 +- proto: TegCenter entities: - - uid: 20463 + - uid: 674 components: - type: Transform - pos: 6.5,-1.5 - parent: 20181 -- proto: VisitorLawyerSpawner + rot: 3.141592653589793 rad + pos: -147.5,-7.5 + parent: 2 +- proto: TegCirculator entities: - - uid: 20768 + - uid: 5921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -147.5,-6.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 5922 components: - type: Transform - pos: 3.5,2.5 - parent: 20527 -- proto: WallmountSubstationElectronics + rot: -1.5707963267948966 rad + pos: -147.5,-8.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer entities: - - uid: 5870 + - uid: 15019 components: + - type: MetaData + desc: An old server, stuck compiling an unknown program... + name: Computron - type: Transform - pos: 309.5,382.5 - parent: 1 -- proto: WallmountTelescreen + pos: -57.5,-78.5 + parent: 2 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - type: ApcPowerReceiver + powerLoad: 500 + missingComponents: + - WiresPanel + - EncryptionKeyHolder + - TelecomServer +- proto: TelecomServerCircuitboard entities: - - uid: 6107 + - uid: 4499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 425.5,388.5 - parent: 1 - - uid: 21600 + pos: -81.54583,0.7566781 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 17053 components: - type: Transform - pos: 11.5,25.5 - parent: 5072 -- proto: WallmountTelescreenFrame + pos: -83.5,-3.5 + parent: 2 +- proto: TelecomServerFilledCommand entities: - - uid: 17318 + - uid: 4451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,372.5 - parent: 1 -- proto: WallmountTelevision + pos: -84.5,2.5 + parent: 2 +- proto: TelecomServerFilledCommon entities: - - uid: 16366 + - uid: 4482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,448.5 - parent: 1 -- proto: WallmountTelevisionFrame + pos: -87.5,-5.5 + parent: 2 +- proto: TelecomServerFilledEngineering entities: - - uid: 6208 + - uid: 17041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,408.5 - parent: 1 - - uid: 15675 + pos: -83.5,-5.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 24807 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,405.5 - parent: 1 - - uid: 15676 + pos: -87.5,-1.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 23109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,366.5 - parent: 1 - - uid: 15677 + pos: -83.5,-1.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 16461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 418.5,366.5 - parent: 1 - - uid: 15678 + pos: -86.5,2.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 17076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,350.5 - parent: 1 -- proto: WallReinforced + pos: -87.5,-3.5 + parent: 2 +- proto: Thruster entities: - - uid: 4 + - uid: 1598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,398.5 - parent: 1 - - uid: 5 + rot: 1.5707963267948966 rad + pos: -45.5,-74.5 + parent: 2 + - uid: 20322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,397.5 - parent: 1 - - uid: 6 + rot: 1.5707963267948966 rad + pos: -45.5,-72.5 + parent: 2 +- proto: ThrusterUnanchored + entities: + - uid: 1125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,396.5 - parent: 1 - - uid: 7 + rot: -1.5707963267948966 rad + pos: -35.5,-74.5 + parent: 2 + - uid: 1126 components: - type: Transform rot: 3.141592653589793 rad - pos: 274.5,395.5 - parent: 1 - - uid: 8 + pos: -34.5,-72.5 + parent: 2 + - uid: 1189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,394.5 - parent: 1 - - uid: 9 + rot: -1.5707963267948966 rad + pos: -32.5,-71.5 + parent: 2 + - uid: 1196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,393.5 - parent: 1 - - uid: 10 + rot: -1.5707963267948966 rad + pos: -32.5,-73.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 1435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,391.5 - parent: 1 - - uid: 11 + pos: -55.5,-44.5 + parent: 2 + - uid: 1474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,388.5 - parent: 1 - - uid: 12 + pos: -51.5,-49.5 + parent: 2 + - uid: 2392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,387.5 - parent: 1 - - uid: 13 + pos: -124.5,-52.5 + parent: 2 + - uid: 3552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,386.5 - parent: 1 - - uid: 14 + pos: -55.5,-47.5 + parent: 2 + - uid: 4059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,385.5 - parent: 1 - - uid: 15 + pos: -20.5,-36.5 + parent: 2 + - uid: 4060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,384.5 - parent: 1 - - uid: 16 + pos: -20.5,-34.5 + parent: 2 + - uid: 4061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,383.5 - parent: 1 - - uid: 17 + pos: -20.5,-38.5 + parent: 2 + - uid: 4063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,382.5 - parent: 1 - - uid: 18 + pos: -20.5,-40.5 + parent: 2 + - uid: 4375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,381.5 - parent: 1 - - uid: 19 + rot: -1.5707963267948966 rad + pos: -114.5,-7.5 + parent: 2 + - uid: 4376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,380.5 - parent: 1 - - uid: 20 + rot: -1.5707963267948966 rad + pos: -114.5,-13.5 + parent: 2 + - uid: 6522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,379.5 - parent: 1 - - uid: 21 + pos: -96.5,-36.5 + parent: 2 + - uid: 6842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,378.5 - parent: 1 - - uid: 22 + pos: -89.5,-32.5 + parent: 2 + - uid: 6967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,377.5 - parent: 1 - - uid: 23 + pos: -89.5,-34.5 + parent: 2 + - uid: 9233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 274.5,376.5 - parent: 1 - - uid: 24 + pos: -43.5,-44.5 + parent: 2 + - uid: 9249 components: - type: Transform - rot: 3.141592653589793 rad - pos: 275.5,398.5 - parent: 1 - - uid: 25 + pos: -43.5,-46.5 + parent: 2 + - uid: 9257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 275.5,376.5 - parent: 1 - - uid: 26 + pos: -43.5,-45.5 + parent: 2 + - uid: 9329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,398.5 - parent: 1 - - uid: 27 + pos: -22.5,-20.5 + parent: 2 + - uid: 11000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,396.5 - parent: 1 - - uid: 28 + pos: -22.5,-18.5 + parent: 2 + - uid: 11165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,395.5 - parent: 1 - - uid: 29 + pos: -101.5,-39.5 + parent: 2 + - uid: 11797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,394.5 - parent: 1 - - uid: 30 + rot: -1.5707963267948966 rad + pos: -27.5,-36.5 + parent: 2 + - uid: 13229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,393.5 - parent: 1 - - uid: 31 + rot: -1.5707963267948966 rad + pos: -19.5,-33.5 + parent: 2 + - uid: 17298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,390.5 - parent: 1 - - uid: 32 + pos: -126.5,-52.5 + parent: 2 + - uid: 19403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,389.5 - parent: 1 - - uid: 33 + rot: -1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 23804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,388.5 - parent: 1 - - uid: 34 + rot: -1.5707963267948966 rad + pos: -90.5,-48.5 + parent: 2 + - uid: 26064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,387.5 - parent: 1 - - uid: 35 + pos: -120.5,23.5 + parent: 2 + - uid: 26065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,386.5 - parent: 1 - - uid: 36 + pos: -118.5,23.5 + parent: 2 + - uid: 26110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,385.5 - parent: 1 - - uid: 37 + rot: -1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,384.5 - parent: 1 - - uid: 38 + rot: 1.5707963267948966 rad + pos: -76.5,-22.5 + parent: 2 + - uid: 1539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,383.5 - parent: 1 - - uid: 39 + pos: -39.5,-48.5 + parent: 2 + - uid: 3788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,382.5 - parent: 1 - - uid: 40 + rot: 1.5707963267948966 rad + pos: -68.5,-60.5 + parent: 2 + - uid: 3789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 276.5,381.5 - parent: 1 - - uid: 41 + rot: 1.5707963267948966 rad + pos: -68.5,-62.5 + parent: 2 + - uid: 7636 components: - type: Transform rot: 3.141592653589793 rad - pos: 276.5,380.5 - parent: 1 - - uid: 42 + pos: -111.5,-24.5 + parent: 2 + - uid: 7638 components: - type: Transform rot: 3.141592653589793 rad - pos: 276.5,379.5 - parent: 1 - - uid: 43 + pos: -109.5,-24.5 + parent: 2 + - uid: 7852 components: - type: Transform rot: 3.141592653589793 rad - pos: 276.5,378.5 - parent: 1 - - uid: 44 + pos: -128.5,-54.5 + parent: 2 + - uid: 7861 components: - type: Transform rot: 3.141592653589793 rad - pos: 276.5,376.5 - parent: 1 - - uid: 45 + pos: -130.5,-54.5 + parent: 2 + - uid: 9620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 277.5,398.5 - parent: 1 - - uid: 46 + rot: 1.5707963267948966 rad + pos: -92.5,-49.5 + parent: 2 + - uid: 19771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 277.5,396.5 - parent: 1 - - uid: 47 + rot: -1.5707963267948966 rad + pos: -74.5,-22.5 + parent: 2 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 2899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 277.5,378.5 - parent: 1 - - uid: 48 + rot: 1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 23388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 277.5,376.5 - parent: 1 - - uid: 50 + pos: -81.561455,0.4129281 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 15315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 278.5,398.5 - parent: 1 - - uid: 51 + pos: -23.531397,-4.575088 + parent: 2 + - uid: 17504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 278.5,396.5 - parent: 1 - - uid: 52 + pos: -131.58072,-4.4554005 + parent: 2 + - uid: 24567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 278.5,378.5 - parent: 1 - - uid: 53 + pos: -35.39724,-5.2147703 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 16894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 278.5,376.5 - parent: 1 - - uid: 54 + pos: -95.55058,35.704193 + parent: 2 + - uid: 19748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 279.5,398.5 - parent: 1 - - uid: 55 + pos: -23.531397,-4.918838 + parent: 2 +- proto: ToolboxGolden + entities: + - uid: 4304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 279.5,396.5 - parent: 1 - - uid: 56 + pos: -72.002045,-0.3785391 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 7813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 279.5,378.5 - parent: 1 - - uid: 57 + pos: -23.531397,-4.293838 + parent: 2 + - uid: 12926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 279.5,376.5 - parent: 1 - - uid: 58 + rot: 6.283185307179586 rad + pos: -66.51588,-55.42051 + parent: 2 + - uid: 22343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 280.5,398.5 - parent: 1 - - uid: 59 + pos: -92.551056,25.64724 + parent: 2 + - uid: 23455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 280.5,396.5 - parent: 1 - - uid: 60 + pos: -65.50171,-70.36417 + parent: 2 + - uid: 23456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 280.5,378.5 - parent: 1 - - uid: 61 + pos: -69.56421,-70.37979 + parent: 2 + - uid: 24577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 280.5,376.5 - parent: 1 - - uid: 62 + pos: -35.631615,-5.6210203 + parent: 2 +- proto: TowelColorWhite + entities: + - uid: 9843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 281.5,398.5 - parent: 1 - - uid: 63 + pos: -74.512314,-21.449978 + parent: 2 + - uid: 14630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 281.5,396.5 - parent: 1 - - uid: 64 + pos: -59.5,-38.5 + parent: 2 + - uid: 14632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 281.5,378.5 - parent: 1 - - uid: 65 + pos: -59.5,-38.5 + parent: 2 + - uid: 14634 components: - type: Transform - rot: 3.141592653589793 rad - pos: 281.5,376.5 - parent: 1 - - uid: 67 + pos: -59.5,-38.5 + parent: 2 + - uid: 14664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 282.5,398.5 - parent: 1 - - uid: 68 + pos: -65.5,-59.5 + parent: 2 + - uid: 14665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 282.5,396.5 - parent: 1 - - uid: 69 + pos: -65.5,-59.5 + parent: 2 + - uid: 14666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 282.5,378.5 - parent: 1 - - uid: 70 + pos: -65.5,-59.5 + parent: 2 +- proto: ToyAi + entities: + - uid: 25413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 282.5,376.5 - parent: 1 - - uid: 71 + pos: -115.45719,-60.201916 + parent: 2 +- proto: ToyFigurineGreytider + entities: + - uid: 3860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 283.5,398.5 - parent: 1 - - uid: 72 + pos: -53.73075,-51.26951 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 3861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 283.5,396.5 - parent: 1 - - uid: 73 + pos: -54.60575,-51.910133 + parent: 2 +- proto: ToyFigurineNukieCommander + entities: + - uid: 3862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 283.5,378.5 - parent: 1 - - uid: 74 + pos: -54.23075,-52.472633 + parent: 2 +- proto: ToyFigurineThief + entities: + - uid: 16400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 283.5,376.5 - parent: 1 - - uid: 75 + pos: -73.4626,-53.38388 + parent: 2 +- proto: ToyFigurineWizardFake + entities: + - uid: 26099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 284.5,398.5 - parent: 1 - - uid: 76 + pos: -53.41825,-51.628883 + parent: 2 +- proto: ToyIan + entities: + - uid: 1128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 284.5,396.5 - parent: 1 - - uid: 77 + pos: -28.80523,-72.26677 + parent: 2 +- proto: ToyNuke + entities: + - uid: 1212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 284.5,378.5 - parent: 1 - - uid: 78 + pos: -28.320854,-72.61052 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 22266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 284.5,376.5 - parent: 1 - - uid: 79 + pos: -42.5,-1.5 + parent: 2 +- proto: ToySpawner + entities: + - uid: 14357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 285.5,398.5 - parent: 1 - - uid: 80 + pos: -21.5,11.5 + parent: 2 + - uid: 14359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 285.5,396.5 - parent: 1 - - uid: 81 + pos: -20.5,11.5 + parent: 2 + - uid: 24648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 285.5,378.5 - parent: 1 - - uid: 82 + pos: -19.5,11.5 + parent: 2 + - uid: 25711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 285.5,376.5 - parent: 1 - - uid: 83 + pos: -82.5,-45.5 + parent: 2 +- proto: TrainingBomb + entities: + - uid: 17799 components: - type: Transform - rot: 3.141592653589793 rad - pos: 286.5,398.5 - parent: 1 - - uid: 84 + pos: -81.5,-29.5 + parent: 2 +- proto: TrashBag + entities: + - uid: 8313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 286.5,396.5 - parent: 1 - - uid: 85 + parent: 7826 + - type: Physics + canCollide: False +- proto: TreasureCoinGold + entities: + - uid: 21064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 286.5,378.5 - parent: 1 - - uid: 86 + parent: 21062 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TwoWayLever + entities: + - uid: 4622 components: + - type: MetaData + name: two way lever (Front Desk Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 286.5,376.5 - parent: 1 - - uid: 87 + pos: -96.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6610: + - Left: Forward + - Right: Reverse + - Middle: Off + 6612: + - Left: Forward + - Right: Reverse + - Middle: Off + 19511: + - Left: Forward + - Right: Reverse + - Middle: Off + 25544: + - Left: Forward + - Right: Reverse + - Middle: Off + 2600: + - Left: Forward + - Right: Reverse + - Middle: Off + 25555: + - Left: Open + - Right: Open + - Left: AutoClose + - Right: AutoClose + - Middle: Close + - type: Label + currentLabel: Front Desk Conveyor + - type: NameModifier + baseName: two way lever + - uid: 10147 components: + - type: MetaData + name: two way lever (Salvage Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 287.5,398.5 - parent: 1 - - uid: 88 + pos: -96.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1357: + - Left: Forward + - Right: Reverse + - Middle: Off + 4369: + - Left: Forward + - Right: Reverse + - Middle: Off + 8476: + - Left: Forward + - Right: Reverse + - Middle: Off + 4368: + - Left: Forward + - Right: Reverse + - Middle: Off + 7262: + - Left: Forward + - Right: Reverse + - Middle: Off + 4370: + - Left: Forward + - Right: Reverse + - Middle: Off + 4367: + - Left: Forward + - Right: Reverse + - Middle: Off + 7264: + - Left: Forward + - Right: Reverse + - Middle: Off + 11280: + - Left: Forward + - Right: Reverse + - Middle: Off + 11082: + - Left: Forward + - Right: Reverse + - Middle: Off + 19736: + - Left: Forward + - Right: Reverse + - Middle: Off + 14873: + - Left: Forward + - Right: Reverse + - Middle: Off + 8421: + - Left: Forward + - Right: Reverse + - Middle: Off + 12463: + - Left: Forward + - Right: Reverse + - Middle: Off + 8422: + - Left: Forward + - Right: Reverse + - Middle: Off + 1576: + - Left: Forward + - Right: Reverse + - Middle: Off + 8449: + - Left: Forward + - Right: Reverse + - Middle: Off + 23479: + - Left: Forward + - Right: Reverse + - Middle: Off + 23417: + - Left: Forward + - Right: Reverse + - Middle: Off + 24821: + - Left: Forward + - Right: Reverse + - Middle: Off + 4575: + - Left: Forward + - Right: Reverse + - Middle: Off + - type: Label + currentLabel: Salvage Conveyor + - type: NameModifier + baseName: two way lever + - uid: 16483 components: + - type: MetaData + name: two way lever (Disposals Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 287.5,396.5 - parent: 1 - - uid: 89 + pos: -100.5,21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7553: + - Left: Forward + - Right: Reverse + - Middle: Off + 6968: + - Left: Forward + - Right: Reverse + - Middle: Off + 7763: + - Left: Reverse + - Right: Forward + - Middle: Off + 7315: + - Left: Forward + - Right: Reverse + - Middle: Off + 7559: + - Left: Forward + - Right: Reverse + - Middle: Off + 7343: + - Left: Forward + - Right: Reverse + - Middle: Off + 6964: + - Left: Forward + - Right: Reverse + - Middle: Off + 11064: + - Left: Forward + - Right: Reverse + - Middle: Off + 6813: + - Left: Forward + - Right: Reverse + - Middle: Off + 6815: + - Left: Forward + - Right: Reverse + - Middle: Off + - type: Label + currentLabel: Disposals Conveyor + - type: NameModifier + baseName: two way lever + - uid: 19522 components: + - type: MetaData + name: two way lever (Dock Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 287.5,378.5 - parent: 1 - - uid: 90 + pos: -85.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7584: + - Left: Forward + - Right: Reverse + - Middle: Off + 7586: + - Left: Forward + - Right: Reverse + - Middle: Off + 7418: + - Left: Forward + - Right: Reverse + - Middle: Off + 7539: + - Left: Forward + - Right: Reverse + - Middle: Off + 7077: + - Left: Forward + - Right: Reverse + - Middle: Off + - type: Label + currentLabel: Dock Conveyor + - type: NameModifier + baseName: two way lever + - uid: 19523 components: + - type: MetaData + name: two way lever (Dock Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 287.5,376.5 - parent: 1 - - uid: 91 + pos: -85.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7548: + - Left: Forward + - Right: Reverse + - Middle: Off + 7582: + - Left: Forward + - Right: Reverse + - Middle: Off + 7583: + - Left: Forward + - Right: Reverse + - Middle: Off + 7579: + - Left: Forward + - Right: Reverse + - Middle: Off + 7344: + - Left: Forward + - Right: Reverse + - Middle: Off + - type: Label + currentLabel: Dock Conveyor + - type: NameModifier + baseName: two way lever + - uid: 22204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 288.5,398.5 - parent: 1 - - uid: 92 + pos: -116.5,24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22196: + - Left: Forward + - Right: Reverse + - Middle: Off + 22197: + - Left: Forward + - Right: Reverse + - Middle: Off + 22198: + - Left: Forward + - Right: Reverse + - Middle: Off + 22199: + - Left: Forward + - Right: Reverse + - Middle: Off + 22200: + - Left: Forward + - Right: Reverse + - Middle: Off + 22201: + - Left: Forward + - Right: Reverse + - Middle: Off + 22203: + - Left: Forward + - Right: Reverse + - Middle: Off + 22202: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 23513 components: + - type: MetaData + name: two way lever (Cargo Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 288.5,396.5 - parent: 1 - - uid: 93 + pos: -107.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7080: + - Left: Forward + - Right: Reverse + - Middle: Off + 23169: + - Left: Open + - Right: Open + - Middle: Close + 23171: + - Left: Open + - Right: Open + - Middle: Close + 6525: + - Left: Forward + - Right: Reverse + - Middle: Off + 6524: + - Left: Forward + - Right: Reverse + - Middle: Off + 6587: + - Left: Forward + - Right: Reverse + - Middle: Off + 6577: + - Left: Forward + - Right: Reverse + - Middle: Off + 5820: + - Left: Forward + - Right: Reverse + - Middle: Off + 6507: + - Left: Forward + - Right: Reverse + - Middle: Off + 5850: + - Left: Forward + - Right: Reverse + - Middle: Off + 7549: + - Left: Forward + - Right: Reverse + - Middle: Off + 7304: + - Left: Forward + - Right: Reverse + - Middle: Off + 7336: + - Left: Forward + - Right: Reverse + - Middle: Off + 18079: + - Left: Open + - Right: Open + - Middle: Close + - type: Label + currentLabel: Cargo Conveyor + - type: NameModifier + baseName: two way lever + - uid: 25553 components: + - type: MetaData + name: two way lever (Desk Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 288.5,378.5 - parent: 1 - - uid: 94 + pos: -103.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25546: + - Left: Forward + - Right: Reverse + - Middle: Off + 25545: + - Left: Forward + - Right: Reverse + - Middle: Off + 6926: + - Left: Forward + - Right: Reverse + - Middle: Off + 11109: + - Left: Open + - Right: Open + - Middle: Close + - Left: AutoClose + - Right: AutoClose + - type: Label + currentLabel: Desk Conveyor + - type: NameModifier + baseName: two way lever + - uid: 25559 components: + - type: MetaData + name: two way lever (Space Conveyor) - type: Transform - rot: 3.141592653589793 rad - pos: 288.5,376.5 - parent: 1 - - uid: 95 + pos: -102.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22205: + - Left: Forward + - Right: Reverse + - Middle: Off + 15308: + - Left: Forward + - Right: Reverse + - Middle: Off + 11641: + - Left: Forward + - Right: Reverse + - Middle: Off + 10621: + - Left: Forward + - Right: Reverse + - Middle: Off + 11649: + - Left: Forward + - Right: Reverse + - Middle: Off + 11764: + - Left: Forward + - Right: Reverse + - Middle: Off + 11757: + - Left: Forward + - Right: Reverse + - Middle: Off + 11768: + - Left: Forward + - Right: Reverse + - Middle: Off + 11745: + - Left: Forward + - Right: Reverse + - Middle: Off + 11744: + - Left: Forward + - Right: Reverse + - Middle: Off + 10569: + - Left: Forward + - Right: Reverse + - Middle: Off + 4582: + - Left: Forward + - Right: Reverse + - Middle: Off + 11739: + - Left: Forward + - Right: Reverse + - Middle: Off + 11726: + - Left: Forward + - Right: Reverse + - Middle: Off + 11723: + - Left: Forward + - Right: Reverse + - Middle: Off + 11720: + - Left: Forward + - Right: Reverse + - Middle: Off + 18938: + - Left: Forward + - Right: Reverse + - Middle: Off + 18870: + - Left: Forward + - Right: Reverse + - Middle: Off + 24819: + - Left: Forward + - Right: Reverse + - Middle: Off + - type: Label + currentLabel: Space Conveyor + - type: NameModifier + baseName: two way lever +- proto: UniformPrinter + entities: + - uid: 12751 components: - type: Transform rot: 3.141592653589793 rad - pos: 289.5,398.5 - parent: 1 - - uid: 96 + pos: -49.5,-4.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 4174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 289.5,396.5 - parent: 1 - - uid: 97 + pos: -25.5,-54.5 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 16707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 289.5,378.5 - parent: 1 - - uid: 98 + pos: -67.5,-27.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 9555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 289.5,376.5 - parent: 1 - - uid: 99 + pos: -121.5,-2.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 290.5,398.5 - parent: 1 - - uid: 100 + pos: -46.5,-0.5 + parent: 2 + - uid: 8790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 290.5,396.5 - parent: 1 - - uid: 101 + pos: -12.5,-33.5 + parent: 2 + - uid: 24030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 290.5,378.5 - parent: 1 - - uid: 102 + pos: -70.5,-33.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 4639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 290.5,376.5 - parent: 1 - - uid: 104 + pos: -92.5,7.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 2997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,398.5 - parent: 1 - - uid: 105 + pos: -48.5,-4.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 22300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,396.5 - parent: 1 - - uid: 106 + pos: -46.5,-52.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 3438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,378.5 - parent: 1 - - uid: 107 + pos: -45.5,-26.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 3448 components: - type: Transform - rot: 3.141592653589793 rad - pos: 291.5,376.5 - parent: 1 - - uid: 108 + pos: -52.5,-26.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 3937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 292.5,398.5 - parent: 1 - - uid: 109 + pos: -40.5,-19.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 4317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 292.5,396.5 - parent: 1 - - uid: 110 + pos: -68.5,-49.5 + parent: 2 + - uid: 7699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 292.5,378.5 - parent: 1 - - uid: 111 + pos: -100.5,-41.5 + parent: 2 + - uid: 9185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 292.5,376.5 - parent: 1 - - uid: 112 + pos: -73.5,-28.5 + parent: 2 + - uid: 9221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 293.5,398.5 - parent: 1 - - uid: 113 + pos: -107.5,-55.5 + parent: 2 + - uid: 9456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 293.5,396.5 - parent: 1 - - uid: 114 + pos: -96.5,-35.5 + parent: 2 + - uid: 20437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 293.5,378.5 - parent: 1 - - uid: 115 + pos: -134.5,-4.5 + parent: 2 + - uid: 20934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 293.5,376.5 - parent: 1 - - uid: 116 + pos: -55.5,-40.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 3782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,398.5 - parent: 1 - - uid: 117 + pos: -61.5,-58.5 + parent: 2 + - uid: 10744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,396.5 - parent: 1 - - uid: 118 + pos: -68.5,-20.5 + parent: 2 + - uid: 14939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,395.5 - parent: 1 - - uid: 119 + pos: -51.5,-36.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 6076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,394.5 - parent: 1 - - uid: 120 + pos: -32.5,-46.5 + parent: 2 + - uid: 7325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,393.5 - parent: 1 - - uid: 121 + pos: -130.5,-42.5 + parent: 2 + - uid: 8358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,392.5 - parent: 1 - - uid: 122 + pos: -18.5,20.5 + parent: 2 + - uid: 9046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,391.5 - parent: 1 - - uid: 123 + pos: -45.5,-69.5 + parent: 2 + - uid: 10989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,390.5 - parent: 1 - - uid: 125 + pos: -65.5,2.5 + parent: 2 + - uid: 25525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,422.5 - parent: 1 - - uid: 129 + pos: -127.5,-58.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 3851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,384.5 - parent: 1 - - uid: 130 + pos: -46.5,-54.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 1193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,383.5 - parent: 1 - - uid: 131 + pos: -55.5,-33.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 11055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,382.5 - parent: 1 - - uid: 132 + pos: -96.5,-33.5 + parent: 2 + - uid: 11818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,380.5 - parent: 1 - - uid: 133 + pos: -6.5,-6.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 7477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,379.5 - parent: 1 - - uid: 134 + pos: -114.5,-24.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 22072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,378.5 - parent: 1 - - uid: 135 + pos: -109.5,-18.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 6951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 294.5,376.5 - parent: 1 - - uid: 136 + pos: -92.5,-44.5 + parent: 2 + - uid: 15430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,398.5 - parent: 1 - - uid: 137 + pos: -55.5,-50.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 4197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,390.5 - parent: 1 - - uid: 138 + pos: -17.5,-23.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 3385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,384.5 - parent: 1 - - uid: 139 + pos: -17.5,-6.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 6742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,382.5 - parent: 1 - - uid: 140 + pos: -96.5,-43.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 2002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,380.5 - parent: 1 - - uid: 141 + pos: -32.5,-27.5 + parent: 2 + - uid: 4039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 295.5,376.5 - parent: 1 - - uid: 143 + pos: -26.5,-46.5 + parent: 2 + - uid: 6261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,398.5 - parent: 1 - - uid: 144 + pos: -17.5,-29.5 + parent: 2 + - uid: 19032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,397.5 - parent: 1 - - uid: 145 + pos: -17.5,-40.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 4116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,396.5 - parent: 1 - - uid: 146 + pos: -25.5,-46.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 22088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,395.5 - parent: 1 - - uid: 147 + pos: -45.5,-18.5 + parent: 2 +- proto: VendingMachinePwrGame + entities: + - uid: 9726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,394.5 - parent: 1 - - uid: 148 + pos: -115.5,22.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 2483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,393.5 - parent: 1 - - uid: 149 + pos: -126.5,-50.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 17363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,392.5 - parent: 1 - - uid: 150 + pos: -118.5,-53.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 20425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,391.5 - parent: 1 - - uid: 151 + pos: -95.5,30.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 16472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,390.5 - parent: 1 - - uid: 157 + pos: -136.5,-41.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 1533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,384.5 - parent: 1 - - uid: 158 + pos: -88.5,-29.5 + parent: 2 + - uid: 9457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,383.5 - parent: 1 - - uid: 159 + pos: -96.5,-34.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 7263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,382.5 - parent: 1 - - uid: 160 + pos: -87.5,-29.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 6923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,380.5 - parent: 1 - - uid: 161 + pos: -54.5,-18.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 6761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,379.5 - parent: 1 - - uid: 162 + pos: -84.5,-47.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 7121 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,378.5 - parent: 1 - - uid: 163 + pos: -85.5,-47.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 5812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,377.5 - parent: 1 - - uid: 164 + pos: -117.5,-8.5 + parent: 2 + - uid: 6913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 296.5,376.5 - parent: 1 - - uid: 167 + pos: -117.5,17.5 + parent: 2 + - uid: 23927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 297.5,391.5 - parent: 1 - - uid: 168 + pos: -141.5,-9.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 297.5,383.5 - parent: 1 - - uid: 169 + pos: -142.5,-51.5 + parent: 2 + - uid: 4602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 297.5,380.5 - parent: 1 - - uid: 170 + pos: -91.5,35.5 + parent: 2 + - uid: 23166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 298.5,391.5 - parent: 1 - - uid: 171 + pos: -153.5,-11.5 + parent: 2 + - uid: 24412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 298.5,380.5 - parent: 1 - - uid: 173 + pos: -37.5,-6.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 1155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,391.5 - parent: 1 - - uid: 174 + pos: -51.5,-37.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 4356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,383.5 - parent: 1 - - uid: 175 + pos: -25.5,-0.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 4171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,382.5 - parent: 1 - - uid: 176 + pos: -23.5,-48.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 3781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 299.5,380.5 - parent: 1 - - uid: 178 + pos: -60.5,-58.5 + parent: 2 + - uid: 5123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 300.5,412.5 - parent: 1 - - uid: 181 + pos: -68.5,-21.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 4355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 300.5,409.5 - parent: 1 - - uid: 183 + pos: -26.5,-0.5 + parent: 2 + - uid: 21780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 300.5,391.5 - parent: 1 - - uid: 184 + pos: -108.5,-18.5 + parent: 2 +- proto: WallmountTelescreen + entities: + - uid: 6641 components: - type: Transform - rot: 3.141592653589793 rad - pos: 300.5,383.5 - parent: 1 - - uid: 186 + pos: -83.5,-33.5 + parent: 2 + - uid: 6918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,415.5 - parent: 1 - - uid: 189 + pos: -93.5,-29.5 + parent: 2 + - uid: 18473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,412.5 - parent: 1 - - uid: 190 + pos: -91.5,-17.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 23944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,409.5 - parent: 1 - - uid: 193 + pos: -61.5,-21.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 8 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,406.5 - parent: 1 - - uid: 194 + pos: -53.5,7.5 + parent: 2 + - uid: 11 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,391.5 - parent: 1 - - uid: 195 + pos: -22.5,3.5 + parent: 2 + - uid: 17 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,390.5 - parent: 1 - - uid: 198 + pos: -44.5,-3.5 + parent: 2 + - uid: 22 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,384.5 - parent: 1 - - uid: 199 + pos: -63.5,9.5 + parent: 2 + - uid: 24 components: - type: Transform - rot: 3.141592653589793 rad - pos: 301.5,383.5 - parent: 1 - - uid: 200 + pos: -69.5,8.5 + parent: 2 + - uid: 25 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 271.5,394.5 - parent: 1 - - uid: 201 + pos: -68.5,8.5 + parent: 2 + - uid: 26 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,424.5 - parent: 1 - - uid: 202 + pos: -67.5,8.5 + parent: 2 + - uid: 27 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,423.5 - parent: 1 - - uid: 203 + pos: -55.5,8.5 + parent: 2 + - uid: 28 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,422.5 - parent: 1 - - uid: 204 + pos: -53.5,8.5 + parent: 2 + - uid: 29 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,421.5 - parent: 1 - - uid: 205 + pos: -54.5,8.5 + parent: 2 + - uid: 30 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,415.5 - parent: 1 - - uid: 206 + pos: -69.5,7.5 + parent: 2 + - uid: 53 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,412.5 - parent: 1 - - uid: 207 + pos: -59.5,9.5 + parent: 2 + - uid: 55 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,409.5 - parent: 1 - - uid: 208 + pos: -69.5,3.5 + parent: 2 + - uid: 62 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,406.5 - parent: 1 - - uid: 209 + pos: -68.5,2.5 + parent: 2 + - uid: 63 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,391.5 - parent: 1 - - uid: 210 + pos: -68.5,1.5 + parent: 2 + - uid: 64 components: - type: Transform - rot: 3.141592653589793 rad - pos: 302.5,383.5 - parent: 1 - - uid: 215 + pos: -68.5,0.5 + parent: 2 + - uid: 65 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,420.5 - parent: 1 - - uid: 216 + pos: -53.5,3.5 + parent: 2 + - uid: 66 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,416.5 - parent: 1 - - uid: 217 + pos: -53.5,2.5 + parent: 2 + - uid: 67 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,415.5 - parent: 1 - - uid: 218 + pos: -54.5,2.5 + parent: 2 + - uid: 68 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,412.5 - parent: 1 - - uid: 219 + pos: -54.5,0.5 + parent: 2 + - uid: 69 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,409.5 - parent: 1 - - uid: 220 + pos: -54.5,1.5 + parent: 2 + - uid: 75 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,406.5 - parent: 1 - - uid: 221 + pos: -62.5,1.5 + parent: 2 + - uid: 76 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,405.5 - parent: 1 - - uid: 222 + pos: -63.5,1.5 + parent: 2 + - uid: 77 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,391.5 - parent: 1 - - uid: 223 + pos: -65.5,1.5 + parent: 2 + - uid: 78 components: - type: Transform - rot: 3.141592653589793 rad - pos: 303.5,383.5 - parent: 1 - - uid: 224 + pos: -64.5,1.5 + parent: 2 + - uid: 79 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 271.5,383.5 - parent: 1 - - uid: 226 + pos: -65.5,0.5 + parent: 2 + - uid: 80 components: - type: Transform - pos: 307.5,404.5 - parent: 1 - - uid: 227 + pos: -65.5,-0.5 + parent: 2 + - uid: 81 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,420.5 - parent: 1 - - uid: 228 + pos: -65.5,-1.5 + parent: 2 + - uid: 82 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,416.5 - parent: 1 - - uid: 229 + pos: -60.5,1.5 + parent: 2 + - uid: 83 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,405.5 - parent: 1 - - uid: 230 + pos: -59.5,1.5 + parent: 2 + - uid: 84 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 277.5,374.5 - parent: 1 - - uid: 231 + pos: -58.5,1.5 + parent: 2 + - uid: 85 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,391.5 - parent: 1 - - uid: 232 + pos: -57.5,1.5 + parent: 2 + - uid: 86 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,390.5 - parent: 1 - - uid: 233 + pos: -57.5,0.5 + parent: 2 + - uid: 87 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,389.5 - parent: 1 - - uid: 234 + pos: -57.5,-0.5 + parent: 2 + - uid: 88 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,385.5 - parent: 1 - - uid: 235 + pos: -57.5,-1.5 + parent: 2 + - uid: 89 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,384.5 - parent: 1 - - uid: 236 + pos: -65.5,-5.5 + parent: 2 + - uid: 90 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,383.5 - parent: 1 - - uid: 238 + pos: -65.5,-6.5 + parent: 2 + - uid: 91 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 282.5,402.5 - parent: 1 - - uid: 239 + pos: -65.5,-7.5 + parent: 2 + - uid: 92 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 290.5,371.5 - parent: 1 - - uid: 240 + pos: -65.5,-8.5 + parent: 2 + - uid: 93 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,379.5 - parent: 1 - - uid: 241 + pos: -64.5,-8.5 + parent: 2 + - uid: 94 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,378.5 - parent: 1 - - uid: 242 + pos: -63.5,-8.5 + parent: 2 + - uid: 95 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 308.5,428.5 - parent: 1 - - uid: 243 + pos: -62.5,-8.5 + parent: 2 + - uid: 96 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,421.5 - parent: 1 - - uid: 244 + pos: -60.5,-8.5 + parent: 2 + - uid: 97 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,420.5 - parent: 1 - - uid: 245 + pos: -59.5,-8.5 + parent: 2 + - uid: 98 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,419.5 - parent: 1 - - uid: 246 + pos: -57.5,-8.5 + parent: 2 + - uid: 99 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,417.5 - parent: 1 - - uid: 247 + pos: -58.5,-8.5 + parent: 2 + - uid: 100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,416.5 - parent: 1 - - uid: 248 + pos: -57.5,-7.5 + parent: 2 + - uid: 101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,415.5 - parent: 1 - - uid: 250 + pos: -57.5,-5.5 + parent: 2 + - uid: 102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,412.5 - parent: 1 - - uid: 251 + pos: -57.5,-6.5 + parent: 2 + - uid: 103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,409.5 - parent: 1 - - uid: 252 + pos: -65.5,-9.5 + parent: 2 + - uid: 104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,408.5 - parent: 1 - - uid: 253 + pos: -65.5,-10.5 + parent: 2 + - uid: 105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,406.5 - parent: 1 - - uid: 254 + pos: -57.5,-9.5 + parent: 2 + - uid: 106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,405.5 - parent: 1 - - uid: 255 + pos: -57.5,-10.5 + parent: 2 + - uid: 119 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,404.5 - parent: 1 - - uid: 256 + pos: -52.5,3.5 + parent: 2 + - uid: 120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 296.5,419.5 - parent: 1 - - uid: 257 + pos: -48.5,3.5 + parent: 2 + - uid: 121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 297.5,424.5 - parent: 1 - - uid: 258 + pos: -47.5,3.5 + parent: 2 + - uid: 122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,427.5 - parent: 1 - - uid: 259 + pos: -46.5,3.5 + parent: 2 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,428.5 - parent: 1 - - uid: 262 + pos: -47.5,2.5 + parent: 2 + - uid: 125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,422.5 - parent: 1 - - uid: 263 + pos: -47.5,-0.5 + parent: 2 + - uid: 126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,421.5 - parent: 1 - - uid: 264 + pos: -47.5,-1.5 + parent: 2 + - uid: 127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,419.5 - parent: 1 - - uid: 265 + pos: -47.5,-2.5 + parent: 2 + - uid: 129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 297.5,413.5 - parent: 1 - - uid: 266 + pos: -50.5,-2.5 + parent: 2 + - uid: 130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,417.5 - parent: 1 - - uid: 267 + pos: -51.5,-2.5 + parent: 2 + - uid: 134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,415.5 - parent: 1 - - uid: 268 + pos: -54.5,-2.5 + parent: 2 + - uid: 135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,412.5 - parent: 1 - - uid: 269 + pos: -54.5,-1.5 + parent: 2 + - uid: 136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,410.5 - parent: 1 - - uid: 270 + pos: -42.5,3.5 + parent: 2 + - uid: 137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,409.5 - parent: 1 - - uid: 271 + pos: -41.5,3.5 + parent: 2 + - uid: 140 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,404.5 - parent: 1 - - uid: 272 + pos: -41.5,-0.5 + parent: 2 + - uid: 142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 299.5,404.5 - parent: 1 - - uid: 273 + pos: -41.5,-1.5 + parent: 2 + - uid: 144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,378.5 - parent: 1 - - uid: 274 + pos: -26.5,9.5 + parent: 2 + - uid: 148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 302.5,430.5 - parent: 1 - - uid: 275 + pos: -41.5,-3.5 + parent: 2 + - uid: 150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,445.5 - parent: 1 - - uid: 276 + pos: -41.5,-6.5 + parent: 2 + - uid: 151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,427.5 - parent: 1 - - uid: 277 + pos: -41.5,-7.5 + parent: 2 + - uid: 152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,412.5 - parent: 1 - - uid: 279 + pos: -42.5,-7.5 + parent: 2 + - uid: 153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,390.5 - parent: 1 - - uid: 280 + pos: -44.5,-7.5 + parent: 2 + - uid: 157 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,389.5 - parent: 1 - - uid: 281 + pos: -47.5,-7.5 + parent: 2 + - uid: 158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,427.5 - parent: 1 - - uid: 285 + pos: -47.5,-6.5 + parent: 2 + - uid: 160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,422.5 - parent: 1 - - uid: 286 + pos: -47.5,-3.5 + parent: 2 + - uid: 161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,421.5 - parent: 1 - - uid: 287 + pos: -54.5,-3.5 + parent: 2 + - uid: 163 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,419.5 - parent: 1 - - uid: 288 + pos: -54.5,-6.5 + parent: 2 + - uid: 164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 304.5,402.5 - parent: 1 - - uid: 289 + pos: -54.5,-8.5 + parent: 2 + - uid: 165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,417.5 - parent: 1 - - uid: 290 + pos: -54.5,-7.5 + parent: 2 + - uid: 166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,415.5 - parent: 1 - - uid: 291 + pos: -53.5,-8.5 + parent: 2 + - uid: 168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,412.5 - parent: 1 - - uid: 292 + pos: -47.5,-8.5 + parent: 2 + - uid: 174 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,410.5 - parent: 1 - - uid: 293 + pos: -54.5,-9.5 + parent: 2 + - uid: 175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,409.5 - parent: 1 - - uid: 294 + pos: -54.5,-10.5 + parent: 2 + - uid: 176 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,404.5 - parent: 1 - - uid: 295 + pos: -68.5,-10.5 + parent: 2 + - uid: 179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,389.5 - parent: 1 - - uid: 296 + pos: -68.5,-6.5 + parent: 2 + - uid: 180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,385.5 - parent: 1 - - uid: 299 + pos: -68.5,-5.5 + parent: 2 + - uid: 181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,381.5 - parent: 1 - - uid: 300 + pos: -68.5,-4.5 + parent: 2 + - uid: 182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,380.5 - parent: 1 - - uid: 301 + pos: -68.5,-3.5 + parent: 2 + - uid: 183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,379.5 - parent: 1 - - uid: 302 + pos: -68.5,-7.5 + parent: 2 + - uid: 184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,378.5 - parent: 1 - - uid: 303 + pos: -68.5,-1.5 + parent: 2 + - uid: 185 components: - type: Transform - pos: 302.5,426.5 - parent: 1 - - uid: 304 + pos: -68.5,-0.5 + parent: 2 + - uid: 186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,421.5 - parent: 1 - - uid: 305 + pos: -69.5,-1.5 + parent: 2 + - uid: 187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,420.5 - parent: 1 - - uid: 306 + pos: -70.5,-1.5 + parent: 2 + - uid: 188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,419.5 - parent: 1 - - uid: 307 + pos: -70.5,-0.5 + parent: 2 + - uid: 189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,417.5 - parent: 1 - - uid: 308 + pos: -70.5,0.5 + parent: 2 + - uid: 190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,416.5 - parent: 1 - - uid: 309 + pos: -71.5,0.5 + parent: 2 + - uid: 191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,415.5 - parent: 1 - - uid: 311 + pos: -72.5,0.5 + parent: 2 + - uid: 192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,412.5 - parent: 1 - - uid: 312 + pos: -74.5,0.5 + parent: 2 + - uid: 193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,409.5 - parent: 1 - - uid: 313 + pos: -75.5,0.5 + parent: 2 + - uid: 194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,408.5 - parent: 1 - - uid: 314 + pos: -73.5,0.5 + parent: 2 + - uid: 195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,406.5 - parent: 1 - - uid: 315 + pos: -76.5,0.5 + parent: 2 + - uid: 196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,405.5 - parent: 1 - - uid: 316 + pos: -76.5,-0.5 + parent: 2 + - uid: 197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,404.5 - parent: 1 - - uid: 317 + pos: -76.5,-2.5 + parent: 2 + - uid: 198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,385.5 - parent: 1 - - uid: 318 + pos: -76.5,-3.5 + parent: 2 + - uid: 199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,381.5 - parent: 1 - - uid: 319 + pos: -76.5,-4.5 + parent: 2 + - uid: 200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 306.5,437.5 - parent: 1 - - uid: 320 + pos: -76.5,-5.5 + parent: 2 + - uid: 201 components: - - type: Transform - pos: 303.5,427.5 - parent: 1 - - uid: 321 + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 202 components: - type: Transform - pos: 312.5,427.5 - parent: 1 - - uid: 322 + pos: -69.5,-3.5 + parent: 2 + - uid: 203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,420.5 - parent: 1 - - uid: 323 + pos: -70.5,-3.5 + parent: 2 + - uid: 204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,416.5 - parent: 1 - - uid: 324 + pos: -70.5,-4.5 + parent: 2 + - uid: 205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,405.5 - parent: 1 - - uid: 325 + pos: -70.5,-5.5 + parent: 2 + - uid: 206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,389.5 - parent: 1 - - uid: 327 + pos: -71.5,-5.5 + parent: 2 + - uid: 207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,381.5 - parent: 1 - - uid: 328 + pos: -72.5,-5.5 + parent: 2 + - uid: 208 components: - type: Transform - pos: 302.5,420.5 - parent: 1 - - uid: 329 + pos: -73.5,-5.5 + parent: 2 + - uid: 209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 311.5,428.5 - parent: 1 - - uid: 330 + pos: -74.5,-5.5 + parent: 2 + - uid: 210 components: - type: Transform - pos: 302.5,425.5 - parent: 1 - - uid: 331 + pos: -75.5,-5.5 + parent: 2 + - uid: 214 components: - type: Transform - pos: 311.5,427.5 - parent: 1 - - uid: 332 + pos: -74.5,2.5 + parent: 2 + - uid: 218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,420.5 - parent: 1 - - uid: 333 + pos: -71.5,2.5 + parent: 2 + - uid: 223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,416.5 - parent: 1 - - uid: 334 + pos: -78.5,0.5 + parent: 2 + - uid: 224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,443.5 - parent: 1 - - uid: 335 + pos: -78.5,-1.5 + parent: 2 + - uid: 227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,413.5 - parent: 1 - - uid: 336 + pos: -78.5,-4.5 + parent: 2 + - uid: 233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,412.5 - parent: 1 - - uid: 337 + pos: -74.5,-7.5 + parent: 2 + - uid: 238 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,410.5 - parent: 1 - - uid: 338 + pos: -69.5,-7.5 + parent: 2 + - uid: 251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,409.5 - parent: 1 - - uid: 339 + pos: -83.5,-10.5 + parent: 2 + - uid: 252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,408.5 - parent: 1 - - uid: 340 + pos: -81.5,-9.5 + parent: 2 + - uid: 256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 307.5,431.5 - parent: 1 - - uid: 341 + pos: -81.5,-4.5 + parent: 2 + - uid: 260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,405.5 - parent: 1 - - uid: 343 + pos: -81.5,-2.5 + parent: 2 + - uid: 268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 311.5,381.5 - parent: 1 - - uid: 344 + pos: -86.5,-11.5 + parent: 2 + - uid: 272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,424.5 - parent: 1 - - uid: 345 + pos: -121.5,-18.5 + parent: 2 + - uid: 276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,423.5 - parent: 1 - - uid: 346 + pos: -89.5,-4.5 + parent: 2 + - uid: 280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,422.5 - parent: 1 - - uid: 347 + pos: -89.5,-0.5 + parent: 2 + - uid: 283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,421.5 - parent: 1 - - uid: 348 + pos: -108.5,-56.5 + parent: 2 + - uid: 289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,447.5 - parent: 1 - - uid: 349 + pos: -36.5,-34.5 + parent: 2 + - uid: 305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 312.5,403.5 - parent: 1 - - uid: 350 + pos: -47.5,-10.5 + parent: 2 + - uid: 315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,413.5 - parent: 1 - - uid: 351 + pos: -36.5,-26.5 + parent: 2 + - uid: 393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,408.5 - parent: 1 - - uid: 352 + pos: -52.5,-2.5 + parent: 2 + - uid: 394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 313.5,429.5 - parent: 1 - - uid: 353 + pos: -41.5,1.5 + parent: 2 + - uid: 396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 314.5,395.5 - parent: 1 - - uid: 354 + pos: -41.5,-5.5 + parent: 2 + - uid: 403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 315.5,449.5 - parent: 1 - - uid: 355 + pos: -152.5,-9.5 + parent: 2 + - uid: 450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,389.5 - parent: 1 - - uid: 357 + pos: -124.5,-7.5 + parent: 2 + - uid: 482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 312.5,381.5 - parent: 1 - - uid: 358 + pos: -110.5,19.5 + parent: 2 + - uid: 488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 315.5,422.5 - parent: 1 - - uid: 359 + pos: -107.5,19.5 + parent: 2 + - uid: 531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,417.5 - parent: 1 - - uid: 360 + pos: -106.5,14.5 + parent: 2 + - uid: 533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,413.5 - parent: 1 - - uid: 361 + pos: -106.5,11.5 + parent: 2 + - uid: 534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,408.5 - parent: 1 - - uid: 362 + pos: -109.5,12.5 + parent: 2 + - uid: 537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,406.5 - parent: 1 - - uid: 363 + pos: -106.5,6.5 + parent: 2 + - uid: 543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,389.5 - parent: 1 - - uid: 365 + pos: -112.5,12.5 + parent: 2 + - uid: 551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 313.5,381.5 - parent: 1 - - uid: 366 + pos: -114.5,12.5 + parent: 2 + - uid: 552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 318.5,448.5 - parent: 1 - - uid: 367 + pos: -114.5,11.5 + parent: 2 + - uid: 553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,413.5 - parent: 1 - - uid: 368 + pos: -114.5,10.5 + parent: 2 + - uid: 555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 318.5,429.5 - parent: 1 - - uid: 369 + pos: -112.5,10.5 + parent: 2 + - uid: 556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,410.5 - parent: 1 - - uid: 370 + pos: -108.5,10.5 + parent: 2 + - uid: 562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 319.5,446.5 - parent: 1 - - uid: 371 + pos: -109.5,6.5 + parent: 2 + - uid: 563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,408.5 - parent: 1 - - uid: 372 + pos: -108.5,6.5 + parent: 2 + - uid: 565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 319.5,429.5 - parent: 1 - - uid: 373 + pos: -112.5,4.5 + parent: 2 + - uid: 574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 319.5,413.5 - parent: 1 - - uid: 374 + pos: -142.5,-7.5 + parent: 2 + - uid: 578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,385.5 - parent: 1 - - uid: 375 + pos: -108.5,-1.5 + parent: 2 + - uid: 580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 314.5,381.5 - parent: 1 - - uid: 376 + pos: -114.5,-1.5 + parent: 2 + - uid: 583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 321.5,427.5 - parent: 1 - - uid: 377 + pos: -114.5,0.5 + parent: 2 + - uid: 586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,441.5 - parent: 1 - - uid: 378 + pos: -114.5,6.5 + parent: 2 + - uid: 598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,413.5 - parent: 1 - - uid: 379 + pos: -139.5,-1.5 + parent: 2 + - uid: 600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,437.5 - parent: 1 - - uid: 380 + pos: -140.5,-8.5 + parent: 2 + - uid: 610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,410.5 - parent: 1 - - uid: 381 + pos: -144.5,-1.5 + parent: 2 + - uid: 615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,431.5 - parent: 1 - - uid: 382 + pos: -114.5,18.5 + parent: 2 + - uid: 639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,408.5 - parent: 1 - - uid: 383 + pos: -122.5,-1.5 + parent: 2 + - uid: 664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,389.5 - parent: 1 - - uid: 384 + pos: -114.5,15.5 + parent: 2 + - uid: 665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,385.5 - parent: 1 - - uid: 387 + pos: -142.5,-12.5 + parent: 2 + - uid: 678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 315.5,381.5 - parent: 1 - - uid: 388 + pos: -128.5,-1.5 + parent: 2 + - uid: 686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,430.5 - parent: 1 - - uid: 389 + pos: -122.5,-5.5 + parent: 2 + - uid: 688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,428.5 - parent: 1 - - uid: 390 + pos: -116.5,-2.5 + parent: 2 + - uid: 689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,385.5 - parent: 1 - - uid: 391 + pos: -122.5,-4.5 + parent: 2 + - uid: 697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,381.5 - parent: 1 - - uid: 392 + pos: -106.5,-2.5 + parent: 2 + - uid: 701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,431.5 - parent: 1 - - uid: 393 + pos: -113.5,-7.5 + parent: 2 + - uid: 707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,430.5 - parent: 1 - - uid: 394 + pos: -107.5,-7.5 + parent: 2 + - uid: 712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,429.5 - parent: 1 - - uid: 395 + pos: -113.5,-8.5 + parent: 2 + - uid: 723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,427.5 - parent: 1 - - uid: 396 + pos: -106.5,-12.5 + parent: 2 + - uid: 729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,389.5 - parent: 1 - - uid: 397 + pos: -83.5,6.5 + parent: 2 + - uid: 743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,385.5 - parent: 1 - - uid: 398 + pos: -155.5,-9.5 + parent: 2 + - uid: 746 components: - type: Transform - rot: 3.141592653589793 rad - pos: 317.5,381.5 - parent: 1 - - uid: 399 + pos: -144.5,-41.5 + parent: 2 + - uid: 747 components: - type: Transform rot: -1.5707963267948966 rad - pos: 322.5,427.5 - parent: 1 - - uid: 400 + pos: -122.5,35.5 + parent: 2 + - uid: 750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,431.5 - parent: 1 - - uid: 401 + pos: -83.5,12.5 + parent: 2 + - uid: 752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 323.5,427.5 - parent: 1 - - uid: 402 + pos: -83.5,9.5 + parent: 2 + - uid: 760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,427.5 - parent: 1 - - uid: 403 + pos: -132.5,-3.5 + parent: 2 + - uid: 761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,426.5 - parent: 1 - - uid: 404 + pos: -107.5,-43.5 + parent: 2 + - uid: 763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,425.5 - parent: 1 - - uid: 405 + pos: -149.5,-41.5 + parent: 2 + - uid: 771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,424.5 - parent: 1 - - uid: 409 + pos: -135.5,-3.5 + parent: 2 + - uid: 775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,420.5 - parent: 1 - - uid: 410 + pos: -88.5,26.5 + parent: 2 + - uid: 778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,419.5 - parent: 1 - - uid: 411 + pos: -101.5,-3.5 + parent: 2 + - uid: 779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,389.5 - parent: 1 - - uid: 412 + pos: -135.5,-8.5 + parent: 2 + - uid: 782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,388.5 - parent: 1 - - uid: 413 + pos: -135.5,-11.5 + parent: 2 + - uid: 789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,386.5 - parent: 1 - - uid: 414 + pos: -136.5,-8.5 + parent: 2 + - uid: 795 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,385.5 - parent: 1 - - uid: 415 + pos: -142.5,-9.5 + parent: 2 + - uid: 798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,384.5 - parent: 1 - - uid: 416 + pos: -151.5,-1.5 + parent: 2 + - uid: 804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,383.5 - parent: 1 - - uid: 417 + pos: -144.5,-13.5 + parent: 2 + - uid: 808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,382.5 - parent: 1 - - uid: 418 + pos: -93.5,-60.5 + parent: 2 + - uid: 819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 318.5,381.5 - parent: 1 - - uid: 419 + pos: -93.5,-58.5 + parent: 2 + - uid: 827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 323.5,393.5 - parent: 1 - - uid: 420 + pos: -132.5,0.5 + parent: 2 + - uid: 845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,446.5 - parent: 1 - - uid: 421 + pos: -155.5,-12.5 + parent: 2 + - uid: 848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,431.5 - parent: 1 - - uid: 423 + pos: -149.5,-13.5 + parent: 2 + - uid: 856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,419.5 - parent: 1 - - uid: 424 + pos: -132.5,-16.5 + parent: 2 + - uid: 857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,430.5 - parent: 1 - - uid: 425 + pos: -132.5,-17.5 + parent: 2 + - uid: 862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,429.5 - parent: 1 - - uid: 426 + pos: -128.5,-16.5 + parent: 2 + - uid: 863 components: - type: Transform - rot: 3.141592653589793 rad - pos: 320.5,419.5 - parent: 1 - - uid: 427 + pos: -128.5,-14.5 + parent: 2 + - uid: 864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,435.5 - parent: 1 - - uid: 430 + pos: -127.5,-13.5 + parent: 2 + - uid: 866 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,432.5 - parent: 1 - - uid: 431 + pos: -121.5,-13.5 + parent: 2 + - uid: 867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,431.5 - parent: 1 - - uid: 432 + pos: -41.5,0.5 + parent: 2 + - uid: 868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,428.5 - parent: 1 - - uid: 433 + pos: -47.5,0.5 + parent: 2 + - uid: 870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,419.5 - parent: 1 - - uid: 434 + pos: -84.5,26.5 + parent: 2 + - uid: 871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,418.5 - parent: 1 - - uid: 437 + pos: -43.5,-0.5 + parent: 2 + - uid: 872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,415.5 - parent: 1 - - uid: 438 + pos: -89.5,29.5 + parent: 2 + - uid: 875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,414.5 - parent: 1 - - uid: 439 + pos: -126.5,-19.5 + parent: 2 + - uid: 876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 324.5,427.5 - parent: 1 - - uid: 440 + pos: -127.5,-19.5 + parent: 2 + - uid: 877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 325.5,430.5 - parent: 1 - - uid: 441 + pos: -125.5,-19.5 + parent: 2 + - uid: 878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,435.5 - parent: 1 - - uid: 442 + pos: -128.5,-18.5 + parent: 2 + - uid: 882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 326.5,370.5 - parent: 1 - - uid: 443 + pos: -121.5,-23.5 + parent: 2 + - uid: 883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,444.5 - parent: 1 - - uid: 448 + pos: -121.5,-24.5 + parent: 2 + - uid: 885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,414.5 - parent: 1 - - uid: 451 + pos: -38.5,-4.5 + parent: 2 + - uid: 889 components: - type: Transform - pos: 329.5,399.5 - parent: 1 - - uid: 452 + pos: -122.5,-25.5 + parent: 2 + - uid: 891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,414.5 - parent: 1 - - uid: 453 + pos: -128.5,-25.5 + parent: 2 + - uid: 896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,430.5 - parent: 1 - - uid: 454 + pos: -132.5,-24.5 + parent: 2 + - uid: 899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,429.5 - parent: 1 - - uid: 457 + pos: -132.5,-20.5 + parent: 2 + - uid: 903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,428.5 - parent: 1 - - uid: 458 + pos: -41.5,-4.5 + parent: 2 + - uid: 904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,427.5 - parent: 1 - - uid: 459 + pos: -44.5,-9.5 + parent: 2 + - uid: 905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,426.5 - parent: 1 - - uid: 460 + pos: -44.5,-8.5 + parent: 2 + - uid: 906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 327.5,425.5 - parent: 1 - - uid: 464 + pos: -46.5,-3.5 + parent: 2 + - uid: 911 components: - type: Transform - rot: 3.141592653589793 rad - pos: 324.5,414.5 - parent: 1 - - uid: 465 + pos: -114.5,-25.5 + parent: 2 + - uid: 929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,442.5 - parent: 1 - - uid: 470 + pos: -135.5,-56.5 + parent: 2 + - uid: 934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,436.5 - parent: 1 - - uid: 471 + pos: -89.5,27.5 + parent: 2 + - uid: 955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,435.5 - parent: 1 - - uid: 472 + pos: -89.5,30.5 + parent: 2 + - uid: 956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,432.5 - parent: 1 - - uid: 476 + pos: -89.5,31.5 + parent: 2 + - uid: 976 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,415.5 - parent: 1 - - uid: 477 + pos: -85.5,36.5 + parent: 2 + - uid: 1001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,414.5 - parent: 1 - - uid: 478 + pos: -47.5,-11.5 + parent: 2 + - uid: 1025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,412.5 - parent: 1 - - uid: 479 + pos: -88.5,36.5 + parent: 2 + - uid: 1029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,410.5 - parent: 1 - - uid: 480 + pos: -89.5,35.5 + parent: 2 + - uid: 1030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,409.5 - parent: 1 - - uid: 481 + pos: -89.5,33.5 + parent: 2 + - uid: 1061 components: - - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,401.5 - parent: 1 - - uid: 483 + - type: Transform + pos: -117.5,-36.5 + parent: 2 + - uid: 1063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,399.5 - parent: 1 - - uid: 484 + pos: -116.5,-36.5 + parent: 2 + - uid: 1067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,398.5 - parent: 1 - - uid: 485 + pos: -89.5,34.5 + parent: 2 + - uid: 1069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,397.5 - parent: 1 - - uid: 486 + pos: -112.5,-36.5 + parent: 2 + - uid: 1071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,396.5 - parent: 1 - - uid: 487 + pos: -111.5,-36.5 + parent: 2 + - uid: 1074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 325.5,395.5 - parent: 1 - - uid: 488 + pos: -111.5,-37.5 + parent: 2 + - uid: 1075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,442.5 - parent: 1 - - uid: 491 + pos: -111.5,-39.5 + parent: 2 + - uid: 1076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,438.5 - parent: 1 - - uid: 494 + pos: -122.5,-36.5 + parent: 2 + - uid: 1077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,415.5 - parent: 1 - - uid: 495 + pos: -123.5,-36.5 + parent: 2 + - uid: 1078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,412.5 - parent: 1 - - uid: 496 + pos: -124.5,-34.5 + parent: 2 + - uid: 1080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,409.5 - parent: 1 - - uid: 497 + pos: -92.5,36.5 + parent: 2 + - uid: 1087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,401.5 - parent: 1 - - uid: 498 + pos: -120.5,-36.5 + parent: 2 + - uid: 1112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 326.5,395.5 - parent: 1 - - uid: 500 + pos: -40.5,-26.5 + parent: 2 + - uid: 1114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,430.5 - parent: 1 - - uid: 502 + pos: -38.5,-40.5 + parent: 2 + - uid: 1116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,429.5 - parent: 1 - - uid: 503 + pos: -35.5,-22.5 + parent: 2 + - uid: 1143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,428.5 - parent: 1 - - uid: 504 + pos: -38.5,-3.5 + parent: 2 + - uid: 1145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,427.5 - parent: 1 - - uid: 505 + pos: -38.5,-8.5 + parent: 2 + - uid: 1146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,426.5 - parent: 1 - - uid: 506 + pos: -83.5,31.5 + parent: 2 + - uid: 1156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,425.5 - parent: 1 - - uid: 507 + pos: -41.5,-18.5 + parent: 2 + - uid: 1162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,376.5 - parent: 1 - - uid: 508 + pos: -41.5,-19.5 + parent: 2 + - uid: 1168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 328.5,365.5 - parent: 1 - - uid: 509 + pos: -40.5,-16.5 + parent: 2 + - uid: 1169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,433.5 - parent: 1 - - uid: 510 + pos: -36.5,-16.5 + parent: 2 + - uid: 1171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,432.5 - parent: 1 - - uid: 518 + pos: -35.5,-26.5 + parent: 2 + - uid: 1173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,415.5 - parent: 1 - - uid: 519 + pos: -35.5,-21.5 + parent: 2 + - uid: 1177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,412.5 - parent: 1 - - uid: 521 + pos: -110.5,-25.5 + parent: 2 + - uid: 1181 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,401.5 - parent: 1 - - uid: 522 + pos: -123.5,-34.5 + parent: 2 + - uid: 1182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,395.5 - parent: 1 - - uid: 527 + pos: -26.5,-71.5 + parent: 2 + - uid: 1194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,412.5 - parent: 1 - - uid: 528 + pos: -47.5,-4.5 + parent: 2 + - uid: 1239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 329.5,373.5 - parent: 1 - - uid: 529 + pos: -20.5,-51.5 + parent: 2 + - uid: 1240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,433.5 - parent: 1 - - uid: 530 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 1249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,432.5 - parent: 1 - - uid: 531 + pos: -38.5,-37.5 + parent: 2 + - uid: 1259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 330.5,362.5 - parent: 1 - - uid: 533 + pos: -26.5,-51.5 + parent: 2 + - uid: 1260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,432.5 - parent: 1 - - uid: 534 + pos: -16.5,-52.5 + parent: 2 + - uid: 1262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,431.5 - parent: 1 - - uid: 535 + pos: -25.5,-51.5 + parent: 2 + - uid: 1264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,430.5 - parent: 1 - - uid: 538 + pos: -27.5,-47.5 + parent: 2 + - uid: 1267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,415.5 - parent: 1 - - uid: 539 + pos: -25.5,-47.5 + parent: 2 + - uid: 1269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,414.5 - parent: 1 - - uid: 540 + pos: -22.5,-47.5 + parent: 2 + - uid: 1270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,413.5 - parent: 1 - - uid: 541 + pos: -24.5,-48.5 + parent: 2 + - uid: 1274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,412.5 - parent: 1 - - uid: 543 + pos: -38.5,-36.5 + parent: 2 + - uid: 1280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,409.5 - parent: 1 - - uid: 544 + pos: -16.5,-48.5 + parent: 2 + - uid: 1281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,401.5 - parent: 1 - - uid: 545 + pos: -31.5,-34.5 + parent: 2 + - uid: 1283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,395.5 - parent: 1 - - uid: 546 + pos: -21.5,-47.5 + parent: 2 + - uid: 1285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,429.5 - parent: 1 - - uid: 547 + pos: -18.5,-47.5 + parent: 2 + - uid: 1293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,428.5 - parent: 1 - - uid: 550 + pos: -90.5,-74.5 + parent: 2 + - uid: 1294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,426.5 - parent: 1 - - uid: 551 + pos: -87.5,-73.5 + parent: 2 + - uid: 1298 components: - type: Transform - pos: 347.5,443.5 - parent: 1 - - uid: 552 + pos: -24.5,-55.5 + parent: 2 + - uid: 1301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,432.5 - parent: 1 - - uid: 553 + pos: -21.5,-55.5 + parent: 2 + - uid: 1302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,415.5 - parent: 1 - - uid: 555 + pos: -16.5,-51.5 + parent: 2 + - uid: 1306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,412.5 - parent: 1 - - uid: 556 + pos: -37.5,-34.5 + parent: 2 + - uid: 1307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,409.5 - parent: 1 - - uid: 557 + pos: -26.5,-55.5 + parent: 2 + - uid: 1308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,408.5 - parent: 1 - - uid: 561 + pos: -16.5,-54.5 + parent: 2 + - uid: 1309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,401.5 - parent: 1 - - uid: 563 + pos: -25.5,-55.5 + parent: 2 + - uid: 1310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,433.5 - parent: 1 - - uid: 564 + pos: -34.5,-10.5 + parent: 2 + - uid: 1316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,432.5 - parent: 1 - - uid: 566 + pos: -71.5,-10.5 + parent: 2 + - uid: 1319 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,395.5 - parent: 1 - - uid: 568 + pos: -46.5,-10.5 + parent: 2 + - uid: 1320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,393.5 - parent: 1 - - uid: 569 + pos: -45.5,-10.5 + parent: 2 + - uid: 1321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,392.5 - parent: 1 - - uid: 570 + pos: -44.5,-10.5 + parent: 2 + - uid: 1334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,391.5 - parent: 1 - - uid: 571 + pos: -85.5,-32.5 + parent: 2 + - uid: 1347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,390.5 - parent: 1 - - uid: 572 + pos: -18.5,-55.5 + parent: 2 + - uid: 1353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,389.5 - parent: 1 - - uid: 573 + pos: -27.5,-53.5 + parent: 2 + - uid: 1362 components: - type: Transform rot: -1.5707963267948966 rad - pos: 333.5,415.5 - parent: 1 - - uid: 578 + pos: -118.5,35.5 + parent: 2 + - uid: 1403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,438.5 - parent: 1 - - uid: 581 + pos: -37.5,-43.5 + parent: 2 + - uid: 1421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,414.5 - parent: 1 - - uid: 582 + pos: -130.5,12.5 + parent: 2 + - uid: 1426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,413.5 - parent: 1 - - uid: 583 + pos: -130.5,13.5 + parent: 2 + - uid: 1430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,412.5 - parent: 1 - - uid: 584 + pos: -127.5,8.5 + parent: 2 + - uid: 1432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,433.5 - parent: 1 - - uid: 587 + pos: -128.5,8.5 + parent: 2 + - uid: 1485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,432.5 - parent: 1 - - uid: 588 + pos: -31.5,-6.5 + parent: 2 + - uid: 1490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,431.5 - parent: 1 - - uid: 589 + pos: -36.5,-11.5 + parent: 2 + - uid: 1493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,430.5 - parent: 1 - - uid: 590 + pos: -31.5,-4.5 + parent: 2 + - uid: 1570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,401.5 - parent: 1 - - uid: 594 + pos: -35.5,-43.5 + parent: 2 + - uid: 1574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,429.5 - parent: 1 - - uid: 597 + pos: -38.5,-41.5 + parent: 2 + - uid: 1582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,428.5 - parent: 1 - - uid: 598 + pos: -43.5,-3.5 + parent: 2 + - uid: 1583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,426.5 - parent: 1 - - uid: 600 + pos: -42.5,-3.5 + parent: 2 + - uid: 1584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 335.5,432.5 - parent: 1 - - uid: 602 + pos: -45.5,-3.5 + parent: 2 + - uid: 1632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,432.5 - parent: 1 - - uid: 603 + pos: -96.5,-62.5 + parent: 2 + - uid: 1637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 336.5,413.5 - parent: 1 - - uid: 607 + pos: -149.5,-55.5 + parent: 2 + - uid: 1639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,412.5 - parent: 1 - - uid: 608 + pos: -123.5,-58.5 + parent: 2 + - uid: 1646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,359.5 - parent: 1 - - uid: 610 + pos: -101.5,-29.5 + parent: 2 + - uid: 1651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,432.5 - parent: 1 - - uid: 611 + pos: -98.5,-25.5 + parent: 2 + - uid: 1693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,431.5 - parent: 1 - - uid: 612 + pos: -99.5,-1.5 + parent: 2 + - uid: 1694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,430.5 - parent: 1 - - uid: 618 + pos: -137.5,9.5 + parent: 2 + - uid: 1704 components: - type: Transform - pos: 326.5,399.5 - parent: 1 - - uid: 623 + pos: -101.5,-21.5 + parent: 2 + - uid: 1708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,429.5 - parent: 1 - - uid: 624 + pos: -20.5,9.5 + parent: 2 + - uid: 1718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,428.5 - parent: 1 - - uid: 625 + pos: -98.5,-6.5 + parent: 2 + - uid: 1732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 337.5,426.5 - parent: 1 - - uid: 627 + pos: -94.5,-6.5 + parent: 2 + - uid: 1738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 338.5,432.5 - parent: 1 - - uid: 628 + pos: -94.5,1.5 + parent: 2 + - uid: 1744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,433.5 - parent: 1 - - uid: 629 + pos: -138.5,27.5 + parent: 2 + - uid: 1765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,432.5 - parent: 1 - - uid: 630 + pos: -97.5,1.5 + parent: 2 + - uid: 1801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,413.5 - parent: 1 - - uid: 636 + pos: -91.5,0.5 + parent: 2 + - uid: 1804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,385.5 - parent: 1 - - uid: 637 + pos: -91.5,-2.5 + parent: 2 + - uid: 1827 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,384.5 - parent: 1 - - uid: 640 + pos: -85.5,-35.5 + parent: 2 + - uid: 1897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,381.5 - parent: 1 - - uid: 641 + pos: -111.5,-42.5 + parent: 2 + - uid: 1910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,380.5 - parent: 1 - - uid: 643 + pos: -107.5,-41.5 + parent: 2 + - uid: 1912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,378.5 - parent: 1 - - uid: 647 + pos: -85.5,-30.5 + parent: 2 + - uid: 1915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,412.5 - parent: 1 - - uid: 649 + pos: -93.5,-46.5 + parent: 2 + - uid: 1920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,432.5 - parent: 1 - - uid: 650 + pos: -107.5,-47.5 + parent: 2 + - uid: 1926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,431.5 - parent: 1 - - uid: 651 + pos: -107.5,-40.5 + parent: 2 + - uid: 1927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,430.5 - parent: 1 - - uid: 652 + pos: -107.5,-39.5 + parent: 2 + - uid: 1929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,429.5 - parent: 1 - - uid: 653 + pos: -111.5,-43.5 + parent: 2 + - uid: 1934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,428.5 - parent: 1 - - uid: 666 + pos: -107.5,-42.5 + parent: 2 + - uid: 1940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,426.5 - parent: 1 - - uid: 667 + pos: -77.5,-49.5 + parent: 2 + - uid: 1941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,377.5 - parent: 1 - - uid: 669 + pos: -77.5,-48.5 + parent: 2 + - uid: 1961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,432.5 - parent: 1 - - uid: 678 + pos: -110.5,-43.5 + parent: 2 + - uid: 2023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,358.5 - parent: 1 - - uid: 680 + pos: -85.5,-22.5 + parent: 2 + - uid: 2067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,432.5 - parent: 1 - - uid: 681 + pos: -86.5,-19.5 + parent: 2 + - uid: 2080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,413.5 - parent: 1 - - uid: 685 + pos: -123.5,-25.5 + parent: 2 + - uid: 2108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,412.5 - parent: 1 - - uid: 698 + pos: -89.5,-19.5 + parent: 2 + - uid: 2125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,432.5 - parent: 1 - - uid: 702 + pos: -79.5,-30.5 + parent: 2 + - uid: 2134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,431.5 - parent: 1 - - uid: 703 + pos: -106.5,-47.5 + parent: 2 + - uid: 2160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,430.5 - parent: 1 - - uid: 704 + pos: -111.5,-47.5 + parent: 2 + - uid: 2166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,429.5 - parent: 1 - - uid: 705 + pos: -108.5,-43.5 + parent: 2 + - uid: 2176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,428.5 - parent: 1 - - uid: 706 + pos: -118.5,-36.5 + parent: 2 + - uid: 2188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,426.5 - parent: 1 - - uid: 707 + pos: -111.5,-38.5 + parent: 2 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,412.5 - parent: 1 - - uid: 708 + pos: -111.5,-41.5 + parent: 2 + - uid: 2191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,433.5 - parent: 1 - - uid: 716 + pos: -111.5,-40.5 + parent: 2 + - uid: 2198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 344.5,432.5 - parent: 1 - - uid: 718 + pos: -131.5,-49.5 + parent: 2 + - uid: 2201 components: - type: Transform - pos: 323.5,399.5 - parent: 1 - - uid: 731 + pos: -132.5,-49.5 + parent: 2 + - uid: 2202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,378.5 - parent: 1 - - uid: 733 + pos: -131.5,-48.5 + parent: 2 + - uid: 2203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,433.5 - parent: 1 - - uid: 734 + pos: -136.5,-49.5 + parent: 2 + - uid: 2204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,432.5 - parent: 1 - - uid: 735 + pos: -131.5,-53.5 + parent: 2 + - uid: 2213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,417.5 - parent: 1 - - uid: 736 + pos: -111.5,-48.5 + parent: 2 + - uid: 2214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,416.5 - parent: 1 - - uid: 746 + pos: -111.5,-49.5 + parent: 2 + - uid: 2215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,438.5 - parent: 1 - - uid: 747 + pos: -111.5,-52.5 + parent: 2 + - uid: 2216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,414.5 - parent: 1 - - uid: 748 + pos: -111.5,-50.5 + parent: 2 + - uid: 2226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,413.5 - parent: 1 - - uid: 749 + pos: -111.5,-53.5 + parent: 2 + - uid: 2227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,412.5 - parent: 1 - - uid: 750 + pos: -111.5,-51.5 + parent: 2 + - uid: 2228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 345.5,361.5 - parent: 1 - - uid: 753 + pos: -123.5,-54.5 + parent: 2 + - uid: 2229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,432.5 - parent: 1 - - uid: 760 + pos: -118.5,-54.5 + parent: 2 + - uid: 2231 components: - type: Transform - pos: 315.5,420.5 - parent: 1 - - uid: 762 + pos: -122.5,-54.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: -117.5,-54.5 + parent: 2 + - uid: 2240 components: - type: Transform - pos: 315.5,424.5 - parent: 1 - - uid: 763 + pos: -116.5,-54.5 + parent: 2 + - uid: 2243 components: - type: Transform - pos: 316.5,420.5 - parent: 1 - - uid: 764 + pos: -112.5,-54.5 + parent: 2 + - uid: 2244 components: - type: Transform - pos: 317.5,420.5 - parent: 1 - - uid: 765 + pos: -111.5,-54.5 + parent: 2 + - uid: 2251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,381.5 - parent: 1 - - uid: 766 + pos: -123.5,-55.5 + parent: 2 + - uid: 2264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,380.5 - parent: 1 - - uid: 767 + pos: -137.5,-49.5 + parent: 2 + - uid: 2268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,379.5 - parent: 1 - - uid: 768 + pos: -136.5,-37.5 + parent: 2 + - uid: 2272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,378.5 - parent: 1 - - uid: 773 + pos: -132.5,-53.5 + parent: 2 + - uid: 2273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,431.5 - parent: 1 - - uid: 774 + pos: -131.5,-42.5 + parent: 2 + - uid: 2277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,430.5 - parent: 1 - - uid: 775 + pos: -136.5,-53.5 + parent: 2 + - uid: 2278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,429.5 - parent: 1 - - uid: 776 + pos: -137.5,-53.5 + parent: 2 + - uid: 2283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,428.5 - parent: 1 - - uid: 777 + pos: -137.5,-48.5 + parent: 2 + - uid: 2284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,426.5 - parent: 1 - - uid: 778 + pos: -137.5,-47.5 + parent: 2 + - uid: 2288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,417.5 - parent: 1 - - uid: 779 + pos: -137.5,-42.5 + parent: 2 + - uid: 2289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,413.5 - parent: 1 - - uid: 789 + pos: -137.5,-41.5 + parent: 2 + - uid: 2298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,381.5 - parent: 1 - - uid: 790 + pos: -131.5,-37.5 + parent: 2 + - uid: 2307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 346.5,373.5 - parent: 1 - - uid: 793 + pos: -137.5,-37.5 + parent: 2 + - uid: 2320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,432.5 - parent: 1 - - uid: 794 + pos: -132.5,-37.5 + parent: 2 + - uid: 2323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,431.5 - parent: 1 - - uid: 795 + pos: -131.5,-35.5 + parent: 2 + - uid: 2326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,430.5 - parent: 1 - - uid: 807 + pos: -131.5,-34.5 + parent: 2 + - uid: 2327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,429.5 - parent: 1 - - uid: 808 + pos: -130.5,-34.5 + parent: 2 + - uid: 2328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 342.5,438.5 - parent: 1 - - uid: 810 + pos: -131.5,-36.5 + parent: 2 + - uid: 2330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,428.5 - parent: 1 - - uid: 811 + pos: -137.5,-43.5 + parent: 2 + - uid: 2336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 347.5,426.5 - parent: 1 - - uid: 813 + pos: -137.5,-50.5 + parent: 2 + - uid: 2337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,432.5 - parent: 1 - - uid: 817 + pos: -137.5,-51.5 + parent: 2 + - uid: 2339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 348.5,413.5 - parent: 1 - - uid: 830 + pos: -131.5,-50.5 + parent: 2 + - uid: 2340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,432.5 - parent: 1 - - uid: 831 + pos: -131.5,-52.5 + parent: 2 + - uid: 2341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,417.5 - parent: 1 - - uid: 832 + pos: -131.5,-51.5 + parent: 2 + - uid: 2364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,386.5 - parent: 1 - - uid: 833 + pos: -88.5,-19.5 + parent: 2 + - uid: 2369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,385.5 - parent: 1 - - uid: 834 + pos: -130.5,-19.5 + parent: 2 + - uid: 2387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 349.5,384.5 - parent: 1 - - uid: 836 + rot: 1.5707963267948966 rad + pos: -129.5,-31.5 + parent: 2 + - uid: 2397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,433.5 - parent: 1 - - uid: 837 + rot: 1.5707963267948966 rad + pos: -128.5,-31.5 + parent: 2 + - uid: 2398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,432.5 - parent: 1 - - uid: 850 + rot: 1.5707963267948966 rad + pos: -126.5,-31.5 + parent: 2 + - uid: 2399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,391.5 - parent: 1 - - uid: 851 + pos: -131.5,-31.5 + parent: 2 + - uid: 2401 components: - type: Transform rot: 1.5707963267948966 rad - pos: 339.5,390.5 - parent: 1 - - uid: 854 + pos: -123.5,-31.5 + parent: 2 + - uid: 2402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,439.5 - parent: 1 - - uid: 855 + rot: 1.5707963267948966 rad + pos: -127.5,-31.5 + parent: 2 + - uid: 2417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,439.5 - parent: 1 - - uid: 856 + rot: -1.5707963267948966 rad + pos: -149.5,-54.5 + parent: 2 + - uid: 2473 components: - type: Transform rot: -1.5707963267948966 rad - pos: 350.5,420.5 - parent: 1 - - uid: 857 + pos: -152.5,-48.5 + parent: 2 + - uid: 2481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,419.5 - parent: 1 - - uid: 858 + pos: -127.5,-55.5 + parent: 2 + - uid: 2506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,417.5 - parent: 1 - - uid: 859 + pos: -100.5,-36.5 + parent: 2 + - uid: 2509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,386.5 - parent: 1 - - uid: 860 + pos: -98.5,-18.5 + parent: 2 + - uid: 2520 components: - type: Transform - pos: 300.5,378.5 - parent: 1 - - uid: 867 + pos: -89.5,-16.5 + parent: 2 + - uid: 2669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,389.5 - parent: 1 - - uid: 868 + pos: -122.5,-13.5 + parent: 2 + - uid: 2848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,388.5 - parent: 1 - - uid: 869 + pos: -45.5,-1.5 + parent: 2 + - uid: 2849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 344.5,382.5 - parent: 1 - - uid: 874 + pos: -42.5,-0.5 + parent: 2 + - uid: 2850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,366.5 - parent: 1 - - uid: 876 + pos: -45.5,-0.5 + parent: 2 + - uid: 2851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,432.5 - parent: 1 - - uid: 877 + pos: -46.5,-1.5 + parent: 2 + - uid: 2863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,431.5 - parent: 1 - - uid: 878 + pos: -82.5,16.5 + parent: 2 + - uid: 2887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,429.5 - parent: 1 - - uid: 879 + pos: -41.5,2.5 + parent: 2 + - uid: 2903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,428.5 - parent: 1 - - uid: 880 + pos: -46.5,-7.5 + parent: 2 + - uid: 2935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,426.5 - parent: 1 - - uid: 881 + pos: -49.5,-3.5 + parent: 2 + - uid: 2952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,420.5 - parent: 1 - - uid: 882 + pos: -48.5,-3.5 + parent: 2 + - uid: 2956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,417.5 - parent: 1 - - uid: 883 + pos: -50.5,-3.5 + parent: 2 + - uid: 2977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,413.5 - parent: 1 - - uid: 891 + pos: -54.5,-4.5 + parent: 2 + - uid: 2996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,387.5 - parent: 1 - - uid: 893 + pos: -48.5,-10.5 + parent: 2 + - uid: 3003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,386.5 - parent: 1 - - uid: 894 + pos: -53.5,-2.5 + parent: 2 + - uid: 3175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 339.5,385.5 - parent: 1 - - uid: 895 + pos: -110.5,-47.5 + parent: 2 + - uid: 3327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 345.5,382.5 - parent: 1 - - uid: 896 + pos: -66.5,-68.5 + parent: 2 + - uid: 3329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 351.5,386.5 - parent: 1 - - uid: 900 + pos: -67.5,-68.5 + parent: 2 + - uid: 3330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,431.5 - parent: 1 - - uid: 901 + pos: -68.5,-68.5 + parent: 2 + - uid: 3738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,426.5 - parent: 1 - - uid: 902 + pos: -121.5,-36.5 + parent: 2 + - uid: 3770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,423.5 - parent: 1 - - uid: 903 + pos: -12.5,4.5 + parent: 2 + - uid: 4220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,420.5 - parent: 1 - - uid: 904 + pos: -93.5,-16.5 + parent: 2 + - uid: 4226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,418.5 - parent: 1 - - uid: 905 + pos: -83.5,16.5 + parent: 2 + - uid: 4235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,417.5 - parent: 1 - - uid: 906 + pos: -83.5,22.5 + parent: 2 + - uid: 4236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,416.5 - parent: 1 - - uid: 919 + pos: -82.5,22.5 + parent: 2 + - uid: 4237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,415.5 - parent: 1 - - uid: 921 + pos: -81.5,22.5 + parent: 2 + - uid: 4242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,414.5 - parent: 1 - - uid: 922 + pos: -81.5,16.5 + parent: 2 + - uid: 4312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,413.5 - parent: 1 - - uid: 923 + pos: -36.5,-0.5 + parent: 2 + - uid: 4316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,386.5 - parent: 1 - - uid: 924 + pos: -34.5,-0.5 + parent: 2 + - uid: 4323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,385.5 - parent: 1 - - uid: 925 + rot: 1.5707963267948966 rad + pos: -109.5,-51.5 + parent: 2 + - uid: 4373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,383.5 - parent: 1 - - uid: 926 + rot: 1.5707963267948966 rad + pos: -110.5,-51.5 + parent: 2 + - uid: 4417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 352.5,382.5 - parent: 1 - - uid: 927 + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - uid: 4436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,431.5 - parent: 1 - - uid: 928 + rot: 1.5707963267948966 rad + pos: -54.5,-77.5 + parent: 2 + - uid: 4524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,430.5 - parent: 1 - - uid: 936 + pos: -88.5,-0.5 + parent: 2 + - uid: 4679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,429.5 - parent: 1 - - uid: 937 + pos: -130.5,7.5 + parent: 2 + - uid: 4680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,428.5 - parent: 1 - - uid: 938 + pos: -130.5,8.5 + parent: 2 + - uid: 4681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,418.5 - parent: 1 - - uid: 939 + pos: -130.5,9.5 + parent: 2 + - uid: 4694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,386.5 - parent: 1 - - uid: 940 + pos: -84.5,32.5 + parent: 2 + - uid: 4706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 353.5,382.5 - parent: 1 - - uid: 941 + pos: -85.5,32.5 + parent: 2 + - uid: 4754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,428.5 - parent: 1 - - uid: 946 + pos: -78.5,-28.5 + parent: 2 + - uid: 4757 components: - type: Transform - pos: 324.5,401.5 - parent: 1 - - uid: 953 + pos: -77.5,-28.5 + parent: 2 + - uid: 4758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 346.5,439.5 - parent: 1 - - uid: 954 + pos: -130.5,6.5 + parent: 2 + - uid: 4760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,427.5 - parent: 1 - - uid: 955 + pos: -130.5,10.5 + parent: 2 + - uid: 4801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,426.5 - parent: 1 - - uid: 956 + pos: -78.5,4.5 + parent: 2 + - uid: 4813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,425.5 - parent: 1 - - uid: 957 + pos: -130.5,5.5 + parent: 2 + - uid: 4823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,424.5 - parent: 1 - - uid: 958 + pos: -108.5,-47.5 + parent: 2 + - uid: 4824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,423.5 - parent: 1 - - uid: 959 + pos: -107.5,-48.5 + parent: 2 + - uid: 4825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,422.5 - parent: 1 - - uid: 967 + pos: -89.5,-50.5 + parent: 2 + - uid: 4845 components: - type: Transform - pos: 337.5,393.5 - parent: 1 - - uid: 968 + pos: -134.5,-49.5 + parent: 2 + - uid: 4847 components: - type: Transform - pos: 337.5,392.5 - parent: 1 - - uid: 969 + pos: -133.5,-49.5 + parent: 2 + - uid: 4925 components: - type: Transform - pos: 337.5,391.5 - parent: 1 - - uid: 970 + rot: 1.5707963267948966 rad + pos: -109.5,-39.5 + parent: 2 + - uid: 4931 components: - type: Transform - pos: 338.5,391.5 - parent: 1 - - uid: 971 + pos: -135.5,-42.5 + parent: 2 + - uid: 4993 components: - type: Transform - pos: 349.5,394.5 - parent: 1 - - uid: 972 + pos: -136.5,-42.5 + parent: 2 + - uid: 4994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,421.5 - parent: 1 - - uid: 973 + pos: -132.5,-42.5 + parent: 2 + - uid: 4995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,420.5 - parent: 1 - - uid: 975 + pos: -133.5,-42.5 + parent: 2 + - uid: 5085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,418.5 - parent: 1 - - uid: 976 + pos: -134.5,27.5 + parent: 2 + - uid: 5086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 349.5,382.5 - parent: 1 - - uid: 979 + pos: -134.5,28.5 + parent: 2 + - uid: 5087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,386.5 - parent: 1 - - uid: 980 + pos: -134.5,29.5 + parent: 2 + - uid: 5088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,382.5 - parent: 1 - - uid: 981 + pos: -134.5,30.5 + parent: 2 + - uid: 5089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 354.5,380.5 - parent: 1 - - uid: 982 + pos: -132.5,30.5 + parent: 2 + - uid: 5090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 355.5,378.5 - parent: 1 - - uid: 983 + pos: -131.5,30.5 + parent: 2 + - uid: 5091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,378.5 - parent: 1 - - uid: 984 + pos: -130.5,30.5 + parent: 2 + - uid: 5092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,386.5 - parent: 1 - - uid: 985 + pos: -133.5,30.5 + parent: 2 + - uid: 5216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,385.5 - parent: 1 - - uid: 986 + pos: -134.5,-42.5 + parent: 2 + - uid: 5395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 350.5,382.5 - parent: 1 - - uid: 990 + pos: -135.5,-9.5 + parent: 2 + - uid: 5415 components: - type: Transform - pos: 349.5,393.5 - parent: 1 - - uid: 991 + pos: -124.5,0.5 + parent: 2 + - uid: 5416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,379.5 - parent: 1 - - uid: 992 + pos: -132.5,-9.5 + parent: 2 + - uid: 5424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,384.5 - parent: 1 - - uid: 994 + pos: -132.5,5.5 + parent: 2 + - uid: 5428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,383.5 - parent: 1 - - uid: 1000 + pos: -132.5,8.5 + parent: 2 + - uid: 5431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,382.5 - parent: 1 - - uid: 1001 + pos: -132.5,12.5 + parent: 2 + - uid: 5452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,379.5 - parent: 1 - - uid: 1002 + pos: -128.5,0.5 + parent: 2 + - uid: 5456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 357.5,378.5 - parent: 1 - - uid: 1003 + pos: -130.5,4.5 + parent: 2 + - uid: 5459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,423.5 - parent: 1 - - uid: 1004 + pos: -127.5,2.5 + parent: 2 + - uid: 5466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,422.5 - parent: 1 - - uid: 1005 + pos: -130.5,3.5 + parent: 2 + - uid: 5473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,421.5 - parent: 1 - - uid: 1008 + pos: -130.5,1.5 + parent: 2 + - uid: 5475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,419.5 - parent: 1 - - uid: 1015 + pos: -127.5,4.5 + parent: 2 + - uid: 5476 components: - type: Transform - pos: 349.5,392.5 - parent: 1 - - uid: 1016 + pos: -129.5,4.5 + parent: 2 + - uid: 5481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,423.5 - parent: 1 - - uid: 1018 + pos: -128.5,4.5 + parent: 2 + - uid: 5482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,380.5 - parent: 1 - - uid: 1019 + pos: -129.5,2.5 + parent: 2 + - uid: 5485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,379.5 - parent: 1 - - uid: 1020 + pos: -126.5,4.5 + parent: 2 + - uid: 5486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,439.5 - parent: 1 - - uid: 1021 + pos: -130.5,2.5 + parent: 2 + - uid: 5493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 352.5,379.5 - parent: 1 - - uid: 1023 + pos: -129.5,0.5 + parent: 2 + - uid: 5494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 361.5,419.5 - parent: 1 - - uid: 1024 + pos: -126.5,0.5 + parent: 2 + - uid: 5495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,423.5 - parent: 1 - - uid: 1025 + pos: -128.5,2.5 + parent: 2 + - uid: 5496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,419.5 - parent: 1 - - uid: 1026 + pos: -127.5,0.5 + parent: 2 + - uid: 5497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,418.5 - parent: 1 - - uid: 1027 + pos: -130.5,0.5 + parent: 2 + - uid: 5503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,417.5 - parent: 1 - - uid: 1028 + pos: -126.5,2.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -129.5,6.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -128.5,6.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -118.5,18.5 + parent: 2 + - uid: 5543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,415.5 - parent: 1 - - uid: 1029 + pos: -120.5,18.5 + parent: 2 + - uid: 5562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,414.5 - parent: 1 - - uid: 1030 + pos: -118.5,-1.5 + parent: 2 + - uid: 5625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,413.5 - parent: 1 - - uid: 1031 + pos: -88.5,-64.5 + parent: 2 + - uid: 5631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,412.5 - parent: 1 - - uid: 1033 + pos: -126.5,10.5 + parent: 2 + - uid: 5653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,410.5 - parent: 1 - - uid: 1034 + pos: -128.5,16.5 + parent: 2 + - uid: 5672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,408.5 - parent: 1 - - uid: 1035 + pos: -139.5,-0.5 + parent: 2 + - uid: 5673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,407.5 - parent: 1 - - uid: 1036 + pos: -135.5,1.5 + parent: 2 + - uid: 5690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,406.5 - parent: 1 - - uid: 1037 + pos: -106.5,-64.5 + parent: 2 + - uid: 5760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 362.5,405.5 - parent: 1 - - uid: 1038 + pos: -108.5,-22.5 + parent: 2 + - uid: 5765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,423.5 - parent: 1 - - uid: 1043 + pos: -103.5,-62.5 + parent: 2 + - uid: 5783 components: - type: Transform - pos: 349.5,391.5 - parent: 1 - - uid: 1049 + pos: -108.5,-20.5 + parent: 2 + - uid: 5789 components: - type: Transform - pos: 349.5,390.5 - parent: 1 - - uid: 1051 + pos: -130.5,11.5 + parent: 2 + - uid: 5872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,415.5 - parent: 1 - - uid: 1052 + pos: -129.5,8.5 + parent: 2 + - uid: 5923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,405.5 - parent: 1 - - uid: 1053 + pos: -149.5,0.5 + parent: 2 + - uid: 5924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,399.5 - parent: 1 - - uid: 1054 + pos: -149.5,1.5 + parent: 2 + - uid: 5925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,398.5 - parent: 1 - - uid: 1055 + pos: -149.5,3.5 + parent: 2 + - uid: 5926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,439.5 - parent: 1 - - uid: 1056 + pos: -149.5,4.5 + parent: 2 + - uid: 5927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 353.5,379.5 - parent: 1 - - uid: 1057 + pos: -149.5,2.5 + parent: 2 + - uid: 5928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,396.5 - parent: 1 - - uid: 1058 + pos: -148.5,4.5 + parent: 2 + - uid: 5929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,395.5 - parent: 1 - - uid: 1059 + pos: -145.5,4.5 + parent: 2 + - uid: 5930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,394.5 - parent: 1 - - uid: 1060 + pos: -146.5,4.5 + parent: 2 + - uid: 5931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,423.5 - parent: 1 - - uid: 1061 + pos: -145.5,3.5 + parent: 2 + - uid: 5932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,422.5 - parent: 1 - - uid: 1064 + pos: -145.5,2.5 + parent: 2 + - uid: 5933 components: - type: Transform - pos: 350.5,394.5 - parent: 1 - - uid: 1068 + pos: -145.5,1.5 + parent: 2 + - uid: 5934 components: - type: Transform - pos: 351.5,394.5 - parent: 1 - - uid: 1071 + pos: -145.5,0.5 + parent: 2 + - uid: 6006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,420.5 - parent: 1 - - uid: 1072 + pos: -142.5,-2.5 + parent: 2 + - uid: 6009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,419.5 - parent: 1 - - uid: 1074 + pos: -129.5,16.5 + parent: 2 + - uid: 6108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,379.5 - parent: 1 - - uid: 1076 + pos: -39.5,-70.5 + parent: 2 + - uid: 6115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,418.5 - parent: 1 - - uid: 1077 + pos: -37.5,-70.5 + parent: 2 + - uid: 6117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,415.5 - parent: 1 - - uid: 1078 + pos: -86.5,-43.5 + parent: 2 + - uid: 6262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,405.5 - parent: 1 - - uid: 1079 + pos: -130.5,-14.5 + parent: 2 + - uid: 6263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,399.5 - parent: 1 - - uid: 1080 + pos: -128.5,-15.5 + parent: 2 + - uid: 6264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,394.5 - parent: 1 - - uid: 1081 + pos: -131.5,-14.5 + parent: 2 + - uid: 6268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,393.5 - parent: 1 - - uid: 1082 + pos: -121.5,-14.5 + parent: 2 + - uid: 6309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 364.5,392.5 - parent: 1 - - uid: 1083 + pos: -124.5,-13.5 + parent: 2 + - uid: 6519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,418.5 - parent: 1 - - uid: 1084 + pos: -82.5,-51.5 + parent: 2 + - uid: 6527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,415.5 - parent: 1 - - uid: 1085 + pos: -75.5,-29.5 + parent: 2 + - uid: 6529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,412.5 - parent: 1 - - uid: 1086 + pos: -75.5,-31.5 + parent: 2 + - uid: 6531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,405.5 - parent: 1 - - uid: 1095 + pos: -79.5,-35.5 + parent: 2 + - uid: 6532 components: - type: Transform - pos: 373.5,392.5 - parent: 1 - - uid: 1096 + pos: -79.5,-29.5 + parent: 2 + - uid: 6539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 365.5,392.5 - parent: 1 - - uid: 1097 + pos: -79.5,-25.5 + parent: 2 + - uid: 6552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,418.5 - parent: 1 - - uid: 1098 + pos: -88.5,-40.5 + parent: 2 + - uid: 6556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,415.5 - parent: 1 - - uid: 1099 + pos: -97.5,-42.5 + parent: 2 + - uid: 6565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,378.5 - parent: 1 - - uid: 1100 + pos: -95.5,-46.5 + parent: 2 + - uid: 6567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,375.5 - parent: 1 - - uid: 1101 + pos: -87.5,-51.5 + parent: 2 + - uid: 6571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,414.5 - parent: 1 - - uid: 1103 + pos: -79.5,-47.5 + parent: 2 + - uid: 6574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 355.5,375.5 - parent: 1 - - uid: 1111 + pos: -91.5,-51.5 + parent: 2 + - uid: 6583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,391.5 - parent: 1 - - uid: 1112 + pos: -76.5,-28.5 + parent: 2 + - uid: 6635 components: - type: Transform - pos: 373.5,393.5 - parent: 1 - - uid: 1113 + pos: -86.5,-36.5 + parent: 2 + - uid: 6638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,412.5 - parent: 1 - - uid: 1114 + pos: -85.5,-20.5 + parent: 2 + - uid: 6651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,411.5 - parent: 1 - - uid: 1117 + pos: -6.5,-35.5 + parent: 2 + - uid: 6703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,437.5 - parent: 1 - - uid: 1120 + rot: -1.5707963267948966 rad + pos: -152.5,-42.5 + parent: 2 + - uid: 6753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,434.5 - parent: 1 - - uid: 1121 + pos: -79.5,-18.5 + parent: 2 + - uid: 6828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,433.5 - parent: 1 - - uid: 1122 + pos: -94.5,-37.5 + parent: 2 + - uid: 6836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 356.5,375.5 - parent: 1 - - uid: 1132 + pos: -127.5,10.5 + parent: 2 + - uid: 6843 components: - type: Transform - pos: 332.5,401.5 - parent: 1 - - uid: 1141 + pos: -79.5,-39.5 + parent: 2 + - uid: 6914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,409.5 - parent: 1 - - uid: 1142 + pos: -79.5,-21.5 + parent: 2 + - uid: 6921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,406.5 - parent: 1 - - uid: 1143 + pos: -93.5,-40.5 + parent: 2 + - uid: 6952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 366.5,405.5 - parent: 1 - - uid: 1144 + pos: -75.5,-32.5 + parent: 2 + - uid: 6971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,415.5 - parent: 1 - - uid: 1146 + pos: -81.5,-36.5 + parent: 2 + - uid: 6973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 357.5,375.5 - parent: 1 - - uid: 1158 + pos: -77.5,-34.5 + parent: 2 + - uid: 6975 components: - type: Transform - pos: 352.5,394.5 - parent: 1 - - uid: 1162 + pos: -79.5,-34.5 + parent: 2 + - uid: 6990 components: - type: Transform - pos: 353.5,394.5 - parent: 1 - - uid: 1166 + pos: -107.5,-50.5 + parent: 2 + - uid: 6991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,412.5 - parent: 1 - - uid: 1167 + pos: -107.5,-49.5 + parent: 2 + - uid: 7007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 367.5,405.5 - parent: 1 - - uid: 1168 + pos: -107.5,-51.5 + parent: 2 + - uid: 7024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,418.5 - parent: 1 - - uid: 1169 + pos: -79.5,-43.5 + parent: 2 + - uid: 7026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,415.5 - parent: 1 - - uid: 1170 + pos: -77.5,-44.5 + parent: 2 + - uid: 7045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,414.5 - parent: 1 - - uid: 1171 + pos: -77.5,-40.5 + parent: 2 + - uid: 7081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,413.5 - parent: 1 - - uid: 1172 + pos: -82.5,-18.5 + parent: 2 + - uid: 7083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,412.5 - parent: 1 - - uid: 1173 + pos: -79.5,-31.5 + parent: 2 + - uid: 7086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 368.5,405.5 - parent: 1 - - uid: 1174 + pos: -97.5,-20.5 + parent: 2 + - uid: 7108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,433.5 - parent: 1 - - uid: 1175 + pos: -101.5,-41.5 + parent: 2 + - uid: 7125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,432.5 - parent: 1 - - uid: 1191 + pos: -36.5,11.5 + parent: 2 + - uid: 7130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,429.5 - parent: 1 - - uid: 1196 + pos: -38.5,13.5 + parent: 2 + - uid: 7132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 359.5,426.5 - parent: 1 - - uid: 1206 + pos: -17.5,13.5 + parent: 2 + - uid: 7133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,418.5 - parent: 1 - - uid: 1207 + pos: -39.5,18.5 + parent: 2 + - uid: 7142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,415.5 - parent: 1 - - uid: 1208 + pos: -9.5,-5.5 + parent: 2 + - uid: 7143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,429.5 - parent: 1 - - uid: 1210 + pos: -12.5,-24.5 + parent: 2 + - uid: 7152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,375.5 - parent: 1 - - uid: 1211 + pos: -20.5,-57.5 + parent: 2 + - uid: 7153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,412.5 - parent: 1 - - uid: 1212 + pos: 2.5,-7.5 + parent: 2 + - uid: 7160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,405.5 - parent: 1 - - uid: 1213 + pos: 2.5,-17.5 + parent: 2 + - uid: 7162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 369.5,392.5 - parent: 1 - - uid: 1214 + pos: -39.5,13.5 + parent: 2 + - uid: 7177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,421.5 - parent: 1 - - uid: 1215 + pos: -11.5,-21.5 + parent: 2 + - uid: 7194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,420.5 - parent: 1 - - uid: 1218 + pos: -36.5,20.5 + parent: 2 + - uid: 7223 components: - type: Transform - pos: 329.5,400.5 - parent: 1 - - uid: 1219 + pos: -7.5,-21.5 + parent: 2 + - uid: 7225 components: - type: Transform - pos: 329.5,396.5 - parent: 1 - - uid: 1220 + pos: -19.5,-67.5 + parent: 2 + - uid: 7230 components: - type: Transform - pos: 330.5,394.5 - parent: 1 - - uid: 1223 + pos: -13.5,-8.5 + parent: 2 + - uid: 7265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,419.5 - parent: 1 - - uid: 1231 + pos: -40.5,-74.5 + parent: 2 + - uid: 7360 components: - type: Transform - pos: 368.5,377.5 - parent: 1 - - uid: 1232 + rot: 1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 + - uid: 7365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,432.5 - parent: 1 - - uid: 1233 + pos: -137.5,-38.5 + parent: 2 + - uid: 7425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,431.5 - parent: 1 - - uid: 1234 + pos: -40.5,-75.5 + parent: 2 + - uid: 7426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,430.5 - parent: 1 - - uid: 1235 + pos: -40.5,-71.5 + parent: 2 + - uid: 7470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,429.5 - parent: 1 - - uid: 1236 + rot: -1.5707963267948966 rad + pos: -133.5,-59.5 + parent: 2 + - uid: 7510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,426.5 - parent: 1 - - uid: 1237 + rot: 1.5707963267948966 rad + pos: -143.5,-49.5 + parent: 2 + - uid: 7515 components: - type: Transform - pos: 331.5,394.5 - parent: 1 - - uid: 1238 + rot: 1.5707963267948966 rad + pos: -140.5,-52.5 + parent: 2 + - uid: 7519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,418.5 - parent: 1 - - uid: 1239 + rot: 1.5707963267948966 rad + pos: -140.5,-50.5 + parent: 2 + - uid: 7520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,415.5 - parent: 1 - - uid: 1240 + rot: 1.5707963267948966 rad + pos: -143.5,-50.5 + parent: 2 + - uid: 7522 components: - type: Transform - pos: 353.5,390.5 - parent: 1 - - uid: 1242 + rot: 1.5707963267948966 rad + pos: -143.5,-51.5 + parent: 2 + - uid: 7523 components: - type: Transform - pos: 332.5,394.5 - parent: 1 - - uid: 1243 + rot: 1.5707963267948966 rad + pos: -143.5,-52.5 + parent: 2 + - uid: 7524 components: - type: Transform - pos: 333.5,394.5 - parent: 1 - - uid: 1246 + rot: 1.5707963267948966 rad + pos: -140.5,-51.5 + parent: 2 + - uid: 7528 components: - type: Transform - pos: 334.5,394.5 - parent: 1 - - uid: 1247 + rot: 1.5707963267948966 rad + pos: -135.5,-32.5 + parent: 2 + - uid: 7546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,381.5 - parent: 1 - - uid: 1248 + pos: -36.5,-72.5 + parent: 2 + - uid: 7551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 335.5,381.5 - parent: 1 - - uid: 1249 + pos: -138.5,-34.5 + parent: 2 + - uid: 7552 components: - type: Transform - pos: 336.5,401.5 - parent: 1 - - uid: 1250 + rot: 1.5707963267948966 rad + pos: -140.5,-35.5 + parent: 2 + - uid: 7557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,378.5 - parent: 1 - - uid: 1251 + rot: 1.5707963267948966 rad + pos: -139.5,-34.5 + parent: 2 + - uid: 7558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,376.5 - parent: 1 - - uid: 1252 + rot: 1.5707963267948966 rad + pos: -139.5,-35.5 + parent: 2 + - uid: 7565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,414.5 - parent: 1 - - uid: 1253 + rot: 1.5707963267948966 rad + pos: -142.5,-53.5 + parent: 2 + - uid: 7569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,375.5 - parent: 1 - - uid: 1254 + rot: 1.5707963267948966 rad + pos: -139.5,-55.5 + parent: 2 + - uid: 7623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,426.5 - parent: 1 - - uid: 1257 + rot: 1.5707963267948966 rad + pos: -140.5,-55.5 + parent: 2 + - uid: 7624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 362.5,379.5 - parent: 1 - - uid: 1258 + rot: 1.5707963267948966 rad + pos: -142.5,-49.5 + parent: 2 + - uid: 7646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,413.5 - parent: 1 - - uid: 1259 + pos: -137.5,-52.5 + parent: 2 + - uid: 7679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,412.5 - parent: 1 - - uid: 1260 + rot: 1.5707963267948966 rad + pos: -140.5,-53.5 + parent: 2 + - uid: 7700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,411.5 - parent: 1 - - uid: 1261 + rot: 1.5707963267948966 rad + pos: -143.5,-53.5 + parent: 2 + - uid: 7790 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,409.5 - parent: 1 - - uid: 1262 + pos: -133.5,-37.5 + parent: 2 + - uid: 7819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,408.5 - parent: 1 - - uid: 1263 + rot: 1.5707963267948966 rad + pos: -137.5,-46.5 + parent: 2 + - uid: 7822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,407.5 - parent: 1 - - uid: 1264 + rot: 1.5707963267948966 rad + pos: -137.5,-44.5 + parent: 2 + - uid: 7823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,406.5 - parent: 1 - - uid: 1265 + rot: 1.5707963267948966 rad + pos: -137.5,-45.5 + parent: 2 + - uid: 7866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,405.5 - parent: 1 - - uid: 1266 + rot: 1.5707963267948966 rad + pos: -135.5,-33.5 + parent: 2 + - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,399.5 - parent: 1 - - uid: 1267 + pos: -4.5,-5.5 + parent: 2 + - uid: 7940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,394.5 - parent: 1 - - uid: 1268 + pos: -4.5,-21.5 + parent: 2 + - uid: 8025 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,393.5 - parent: 1 - - uid: 1269 + pos: -150.5,-49.5 + parent: 2 + - uid: 8026 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,392.5 - parent: 1 - - uid: 1270 + pos: -149.5,-51.5 + parent: 2 + - uid: 8048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,391.5 - parent: 1 - - uid: 1271 + rot: 1.5707963267948966 rad + pos: -143.5,-39.5 + parent: 2 + - uid: 8050 components: - type: Transform rot: -1.5707963267948966 rad - pos: 370.5,390.5 - parent: 1 - - uid: 1272 + pos: -145.5,-49.5 + parent: 2 + - uid: 8060 components: - type: Transform - pos: 336.5,400.5 - parent: 1 - - uid: 1273 + pos: -143.5,-44.5 + parent: 2 + - uid: 8061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,424.5 - parent: 1 - - uid: 1274 + pos: -143.5,-46.5 + parent: 2 + - uid: 8062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 363.5,379.5 - parent: 1 - - uid: 1275 + pos: -143.5,-42.5 + parent: 2 + - uid: 8063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,415.5 - parent: 1 - - uid: 1276 + pos: -151.5,-41.5 + parent: 2 + - uid: 8064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,412.5 - parent: 1 - - uid: 1277 + pos: -143.5,-48.5 + parent: 2 + - uid: 8077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,408.5 - parent: 1 - - uid: 1278 + pos: -150.5,-41.5 + parent: 2 + - uid: 8078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 371.5,405.5 - parent: 1 - - uid: 1279 + pos: -151.5,-48.5 + parent: 2 + - uid: 8090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,399.5 - parent: 1 - - uid: 1283 + rot: 1.5707963267948966 rad + pos: -139.5,-43.5 + parent: 2 + - uid: 8091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,394.5 - parent: 1 - - uid: 1284 + rot: 1.5707963267948966 rad + pos: -139.5,-44.5 + parent: 2 + - uid: 8132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 371.5,390.5 - parent: 1 - - uid: 1285 + rot: 1.5707963267948966 rad + pos: -139.5,-45.5 + parent: 2 + - uid: 8133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,399.5 - parent: 1 - - uid: 1286 + rot: 1.5707963267948966 rad + pos: -139.5,-46.5 + parent: 2 + - uid: 8135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 372.5,390.5 - parent: 1 - - uid: 1287 + rot: 1.5707963267948966 rad + pos: -139.5,-48.5 + parent: 2 + - uid: 8136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,399.5 - parent: 1 - - uid: 1290 + rot: 1.5707963267948966 rad + pos: -139.5,-49.5 + parent: 2 + - uid: 8137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,424.5 - parent: 1 - - uid: 1291 + rot: 1.5707963267948966 rad + pos: -139.5,-42.5 + parent: 2 + - uid: 8139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 364.5,379.5 - parent: 1 - - uid: 1292 + rot: 1.5707963267948966 rad + pos: -143.5,-38.5 + parent: 2 + - uid: 8141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,394.5 - parent: 1 - - uid: 1293 + rot: 1.5707963267948966 rad + pos: -139.5,-37.5 + parent: 2 + - uid: 8144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,390.5 - parent: 1 - - uid: 1294 + rot: 3.141592653589793 rad + pos: -138.5,-55.5 + parent: 2 + - uid: 8146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,416.5 - parent: 1 - - uid: 1295 + rot: 1.5707963267948966 rad + pos: -143.5,-41.5 + parent: 2 + - uid: 8148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,415.5 - parent: 1 - - uid: 1296 + pos: -31.5,-35.5 + parent: 2 + - uid: 8149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,412.5 - parent: 1 - - uid: 1297 + rot: 1.5707963267948966 rad + pos: -143.5,-40.5 + parent: 2 + - uid: 8154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,408.5 - parent: 1 - - uid: 1298 + rot: 1.5707963267948966 rad + pos: -139.5,-47.5 + parent: 2 + - uid: 8180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,405.5 - parent: 1 - - uid: 1301 + rot: 1.5707963267948966 rad + pos: -142.5,-37.5 + parent: 2 + - uid: 8181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,401.5 - parent: 1 - - uid: 1302 + rot: 1.5707963267948966 rad + pos: -143.5,-37.5 + parent: 2 + - uid: 8183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 374.5,400.5 - parent: 1 - - uid: 1303 + pos: -149.5,-49.5 + parent: 2 + - uid: 8186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 374.5,399.5 - parent: 1 - - uid: 1304 + pos: -151.5,-49.5 + parent: 2 + - uid: 8187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 374.5,398.5 - parent: 1 - - uid: 1309 + pos: -145.5,-41.5 + parent: 2 + - uid: 8189 components: - type: Transform - pos: 336.5,394.5 - parent: 1 - - uid: 1310 + rot: -1.5707963267948966 rad + pos: -144.5,-49.5 + parent: 2 + - uid: 8223 components: - type: Transform - pos: 337.5,400.5 - parent: 1 - - uid: 1311 + pos: -8.5,-9.5 + parent: 2 + - uid: 8231 components: - type: Transform - pos: 337.5,399.5 - parent: 1 - - uid: 1312 + pos: -151.5,-42.5 + parent: 2 + - uid: 8345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,424.5 - parent: 1 - - uid: 1313 + pos: -33.5,22.5 + parent: 2 + - uid: 8356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,379.5 - parent: 1 - - uid: 1322 + pos: -27.5,22.5 + parent: 2 + - uid: 8381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,378.5 - parent: 1 - - uid: 1323 + pos: -65.5,-13.5 + parent: 2 + - uid: 8386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,377.5 - parent: 1 - - uid: 1324 + pos: -57.5,-13.5 + parent: 2 + - uid: 8450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,424.5 - parent: 1 - - uid: 1325 + pos: -20.5,21.5 + parent: 2 + - uid: 8457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,424.5 - parent: 1 - - uid: 1326 + pos: -17.5,21.5 + parent: 2 + - uid: 8486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,415.5 - parent: 1 - - uid: 1327 + pos: -16.5,-63.5 + parent: 2 + - uid: 8531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,412.5 - parent: 1 - - uid: 1328 + pos: -31.5,-51.5 + parent: 2 + - uid: 8536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,409.5 - parent: 1 - - uid: 1329 + pos: -31.5,-37.5 + parent: 2 + - uid: 8569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,408.5 - parent: 1 - - uid: 1330 + pos: -31.5,-43.5 + parent: 2 + - uid: 8571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,407.5 - parent: 1 - - uid: 1331 + pos: -41.5,-27.5 + parent: 2 + - uid: 8575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,406.5 - parent: 1 - - uid: 1332 + pos: -41.5,-30.5 + parent: 2 + - uid: 8576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 375.5,405.5 - parent: 1 - - uid: 1333 + pos: -13.5,4.5 + parent: 2 + - uid: 8619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,415.5 - parent: 1 - - uid: 1334 + pos: -13.5,-63.5 + parent: 2 + - uid: 8696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,405.5 - parent: 1 - - uid: 1335 + pos: -42.5,-33.5 + parent: 2 + - uid: 8697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,416.5 - parent: 1 - - uid: 1338 + pos: -12.5,-26.5 + parent: 2 + - uid: 8701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,415.5 - parent: 1 - - uid: 1340 + pos: -46.5,-33.5 + parent: 2 + - uid: 8702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,405.5 - parent: 1 - - uid: 1341 + pos: -7.5,-38.5 + parent: 2 + - uid: 8705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,401.5 - parent: 1 - - uid: 1342 + pos: -11.5,-38.5 + parent: 2 + - uid: 8730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,398.5 - parent: 1 - - uid: 1344 + pos: -8.5,-26.5 + parent: 2 + - uid: 8735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,394.5 - parent: 1 - - uid: 1349 + pos: -7.5,-33.5 + parent: 2 + - uid: 8804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,424.5 - parent: 1 - - uid: 1351 + pos: -9.5,-43.5 + parent: 2 + - uid: 8806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,387.5 - parent: 1 - - uid: 1352 + pos: -9.5,-41.5 + parent: 2 + - uid: 8852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,385.5 - parent: 1 - - uid: 1355 + pos: -16.5,-43.5 + parent: 2 + - uid: 8898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,380.5 - parent: 1 - - uid: 1356 + pos: -32.5,-38.5 + parent: 2 + - uid: 8911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 377.5,378.5 - parent: 1 - - uid: 1358 + pos: -16.5,-39.5 + parent: 2 + - uid: 8914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,401.5 - parent: 1 - - uid: 1359 + pos: -16.5,-44.5 + parent: 2 + - uid: 8921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,398.5 - parent: 1 - - uid: 1364 + pos: -16.5,-31.5 + parent: 2 + - uid: 8924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,424.5 - parent: 1 - - uid: 1366 + pos: -16.5,-27.5 + parent: 2 + - uid: 8930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 378.5,394.5 - parent: 1 - - uid: 1368 + pos: -16.5,-40.5 + parent: 2 + - uid: 9014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,378.5 - parent: 1 - - uid: 1373 + pos: -128.5,10.5 + parent: 2 + - uid: 9015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,401.5 - parent: 1 - - uid: 1379 + pos: -129.5,10.5 + parent: 2 + - uid: 9016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,424.5 - parent: 1 - - uid: 1380 + pos: -128.5,12.5 + parent: 2 + - uid: 9017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,423.5 - parent: 1 - - uid: 1381 + pos: -127.5,12.5 + parent: 2 + - uid: 9021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 370.5,422.5 - parent: 1 - - uid: 1382 + pos: -16.5,-37.5 + parent: 2 + - uid: 9040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,398.5 - parent: 1 - - uid: 1383 + pos: -16.5,-34.5 + parent: 2 + - uid: 9058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 379.5,394.5 - parent: 1 - - uid: 1384 + pos: -16.5,-33.5 + parent: 2 + - uid: 9155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,416.5 - parent: 1 - - uid: 1385 + pos: -38.5,-45.5 + parent: 2 + - uid: 9169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,415.5 - parent: 1 - - uid: 1386 + pos: -17.5,17.5 + parent: 2 + - uid: 9204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 381.5,405.5 - parent: 1 - - uid: 1387 + pos: -32.5,-51.5 + parent: 2 + - uid: 9229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,415.5 - parent: 1 - - uid: 1388 + pos: -36.5,-51.5 + parent: 2 + - uid: 9260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,405.5 - parent: 1 - - uid: 1389 + pos: -129.5,14.5 + parent: 2 + - uid: 9279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,401.5 - parent: 1 - - uid: 1390 + pos: -38.5,-51.5 + parent: 2 + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,400.5 - parent: 1 - - uid: 1391 + pos: -127.5,14.5 + parent: 2 + - uid: 9354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,399.5 - parent: 1 - - uid: 1392 + pos: -128.5,14.5 + parent: 2 + - uid: 9439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,398.5 - parent: 1 - - uid: 1393 + pos: -38.5,3.5 + parent: 2 + - uid: 9452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,415.5 - parent: 1 - - uid: 1394 + pos: -40.5,5.5 + parent: 2 + - uid: 9465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,412.5 - parent: 1 - - uid: 1395 + pos: -135.5,-20.5 + parent: 2 + - uid: 9492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,409.5 - parent: 1 - - uid: 1396 + pos: -133.5,26.5 + parent: 2 + - uid: 9514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,408.5 - parent: 1 - - uid: 1398 + pos: -132.5,23.5 + parent: 2 + - uid: 9517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,407.5 - parent: 1 - - uid: 1399 + pos: -134.5,25.5 + parent: 2 + - uid: 9523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,406.5 - parent: 1 - - uid: 1400 + pos: -128.5,23.5 + parent: 2 + - uid: 9525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 383.5,405.5 - parent: 1 - - uid: 1401 + pos: -134.5,26.5 + parent: 2 + - uid: 9554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,416.5 - parent: 1 - - uid: 1402 + pos: -129.5,-34.5 + parent: 2 + - uid: 9604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,415.5 - parent: 1 - - uid: 1403 + pos: -123.5,-35.5 + parent: 2 + - uid: 9609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,412.5 - parent: 1 - - uid: 1406 + pos: -136.5,-12.5 + parent: 2 + - uid: 9632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,379.5 - parent: 1 - - uid: 1408 + pos: -92.5,-48.5 + parent: 2 + - uid: 9677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,408.5 - parent: 1 - - uid: 1409 + pos: -109.5,32.5 + parent: 2 + - uid: 9682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 384.5,405.5 - parent: 1 - - uid: 1410 + pos: -114.5,32.5 + parent: 2 + - uid: 9713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,401.5 - parent: 1 - - uid: 1411 + pos: -105.5,32.5 + parent: 2 + - uid: 9729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,400.5 - parent: 1 - - uid: 1413 + pos: -119.5,32.5 + parent: 2 + - uid: 9735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,399.5 - parent: 1 - - uid: 1414 + pos: -121.5,29.5 + parent: 2 + - uid: 9757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,398.5 - parent: 1 - - uid: 1415 + pos: -126.5,26.5 + parent: 2 + - uid: 9760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 386.5,394.5 - parent: 1 - - uid: 1417 + pos: -122.5,26.5 + parent: 2 + - uid: 9761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,378.5 - parent: 1 - - uid: 1418 + pos: -121.5,26.5 + parent: 2 + - uid: 9785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 371.5,377.5 - parent: 1 - - uid: 1419 + pos: -19.5,-22.5 + parent: 2 + - uid: 9798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,382.5 - parent: 1 - - uid: 1420 + pos: -123.5,28.5 + parent: 2 + - uid: 9801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,419.5 - parent: 1 - - uid: 1422 + pos: -130.5,25.5 + parent: 2 + - uid: 9802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,415.5 - parent: 1 - - uid: 1423 + pos: -129.5,25.5 + parent: 2 + - uid: 9810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,412.5 - parent: 1 - - uid: 1425 + pos: -129.5,29.5 + parent: 2 + - uid: 9826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 372.5,379.5 - parent: 1 - - uid: 1426 + pos: -125.5,30.5 + parent: 2 + - uid: 9841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,408.5 - parent: 1 - - uid: 1427 + pos: -135.5,12.5 + parent: 2 + - uid: 10078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,405.5 - parent: 1 - - uid: 1428 + pos: -18.5,-22.5 + parent: 2 + - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,401.5 - parent: 1 - - uid: 1429 + pos: -16.5,-22.5 + parent: 2 + - uid: 10103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 373.5,382.5 - parent: 1 - - uid: 1430 + pos: -87.5,36.5 + parent: 2 + - uid: 10119 components: - type: Transform rot: -1.5707963267948966 rad - pos: 387.5,398.5 - parent: 1 - - uid: 1431 + pos: -149.5,-52.5 + parent: 2 + - uid: 10140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,394.5 - parent: 1 - - uid: 1432 + pos: -126.5,31.5 + parent: 2 + - uid: 10141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,387.5 - parent: 1 - - uid: 1433 + pos: -125.5,34.5 + parent: 2 + - uid: 10145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,385.5 - parent: 1 - - uid: 1435 + pos: -126.5,34.5 + parent: 2 + - uid: 10157 components: - type: Transform - pos: 373.5,391.5 - parent: 1 - - uid: 1436 + pos: -122.5,31.5 + parent: 2 + - uid: 10163 components: - type: Transform rot: -1.5707963267948966 rad - pos: 387.5,380.5 - parent: 1 - - uid: 1437 + pos: -68.5,-8.5 + parent: 2 + - uid: 10195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 387.5,378.5 - parent: 1 - - uid: 1439 + rot: 1.5707963267948966 rad + pos: -87.5,1.5 + parent: 2 + - uid: 10437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,420.5 - parent: 1 - - uid: 1440 + pos: -149.5,-53.5 + parent: 2 + - uid: 10873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,419.5 - parent: 1 - - uid: 1441 + pos: -86.5,36.5 + parent: 2 + - uid: 11067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,418.5 - parent: 1 - - uid: 1442 + pos: -41.5,-39.5 + parent: 2 + - uid: 11094 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,415.5 - parent: 1 - - uid: 1443 + pos: -149.5,-39.5 + parent: 2 + - uid: 11248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,414.5 - parent: 1 - - uid: 1444 + pos: -135.5,-16.5 + parent: 2 + - uid: 11711 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,413.5 - parent: 1 - - uid: 1445 + pos: -99.5,24.5 + parent: 2 + - uid: 12143 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,412.5 - parent: 1 - - uid: 1446 + pos: -99.5,28.5 + parent: 2 + - uid: 12144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,411.5 - parent: 1 - - uid: 1447 + pos: -99.5,29.5 + parent: 2 + - uid: 12872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,410.5 - parent: 1 - - uid: 1448 + pos: -44.5,-39.5 + parent: 2 + - uid: 12889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,409.5 - parent: 1 - - uid: 1449 + pos: -103.5,31.5 + parent: 2 + - uid: 13122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,408.5 - parent: 1 - - uid: 1450 + pos: -35.5,-35.5 + parent: 2 + - uid: 13428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,407.5 - parent: 1 - - uid: 1451 + pos: -95.5,-68.5 + parent: 2 + - uid: 13627 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,406.5 - parent: 1 - - uid: 1452 + pos: -134.5,-37.5 + parent: 2 + - uid: 13630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,405.5 - parent: 1 - - uid: 1453 + rot: 1.5707963267948966 rad + pos: -134.5,-31.5 + parent: 2 + - uid: 13643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,394.5 - parent: 1 - - uid: 1454 + rot: 1.5707963267948966 rad + pos: -132.5,-31.5 + parent: 2 + - uid: 13645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,393.5 - parent: 1 - - uid: 1461 + rot: 1.5707963267948966 rad + pos: -130.5,-31.5 + parent: 2 + - uid: 13683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,388.5 - parent: 1 - - uid: 1462 + pos: -135.5,-37.5 + parent: 2 + - uid: 13684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,387.5 - parent: 1 - - uid: 1465 + rot: 1.5707963267948966 rad + pos: -133.5,-31.5 + parent: 2 + - uid: 13689 components: - type: Transform - pos: 374.5,376.5 - parent: 1 - - uid: 1466 + rot: 1.5707963267948966 rad + pos: -124.5,-31.5 + parent: 2 + - uid: 13698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,385.5 - parent: 1 - - uid: 1467 + rot: 1.5707963267948966 rad + pos: -123.5,-33.5 + parent: 2 + - uid: 13819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,384.5 - parent: 1 - - uid: 1470 + rot: 1.5707963267948966 rad + pos: -142.5,-41.5 + parent: 2 + - uid: 13862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,381.5 - parent: 1 - - uid: 1472 + pos: -142.5,-14.5 + parent: 2 + - uid: 13868 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,380.5 - parent: 1 - - uid: 1473 + pos: -145.5,-53.5 + parent: 2 + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,378.5 - parent: 1 - - uid: 1474 + pos: -145.5,-35.5 + parent: 2 + - uid: 13881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,377.5 - parent: 1 - - uid: 1475 + rot: 1.5707963267948966 rad + pos: -140.5,-49.5 + parent: 2 + - uid: 13894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,376.5 - parent: 1 - - uid: 1476 + rot: 3.141592653589793 rad + pos: -135.5,-55.5 + parent: 2 + - uid: 13897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 388.5,375.5 - parent: 1 - - uid: 1477 + rot: 3.141592653589793 rad + pos: -136.5,-55.5 + parent: 2 + - uid: 13951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 388.5,374.5 - parent: 1 - - uid: 1478 + pos: -145.5,-37.5 + parent: 2 + - uid: 13961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,418.5 - parent: 1 - - uid: 1479 + pos: -142.5,-21.5 + parent: 2 + - uid: 14025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,417.5 - parent: 1 - - uid: 1480 + pos: -142.5,-18.5 + parent: 2 + - uid: 14071 components: - type: Transform - pos: 373.5,376.5 - parent: 1 - - uid: 1481 + rot: 1.5707963267948966 rad + pos: -140.5,-37.5 + parent: 2 + - uid: 14078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 389.5,416.5 - parent: 1 - - uid: 1483 + rot: 1.5707963267948966 rad + pos: -139.5,-41.5 + parent: 2 + - uid: 14090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 389.5,415.5 - parent: 1 - - uid: 1484 + pos: -132.5,-59.5 + parent: 2 + - uid: 14106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 389.5,356.5 - parent: 1 - - uid: 1485 + pos: -128.5,-59.5 + parent: 2 + - uid: 14107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,417.5 - parent: 1 - - uid: 1487 + pos: -135.5,-59.5 + parent: 2 + - uid: 14108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,376.5 - parent: 1 - - uid: 1488 + rot: -1.5707963267948966 rad + pos: -134.5,-59.5 + parent: 2 + - uid: 14158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,375.5 - parent: 1 - - uid: 1489 + pos: -126.5,-56.5 + parent: 2 + - uid: 14495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,374.5 - parent: 1 - - uid: 1491 + pos: -47.5,-37.5 + parent: 2 + - uid: 14975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,415.5 - parent: 1 - - uid: 1494 + pos: -124.5,-56.5 + parent: 2 + - uid: 15023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,414.5 - parent: 1 - - uid: 1495 + pos: -99.5,32.5 + parent: 2 + - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,413.5 - parent: 1 - - uid: 1496 + pos: -30.5,-51.5 + parent: 2 + - uid: 15784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,401.5 - parent: 1 - - uid: 1497 + pos: -35.5,-36.5 + parent: 2 + - uid: 15794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,398.5 - parent: 1 - - uid: 1503 + pos: -31.5,-38.5 + parent: 2 + - uid: 15801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,378.5 - parent: 1 - - uid: 1504 + pos: -35.5,-37.5 + parent: 2 + - uid: 15891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,377.5 - parent: 1 - - uid: 1505 + pos: -123.5,-59.5 + parent: 2 + - uid: 15915 components: - type: Transform rot: -1.5707963267948966 rad - pos: 391.5,376.5 - parent: 1 - - uid: 1506 + pos: -124.5,-59.5 + parent: 2 + - uid: 15916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,375.5 - parent: 1 - - uid: 1507 + pos: -129.5,12.5 + parent: 2 + - uid: 15993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,417.5 - parent: 1 - - uid: 1510 + pos: -126.5,14.5 + parent: 2 + - uid: 16236 components: - type: Transform rot: -1.5707963267948966 rad - pos: 392.5,394.5 - parent: 1 - - uid: 1511 + pos: -145.5,-36.5 + parent: 2 + - uid: 16262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,393.5 - parent: 1 - - uid: 1512 + pos: -123.5,-56.5 + parent: 2 + - uid: 16309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,391.5 - parent: 1 - - uid: 1513 + pos: -80.5,-82.5 + parent: 2 + - uid: 16343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,390.5 - parent: 1 - - uid: 1515 + pos: -84.5,-80.5 + parent: 2 + - uid: 16447 components: - type: Transform - pos: 326.5,408.5 - parent: 1 - - uid: 1516 + rot: 1.5707963267948966 rad + pos: -135.5,-58.5 + parent: 2 + - uid: 16468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 377.5,374.5 - parent: 1 - - uid: 1517 + pos: -130.5,27.5 + parent: 2 + - uid: 16471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 377.5,373.5 - parent: 1 - - uid: 1518 + pos: -130.5,29.5 + parent: 2 + - uid: 16548 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,374.5 - parent: 1 - - uid: 1519 + pos: -36.5,-76.5 + parent: 2 + - uid: 16550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,388.5 - parent: 1 - - uid: 1524 + pos: -36.5,-75.5 + parent: 2 + - uid: 16559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,386.5 - parent: 1 - - uid: 1525 + pos: -29.5,-73.5 + parent: 2 + - uid: 16561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,385.5 - parent: 1 - - uid: 1526 + pos: -26.5,-73.5 + parent: 2 + - uid: 16563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,383.5 - parent: 1 - - uid: 1528 + pos: -47.5,-34.5 + parent: 2 + - uid: 16574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,382.5 - parent: 1 - - uid: 1529 + pos: -40.5,-49.5 + parent: 2 + - uid: 16680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,380.5 - parent: 1 - - uid: 1530 + pos: -127.5,-56.5 + parent: 2 + - uid: 16717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,378.5 - parent: 1 - - uid: 1531 + pos: -35.5,-38.5 + parent: 2 + - uid: 16785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 444.5,426.5 - parent: 1 - - uid: 1533 + pos: -37.5,-38.5 + parent: 2 + - uid: 16846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 378.5,373.5 - parent: 1 - - uid: 1534 + pos: -34.5,-38.5 + parent: 2 + - uid: 16885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,374.5 - parent: 1 - - uid: 1535 + pos: -22.5,-22.5 + parent: 2 + - uid: 16889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,375.5 - parent: 1 - - uid: 1542 + pos: -91.5,-71.5 + parent: 2 + - uid: 16939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,364.5 - parent: 1 - - uid: 1543 + pos: -126.5,8.5 + parent: 2 + - uid: 17028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 392.5,349.5 - parent: 1 - - uid: 1544 + rot: 1.5707963267948966 rad + pos: -83.5,3.5 + parent: 2 + - uid: 17046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,417.5 - parent: 1 - - uid: 1546 + rot: 1.5707963267948966 rad + pos: -83.5,1.5 + parent: 2 + - uid: 17191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 379.5,373.5 - parent: 1 - - uid: 1547 + pos: -31.5,-39.5 + parent: 2 + - uid: 17230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 380.5,374.5 - parent: 1 - - uid: 1553 + pos: -80.5,-81.5 + parent: 2 + - uid: 17234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 393.5,394.5 - parent: 1 - - uid: 1557 + pos: -81.5,-78.5 + parent: 2 + - uid: 17306 components: - type: Transform rot: 3.141592653589793 rad - pos: 380.5,373.5 - parent: 1 - - uid: 1558 + pos: -137.5,-55.5 + parent: 2 + - uid: 17370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 381.5,374.5 - parent: 1 - - uid: 1565 + rot: -1.5707963267948966 rad + pos: -145.5,-52.5 + parent: 2 + - uid: 17373 components: - type: Transform rot: -1.5707963267948966 rad - pos: 393.5,376.5 - parent: 1 - - uid: 1566 + pos: -145.5,-55.5 + parent: 2 + - uid: 17375 components: - type: Transform rot: -1.5707963267948966 rad - pos: 393.5,375.5 - parent: 1 - - uid: 1567 + pos: -145.5,-39.5 + parent: 2 + - uid: 17376 components: - type: Transform rot: -1.5707963267948966 rad - pos: 394.5,417.5 - parent: 1 - - uid: 1568 + pos: -145.5,-54.5 + parent: 2 + - uid: 17398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 381.5,373.5 - parent: 1 - - uid: 1569 + pos: -27.5,-57.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -135.5,-31.5 + parent: 2 + - uid: 17445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 394.5,416.5 - parent: 1 - - uid: 1570 + pos: -79.5,-33.5 + parent: 2 + - uid: 17585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 382.5,374.5 - parent: 1 - - uid: 1571 + pos: -20.5,-64.5 + parent: 2 + - uid: 18070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,414.5 - parent: 1 - - uid: 1573 + pos: -139.5,11.5 + parent: 2 + - uid: 18800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,413.5 - parent: 1 - - uid: 1574 + pos: -126.5,6.5 + parent: 2 + - uid: 18831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,412.5 - parent: 1 - - uid: 1576 + rot: 1.5707963267948966 rad + pos: -125.5,-31.5 + parent: 2 + - uid: 19093 components: - type: Transform - pos: 354.5,394.5 - parent: 1 - - uid: 1577 + pos: -89.5,-60.5 + parent: 2 + - uid: 19283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,411.5 - parent: 1 - - uid: 1578 + pos: -92.5,-68.5 + parent: 2 + - uid: 19576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 394.5,401.5 - parent: 1 - - uid: 1580 + pos: -133.5,-53.5 + parent: 2 + - uid: 19578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,416.5 - parent: 1 - - uid: 1581 + pos: -134.5,-53.5 + parent: 2 + - uid: 19582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,411.5 - parent: 1 - - uid: 1582 + pos: -135.5,-34.5 + parent: 2 + - uid: 19583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 382.5,373.5 - parent: 1 - - uid: 1583 + pos: -127.5,-34.5 + parent: 2 + - uid: 19607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 383.5,374.5 - parent: 1 - - uid: 1584 + pos: -128.5,-34.5 + parent: 2 + - uid: 20032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 396.5,416.5 - parent: 1 - - uid: 1585 + pos: -127.5,6.5 + parent: 2 + - uid: 20068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,411.5 - parent: 1 - - uid: 1588 + pos: -149.5,-38.5 + parent: 2 + - uid: 20078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,376.5 - parent: 1 - - uid: 1590 + pos: -149.5,-37.5 + parent: 2 + - uid: 20080 components: - type: Transform rot: -1.5707963267948966 rad - pos: 396.5,375.5 - parent: 1 - - uid: 1591 + pos: -145.5,-38.5 + parent: 2 + - uid: 20084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,416.5 - parent: 1 - - uid: 1592 + pos: -149.5,-35.5 + parent: 2 + - uid: 20086 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,411.5 - parent: 1 - - uid: 1593 + pos: -149.5,-36.5 + parent: 2 + - uid: 20087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 397.5,394.5 - parent: 1 - - uid: 1594 + pos: -145.5,-51.5 + parent: 2 + - uid: 20090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,376.5 - parent: 1 - - uid: 1595 + pos: -32.5,-45.5 + parent: 2 + - uid: 20202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 397.5,375.5 - parent: 1 - - uid: 1596 + pos: -126.5,-34.5 + parent: 2 + - uid: 20226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 383.5,373.5 - parent: 1 - - uid: 1597 + pos: -135.5,-53.5 + parent: 2 + - uid: 20237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,374.5 - parent: 1 - - uid: 1598 + pos: -136.5,-34.5 + parent: 2 + - uid: 20343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,416.5 - parent: 1 - - uid: 1599 + pos: -119.5,-58.5 + parent: 2 + - uid: 20345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,414.5 - parent: 1 - - uid: 1600 + pos: -121.5,-58.5 + parent: 2 + - uid: 20407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,411.5 - parent: 1 - - uid: 1601 + pos: -126.5,-75.5 + parent: 2 + - uid: 20421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,401.5 - parent: 1 - - uid: 1602 + rot: 1.5707963267948966 rad + pos: -126.5,-74.5 + parent: 2 + - uid: 20424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,398.5 - parent: 1 - - uid: 1603 + rot: 1.5707963267948966 rad + pos: -126.5,-76.5 + parent: 2 + - uid: 20547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,376.5 - parent: 1 - - uid: 1604 + rot: 1.5707963267948966 rad + pos: -110.5,-39.5 + parent: 2 + - uid: 20957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 398.5,375.5 - parent: 1 - - uid: 1605 + pos: -31.5,-42.5 + parent: 2 + - uid: 21421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 399.5,345.5 - parent: 1 - - uid: 1606 + pos: -108.5,-39.5 + parent: 2 + - uid: 21953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 384.5,373.5 - parent: 1 - - uid: 1607 + pos: -93.5,-49.5 + parent: 2 + - uid: 22229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,394.5 - parent: 1 - - uid: 1608 + pos: -120.5,-88.5 + parent: 2 + - uid: 22230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,374.5 - parent: 1 - - uid: 1611 + pos: -118.5,-88.5 + parent: 2 + - uid: 22232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 385.5,373.5 - parent: 1 - - uid: 1612 + pos: -116.5,-89.5 + parent: 2 + - uid: 22336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,374.5 - parent: 1 - - uid: 1618 + pos: -119.5,-88.5 + parent: 2 + - uid: 22337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,376.5 - parent: 1 - - uid: 1619 + pos: -117.5,-87.5 + parent: 2 + - uid: 22338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 386.5,373.5 - parent: 1 - - uid: 1620 + pos: -118.5,-87.5 + parent: 2 + - uid: 22403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,422.5 - parent: 1 - - uid: 1621 + pos: -122.5,-87.5 + parent: 2 + - uid: 22404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,374.5 - parent: 1 - - uid: 1622 + pos: -123.5,-87.5 + parent: 2 + - uid: 22406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 401.5,375.5 - parent: 1 - - uid: 1623 + pos: -121.5,-83.5 + parent: 2 + - uid: 22407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,401.5 - parent: 1 - - uid: 1624 + pos: -122.5,-75.5 + parent: 2 + - uid: 22408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,398.5 - parent: 1 - - uid: 1625 + pos: -119.5,-83.5 + parent: 2 + - uid: 22409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,394.5 - parent: 1 - - uid: 1626 + pos: -124.5,-75.5 + parent: 2 + - uid: 22411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,393.5 - parent: 1 - - uid: 1627 + pos: -132.5,26.5 + parent: 2 + - uid: 22412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,391.5 - parent: 1 - - uid: 1628 + pos: -131.5,26.5 + parent: 2 + - uid: 22413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,390.5 - parent: 1 - - uid: 1630 + pos: -130.5,26.5 + parent: 2 + - uid: 22421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,388.5 - parent: 1 - - uid: 1631 + pos: -130.5,28.5 + parent: 2 + - uid: 22435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,386.5 - parent: 1 - - uid: 1632 + pos: -108.5,-51.5 + parent: 2 + - uid: 22477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,385.5 - parent: 1 - - uid: 1633 + pos: -119.5,-81.5 + parent: 2 + - uid: 22480 components: - type: Transform rot: -1.5707963267948966 rad - pos: 402.5,383.5 - parent: 1 - - uid: 1634 + pos: -124.5,-86.5 + parent: 2 + - uid: 22517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,382.5 - parent: 1 - - uid: 1635 + pos: -121.5,-81.5 + parent: 2 + - uid: 22518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,373.5 - parent: 1 - - uid: 1636 + pos: -124.5,-76.5 + parent: 2 + - uid: 22520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,372.5 - parent: 1 - - uid: 1637 + pos: -123.5,-75.5 + parent: 2 + - uid: 22522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,369.5 - parent: 1 - - uid: 1638 + pos: -114.5,-85.5 + parent: 2 + - uid: 22523 components: - type: Transform - pos: 337.5,397.5 - parent: 1 - - uid: 1639 + pos: -117.5,-75.5 + parent: 2 + - uid: 22542 components: - type: Transform - pos: 337.5,396.5 - parent: 1 - - uid: 1640 + pos: -116.5,-81.5 + parent: 2 + - uid: 22544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 387.5,368.5 - parent: 1 - - uid: 1641 + pos: -124.5,-77.5 + parent: 2 + - uid: 22571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,368.5 - parent: 1 - - uid: 1642 + pos: -116.5,-79.5 + parent: 2 + - uid: 22572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,380.5 - parent: 1 - - uid: 1643 + pos: -121.5,-84.5 + parent: 2 + - uid: 22576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,378.5 - parent: 1 - - uid: 1644 + pos: -118.5,-75.5 + parent: 2 + - uid: 22705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,377.5 - parent: 1 - - uid: 1645 + pos: -119.5,-84.5 + parent: 2 + - uid: 22706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,376.5 - parent: 1 - - uid: 1646 + pos: -120.5,-84.5 + parent: 2 + - uid: 22707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 402.5,375.5 - parent: 1 - - uid: 1647 + pos: -124.5,-80.5 + parent: 2 + - uid: 22709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,401.5 - parent: 1 - - uid: 1648 + pos: -119.5,-75.5 + parent: 2 + - uid: 22714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,398.5 - parent: 1 - - uid: 1654 + pos: -114.5,-82.5 + parent: 2 + - uid: 22715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,378.5 - parent: 1 - - uid: 1655 + pos: -124.5,-81.5 + parent: 2 + - uid: 22716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,377.5 - parent: 1 - - uid: 1656 + pos: -121.5,-75.5 + parent: 2 + - uid: 22717 components: - type: Transform - pos: 337.5,395.5 - parent: 1 - - uid: 1657 + pos: -116.5,-75.5 + parent: 2 + - uid: 22718 components: - type: Transform - pos: 337.5,394.5 - parent: 1 - - uid: 1658 + pos: -116.5,-77.5 + parent: 2 + - uid: 22819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,401.5 - parent: 1 - - uid: 1659 + pos: -114.5,-77.5 + parent: 2 + - uid: 22826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 405.5,398.5 - parent: 1 - - uid: 1660 + pos: -114.5,-78.5 + parent: 2 + - uid: 22893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 406.5,401.5 - parent: 1 - - uid: 1661 + pos: -139.5,22.5 + parent: 2 + - uid: 23015 components: - type: Transform rot: -1.5707963267948966 rad - pos: 406.5,398.5 - parent: 1 - - uid: 1662 + pos: -116.5,-85.5 + parent: 2 + - uid: 23020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,401.5 - parent: 1 - - uid: 1663 + pos: -116.5,-82.5 + parent: 2 + - uid: 23036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,398.5 - parent: 1 - - uid: 1664 + pos: -114.5,-86.5 + parent: 2 + - uid: 23081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 407.5,348.5 - parent: 1 - - uid: 1665 + pos: -116.5,-83.5 + parent: 2 + - uid: 23086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,381.5 - parent: 1 - - uid: 1666 + pos: -126.5,-68.5 + parent: 2 + - uid: 23099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,379.5 - parent: 1 - - uid: 1667 + pos: -116.5,-78.5 + parent: 2 + - uid: 23100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 409.5,401.5 - parent: 1 - - uid: 1668 + pos: -125.5,-89.5 + parent: 2 + - uid: 23119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 409.5,398.5 - parent: 1 - - uid: 1669 + pos: -136.5,21.5 + parent: 2 + - uid: 23319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,412.5 - parent: 1 - - uid: 1670 + pos: -124.5,-78.5 + parent: 2 + - uid: 23351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,411.5 - parent: 1 - - uid: 1671 + pos: -114.5,-80.5 + parent: 2 + - uid: 23383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,406.5 - parent: 1 - - uid: 1672 + pos: -114.5,-79.5 + parent: 2 + - uid: 23387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,405.5 - parent: 1 - - uid: 1673 + pos: -114.5,-84.5 + parent: 2 + - uid: 23389 + components: + - type: Transform + pos: -114.5,-76.5 + parent: 2 + - uid: 23397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,401.5 - parent: 1 - - uid: 1674 + pos: -124.5,-84.5 + parent: 2 + - uid: 23398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 410.5,400.5 - parent: 1 - - uid: 1675 + pos: -116.5,-86.5 + parent: 2 + - uid: 23413 components: - type: Transform rot: -1.5707963267948966 rad - pos: 410.5,399.5 - parent: 1 - - uid: 1676 + pos: -124.5,-85.5 + parent: 2 + - uid: 23423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,398.5 - parent: 1 - - uid: 1677 + pos: -124.5,-79.5 + parent: 2 + - uid: 23424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,356.5 - parent: 1 - - uid: 1678 + pos: -114.5,-75.5 + parent: 2 + - uid: 23437 components: - type: Transform - rot: 3.141592653589793 rad - pos: 389.5,422.5 - parent: 1 - - uid: 1679 + pos: -116.5,-80.5 + parent: 2 + - uid: 23490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 390.5,422.5 - parent: 1 - - uid: 1680 + pos: -124.5,-83.5 + parent: 2 + - uid: 23496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,442.5 - parent: 1 - - uid: 1682 + pos: -124.5,-82.5 + parent: 2 + - uid: 23497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 412.5,437.5 - parent: 1 - - uid: 1683 + pos: -116.5,-84.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + pos: -126.5,-78.5 + parent: 2 + - uid: 23500 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,432.5 - parent: 1 - - uid: 1684 + pos: -124.5,-89.5 + parent: 2 + - uid: 23517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,412.5 - parent: 1 - - uid: 1685 + pos: -126.5,-88.5 + parent: 2 + - uid: 23719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,410.5 - parent: 1 - - uid: 1689 + pos: -78.5,-33.5 + parent: 2 + - uid: 23728 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,409.5 - parent: 1 - - uid: 1690 + pos: -76.5,-33.5 + parent: 2 + - uid: 23737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,408.5 - parent: 1 - - uid: 1692 + pos: -77.5,-33.5 + parent: 2 + - uid: 23785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 338.5,381.5 - parent: 1 - - uid: 1693 + rot: -1.5707963267948966 rad + pos: -126.5,-87.5 + parent: 2 + - uid: 23810 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,407.5 - parent: 1 - - uid: 1697 + pos: -115.5,-89.5 + parent: 2 + - uid: 23814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,406.5 - parent: 1 - - uid: 1698 + pos: -114.5,-88.5 + parent: 2 + - uid: 23815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,405.5 - parent: 1 - - uid: 1699 + pos: -114.5,-87.5 + parent: 2 + - uid: 23817 components: - type: Transform rot: 1.5707963267948966 rad - pos: 346.5,384.5 - parent: 1 - - uid: 1701 + pos: -116.5,-70.5 + parent: 2 + - uid: 23818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,423.5 - parent: 1 - - uid: 1702 + pos: -122.5,-69.5 + parent: 2 + - uid: 23821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,422.5 - parent: 1 - - uid: 1706 + pos: -123.5,-69.5 + parent: 2 + - uid: 23822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,402.5 - parent: 1 - - uid: 1707 + pos: -124.5,-69.5 + parent: 2 + - uid: 23824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,399.5 - parent: 1 - - uid: 1708 + pos: -118.5,-69.5 + parent: 2 + - uid: 23826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 414.5,398.5 - parent: 1 - - uid: 1709 + pos: -126.5,-81.5 + parent: 2 + - uid: 23827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,444.5 - parent: 1 - - uid: 1710 + pos: -126.5,-80.5 + parent: 2 + - uid: 23829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,412.5 - parent: 1 - - uid: 1717 + pos: -116.5,-69.5 + parent: 2 + - uid: 23830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,406.5 - parent: 1 - - uid: 1718 + pos: -126.5,-69.5 + parent: 2 + - uid: 23831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 415.5,398.5 - parent: 1 - - uid: 1720 + pos: -117.5,-69.5 + parent: 2 + - uid: 23833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,412.5 - parent: 1 - - uid: 1721 + pos: -119.5,-69.5 + parent: 2 + - uid: 23840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,406.5 - parent: 1 - - uid: 1722 + pos: -121.5,-69.5 + parent: 2 + - uid: 23844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 416.5,398.5 - parent: 1 - - uid: 1723 + rot: 1.5707963267948966 rad + pos: -114.5,-70.5 + parent: 2 + - uid: 23849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,412.5 - parent: 1 - - uid: 1724 + pos: -125.5,-75.5 + parent: 2 + - uid: 24258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,411.5 - parent: 1 - - uid: 1726 + rot: 1.5707963267948966 rad + pos: -126.5,-70.5 + parent: 2 + - uid: 24280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,409.5 - parent: 1 - - uid: 1728 + pos: -126.5,-82.5 + parent: 2 + - uid: 24281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,407.5 - parent: 1 - - uid: 1730 + pos: -126.5,-77.5 + parent: 2 + - uid: 24282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,368.5 - parent: 1 - - uid: 1732 + pos: -126.5,-83.5 + parent: 2 + - uid: 24288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,415.5 - parent: 1 - - uid: 1733 + pos: -24.5,-69.5 + parent: 2 + - uid: 24290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,406.5 - parent: 1 - - uid: 1734 + pos: -126.5,12.5 + parent: 2 + - uid: 24294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,405.5 - parent: 1 - - uid: 1735 + pos: -130.5,14.5 + parent: 2 + - uid: 24299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,402.5 - parent: 1 - - uid: 1736 + pos: -126.5,-84.5 + parent: 2 + - uid: 24344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,399.5 - parent: 1 - - uid: 1739 + pos: -126.5,-79.5 + parent: 2 + - uid: 24348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,398.5 - parent: 1 - - uid: 1740 + pos: -116.5,-76.5 + parent: 2 + - uid: 24440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,394.5 - parent: 1 - - uid: 1741 + pos: -135.5,17.5 + parent: 2 + - uid: 24568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,393.5 - parent: 1 - - uid: 1742 + pos: -114.5,-81.5 + parent: 2 + - uid: 24571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,390.5 - parent: 1 - - uid: 1744 + pos: -126.5,-85.5 + parent: 2 + - uid: 24575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,406.5 - parent: 1 - - uid: 1745 + rot: 1.5707963267948966 rad + pos: -114.5,-74.5 + parent: 2 + - uid: 24576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 418.5,390.5 - parent: 1 - - uid: 1746 + pos: -126.5,-86.5 + parent: 2 + - uid: 24823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,417.5 - parent: 1 - - uid: 1747 + pos: -114.5,-83.5 + parent: 2 + - uid: 24848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,416.5 - parent: 1 - - uid: 1748 + rot: 1.5707963267948966 rad + pos: -115.5,-66.5 + parent: 2 + - uid: 24850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,415.5 - parent: 1 - - uid: 1749 + pos: -114.5,-69.5 + parent: 2 + - uid: 24864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,414.5 - parent: 1 - - uid: 1750 + pos: -115.5,-75.5 + parent: 2 + - uid: 24865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,413.5 - parent: 1 - - uid: 1751 + rot: 1.5707963267948966 rad + pos: -119.5,-64.5 + parent: 2 + - uid: 24868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,412.5 - parent: 1 - - uid: 1752 + rot: 1.5707963267948966 rad + pos: -124.5,-70.5 + parent: 2 + - uid: 24869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 419.5,390.5 - parent: 1 - - uid: 1753 + rot: 1.5707963267948966 rad + pos: -116.5,-74.5 + parent: 2 + - uid: 24870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,417.5 - parent: 1 - - uid: 1754 + rot: 1.5707963267948966 rad + pos: -124.5,-74.5 + parent: 2 + - uid: 24871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,412.5 - parent: 1 - - uid: 1755 + pos: -126.5,-67.5 + parent: 2 + - uid: 24879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,390.5 - parent: 1 - - uid: 1760 + rot: 1.5707963267948966 rad + pos: -123.5,-64.5 + parent: 2 + - uid: 24892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,425.5 - parent: 1 - - uid: 1761 + rot: 1.5707963267948966 rad + pos: -125.5,-69.5 + parent: 2 + - uid: 24893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,417.5 - parent: 1 - - uid: 1762 + rot: 1.5707963267948966 rad + pos: -115.5,-69.5 + parent: 2 + - uid: 24898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,415.5 - parent: 1 - - uid: 1765 + pos: -116.5,-90.5 + parent: 2 + - uid: 24904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,414.5 - parent: 1 - - uid: 1767 + pos: -118.5,-90.5 + parent: 2 + - uid: 24905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,413.5 - parent: 1 - - uid: 1768 + pos: -117.5,-90.5 + parent: 2 + - uid: 24906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,412.5 - parent: 1 - - uid: 1769 + pos: -121.5,-90.5 + parent: 2 + - uid: 24908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,411.5 - parent: 1 - - uid: 1770 + rot: 1.5707963267948966 rad + pos: -121.5,-64.5 + parent: 2 + - uid: 24911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,409.5 - parent: 1 - - uid: 1771 + pos: -125.5,-67.5 + parent: 2 + - uid: 24916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,408.5 - parent: 1 - - uid: 1772 + rot: 1.5707963267948966 rad + pos: -116.5,-64.5 + parent: 2 + - uid: 24917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,407.5 - parent: 1 - - uid: 1773 + rot: 1.5707963267948966 rad + pos: -124.5,-66.5 + parent: 2 + - uid: 24918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,406.5 - parent: 1 - - uid: 1774 + pos: -116.5,-67.5 + parent: 2 + - uid: 24922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,405.5 - parent: 1 - - uid: 1775 + rot: 1.5707963267948966 rad + pos: -124.5,-64.5 + parent: 2 + - uid: 24970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,413.5 - parent: 1 - - uid: 1776 + pos: -119.5,-90.5 + parent: 2 + - uid: 24988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,399.5 - parent: 1 - - uid: 1777 + pos: -124.5,-87.5 + parent: 2 + - uid: 24998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,398.5 - parent: 1 - - uid: 1778 + pos: -116.5,-87.5 + parent: 2 + - uid: 25016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,394.5 - parent: 1 - - uid: 1780 + pos: -120.5,-90.5 + parent: 2 + - uid: 25031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,412.5 - parent: 1 - - uid: 1788 + pos: -122.5,-90.5 + parent: 2 + - uid: 25032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,390.5 - parent: 1 - - uid: 1789 + pos: -123.5,-90.5 + parent: 2 + - uid: 25033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,389.5 - parent: 1 - - uid: 1790 + pos: -124.5,-90.5 + parent: 2 + - uid: 25034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,388.5 - parent: 1 - - uid: 1791 + pos: -121.5,-88.5 + parent: 2 + - uid: 25035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,387.5 - parent: 1 - - uid: 1792 + pos: -122.5,-88.5 + parent: 2 + - uid: 25162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,386.5 - parent: 1 - - uid: 1793 + pos: -125.5,-68.5 + parent: 2 + - uid: 25165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,417.5 - parent: 1 - - uid: 1799 + rot: 1.5707963267948966 rad + pos: -125.5,-66.5 + parent: 2 + - uid: 25166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,415.5 - parent: 1 - - uid: 1800 + rot: 1.5707963267948966 rad + pos: -115.5,-67.5 + parent: 2 + - uid: 25167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,412.5 - parent: 1 - - uid: 1801 + pos: -117.5,-64.5 + parent: 2 + - uid: 25171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,406.5 - parent: 1 - - uid: 1802 + pos: -114.5,-67.5 + parent: 2 + - uid: 25186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,398.5 - parent: 1 - - uid: 1803 + rot: 1.5707963267948966 rad + pos: -116.5,-66.5 + parent: 2 + - uid: 25287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 422.5,386.5 - parent: 1 - - uid: 1808 + rot: 1.5707963267948966 rad + pos: -125.5,-92.5 + parent: 2 + - uid: 25291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,448.5 - parent: 1 - - uid: 1809 + rot: 1.5707963267948966 rad + pos: -128.5,-75.5 + parent: 2 + - uid: 25296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,417.5 - parent: 1 - - uid: 1812 + rot: 1.5707963267948966 rad + pos: -128.5,-69.5 + parent: 2 + - uid: 25312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,415.5 - parent: 1 - - uid: 1813 + rot: 1.5707963267948966 rad + pos: -115.5,-92.5 + parent: 2 + - uid: 25322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 423.5,412.5 - parent: 1 - - uid: 1814 + rot: 1.5707963267948966 rad + pos: -112.5,-89.5 + parent: 2 + - uid: 25326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,417.5 - parent: 1 - - uid: 1815 + pos: -114.5,-89.5 + parent: 2 + - uid: 25328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,415.5 - parent: 1 - - uid: 1816 + rot: 1.5707963267948966 rad + pos: -112.5,-69.5 + parent: 2 + - uid: 25334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,412.5 - parent: 1 - - uid: 1818 + rot: 1.5707963267948966 rad + pos: -112.5,-75.5 + parent: 2 + - uid: 25340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 356.5,412.5 - parent: 1 - - uid: 1819 + pos: -128.5,-89.5 + parent: 2 + - uid: 25349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 396.5,368.5 - parent: 1 - - uid: 1820 + rot: 1.5707963267948966 rad + pos: -128.5,-82.5 + parent: 2 + - uid: 25350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,406.5 - parent: 1 - - uid: 1821 + rot: 1.5707963267948966 rad + pos: -112.5,-82.5 + parent: 2 + - uid: 25378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,398.5 - parent: 1 - - uid: 1823 + pos: -126.5,-89.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 12 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 424.5,386.5 - parent: 1 - - uid: 1824 + pos: -78.5,8.5 + parent: 2 + - uid: 14 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,417.5 - parent: 1 - - uid: 1825 + pos: -79.5,8.5 + parent: 2 + - uid: 124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,415.5 - parent: 1 - - uid: 1826 + pos: -69.5,2.5 + parent: 2 + - uid: 211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,412.5 - parent: 1 - - uid: 1827 + pos: -70.5,2.5 + parent: 2 + - uid: 212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,409.5 - parent: 1 - - uid: 1830 + pos: -72.5,2.5 + parent: 2 + - uid: 213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 397.5,368.5 - parent: 1 - - uid: 1832 + pos: -73.5,2.5 + parent: 2 + - uid: 215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,408.5 - parent: 1 - - uid: 1833 + pos: -75.5,2.5 + parent: 2 + - uid: 216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,407.5 - parent: 1 - - uid: 1836 + pos: -76.5,2.5 + parent: 2 + - uid: 217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,406.5 - parent: 1 - - uid: 1837 + pos: -77.5,2.5 + parent: 2 + - uid: 219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,405.5 - parent: 1 - - uid: 1838 + pos: -78.5,2.5 + parent: 2 + - uid: 220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,404.5 - parent: 1 - - uid: 1839 + pos: -78.5,-7.5 + parent: 2 + - uid: 221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,402.5 - parent: 1 - - uid: 1840 + pos: -78.5,-0.5 + parent: 2 + - uid: 222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,399.5 - parent: 1 - - uid: 1843 + pos: -78.5,1.5 + parent: 2 + - uid: 225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,406.5 - parent: 1 - - uid: 1847 + pos: -78.5,-2.5 + parent: 2 + - uid: 226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,368.5 - parent: 1 - - uid: 1854 + pos: -78.5,-3.5 + parent: 2 + - uid: 228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,398.5 - parent: 1 - - uid: 1855 + pos: -78.5,-5.5 + parent: 2 + - uid: 229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,397.5 - parent: 1 - - uid: 1865 + pos: -78.5,-6.5 + parent: 2 + - uid: 230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,390.5 - parent: 1 - - uid: 1866 + pos: -75.5,-7.5 + parent: 2 + - uid: 231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 425.5,386.5 - parent: 1 - - uid: 1867 + pos: -77.5,-7.5 + parent: 2 + - uid: 232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,426.5 - parent: 1 - - uid: 1868 + pos: -76.5,-7.5 + parent: 2 + - uid: 234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,417.5 - parent: 1 - - uid: 1869 + pos: -73.5,-7.5 + parent: 2 + - uid: 235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,415.5 - parent: 1 - - uid: 1873 + pos: -72.5,-7.5 + parent: 2 + - uid: 236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,367.5 - parent: 1 - - uid: 1875 + pos: -71.5,-7.5 + parent: 2 + - uid: 237 components: - type: Transform - rot: 3.141592653589793 rad - pos: 398.5,365.5 - parent: 1 - - uid: 1877 + pos: -70.5,-7.5 + parent: 2 + - uid: 240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,425.5 - parent: 1 - - uid: 1884 + pos: -9.5,-47.5 + parent: 2 + - uid: 241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,409.5 - parent: 1 - - uid: 1885 + pos: -9.5,-46.5 + parent: 2 + - uid: 242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,406.5 - parent: 1 - - uid: 1886 + pos: -9.5,-50.5 + parent: 2 + - uid: 243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,390.5 - parent: 1 - - uid: 1887 + pos: -82.5,-10.5 + parent: 2 + - uid: 245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 426.5,386.5 - parent: 1 - - uid: 1888 + pos: -81.5,-7.5 + parent: 2 + - uid: 246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,417.5 - parent: 1 - - uid: 1890 + pos: -81.5,-6.5 + parent: 2 + - uid: 247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 360.5,405.5 - parent: 1 - - uid: 1892 + pos: -81.5,-5.5 + parent: 2 + - uid: 248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 399.5,362.5 - parent: 1 - - uid: 1894 + pos: -81.5,-3.5 + parent: 2 + - uid: 250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,415.5 - parent: 1 - - uid: 1895 + pos: -81.5,-1.5 + parent: 2 + - uid: 253 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,427.5 - parent: 1 - - uid: 1900 + pos: -81.5,-0.5 + parent: 2 + - uid: 255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,408.5 - parent: 1 - - uid: 1902 + pos: -56.5,-76.5 + parent: 2 + - uid: 258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 427.5,386.5 - parent: 1 - - uid: 1903 + pos: -81.5,-10.5 + parent: 2 + - uid: 262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,417.5 - parent: 1 - - uid: 1904 + pos: -89.5,-6.5 + parent: 2 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,415.5 - parent: 1 - - uid: 1905 + pos: -89.5,-5.5 + parent: 2 + - uid: 266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,409.5 - parent: 1 - - uid: 1906 + pos: -89.5,-3.5 + parent: 2 + - uid: 269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,405.5 - parent: 1 - - uid: 1909 + pos: -89.5,-2.5 + parent: 2 + - uid: 270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,364.5 - parent: 1 - - uid: 1914 + pos: -89.5,-1.5 + parent: 2 + - uid: 278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,406.5 - parent: 1 - - uid: 1915 + pos: -83.5,-0.5 + parent: 2 + - uid: 279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,390.5 - parent: 1 - - uid: 1916 + pos: -82.5,-0.5 + parent: 2 + - uid: 284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,389.5 - parent: 1 - - uid: 1917 + pos: -109.5,-56.5 + parent: 2 + - uid: 293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,387.5 - parent: 1 - - uid: 1918 + pos: -10.5,-51.5 + parent: 2 + - uid: 294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 428.5,386.5 - parent: 1 - - uid: 1919 + pos: -9.5,-48.5 + parent: 2 + - uid: 297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,417.5 - parent: 1 - - uid: 1920 + pos: -105.5,36.5 + parent: 2 + - uid: 298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,415.5 - parent: 1 - - uid: 1921 + pos: -121.5,-19.5 + parent: 2 + - uid: 299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,414.5 - parent: 1 - - uid: 1922 + pos: -114.5,17.5 + parent: 2 + - uid: 301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,413.5 - parent: 1 - - uid: 1923 + pos: -106.5,16.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -106.5,19.5 + parent: 2 + - uid: 303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,412.5 - parent: 1 - - uid: 1924 + pos: -108.5,19.5 + parent: 2 + - uid: 304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,411.5 - parent: 1 - - uid: 1925 + pos: -10.5,-50.5 + parent: 2 + - uid: 306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,410.5 - parent: 1 - - uid: 1927 + pos: -111.5,19.5 + parent: 2 + - uid: 308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,383.5 - parent: 1 - - uid: 1928 + pos: -9.5,-45.5 + parent: 2 + - uid: 309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,363.5 - parent: 1 - - uid: 1929 + pos: -10.5,-53.5 + parent: 2 + - uid: 311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 401.5,362.5 - parent: 1 - - uid: 1930 + pos: -109.5,19.5 + parent: 2 + - uid: 312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 402.5,427.5 - parent: 1 - - uid: 1948 + pos: -81.5,7.5 + parent: 2 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,409.5 - parent: 1 - - uid: 1949 + pos: -81.5,8.5 + parent: 2 + - uid: 314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,406.5 - parent: 1 - - uid: 1953 + pos: -106.5,17.5 + parent: 2 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,398.5 - parent: 1 - - uid: 1954 + pos: -10.5,-52.5 + parent: 2 + - uid: 326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,394.5 - parent: 1 - - uid: 1955 + pos: -11.5,-55.5 + parent: 2 + - uid: 344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,390.5 - parent: 1 - - uid: 1956 + pos: -114.5,19.5 + parent: 2 + - uid: 352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,386.5 - parent: 1 - - uid: 1957 + pos: -113.5,19.5 + parent: 2 + - uid: 353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,443.5 - parent: 1 - - uid: 1958 + pos: -112.5,19.5 + parent: 2 + - uid: 358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,417.5 - parent: 1 - - uid: 1959 + pos: -106.5,12.5 + parent: 2 + - uid: 377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,409.5 - parent: 1 - - uid: 1960 + pos: -106.5,13.5 + parent: 2 + - uid: 378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,406.5 - parent: 1 - - uid: 1961 + pos: -107.5,12.5 + parent: 2 + - uid: 379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,402.5 - parent: 1 - - uid: 1962 + pos: -106.5,0.5 + parent: 2 + - uid: 380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,398.5 - parent: 1 - - uid: 1963 + pos: -106.5,5.5 + parent: 2 + - uid: 382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,394.5 - parent: 1 - - uid: 1964 + pos: -106.5,4.5 + parent: 2 + - uid: 383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,390.5 - parent: 1 - - uid: 1965 + pos: -108.5,12.5 + parent: 2 + - uid: 405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,389.5 - parent: 1 - - uid: 1966 + pos: -111.5,12.5 + parent: 2 + - uid: 406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,388.5 - parent: 1 - - uid: 1967 + pos: -110.5,12.5 + parent: 2 + - uid: 407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,387.5 - parent: 1 - - uid: 1973 + pos: -112.5,13.5 + parent: 2 + - uid: 408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,382.5 - parent: 1 - - uid: 1974 + pos: -112.5,14.5 + parent: 2 + - uid: 413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,381.5 - parent: 1 - - uid: 1975 + pos: -106.5,15.5 + parent: 2 + - uid: 414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 361.5,380.5 - parent: 1 - - uid: 1977 + pos: -114.5,14.5 + parent: 2 + - uid: 415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,364.5 - parent: 1 - - uid: 1984 + pos: -106.5,10.5 + parent: 2 + - uid: 416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 430.5,386.5 - parent: 1 - - uid: 1985 + pos: -112.5,6.5 + parent: 2 + - uid: 419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,430.5 - parent: 1 - - uid: 1987 + pos: -111.5,6.5 + parent: 2 + - uid: 422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,417.5 - parent: 1 - - uid: 1988 + pos: -111.5,4.5 + parent: 2 + - uid: 423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,416.5 - parent: 1 - - uid: 1989 + pos: -109.5,4.5 + parent: 2 + - uid: 424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,415.5 - parent: 1 - - uid: 1990 + pos: -108.5,4.5 + parent: 2 + - uid: 425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,414.5 - parent: 1 - - uid: 1991 + pos: -112.5,0.5 + parent: 2 + - uid: 426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,413.5 - parent: 1 - - uid: 1992 + pos: -108.5,0.5 + parent: 2 + - uid: 430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,412.5 - parent: 1 - - uid: 1993 + pos: -106.5,-0.5 + parent: 2 + - uid: 434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,411.5 - parent: 1 - - uid: 1995 + pos: -106.5,-1.5 + parent: 2 + - uid: 435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 403.5,363.5 - parent: 1 - - uid: 1997 + pos: -107.5,-1.5 + parent: 2 + - uid: 436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 404.5,363.5 - parent: 1 - - uid: 2000 + pos: -112.5,-1.5 + parent: 2 + - uid: 437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,410.5 - parent: 1 - - uid: 2001 + pos: -113.5,-1.5 + parent: 2 + - uid: 438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,409.5 - parent: 1 - - uid: 2002 + pos: -114.5,-0.5 + parent: 2 + - uid: 439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,427.5 - parent: 1 - - uid: 2003 + pos: -114.5,4.5 + parent: 2 + - uid: 440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 405.5,426.5 - parent: 1 - - uid: 2011 + pos: -114.5,5.5 + parent: 2 + - uid: 441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,406.5 - parent: 1 - - uid: 2012 + pos: -78.5,3.5 + parent: 2 + - uid: 445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,402.5 - parent: 1 - - uid: 2016 + pos: -78.5,6.5 + parent: 2 + - uid: 446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 406.5,426.5 - parent: 1 - - uid: 2024 + pos: -78.5,5.5 + parent: 2 + - uid: 447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,413.5 - parent: 1 - - uid: 2031 + pos: -79.5,6.5 + parent: 2 + - uid: 449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,398.5 - parent: 1 - - uid: 2032 + pos: -150.5,-13.5 + parent: 2 + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 431.5,394.5 - parent: 1 - - uid: 2062 + pos: -143.5,-1.5 + parent: 2 + - uid: 453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,426.5 - parent: 1 - - uid: 2071 + pos: -138.5,-1.5 + parent: 2 + - uid: 455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,435.5 - parent: 1 - - uid: 2078 + pos: -141.5,-1.5 + parent: 2 + - uid: 456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,406.5 - parent: 1 - - uid: 2079 + pos: -142.5,-1.5 + parent: 2 + - uid: 458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 408.5,363.5 - parent: 1 - - uid: 2082 + pos: -142.5,-8.5 + parent: 2 + - uid: 459 components: - type: Transform - pos: 453.5,420.5 - parent: 1 - - uid: 2083 + pos: -152.5,-13.5 + parent: 2 + - uid: 462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,402.5 - parent: 1 - - uid: 2084 + pos: -121.5,-7.5 + parent: 2 + - uid: 463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,398.5 - parent: 1 - - uid: 2090 + pos: -143.5,-13.5 + parent: 2 + - uid: 465 components: - type: Transform - pos: 368.5,379.5 - parent: 1 - - uid: 2094 + pos: -115.5,-1.5 + parent: 2 + - uid: 467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,394.5 - parent: 1 - - uid: 2095 + pos: -116.5,-1.5 + parent: 2 + - uid: 469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 432.5,390.5 - parent: 1 - - uid: 2120 + pos: -117.5,-1.5 + parent: 2 + - uid: 470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 322.5,381.5 - parent: 1 - - uid: 2121 + pos: -116.5,-7.5 + parent: 2 + - uid: 471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 439.5,376.5 - parent: 1 - - uid: 2122 + pos: -123.5,-1.5 + parent: 2 + - uid: 472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 439.5,368.5 - parent: 1 - - uid: 2123 + pos: -124.5,-1.5 + parent: 2 + - uid: 473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 441.5,419.5 - parent: 1 - - uid: 2124 + pos: -152.5,-12.5 + parent: 2 + - uid: 475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 449.5,425.5 - parent: 1 - - uid: 2125 + pos: -142.5,-13.5 + parent: 2 + - uid: 483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 450.5,397.5 - parent: 1 - - uid: 2126 + pos: -145.5,-1.5 + parent: 2 + - uid: 484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 452.5,368.5 - parent: 1 - - uid: 2127 + pos: -113.5,-13.5 + parent: 2 + - uid: 486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 456.5,420.5 - parent: 1 - - uid: 2130 + pos: -126.5,-1.5 + parent: 2 + - uid: 487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 457.5,396.5 - parent: 1 - - uid: 2131 + pos: -127.5,-1.5 + parent: 2 + - uid: 489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,419.5 - parent: 1 - - uid: 2132 + pos: -129.5,-1.5 + parent: 2 + - uid: 491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 461.5,398.5 - parent: 1 - - uid: 2133 + pos: -130.5,-1.5 + parent: 2 + - uid: 492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 464.5,414.5 - parent: 1 - - uid: 2151 + pos: -131.5,-1.5 + parent: 2 + - uid: 495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 465.5,399.5 - parent: 1 - - uid: 2154 + pos: -116.5,-3.5 + parent: 2 + - uid: 498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 466.5,410.5 - parent: 1 - - uid: 2155 + pos: -122.5,-6.5 + parent: 2 + - uid: 509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 468.5,403.5 - parent: 1 - - uid: 2156 + pos: -116.5,-6.5 + parent: 2 + - uid: 510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,413.5 - parent: 1 - - uid: 2165 + pos: -122.5,-2.5 + parent: 2 + - uid: 513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,427.5 - parent: 1 - - uid: 2167 + pos: -122.5,-3.5 + parent: 2 + - uid: 515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,414.5 - parent: 1 - - uid: 2171 + pos: -116.5,-8.5 + parent: 2 + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 350.5,416.5 - parent: 1 - - uid: 2180 + pos: -81.5,6.5 + parent: 2 + - uid: 522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,427.5 - parent: 1 - - uid: 2215 + pos: -125.5,-1.5 + parent: 2 + - uid: 526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,360.5 - parent: 1 - - uid: 2216 + pos: -112.5,-7.5 + parent: 2 + - uid: 527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,357.5 - parent: 1 - - uid: 2217 + pos: -106.5,-7.5 + parent: 2 + - uid: 528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 362.5,383.5 - parent: 1 - - uid: 2218 + pos: -106.5,-6.5 + parent: 2 + - uid: 535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,383.5 - parent: 1 - - uid: 2219 + pos: -122.5,-7.5 + parent: 2 + - uid: 536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,354.5 - parent: 1 - - uid: 2220 + pos: -113.5,-12.5 + parent: 2 + - uid: 538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,382.5 - parent: 1 - - uid: 2221 + pos: -116.5,-13.5 + parent: 2 + - uid: 539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 364.5,381.5 - parent: 1 - - uid: 2222 + pos: -116.5,-12.5 + parent: 2 + - uid: 540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,351.5 - parent: 1 - - uid: 2225 + pos: -112.5,-13.5 + parent: 2 + - uid: 541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,350.5 - parent: 1 - - uid: 2228 + pos: -106.5,-13.5 + parent: 2 + - uid: 542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,350.5 - parent: 1 - - uid: 2262 + pos: -106.5,-8.5 + parent: 2 + - uid: 544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 417.5,350.5 - parent: 1 - - uid: 2276 + pos: -106.5,-14.5 + parent: 2 + - uid: 545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 376.5,377.5 - parent: 1 - - uid: 2297 + pos: -106.5,-18.5 + parent: 2 + - uid: 547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 393.5,420.5 - parent: 1 - - uid: 2308 + pos: -83.5,8.5 + parent: 2 + - uid: 549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,420.5 - parent: 1 - - uid: 2309 + pos: -32.5,-10.5 + parent: 2 + - uid: 550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,419.5 - parent: 1 - - uid: 2310 + pos: -33.5,-10.5 + parent: 2 + - uid: 554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 394.5,418.5 - parent: 1 - - uid: 2312 + pos: -122.5,-19.5 + parent: 2 + - uid: 560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 399.5,368.5 - parent: 1 - - uid: 2317 + pos: -31.5,-10.5 + parent: 2 + - uid: 561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 400.5,368.5 - parent: 1 - - uid: 2318 + pos: -83.5,10.5 + parent: 2 + - uid: 564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 401.5,368.5 - parent: 1 - - uid: 2319 + pos: -83.5,11.5 + parent: 2 + - uid: 566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,368.5 - parent: 1 - - uid: 2321 + pos: -132.5,-7.5 + parent: 2 + - uid: 567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 402.5,366.5 - parent: 1 - - uid: 2347 + pos: -132.5,-6.5 + parent: 2 + - uid: 568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,382.5 - parent: 1 - - uid: 2348 + pos: -132.5,-5.5 + parent: 2 + - uid: 570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 419.5,381.5 - parent: 1 - - uid: 2376 + pos: -132.5,-4.5 + parent: 2 + - uid: 573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 420.5,423.5 - parent: 1 - - uid: 2379 + pos: -132.5,-2.5 + parent: 2 + - uid: 575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,423.5 - parent: 1 - - uid: 2388 + pos: -132.5,-1.5 + parent: 2 + - uid: 576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,350.5 - parent: 1 - - uid: 2399 + pos: -135.5,-5.5 + parent: 2 + - uid: 577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 422.5,384.5 - parent: 1 - - uid: 2425 + pos: -137.5,-1.5 + parent: 2 + - uid: 579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,428.5 - parent: 1 - - uid: 2426 + pos: -89.5,26.5 + parent: 2 + - uid: 581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,427.5 - parent: 1 - - uid: 2427 + pos: -135.5,-7.5 + parent: 2 + - uid: 582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,350.5 - parent: 1 - - uid: 2429 + pos: -135.5,-6.5 + parent: 2 + - uid: 584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 423.5,419.5 - parent: 1 - - uid: 2430 + pos: -135.5,-4.5 + parent: 2 + - uid: 585 components: - type: Transform - pos: 425.5,411.5 - parent: 1 - - uid: 2455 + pos: -135.5,-2.5 + parent: 2 + - uid: 590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 434.5,412.5 - parent: 1 - - uid: 2464 + pos: -135.5,-1.5 + parent: 2 + - uid: 591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,350.5 - parent: 1 - - uid: 2465 + pos: -135.5,-12.5 + parent: 2 + - uid: 592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,413.5 - parent: 1 - - uid: 2473 + pos: -83.5,26.5 + parent: 2 + - uid: 593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 435.5,412.5 - parent: 1 - - uid: 2490 + pos: -136.5,-1.5 + parent: 2 + - uid: 594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,429.5 - parent: 1 - - uid: 2491 + pos: -155.5,-11.5 + parent: 2 + - uid: 595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,395.5 - parent: 1 - - uid: 2493 + pos: -150.5,-1.5 + parent: 2 + - uid: 596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,427.5 - parent: 1 - - uid: 2494 + pos: -152.5,-1.5 + parent: 2 + - uid: 597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,426.5 - parent: 1 - - uid: 2496 + pos: -155.5,-8.5 + parent: 2 + - uid: 601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,424.5 - parent: 1 - - uid: 2497 + pos: -151.5,-13.5 + parent: 2 + - uid: 606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,423.5 - parent: 1 - - uid: 2498 + pos: -152.5,-11.5 + parent: 2 + - uid: 607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,422.5 - parent: 1 - - uid: 2499 + pos: -145.5,-13.5 + parent: 2 + - uid: 611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,421.5 - parent: 1 - - uid: 2500 + pos: -132.5,3.5 + parent: 2 + - uid: 612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,420.5 - parent: 1 - - uid: 2501 + pos: -152.5,-8.5 + parent: 2 + - uid: 614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,378.5 - parent: 1 - - uid: 2507 + pos: -152.5,-6.5 + parent: 2 + - uid: 619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,377.5 - parent: 1 - - uid: 2509 + pos: -152.5,-2.5 + parent: 2 + - uid: 620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 423.5,350.5 - parent: 1 - - uid: 2517 + pos: -149.5,-1.5 + parent: 2 + - uid: 621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,420.5 - parent: 1 - - uid: 2518 + pos: -132.5,-13.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -128.5,-13.5 + parent: 2 + - uid: 648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,378.5 - parent: 1 - - uid: 2533 + pos: -132.5,-14.5 + parent: 2 + - uid: 650 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,369.5 - parent: 1 - - uid: 2537 + pos: -132.5,-15.5 + parent: 2 + - uid: 651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,365.5 - parent: 1 - - uid: 2538 + pos: -97.5,36.5 + parent: 2 + - uid: 661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,364.5 - parent: 1 - - uid: 2539 + pos: -123.5,-19.5 + parent: 2 + - uid: 663 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,350.5 - parent: 1 - - uid: 2573 + pos: -124.5,-19.5 + parent: 2 + - uid: 666 components: - type: Transform - pos: 373.5,397.5 - parent: 1 - - uid: 2574 + pos: -128.5,-19.5 + parent: 2 + - uid: 671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,371.5 - parent: 1 - - uid: 2576 + pos: -121.5,-20.5 + parent: 2 + - uid: 676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,364.5 - parent: 1 - - uid: 2577 + pos: -121.5,-21.5 + parent: 2 + - uid: 677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,350.5 - parent: 1 - - uid: 2580 + pos: -121.5,-25.5 + parent: 2 + - uid: 679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 447.5,392.5 - parent: 1 - - uid: 2581 + pos: -124.5,-25.5 + parent: 2 + - uid: 680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,380.5 - parent: 1 - - uid: 2592 + pos: -125.5,-25.5 + parent: 2 + - uid: 681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,371.5 - parent: 1 - - uid: 2594 + pos: -126.5,-25.5 + parent: 2 + - uid: 682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,364.5 - parent: 1 - - uid: 2595 + pos: -127.5,-25.5 + parent: 2 + - uid: 683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,361.5 - parent: 1 - - uid: 2598 + pos: -129.5,-25.5 + parent: 2 + - uid: 685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,360.5 - parent: 1 - - uid: 2599 + pos: -130.5,-25.5 + parent: 2 + - uid: 687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,359.5 - parent: 1 - - uid: 2600 + pos: -131.5,-25.5 + parent: 2 + - uid: 690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,358.5 - parent: 1 - - uid: 2601 + pos: -132.5,-25.5 + parent: 2 + - uid: 691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,357.5 - parent: 1 - - uid: 2602 + pos: -132.5,-23.5 + parent: 2 + - uid: 692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,356.5 - parent: 1 - - uid: 2603 + pos: -132.5,-21.5 + parent: 2 + - uid: 693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,355.5 - parent: 1 - - uid: 2604 + pos: -132.5,-19.5 + parent: 2 + - uid: 694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,354.5 - parent: 1 - - uid: 2605 + pos: -132.5,-22.5 + parent: 2 + - uid: 702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,351.5 - parent: 1 - - uid: 2608 + pos: -131.5,-19.5 + parent: 2 + - uid: 704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 426.5,350.5 - parent: 1 - - uid: 2610 + pos: -117.5,-25.5 + parent: 2 + - uid: 705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 427.5,380.5 - parent: 1 - - uid: 2632 + pos: -116.5,-25.5 + parent: 2 + - uid: 706 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,380.5 - parent: 1 - - uid: 2633 + pos: -115.5,-25.5 + parent: 2 + - uid: 709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,378.5 - parent: 1 - - uid: 2634 + pos: -113.5,-25.5 + parent: 2 + - uid: 710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 428.5,376.5 - parent: 1 - - uid: 2636 + pos: -111.5,-25.5 + parent: 2 + - uid: 711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,420.5 - parent: 1 - - uid: 2637 + pos: -112.5,-25.5 + parent: 2 + - uid: 714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,383.5 - parent: 1 - - uid: 2660 + pos: -83.5,32.5 + parent: 2 + - uid: 716 components: - type: Transform - pos: 432.5,383.5 - parent: 1 - - uid: 2662 + pos: -84.5,-10.5 + parent: 2 + - uid: 719 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,378.5 - parent: 1 - - uid: 2664 + pos: -84.5,-11.5 + parent: 2 + - uid: 722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 429.5,375.5 - parent: 1 - - uid: 2669 + pos: -83.5,27.5 + parent: 2 + - uid: 724 components: - type: Transform - rot: 3.141592653589793 rad - pos: 430.5,420.5 - parent: 1 - - uid: 2704 + pos: -89.5,36.5 + parent: 2 + - uid: 726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,406.5 - parent: 1 - - uid: 2705 + pos: -90.5,36.5 + parent: 2 + - uid: 727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,420.5 - parent: 1 - - uid: 2721 + pos: -91.5,36.5 + parent: 2 + - uid: 734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,398.5 - parent: 1 - - uid: 2724 + pos: -98.5,-42.5 + parent: 2 + - uid: 737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 433.5,419.5 - parent: 1 - - uid: 2734 + pos: -129.5,-19.5 + parent: 2 + - uid: 738 components: - type: Transform - rot: 3.141592653589793 rad - pos: 434.5,419.5 - parent: 1 - - uid: 2742 + pos: -38.5,-7.5 + parent: 2 + - uid: 739 components: - type: Transform - pos: 433.5,383.5 - parent: 1 - - uid: 2745 + pos: -38.5,-6.5 + parent: 2 + - uid: 741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,417.5 - parent: 1 - - uid: 2746 + pos: -38.5,-2.5 + parent: 2 + - uid: 742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,416.5 - parent: 1 - - uid: 2747 + pos: -38.5,-1.5 + parent: 2 + - uid: 749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,415.5 - parent: 1 - - uid: 2748 + pos: -109.5,-25.5 + parent: 2 + - uid: 753 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,414.5 - parent: 1 - - uid: 2749 + pos: -118.5,34.5 + parent: 2 + - uid: 756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,406.5 - parent: 1 - - uid: 2758 + pos: -108.5,-25.5 + parent: 2 + - uid: 757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,398.5 - parent: 1 - - uid: 2768 + pos: -70.5,-10.5 + parent: 2 + - uid: 758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,414.5 - parent: 1 - - uid: 2769 + pos: -69.5,-10.5 + parent: 2 + - uid: 759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,398.5 - parent: 1 - - uid: 2772 + pos: -73.5,-10.5 + parent: 2 + - uid: 762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 436.5,394.5 - parent: 1 - - uid: 2779 + pos: -92.5,-43.5 + parent: 2 + - uid: 765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,414.5 - parent: 1 - - uid: 2788 + pos: -72.5,-10.5 + parent: 2 + - uid: 768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 379.5,427.5 - parent: 1 - - uid: 2792 + pos: -85.5,-31.5 + parent: 2 + - uid: 770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,384.5 - parent: 1 - - uid: 2793 + pos: -37.5,-10.5 + parent: 2 + - uid: 772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 437.5,383.5 - parent: 1 - - uid: 2794 + pos: -36.5,-10.5 + parent: 2 + - uid: 773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 438.5,414.5 - parent: 1 - - uid: 2795 + pos: -34.5,-11.5 + parent: 2 + - uid: 780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 438.5,406.5 - parent: 1 - - uid: 2800 + pos: -94.5,-36.5 + parent: 2 + - uid: 783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 439.5,414.5 - parent: 1 - - uid: 2805 + pos: -100.5,-3.5 + parent: 2 + - uid: 794 components: - type: Transform - pos: 357.5,394.5 - parent: 1 - - uid: 2808 + pos: -31.5,-0.5 + parent: 2 + - uid: 796 components: - type: Transform - pos: 357.5,390.5 - parent: 1 - - uid: 2812 + pos: -101.5,-25.5 + parent: 2 + - uid: 797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,404.5 - parent: 1 - - uid: 2813 + pos: -98.5,-21.5 + parent: 2 + - uid: 800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,403.5 - parent: 1 - - uid: 2814 + pos: -99.5,-25.5 + parent: 2 + - uid: 801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,400.5 - parent: 1 - - uid: 2817 + pos: -100.5,-21.5 + parent: 2 + - uid: 802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,397.5 - parent: 1 - - uid: 2818 + pos: -99.5,-42.5 + parent: 2 + - uid: 803 components: - type: Transform - pos: 429.5,395.5 - parent: 1 - - uid: 2820 + pos: -92.5,-16.5 + parent: 2 + - uid: 805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,396.5 - parent: 1 - - uid: 2821 + pos: -78.5,-16.5 + parent: 2 + - uid: 806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,394.5 - parent: 1 - - uid: 2823 + pos: -103.5,37.5 + parent: 2 + - uid: 828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 440.5,393.5 - parent: 1 - - uid: 2826 + pos: -79.5,-16.5 + parent: 2 + - uid: 839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,393.5 - parent: 1 - - uid: 2832 + pos: -97.5,-29.5 + parent: 2 + - uid: 841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,392.5 - parent: 1 - - uid: 2833 + pos: -101.5,-33.5 + parent: 2 + - uid: 846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 441.5,391.5 - parent: 1 - - uid: 2834 + pos: -86.5,-24.5 + parent: 2 + - uid: 847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 442.5,414.5 - parent: 1 - - uid: 2835 + pos: -98.5,-29.5 + parent: 2 + - uid: 849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,420.5 - parent: 1 - - uid: 2838 + pos: -99.5,-29.5 + parent: 2 + - uid: 852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,419.5 - parent: 1 - - uid: 2839 + pos: -97.5,-21.5 + parent: 2 + - uid: 854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,414.5 - parent: 1 - - uid: 2844 + pos: -97.5,-25.5 + parent: 2 + - uid: 855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,393.5 - parent: 1 - - uid: 2851 + pos: -97.5,-36.5 + parent: 2 + - uid: 869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,392.5 - parent: 1 - - uid: 2852 + pos: -99.5,-21.5 + parent: 2 + - uid: 873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 443.5,391.5 - parent: 1 - - uid: 2853 + pos: -97.5,-34.5 + parent: 2 + - uid: 874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,403.5 - parent: 1 - - uid: 2858 + pos: -99.5,-0.5 + parent: 2 + - uid: 879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,402.5 - parent: 1 - - uid: 2859 + pos: -99.5,0.5 + parent: 2 + - uid: 880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,401.5 - parent: 1 - - uid: 2860 + pos: -99.5,-4.5 + parent: 2 + - uid: 881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,400.5 - parent: 1 - - uid: 2861 + pos: -99.5,-5.5 + parent: 2 + - uid: 884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,397.5 - parent: 1 - - uid: 2864 + pos: -100.5,-29.5 + parent: 2 + - uid: 886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,396.5 - parent: 1 - - uid: 2865 + pos: -100.5,-25.5 + parent: 2 + - uid: 887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,394.5 - parent: 1 - - uid: 2867 + pos: -97.5,-6.5 + parent: 2 + - uid: 892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 444.5,393.5 - parent: 1 - - uid: 2868 + pos: -98.5,1.5 + parent: 2 + - uid: 894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 445.5,403.5 - parent: 1 - - uid: 2872 + pos: -93.5,1.5 + parent: 2 + - uid: 902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,423.5 - parent: 1 - - uid: 2873 + pos: -107.5,-60.5 + parent: 2 + - uid: 907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,422.5 - parent: 1 - - uid: 2874 + pos: -95.5,-6.5 + parent: 2 + - uid: 910 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,421.5 - parent: 1 - - uid: 2875 + pos: -96.5,-6.5 + parent: 2 + - uid: 912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,420.5 - parent: 1 - - uid: 2876 + pos: -95.5,1.5 + parent: 2 + - uid: 914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,403.5 - parent: 1 - - uid: 2881 + pos: -96.5,1.5 + parent: 2 + - uid: 925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,423.5 - parent: 1 - - uid: 2882 + pos: -93.5,-6.5 + parent: 2 + - uid: 926 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,403.5 - parent: 1 - - uid: 2892 + pos: -92.5,1.5 + parent: 2 + - uid: 930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,402.5 - parent: 1 - - uid: 2893 + pos: -91.5,-0.5 + parent: 2 + - uid: 932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,401.5 - parent: 1 - - uid: 2894 + pos: -91.5,-1.5 + parent: 2 + - uid: 935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 447.5,400.5 - parent: 1 - - uid: 2895 + pos: -91.5,-3.5 + parent: 2 + - uid: 937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 448.5,400.5 - parent: 1 - - uid: 2900 + pos: -91.5,-4.5 + parent: 2 + - uid: 938 components: - type: Transform - rot: 3.141592653589793 rad - pos: 449.5,400.5 - parent: 1 - - uid: 2904 + pos: -91.5,-5.5 + parent: 2 + - uid: 943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 450.5,400.5 - parent: 1 - - uid: 2909 + pos: -98.5,-16.5 + parent: 2 + - uid: 946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 451.5,400.5 - parent: 1 - - uid: 2923 + pos: -77.5,-16.5 + parent: 2 + - uid: 947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,423.5 - parent: 1 - - uid: 2924 + pos: -77.5,-17.5 + parent: 2 + - uid: 948 components: - type: Transform - rot: 3.141592653589793 rad - pos: 452.5,400.5 - parent: 1 - - uid: 2927 + pos: -101.5,-42.5 + parent: 2 + - uid: 949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,423.5 - parent: 1 - - uid: 2928 + pos: -86.5,-30.5 + parent: 2 + - uid: 952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,414.5 - parent: 1 - - uid: 2930 + pos: -85.5,-43.5 + parent: 2 + - uid: 954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,422.5 - parent: 1 - - uid: 2935 + pos: -85.5,-42.5 + parent: 2 + - uid: 957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 453.5,417.5 - parent: 1 - - uid: 2938 + pos: -85.5,-41.5 + parent: 2 + - uid: 959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,417.5 - parent: 1 - - uid: 2942 + pos: -85.5,-40.5 + parent: 2 + - uid: 961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 454.5,400.5 - parent: 1 - - uid: 2947 + pos: -89.5,-43.5 + parent: 2 + - uid: 967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,417.5 - parent: 1 - - uid: 2948 + pos: -110.5,-54.5 + parent: 2 + - uid: 979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 455.5,400.5 - parent: 1 - - uid: 2955 + pos: -77.5,-19.5 + parent: 2 + - uid: 984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,417.5 - parent: 1 - - uid: 2957 + pos: -85.5,-33.5 + parent: 2 + - uid: 994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 456.5,400.5 - parent: 1 - - uid: 2960 + pos: -95.5,-45.5 + parent: 2 + - uid: 1013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 457.5,417.5 - parent: 1 - - uid: 2965 + pos: -17.5,20.5 + parent: 2 + - uid: 1017 components: - type: Transform - pos: 434.5,411.5 - parent: 1 - - uid: 2966 + pos: -85.5,-23.5 + parent: 2 + - uid: 1020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 458.5,417.5 - parent: 1 - - uid: 2969 + pos: -77.5,-50.5 + parent: 2 + - uid: 1024 components: - type: Transform - pos: 434.5,410.5 - parent: 1 - - uid: 2970 + pos: -77.5,-47.5 + parent: 2 + - uid: 1026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 459.5,417.5 - parent: 1 - - uid: 2972 + pos: -77.5,-46.5 + parent: 2 + - uid: 1027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 460.5,417.5 - parent: 1 - - uid: 2973 + pos: -77.5,-18.5 + parent: 2 + - uid: 1031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 460.5,400.5 - parent: 1 - - uid: 2974 + pos: -77.5,-20.5 + parent: 2 + - uid: 1032 components: - type: Transform - pos: 434.5,409.5 - parent: 1 - - uid: 2975 + pos: -77.5,-21.5 + parent: 2 + - uid: 1035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,417.5 - parent: 1 - - uid: 2977 + pos: -77.5,-22.5 + parent: 2 + - uid: 1037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,416.5 - parent: 1 - - uid: 2978 + pos: -77.5,-23.5 + parent: 2 + - uid: 1039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,415.5 - parent: 1 - - uid: 2979 + pos: -98.5,-19.5 + parent: 2 + - uid: 1040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,414.5 - parent: 1 - - uid: 2980 + pos: -98.5,-36.5 + parent: 2 + - uid: 1041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,413.5 - parent: 1 - - uid: 2981 + pos: -98.5,-20.5 + parent: 2 + - uid: 1043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,410.5 - parent: 1 - - uid: 2984 + pos: -85.5,-17.5 + parent: 2 + - uid: 1045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,405.5 - parent: 1 - - uid: 2988 + pos: -86.5,-16.5 + parent: 2 + - uid: 1046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,404.5 - parent: 1 - - uid: 2991 + pos: -80.5,-24.5 + parent: 2 + - uid: 1047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,401.5 - parent: 1 - - uid: 2992 + pos: -87.5,-16.5 + parent: 2 + - uid: 1049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 461.5,400.5 - parent: 1 - - uid: 2993 + pos: -85.5,-16.5 + parent: 2 + - uid: 1050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 462.5,410.5 - parent: 1 - - uid: 2995 + pos: -88.5,-16.5 + parent: 2 + - uid: 1051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 462.5,405.5 - parent: 1 - - uid: 2996 + pos: -81.5,-24.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -101.5,-38.5 + parent: 2 + - uid: 1056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,410.5 - parent: 1 - - uid: 2997 + pos: -97.5,-16.5 + parent: 2 + - uid: 1057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 463.5,405.5 - parent: 1 - - uid: 2998 + pos: -89.5,-17.5 + parent: 2 + - uid: 1058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,410.5 - parent: 1 - - uid: 3000 + pos: -73.5,-8.5 + parent: 2 + - uid: 1059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 464.5,405.5 - parent: 1 - - uid: 3005 + pos: -89.5,-18.5 + parent: 2 + - uid: 1060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 388.5,422.5 - parent: 1 - - uid: 3008 + pos: -106.5,-43.5 + parent: 2 + - uid: 1079 components: - type: Transform - pos: 357.5,391.5 - parent: 1 - - uid: 3010 + pos: -88.5,-24.5 + parent: 2 + - uid: 1081 components: - type: Transform - pos: 439.5,378.5 - parent: 1 - - uid: 3011 + pos: -132.5,-18.5 + parent: 2 + - uid: 1083 components: - type: Transform - pos: 439.5,371.5 - parent: 1 - - uid: 3014 + pos: -98.5,-17.5 + parent: 2 + - uid: 1084 components: - type: Transform - pos: 452.5,376.5 - parent: 1 - - uid: 3019 + pos: -91.5,-16.5 + parent: 2 + - uid: 1085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,382.5 - parent: 1 - - uid: 3020 + pos: -90.5,-40.5 + parent: 2 + - uid: 1086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 474.5,378.5 - parent: 1 - - uid: 3021 + pos: -93.5,-42.5 + parent: 2 + - uid: 1088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 474.5,376.5 - parent: 1 - - uid: 3022 + pos: -93.5,-47.5 + parent: 2 + - uid: 1091 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,380.5 - parent: 1 - - uid: 3025 + pos: -129.5,30.5 + parent: 2 + - uid: 1093 components: - type: Transform - pos: 466.5,370.5 - parent: 1 - - uid: 3026 + pos: -124.5,28.5 + parent: 2 + - uid: 1095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,374.5 - parent: 1 - - uid: 3027 + pos: -129.5,-14.5 + parent: 2 + - uid: 1100 components: - type: Transform - rot: 3.141592653589793 rad - pos: 476.5,381.5 - parent: 1 - - uid: 3030 + pos: -89.5,-24.5 + parent: 2 + - uid: 1101 components: - type: Transform - rot: 3.141592653589793 rad - pos: 476.5,373.5 - parent: 1 - - uid: 3031 + pos: -33.5,-0.5 + parent: 2 + - uid: 1104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 478.5,382.5 - parent: 1 - - uid: 3032 + pos: -32.5,-0.5 + parent: 2 + - uid: 1115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 478.5,381.5 - parent: 1 - - uid: 3036 + pos: -9.5,-49.5 + parent: 2 + - uid: 1134 components: - type: Transform - rot: 3.141592653589793 rad - pos: 478.5,373.5 - parent: 1 - - uid: 3037 + pos: -35.5,-0.5 + parent: 2 + - uid: 1139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 478.5,372.5 - parent: 1 - - uid: 3038 + pos: -138.5,26.5 + parent: 2 + - uid: 1144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 479.5,382.5 - parent: 1 - - uid: 3041 + pos: -89.5,32.5 + parent: 2 + - uid: 1161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 479.5,372.5 - parent: 1 - - uid: 3044 + pos: -26.5,-70.5 + parent: 2 + - uid: 1207 components: - type: Transform rot: 3.141592653589793 rad - pos: 480.5,382.5 - parent: 1 - - uid: 3045 + pos: -76.5,-25.5 + parent: 2 + - uid: 1234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 480.5,381.5 - parent: 1 - - uid: 3046 + pos: -94.5,-39.5 + parent: 2 + - uid: 1238 components: - type: Transform rot: 3.141592653589793 rad - pos: 480.5,372.5 - parent: 1 - - uid: 3047 + pos: -9.5,-3.5 + parent: 2 + - uid: 1243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 482.5,381.5 - parent: 1 - - uid: 3048 + pos: -35.5,-19.5 + parent: 2 + - uid: 1244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 482.5,373.5 - parent: 1 - - uid: 3049 + pos: -38.5,-39.5 + parent: 2 + - uid: 1245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,380.5 - parent: 1 - - uid: 3051 + pos: -24.5,-50.5 + parent: 2 + - uid: 1246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,378.5 - parent: 1 - - uid: 3052 + pos: -34.5,-43.5 + parent: 2 + - uid: 1247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,376.5 - parent: 1 - - uid: 3053 + pos: -41.5,-20.5 + parent: 2 + - uid: 1248 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,374.5 - parent: 1 - - uid: 3073 + pos: -41.5,-21.5 + parent: 2 + - uid: 1250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,440.5 - parent: 1 - - uid: 3098 + pos: -41.5,-22.5 + parent: 2 + - uid: 1251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 328.5,431.5 - parent: 1 - - uid: 3100 + pos: -41.5,-24.5 + parent: 2 + - uid: 1255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 327.5,431.5 - parent: 1 - - uid: 3101 + pos: -35.5,-16.5 + parent: 2 + - uid: 1256 components: - type: Transform - pos: 361.5,412.5 - parent: 1 - - uid: 3116 + pos: -35.5,-17.5 + parent: 2 + - uid: 1257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,388.5 - parent: 1 - - uid: 3123 + pos: -16.5,-53.5 + parent: 2 + - uid: 1258 components: - type: Transform - pos: 373.5,398.5 - parent: 1 - - uid: 3125 + pos: -16.5,-50.5 + parent: 2 + - uid: 1261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,388.5 - parent: 1 - - uid: 3126 + pos: -24.5,-47.5 + parent: 2 + - uid: 1263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,388.5 - parent: 1 - - uid: 3130 + pos: -27.5,-48.5 + parent: 2 + - uid: 1266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,388.5 - parent: 1 - - uid: 3131 + pos: -24.5,-51.5 + parent: 2 + - uid: 1268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,388.5 - parent: 1 - - uid: 3132 + pos: -17.5,-47.5 + parent: 2 + - uid: 1275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,388.5 - parent: 1 - - uid: 3133 + pos: -26.5,-47.5 + parent: 2 + - uid: 1277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,388.5 - parent: 1 - - uid: 3134 + pos: -20.5,-47.5 + parent: 2 + - uid: 1278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,385.5 - parent: 1 - - uid: 3138 + pos: -23.5,-47.5 + parent: 2 + - uid: 1282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 330.5,385.5 - parent: 1 - - uid: 3139 + pos: -16.5,-49.5 + parent: 2 + - uid: 1284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 329.5,385.5 - parent: 1 - - uid: 3140 + pos: -19.5,-47.5 + parent: 2 + - uid: 1287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 328.5,385.5 - parent: 1 - - uid: 3141 + pos: -16.5,-47.5 + parent: 2 + - uid: 1289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 327.5,385.5 - parent: 1 - - uid: 3145 + pos: -27.5,-51.5 + parent: 2 + - uid: 1290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 323.5,385.5 - parent: 1 - - uid: 3146 + pos: -22.5,-55.5 + parent: 2 + - uid: 1291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 322.5,385.5 - parent: 1 - - uid: 3147 + pos: -27.5,-50.5 + parent: 2 + - uid: 1296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 321.5,385.5 - parent: 1 - - uid: 3149 + pos: -27.5,-55.5 + parent: 2 + - uid: 1297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 331.5,385.5 - parent: 1 - - uid: 3150 + pos: -17.5,-55.5 + parent: 2 + - uid: 1299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 319.5,385.5 - parent: 1 - - uid: 3163 + pos: -19.5,-55.5 + parent: 2 + - uid: 1300 components: - type: Transform - pos: 349.5,397.5 - parent: 1 - - uid: 3166 + pos: -20.5,-55.5 + parent: 2 + - uid: 1318 components: - type: Transform - pos: 349.5,396.5 - parent: 1 - - uid: 3168 + pos: -89.5,-30.5 + parent: 2 + - uid: 1324 components: - type: Transform - pos: 349.5,395.5 - parent: 1 - - uid: 3184 + pos: -95.5,-43.5 + parent: 2 + - uid: 1325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 484.5,378.5 - parent: 1 - - uid: 3185 + pos: -95.5,-48.5 + parent: 2 + - uid: 1335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 484.5,377.5 - parent: 1 - - uid: 3186 + pos: -118.5,33.5 + parent: 2 + - uid: 1336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 484.5,376.5 - parent: 1 - - uid: 3187 + pos: -113.5,15.5 + parent: 2 + - uid: 1337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 474.5,380.5 - parent: 1 - - uid: 3188 + pos: -112.5,15.5 + parent: 2 + - uid: 1338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,381.5 - parent: 1 - - uid: 3189 + pos: -135.5,-13.5 + parent: 2 + - uid: 1339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 476.5,382.5 - parent: 1 - - uid: 3190 + pos: -135.5,27.5 + parent: 2 + - uid: 1342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 482.5,382.5 - parent: 1 - - uid: 3191 + pos: -132.5,2.5 + parent: 2 + - uid: 1344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,381.5 - parent: 1 - - uid: 3192 + pos: -132.5,-0.5 + parent: 2 + - uid: 1345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 484.5,380.5 - parent: 1 - - uid: 3193 + pos: -16.5,-55.5 + parent: 2 + - uid: 1346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 484.5,374.5 - parent: 1 - - uid: 3194 + pos: -23.5,-55.5 + parent: 2 + - uid: 1348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 483.5,373.5 - parent: 1 - - uid: 3195 + pos: -38.5,-43.5 + parent: 2 + - uid: 1350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 482.5,372.5 - parent: 1 - - uid: 3390 + pos: -38.5,-42.5 + parent: 2 + - uid: 1351 components: - type: Transform - pos: 302.5,427.5 - parent: 1 - - uid: 3562 + pos: -27.5,-54.5 + parent: 2 + - uid: 1352 components: - type: Transform - rot: 3.141592653589793 rad - pos: 476.5,372.5 - parent: 1 - - uid: 3563 + pos: -27.5,-52.5 + parent: 2 + - uid: 1354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 475.5,373.5 - parent: 1 - - uid: 3568 + pos: -21.5,-58.5 + parent: 2 + - uid: 1359 components: - type: Transform - pos: 312.5,426.5 - parent: 1 - - uid: 3593 + pos: -12.5,8.5 + parent: 2 + - uid: 1360 components: - type: Transform - pos: 368.5,378.5 - parent: 1 - - uid: 3615 + pos: -10.5,8.5 + parent: 2 + - uid: 1363 components: - type: Transform - pos: 329.5,405.5 - parent: 1 - - uid: 3617 + pos: -10.5,4.5 + parent: 2 + - uid: 1364 components: - type: Transform - pos: 330.5,405.5 - parent: 1 - - uid: 3634 + pos: -11.5,4.5 + parent: 2 + - uid: 1365 components: - type: Transform - pos: 429.5,403.5 - parent: 1 - - uid: 3751 + pos: -11.5,8.5 + parent: 2 + - uid: 1366 components: - type: Transform - pos: 435.5,409.5 - parent: 1 - - uid: 3777 + pos: -40.5,-18.5 + parent: 2 + - uid: 1367 components: - type: Transform - pos: 441.5,403.5 - parent: 1 - - uid: 3778 + pos: -40.5,-17.5 + parent: 2 + - uid: 1368 components: - type: Transform - pos: 443.5,413.5 - parent: 1 - - uid: 3780 + pos: -40.5,-24.5 + parent: 2 + - uid: 1369 components: - type: Transform - pos: 444.5,413.5 - parent: 1 - - uid: 3789 + pos: -40.5,-25.5 + parent: 2 + - uid: 1370 components: - type: Transform - pos: 447.5,413.5 - parent: 1 - - uid: 3807 + pos: -9.5,4.5 + parent: 2 + - uid: 1374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 474.5,374.5 - parent: 1 - - uid: 3809 + pos: 2.5,-15.5 + parent: 2 + - uid: 1375 components: - type: Transform - pos: 447.5,409.5 - parent: 1 - - uid: 3810 + pos: -10.5,-5.5 + parent: 2 + - uid: 1376 components: - type: Transform - pos: 447.5,405.5 - parent: 1 - - uid: 3825 + pos: -13.5,-5.5 + parent: 2 + - uid: 1377 components: - type: Transform - pos: 361.5,410.5 - parent: 1 - - uid: 3856 + pos: -11.5,-5.5 + parent: 2 + - uid: 1378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 316.5,392.5 - parent: 1 - - uid: 3973 + pos: -12.5,-25.5 + parent: 2 + - uid: 1379 components: - type: Transform - pos: 414.5,404.5 - parent: 1 - - uid: 3974 + pos: -12.5,-5.5 + parent: 2 + - uid: 1388 components: - type: Transform - pos: 417.5,403.5 - parent: 1 - - uid: 3975 + pos: -12.5,-22.5 + parent: 2 + - uid: 1390 components: - type: Transform - pos: 416.5,402.5 - parent: 1 - - uid: 4106 + pos: -12.5,-23.5 + parent: 2 + - uid: 1393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 340.5,385.5 - parent: 1 - - uid: 4111 + pos: -5.5,-5.5 + parent: 2 + - uid: 1394 components: - type: Transform - pos: 323.5,401.5 - parent: 1 - - uid: 4172 + pos: -1.5,-15.5 + parent: 2 + - uid: 1395 components: - type: Transform - pos: 312.5,420.5 - parent: 1 - - uid: 4174 + pos: -12.5,-21.5 + parent: 2 + - uid: 1396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 354.5,419.5 - parent: 1 - - uid: 4257 + pos: -1.5,-19.5 + parent: 2 + - uid: 1397 components: - type: Transform - pos: 327.5,399.5 - parent: 1 - - uid: 4258 + pos: -5.5,-21.5 + parent: 2 + - uid: 1398 components: - type: Transform - pos: 328.5,399.5 - parent: 1 - - uid: 4259 + pos: -1.5,-7.5 + parent: 2 + - uid: 1400 components: - type: Transform - pos: 329.5,398.5 - parent: 1 - - uid: 4262 + pos: -1.5,-17.5 + parent: 2 + - uid: 1401 components: - type: Transform - pos: 323.5,398.5 - parent: 1 - - uid: 4263 + pos: -1.5,-11.5 + parent: 2 + - uid: 1406 components: - type: Transform - pos: 323.5,397.5 - parent: 1 - - uid: 4264 + rot: 3.141592653589793 rad + pos: -136.5,25.5 + parent: 2 + - uid: 1407 components: - type: Transform - pos: 323.5,396.5 - parent: 1 - - uid: 4265 + pos: -130.5,16.5 + parent: 2 + - uid: 1411 components: - type: Transform - pos: 323.5,395.5 - parent: 1 - - uid: 4266 + pos: -124.5,-0.5 + parent: 2 + - uid: 1412 components: - type: Transform - pos: 323.5,394.5 - parent: 1 - - uid: 4267 + pos: -132.5,4.5 + parent: 2 + - uid: 1413 components: - type: Transform - pos: 323.5,400.5 - parent: 1 - - uid: 4268 + pos: -132.5,6.5 + parent: 2 + - uid: 1414 components: - type: Transform - pos: 324.5,393.5 - parent: 1 - - uid: 4269 + pos: -132.5,7.5 + parent: 2 + - uid: 1415 components: - type: Transform - pos: 326.5,393.5 - parent: 1 - - uid: 4270 + pos: -132.5,1.5 + parent: 2 + - uid: 1416 components: - type: Transform - pos: 327.5,393.5 - parent: 1 - - uid: 4271 + pos: -132.5,10.5 + parent: 2 + - uid: 1417 components: - type: Transform - pos: 328.5,393.5 - parent: 1 - - uid: 4272 + pos: -132.5,11.5 + parent: 2 + - uid: 1420 components: - type: Transform - pos: 325.5,393.5 - parent: 1 - - uid: 4288 + pos: -132.5,9.5 + parent: 2 + - uid: 1423 components: - type: Transform - pos: 330.5,393.5 - parent: 1 - - uid: 4516 + pos: -1.5,-9.5 + parent: 2 + - uid: 1424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,391.5 - parent: 1 - - uid: 4581 + pos: -7.5,-5.5 + parent: 2 + - uid: 1429 components: - type: Transform - pos: 373.5,377.5 - parent: 1 - - uid: 4601 + pos: -139.5,-8.5 + parent: 2 + - uid: 1439 components: - type: Transform - pos: 447.5,404.5 - parent: 1 - - uid: 4619 + pos: -137.5,-24.5 + parent: 2 + - uid: 1441 components: - type: Transform - pos: 373.5,378.5 - parent: 1 - - uid: 4830 + pos: -121.5,-1.5 + parent: 2 + - uid: 1442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 332.5,454.5 - parent: 1 - - uid: 4834 + pos: -118.5,37.5 + parent: 2 + - uid: 1443 components: - type: Transform - pos: 500.5,383.5 - parent: 1 - - uid: 4860 + pos: -137.5,28.5 + parent: 2 + - uid: 1449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,448.5 - parent: 1 - - uid: 4876 + pos: -115.5,18.5 + parent: 2 + - uid: 1452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,451.5 - parent: 1 - - uid: 4888 + pos: -6.5,-5.5 + parent: 2 + - uid: 1453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,450.5 - parent: 1 - - uid: 4889 + pos: -116.5,18.5 + parent: 2 + - uid: 1455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,445.5 - parent: 1 - - uid: 4891 + pos: -117.5,18.5 + parent: 2 + - uid: 1456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,450.5 - parent: 1 - - uid: 4893 + pos: -122.5,18.5 + parent: 2 + - uid: 1457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 394.5,400.5 - parent: 1 - - uid: 4894 + pos: -123.5,18.5 + parent: 2 + - uid: 1458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,400.5 - parent: 1 - - uid: 4915 + pos: -121.5,18.5 + parent: 2 + - uid: 1460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,454.5 - parent: 1 - - uid: 4929 + pos: -120.5,-1.5 + parent: 2 + - uid: 1461 components: - type: Transform - pos: 457.5,416.5 - parent: 1 - - uid: 4942 + pos: -139.5,0.5 + parent: 2 + - uid: 1462 components: - type: Transform - pos: 457.5,413.5 - parent: 1 - - uid: 4951 + pos: -135.5,2.5 + parent: 2 + - uid: 1464 components: - type: Transform - pos: 458.5,413.5 - parent: 1 - - uid: 5044 + pos: -139.5,2.5 + parent: 2 + - uid: 1466 components: - type: Transform - pos: 429.5,399.5 - parent: 1 - - uid: 5054 + pos: -139.5,1.5 + parent: 2 + - uid: 1469 components: - type: Transform - pos: 460.5,413.5 - parent: 1 - - uid: 5056 + pos: -138.5,2.5 + parent: 2 + - uid: 1479 components: - type: Transform - pos: 447.5,406.5 - parent: 1 - - uid: 5083 + pos: -137.5,2.5 + parent: 2 + - uid: 1482 components: - type: Transform - pos: 429.5,391.5 - parent: 1 - - uid: 5243 + pos: -105.5,-60.5 + parent: 2 + - uid: 1483 components: - type: Transform - pos: 429.5,402.5 - parent: 1 - - uid: 5342 + pos: -103.5,-64.5 + parent: 2 + - uid: 1492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,394.5 - parent: 1 - - uid: 5346 + pos: -8.5,-5.5 + parent: 2 + - uid: 1494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 392.5,400.5 - parent: 1 - - uid: 5373 + pos: 2.5,-11.5 + parent: 2 + - uid: 1495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 391.5,399.5 - parent: 1 - - uid: 5450 + pos: 2.5,-19.5 + parent: 2 + - uid: 1496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 341.5,385.5 - parent: 1 - - uid: 5531 + pos: -6.5,-21.5 + parent: 2 + - uid: 1506 components: - type: Transform - pos: 468.5,367.5 - parent: 1 - - uid: 5538 + pos: -105.5,-64.5 + parent: 2 + - uid: 1507 components: - type: Transform - pos: 469.5,378.5 - parent: 1 - - uid: 5555 + pos: -107.5,-19.5 + parent: 2 + - uid: 1509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 393.5,400.5 - parent: 1 - - uid: 5556 + pos: -108.5,-19.5 + parent: 2 + - uid: 1511 components: - type: Transform rot: 3.141592653589793 rad - pos: 394.5,399.5 - parent: 1 - - uid: 5578 + pos: -9.5,-2.5 + parent: 2 + - uid: 1513 components: - type: Transform - pos: 373.5,379.5 - parent: 1 - - uid: 5589 + pos: -108.5,-24.5 + parent: 2 + - uid: 1514 components: - type: Transform - pos: 376.5,394.5 - parent: 1 - - uid: 5590 + pos: -8.5,-21.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 1524 components: - type: Transform - pos: 376.5,393.5 - parent: 1 - - uid: 5674 + pos: -13.5,-6.5 + parent: 2 + - uid: 1525 components: - type: Transform - pos: 375.5,376.5 - parent: 1 - - uid: 5730 + pos: -13.5,-9.5 + parent: 2 + - uid: 1526 components: - type: Transform - pos: 501.5,379.5 - parent: 1 - - uid: 5766 + pos: 2.5,-9.5 + parent: 2 + - uid: 1527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,421.5 - parent: 1 - - uid: 5822 + pos: -7.5,-9.5 + parent: 2 + - uid: 1537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,391.5 - parent: 1 - - uid: 5839 + pos: -12.5,-9.5 + parent: 2 + - uid: 1538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 358.5,420.5 - parent: 1 - - uid: 5860 + pos: -100.5,-64.5 + parent: 2 + - uid: 1542 components: - type: Transform - pos: 319.5,427.5 - parent: 1 - - uid: 5902 + pos: -100.5,-65.5 + parent: 2 + - uid: 1549 components: - type: Transform - pos: 409.5,362.5 - parent: 1 - - uid: 5903 + pos: -6.5,-9.5 + parent: 2 + - uid: 1551 components: - type: Transform - pos: 409.5,360.5 - parent: 1 - - uid: 5904 + pos: -2.5,-9.5 + parent: 2 + - uid: 1556 components: - type: Transform - pos: 409.5,361.5 - parent: 1 - - uid: 5905 + pos: -17.5,9.5 + parent: 2 + - uid: 1558 components: - type: Transform - pos: 410.5,360.5 - parent: 1 - - uid: 5906 + pos: -108.5,-21.5 + parent: 2 + - uid: 1562 components: - type: Transform - pos: 412.5,360.5 - parent: 1 - - uid: 5907 + pos: -7.5,-34.5 + parent: 2 + - uid: 1567 components: - type: Transform - pos: 411.5,360.5 - parent: 1 - - uid: 5975 + pos: -13.5,8.5 + parent: 2 + - uid: 1572 components: - type: Transform - pos: 326.5,405.5 - parent: 1 - - uid: 5978 + pos: -108.5,-23.5 + parent: 2 + - uid: 1573 components: - type: Transform - pos: 326.5,402.5 - parent: 1 - - uid: 6015 + pos: -13.5,7.5 + parent: 2 + - uid: 1575 components: - type: Transform - pos: 376.5,388.5 - parent: 1 - - uid: 6016 + pos: -103.5,-61.5 + parent: 2 + - uid: 1592 components: - type: Transform - pos: 376.5,387.5 - parent: 1 - - uid: 6019 + pos: -138.5,28.5 + parent: 2 + - uid: 1622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,385.5 - parent: 1 - - uid: 6020 + pos: -141.5,-12.5 + parent: 2 + - uid: 1626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,384.5 - parent: 1 - - uid: 6023 + pos: -142.5,-11.5 + parent: 2 + - uid: 1628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,380.5 - parent: 1 - - uid: 6024 + pos: -153.5,-12.5 + parent: 2 + - uid: 1629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 376.5,381.5 - parent: 1 - - uid: 6205 + pos: -153.5,-8.5 + parent: 2 + - uid: 1650 components: - type: Transform - pos: 315.5,384.5 - parent: 1 - - uid: 6309 + pos: -107.5,-13.5 + parent: 2 + - uid: 1652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 421.5,395.5 - parent: 1 - - uid: 6413 + pos: -79.5,-41.5 + parent: 2 + - uid: 1653 components: - type: Transform - pos: 312.5,425.5 - parent: 1 - - uid: 6415 + pos: -84.5,-51.5 + parent: 2 + - uid: 1655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 304.5,428.5 - parent: 1 - - uid: 6417 + pos: -79.5,-51.5 + parent: 2 + - uid: 1656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 310.5,428.5 - parent: 1 - - uid: 6421 + pos: -88.5,-30.5 + parent: 2 + - uid: 1661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 305.5,428.5 - parent: 1 - - uid: 6458 + pos: -79.5,-36.5 + parent: 2 + - uid: 1662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,428.5 - parent: 1 - - uid: 6459 + pos: -80.5,-36.5 + parent: 2 + - uid: 1663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 303.5,428.5 - parent: 1 - - uid: 6663 + pos: -79.5,-28.5 + parent: 2 + - uid: 1665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 342.5,385.5 - parent: 1 - - uid: 6664 + pos: -135.5,28.5 + parent: 2 + - uid: 1666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,391.5 - parent: 1 - - uid: 6667 + pos: -98.5,-33.5 + parent: 2 + - uid: 1668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,390.5 - parent: 1 - - uid: 6668 + pos: -100.5,-42.5 + parent: 2 + - uid: 1669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,387.5 - parent: 1 - - uid: 6669 + pos: -89.5,-35.5 + parent: 2 + - uid: 1670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,386.5 - parent: 1 - - uid: 6670 + pos: -89.5,-36.5 + parent: 2 + - uid: 1678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,385.5 - parent: 1 - - uid: 6671 + pos: -79.5,-42.5 + parent: 2 + - uid: 1679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,390.5 - parent: 1 - - uid: 6673 + pos: -77.5,-36.5 + parent: 2 + - uid: 1680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 344.5,386.5 - parent: 1 - missingComponents: - - Physics - - Fixtures - - Airtight - - uid: 6705 + pos: -85.5,-51.5 + parent: 2 + - uid: 1681 components: - type: Transform - pos: 473.5,365.5 - parent: 1 - - uid: 6706 + pos: -83.5,-51.5 + parent: 2 + - uid: 1682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,390.5 - parent: 1 - - uid: 6767 + pos: -81.5,-51.5 + parent: 2 + - uid: 1685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,387.5 - parent: 1 - - uid: 6773 + pos: -95.5,-53.5 + parent: 2 + - uid: 1686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 345.5,386.5 - parent: 1 - - uid: 7383 + pos: -95.5,-47.5 + parent: 2 + - uid: 1687 components: - type: Transform - pos: 315.5,421.5 - parent: 1 - - uid: 7384 + pos: -79.5,-49.5 + parent: 2 + - uid: 1689 components: - type: Transform - pos: 315.5,423.5 - parent: 1 - - uid: 7441 + pos: -79.5,-50.5 + parent: 2 + - uid: 1692 components: - type: Transform - pos: 419.5,384.5 - parent: 1 - - uid: 7723 + pos: -135.5,29.5 + parent: 2 + - uid: 1696 components: - type: Transform - pos: 477.5,360.5 - parent: 1 - - uid: 8343 + pos: -79.5,-46.5 + parent: 2 + - uid: 1699 components: - type: Transform - pos: 432.5,382.5 - parent: 1 - - uid: 8368 + pos: -87.5,-30.5 + parent: 2 + - uid: 1717 components: - type: Transform - pos: 436.5,380.5 - parent: 1 - - uid: 8402 + pos: -77.5,-53.5 + parent: 2 + - uid: 1719 components: - type: Transform - pos: 504.5,379.5 - parent: 1 - - uid: 8412 + pos: -97.5,-33.5 + parent: 2 + - uid: 1721 components: - type: Transform - pos: 505.5,383.5 - parent: 1 - - uid: 9626 + pos: -93.5,-45.5 + parent: 2 + - uid: 1725 components: - type: Transform - pos: 421.5,391.5 - parent: 1 - - uid: 9701 + pos: -95.5,-52.5 + parent: 2 + - uid: 1726 components: - type: Transform - pos: 414.5,403.5 - parent: 1 - - uid: 10311 + pos: -93.5,-48.5 + parent: 2 + - uid: 1731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 310.5,393.5 - parent: 1 - - uid: 11881 + pos: -80.5,-51.5 + parent: 2 + - uid: 1733 components: - type: Transform - pos: 419.5,383.5 - parent: 1 - - uid: 13335 + pos: -95.5,-44.5 + parent: 2 + - uid: 1736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 330.5,389.5 - parent: 1 - - uid: 13597 + pos: -89.5,-31.5 + parent: 2 + - uid: 1737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,389.5 - parent: 1 - - uid: 13631 + pos: -87.5,-36.5 + parent: 2 + - uid: 1740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,387.5 - parent: 1 - - uid: 13642 + pos: -86.5,-51.5 + parent: 2 + - uid: 1743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,388.5 - parent: 1 - - uid: 13698 + pos: -90.5,-51.5 + parent: 2 + - uid: 1745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 332.5,386.5 - parent: 1 - - uid: 13840 + pos: -78.5,-53.5 + parent: 2 + - uid: 1749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 410.5,410.5 - parent: 1 - - uid: 14450 + pos: -94.5,-53.5 + parent: 2 + - uid: 1753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,445.5 - parent: 1 - - uid: 14579 + pos: -79.5,-40.5 + parent: 2 + - uid: 1756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 446.5,409.5 - parent: 1 - - uid: 14943 + pos: -101.5,-36.5 + parent: 2 + - uid: 1758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,450.5 - parent: 1 - - uid: 15836 + pos: -79.5,-44.5 + parent: 2 + - uid: 1760 components: - type: Transform - pos: 507.5,383.5 - parent: 1 - - uid: 15837 + pos: -93.5,-36.5 + parent: 2 + - uid: 1761 components: - type: Transform - pos: 507.5,382.5 - parent: 1 - - uid: 15842 + pos: -93.5,-41.5 + parent: 2 + - uid: 1763 components: - type: Transform - pos: 499.5,382.5 - parent: 1 - - uid: 15864 + pos: -99.5,-33.5 + parent: 2 + - uid: 1764 components: - type: Transform - pos: 420.5,384.5 - parent: 1 - - uid: 15865 + pos: -79.5,-48.5 + parent: 2 + - uid: 1769 components: - type: Transform - pos: 422.5,382.5 - parent: 1 - - uid: 15868 + pos: -13.5,5.5 + parent: 2 + - uid: 1772 components: - type: Transform - pos: 422.5,381.5 - parent: 1 - - uid: 15984 + pos: -52.5,-78.5 + parent: 2 + - uid: 1773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 348.5,439.5 - parent: 1 - - uid: 16004 + pos: -51.5,-78.5 + parent: 2 + - uid: 1776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 360.5,418.5 - parent: 1 - - uid: 16030 + pos: -97.5,-35.5 + parent: 2 + - uid: 1779 components: - type: Transform - pos: 478.5,410.5 - parent: 1 - - uid: 16091 + pos: -88.5,-36.5 + parent: 2 + - uid: 1781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,416.5 - parent: 1 - - uid: 16092 + pos: -90.5,-16.5 + parent: 2 + - uid: 1783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,415.5 - parent: 1 - - uid: 16093 + pos: -85.5,-24.5 + parent: 2 + - uid: 1785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,417.5 - parent: 1 - - uid: 16094 + pos: -135.5,26.5 + parent: 2 + - uid: 1794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 418.5,416.5 - parent: 1 - - uid: 16299 + pos: -94.5,-38.5 + parent: 2 + - uid: 1795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 414.5,413.5 - parent: 1 - - uid: 16300 + pos: -79.5,-19.5 + parent: 2 + - uid: 1803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,414.5 - parent: 1 - - uid: 17031 + pos: -85.5,-34.5 + parent: 2 + - uid: 1805 components: - type: Transform - pos: 330.5,395.5 - parent: 1 - - uid: 17450 + pos: -79.5,-38.5 + parent: 2 + - uid: 1806 components: - type: Transform - pos: 499.5,378.5 - parent: 1 - - uid: 17481 + pos: -60.5,-79.5 + parent: 2 + - uid: 1808 components: - type: Transform - pos: 507.5,377.5 - parent: 1 - - uid: 17484 + pos: -89.5,-49.5 + parent: 2 + - uid: 1811 components: - type: Transform - pos: 502.5,377.5 - parent: 1 - - uid: 17505 + pos: -54.5,-79.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: 509.5,381.5 - parent: 1 - - uid: 17692 + pos: -93.5,-44.5 + parent: 2 + - uid: 1820 components: - type: Transform - pos: 499.5,377.5 - parent: 1 - - uid: 17722 + pos: -79.5,-45.5 + parent: 2 + - uid: 1821 components: - type: Transform - pos: 503.5,377.5 - parent: 1 - - uid: 18213 + pos: -82.5,-16.5 + parent: 2 + - uid: 1823 components: - type: Transform - pos: 360.5,412.5 - parent: 1 - - uid: 18214 + pos: -80.5,-18.5 + parent: 2 + - uid: 1826 components: - type: Transform - pos: 360.5,411.5 - parent: 1 - - uid: 18215 + pos: -85.5,-19.5 + parent: 2 + - uid: 1828 components: - type: Transform - pos: 360.5,410.5 - parent: 1 - - uid: 18230 + pos: -59.5,-79.5 + parent: 2 + - uid: 1830 components: - type: Transform - pos: 330.5,443.5 - parent: 1 - - uid: 18527 + pos: -54.5,-78.5 + parent: 2 + - uid: 1831 components: - type: Transform - pos: 494.5,408.5 - parent: 1 - - uid: 18554 + pos: -81.5,-16.5 + parent: 2 + - uid: 1832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,413.5 - parent: 1 - - uid: 18555 + pos: -83.5,-16.5 + parent: 2 + - uid: 1834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 361.5,415.5 - parent: 1 - - uid: 18617 + pos: -84.5,-16.5 + parent: 2 + - uid: 1844 components: - type: Transform - pos: 331.5,443.5 - parent: 1 - - uid: 19197 + pos: -79.5,-24.5 + parent: 2 + - uid: 1846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,441.5 - parent: 1 - - uid: 19200 + pos: -101.5,-64.5 + parent: 2 + - uid: 1847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,440.5 - parent: 1 - - uid: 19201 + pos: -84.5,-24.5 + parent: 2 + - uid: 1851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 332.5,435.5 - parent: 1 - - uid: 19203 + pos: -53.5,-78.5 + parent: 2 + - uid: 1852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 347.5,442.5 - parent: 1 - - uid: 19204 + pos: -79.5,-23.5 + parent: 2 + - uid: 1855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 351.5,442.5 - parent: 1 - - uid: 19407 + pos: -83.5,-24.5 + parent: 2 + - uid: 1863 components: - type: Transform - pos: 478.5,397.5 - parent: 1 - - uid: 19677 + pos: -93.5,-20.5 + parent: 2 + - uid: 1869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,435.5 - parent: 1 - - uid: 20029 + pos: -106.5,-60.5 + parent: 2 + - uid: 1875 components: - type: Transform - pos: 351.5,443.5 - parent: 1 - - uid: 20081 + pos: -77.5,-37.5 + parent: 2 + - uid: 1876 components: - type: Transform - pos: 351.5,397.5 - parent: 1 - - uid: 20464 + pos: -77.5,-41.5 + parent: 2 + - uid: 1881 components: - type: Transform - pos: -1.5,-1.5 - parent: 20181 - - uid: 20465 + pos: -89.5,-42.5 + parent: 2 + - uid: 1885 components: - type: Transform - pos: -1.5,0.5 - parent: 20181 - - uid: 20466 + pos: -89.5,-51.5 + parent: 2 + - uid: 1886 components: - type: Transform - pos: -1.5,-0.5 - parent: 20181 - - uid: 20467 + pos: -93.5,-43.5 + parent: 2 + - uid: 1889 components: - type: Transform - pos: -1.5,-2.5 - parent: 20181 - - uid: 20468 + pos: -85.5,-36.5 + parent: 2 + - uid: 1890 components: - type: Transform - pos: -1.5,-3.5 - parent: 20181 - - uid: 20469 + pos: -81.5,-18.5 + parent: 2 + - uid: 1903 components: - type: Transform - pos: -0.5,-3.5 - parent: 20181 - - uid: 20470 + pos: -10.5,-26.5 + parent: 2 + - uid: 1922 components: - type: Transform - pos: 0.5,-3.5 - parent: 20181 - - uid: 20471 + pos: -9.5,-26.5 + parent: 2 + - uid: 1923 components: - type: Transform - pos: 3.5,-3.5 - parent: 20181 - - uid: 20472 + pos: -85.5,-18.5 + parent: 2 + - uid: 1932 components: - type: Transform - pos: 1.5,-3.5 - parent: 20181 - - uid: 20473 + pos: -83.5,-18.5 + parent: 2 + - uid: 1939 components: - type: Transform - pos: 4.5,-3.5 - parent: 20181 - - uid: 20474 + pos: -79.5,-22.5 + parent: 2 + - uid: 1942 components: - type: Transform - pos: 2.5,-3.5 - parent: 20181 - - uid: 20475 + pos: -80.5,-16.5 + parent: 2 + - uid: 1944 components: - type: Transform - pos: 0.5,-0.5 - parent: 20181 - - uid: 20476 + pos: -79.5,-20.5 + parent: 2 + - uid: 1965 components: - type: Transform - pos: 0.5,-2.5 - parent: 20181 - - uid: 20477 + pos: -77.5,-38.5 + parent: 2 + - uid: 1966 components: - type: Transform - pos: 0.5,-1.5 - parent: 20181 - - uid: 20478 + pos: -79.5,-37.5 + parent: 2 + - uid: 1967 components: - type: Transform - pos: 2.5,-0.5 - parent: 20181 - - uid: 20479 + pos: -77.5,-43.5 + parent: 2 + - uid: 1968 components: - type: Transform - pos: 2.5,-2.5 - parent: 20181 - - uid: 20480 + pos: -77.5,-45.5 + parent: 2 + - uid: 1969 components: - type: Transform - pos: 2.5,-1.5 - parent: 20181 - - uid: 20481 + pos: -94.5,-42.5 + parent: 2 + - uid: 1970 components: - type: Transform - pos: 4.5,-0.5 - parent: 20181 - - uid: 20482 + pos: -77.5,-42.5 + parent: 2 + - uid: 1996 components: - type: Transform - pos: 4.5,-1.5 - parent: 20181 - - uid: 20483 + pos: -96.5,-42.5 + parent: 2 + - uid: 1999 components: - type: Transform - pos: 4.5,-2.5 - parent: 20181 - - uid: 20484 + pos: -77.5,-39.5 + parent: 2 + - uid: 2000 components: - type: Transform - pos: -1.5,3.5 - parent: 20181 - - uid: 20485 + pos: -89.5,-40.5 + parent: 2 + - uid: 2003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 20181 - - uid: 20486 + pos: -84.5,-18.5 + parent: 2 + - uid: 2004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 20181 - - uid: 20487 + pos: -100.5,-33.5 + parent: 2 + - uid: 2005 components: - type: Transform - pos: 2.5,3.5 - parent: 20181 - - uid: 20488 + pos: -101.5,-37.5 + parent: 2 + - uid: 2006 components: - type: Transform - pos: 1.5,3.5 - parent: 20181 - - uid: 20489 + pos: -82.5,-36.5 + parent: 2 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 20181 - - uid: 20490 + pos: -84.5,-36.5 + parent: 2 + - uid: 2012 components: - type: Transform - pos: 4.5,4.5 - parent: 20181 - - uid: 20491 + pos: -94.5,-40.5 + parent: 2 + - uid: 2025 components: - type: Transform - pos: 4.5,3.5 - parent: 20181 - - uid: 20492 + pos: -89.5,-41.5 + parent: 2 + - uid: 2050 components: - type: Transform - pos: 5.5,-0.5 - parent: 20181 - - uid: 20493 + pos: -83.5,-36.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: 5.5,0.5 - parent: 20181 - - uid: 20494 + pos: -101.5,-34.5 + parent: 2 + - uid: 2087 components: - type: Transform - pos: 5.5,3.5 - parent: 20181 - - uid: 20495 + pos: -101.5,-35.5 + parent: 2 + - uid: 2099 components: - type: Transform - pos: 5.5,2.5 - parent: 20181 - - uid: 20496 + pos: -93.5,-50.5 + parent: 2 + - uid: 2113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 20181 - - uid: 20497 + pos: -10.5,-54.5 + parent: 2 + - uid: 2115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 20181 - - uid: 20498 + pos: -36.5,13.5 + parent: 2 + - uid: 2130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 20181 - - uid: 20499 + pos: -38.5,18.5 + parent: 2 + - uid: 2154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 20181 - - uid: 20500 + pos: -37.5,18.5 + parent: 2 + - uid: 2179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 - parent: 20181 - - uid: 20501 + pos: -32.5,22.5 + parent: 2 + - uid: 2181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 20181 - - uid: 20502 + pos: -37.5,13.5 + parent: 2 + - uid: 2182 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 20181 - - uid: 20503 + pos: -36.5,18.5 + parent: 2 + - uid: 2183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 20181 - - uid: 20504 + pos: -39.5,20.5 + parent: 2 + - uid: 2184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 20181 - - uid: 20505 + pos: -17.5,15.5 + parent: 2 + - uid: 2185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 20181 - - uid: 20506 + pos: -17.5,11.5 + parent: 2 + - uid: 2186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 - parent: 20181 - - uid: 20507 + pos: -34.5,22.5 + parent: 2 + - uid: 2187 components: - type: Transform - pos: 1.5,5.5 - parent: 20181 - - uid: 20508 + pos: -17.5,10.5 + parent: 2 + - uid: 2189 components: - type: Transform - pos: 2.5,5.5 - parent: 20181 - - uid: 20509 + pos: -37.5,20.5 + parent: 2 + - uid: 2194 components: - type: Transform - pos: 4.5,5.5 - parent: 20181 - - uid: 20510 + pos: -36.5,22.5 + parent: 2 + - uid: 2195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 20181 - - uid: 20511 + pos: -38.5,20.5 + parent: 2 + - uid: 2259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 - parent: 20181 - - uid: 20512 + pos: -110.5,-56.5 + parent: 2 + - uid: 2262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 - parent: 20181 - - uid: 20513 + rot: -1.5707963267948966 rad + pos: -135.5,-21.5 + parent: 2 + - uid: 2281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,0.5 - parent: 20181 - - uid: 21060 + rot: -1.5707963267948966 rad + pos: -134.5,-30.5 + parent: 2 + - uid: 2303 components: - type: Transform - pos: 360.5,408.5 - parent: 1 - - uid: 21191 + rot: -1.5707963267948966 rad + pos: -134.5,-29.5 + parent: 2 + - uid: 2305 components: - type: Transform - pos: 315.5,382.5 - parent: 1 - - uid: 21333 + pos: -110.5,-55.5 + parent: 2 + - uid: 2312 components: - type: Transform - pos: 1.5,26.5 - parent: 5072 - - uid: 21334 + pos: -109.5,-58.5 + parent: 2 + - uid: 2313 components: - type: Transform - pos: 0.5,27.5 - parent: 5072 - - uid: 21349 + pos: -108.5,-58.5 + parent: 2 + - uid: 2318 components: - type: Transform - pos: 1.5,27.5 - parent: 5072 - - uid: 21352 + rot: 3.141592653589793 rad + pos: -136.5,9.5 + parent: 2 + - uid: 2322 components: - type: Transform - pos: 6.5,21.5 - parent: 5072 - - uid: 21356 + pos: -36.5,21.5 + parent: 2 + - uid: 2325 components: - type: Transform - pos: 5.5,24.5 - parent: 5072 - - uid: 21423 + pos: -35.5,22.5 + parent: 2 + - uid: 2342 components: - type: Transform - pos: 5.5,26.5 - parent: 5072 - - uid: 21455 + rot: 3.141592653589793 rad + pos: -25.5,-58.5 + parent: 2 + - uid: 2343 components: - type: Transform - pos: 5.5,27.5 - parent: 5072 - - uid: 21494 + rot: -1.5707963267948966 rad + pos: -138.5,7.5 + parent: 2 + - uid: 2344 components: - type: Transform - pos: 6.5,27.5 - parent: 5072 - - uid: 21573 + pos: -136.5,29.5 + parent: 2 + - uid: 2347 components: - type: Transform - pos: 8.5,27.5 - parent: 5072 - - uid: 21593 + rot: -1.5707963267948966 rad + pos: -138.5,3.5 + parent: 2 + - uid: 2348 components: - type: Transform - pos: 13.5,21.5 - parent: 5072 - - uid: 21594 + rot: -1.5707963267948966 rad + pos: -138.5,4.5 + parent: 2 + - uid: 2349 components: - type: Transform - pos: 14.5,22.5 - parent: 5072 - - uid: 21604 + rot: -1.5707963267948966 rad + pos: -138.5,5.5 + parent: 2 + - uid: 2350 components: - type: Transform - pos: 9.5,27.5 - parent: 5072 - - uid: 21614 + rot: -1.5707963267948966 rad + pos: -138.5,6.5 + parent: 2 + - uid: 2358 components: - type: Transform - pos: 15.5,22.5 - parent: 5072 - - uid: 21616 + rot: 3.141592653589793 rad + pos: -78.5,-25.5 + parent: 2 + - uid: 2366 components: - type: Transform - pos: 13.5,24.5 - parent: 5072 - - uid: 21633 + pos: -86.5,-40.5 + parent: 2 + - uid: 2370 components: - type: Transform - pos: 13.5,25.5 - parent: 5072 - - uid: 21643 + pos: -93.5,-21.5 + parent: 2 + - uid: 2384 components: - type: Transform - pos: 11.5,16.5 - parent: 5072 - - uid: 21646 + pos: -135.5,25.5 + parent: 2 + - uid: 2396 components: - type: Transform - pos: 14.5,25.5 - parent: 5072 - - uid: 21651 + rot: -1.5707963267948966 rad + pos: -135.5,-29.5 + parent: 2 + - uid: 2403 components: - type: Transform - pos: 11.5,28.5 - parent: 5072 - - uid: 21662 + pos: -92.5,-40.5 + parent: 2 + - uid: 2437 components: - type: Transform - pos: 12.5,28.5 - parent: 5072 - - uid: 21663 + rot: 3.141592653589793 rad + pos: -135.5,15.5 + parent: 2 + - uid: 2438 components: - type: Transform - pos: 10.5,30.5 - parent: 5072 - - uid: 21720 + rot: 3.141592653589793 rad + pos: -135.5,19.5 + parent: 2 + - uid: 2592 components: - type: Transform - pos: -8.5,26.5 - parent: 5072 - - uid: 21736 + pos: -40.5,-70.5 + parent: 2 + - uid: 2618 components: - type: Transform - pos: -8.5,30.5 - parent: 5072 - - uid: 21748 + pos: -14.5,20.5 + parent: 2 + - uid: 2620 components: - type: Transform - pos: -3.5,27.5 - parent: 5072 - - uid: 21758 + pos: -40.5,-73.5 + parent: 2 + - uid: 2636 components: - type: Transform - pos: -2.5,27.5 - parent: 5072 - - uid: 21765 + pos: -40.5,-72.5 + parent: 2 + - uid: 2638 components: - type: Transform - pos: -3.5,23.5 - parent: 5072 - - uid: 21794 + pos: -36.5,-70.5 + parent: 2 + - uid: 2655 components: - type: Transform - pos: -2.5,22.5 - parent: 5072 - - uid: 21805 + pos: -13.5,20.5 + parent: 2 + - uid: 2656 components: - type: Transform - pos: -0.5,22.5 - parent: 5072 - - uid: 21857 + pos: -14.5,21.5 + parent: 2 + - uid: 2658 components: - type: Transform - pos: 9.5,32.5 - parent: 5072 - - uid: 21858 + pos: -12.5,19.5 + parent: 2 + - uid: 2659 components: - type: Transform - pos: 8.5,33.5 - parent: 5072 - - uid: 21872 + pos: -12.5,18.5 + parent: 2 + - uid: 2660 components: - type: Transform - pos: 10.5,15.5 - parent: 5072 - - uid: 21873 + pos: -16.5,21.5 + parent: 2 + - uid: 2662 components: - type: Transform - pos: 11.5,15.5 - parent: 5072 - - uid: 21901 + pos: -15.5,21.5 + parent: 2 + - uid: 2668 components: - type: Transform - pos: -1.5,32.5 - parent: 5072 - - uid: 21903 + pos: -13.5,19.5 + parent: 2 + - uid: 2674 components: - type: Transform - pos: -1.5,33.5 - parent: 5072 -- proto: WallReinforcedDiagonal - entities: - - uid: 126 + pos: -36.5,-71.5 + parent: 2 + - uid: 2718 components: - type: Transform - pos: 373.5,423.5 - parent: 1 - - uid: 127 + pos: -11.5,15.5 + parent: 2 + - uid: 2798 components: - type: Transform - pos: 376.5,425.5 - parent: 1 - - uid: 128 + pos: -11.5,-26.5 + parent: 2 + - uid: 2975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 385.5,423.5 - parent: 1 - - uid: 142 + pos: -12.5,17.5 + parent: 2 + - uid: 2978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 382.5,425.5 - parent: 1 - - uid: 2902 + pos: -12.5,16.5 + parent: 2 + - uid: 2991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 437.5,394.5 - parent: 1 - - uid: 20514 + pos: -12.5,15.5 + parent: 2 + - uid: 2992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,3.5 - parent: 20181 - - uid: 20515 + pos: -11.5,9.5 + parent: 2 + - uid: 2993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 20181 - - uid: 20516 + pos: -11.5,10.5 + parent: 2 + - uid: 3122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 20181 - - uid: 20517 + pos: -11.5,11.5 + parent: 2 + - uid: 3172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 20181 - - uid: 20518 + pos: -11.5,12.5 + parent: 2 + - uid: 3177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 20181 - - uid: 20519 + pos: -36.5,-73.5 + parent: 2 + - uid: 3212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 - parent: 20181 - - uid: 20520 + pos: -105.5,-66.5 + parent: 2 + - uid: 3254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 - parent: 20181 - - uid: 20521 + pos: -105.5,-65.5 + parent: 2 + - uid: 3298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,2.5 - parent: 20181 - - uid: 20522 + pos: -11.5,13.5 + parent: 2 + - uid: 3299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 20181 -- proto: WallReinforcedRust - entities: - - uid: 580 + pos: -11.5,14.5 + parent: 2 + - uid: 3318 components: - type: Transform - pos: 321.5,434.5 - parent: 1 - - uid: 595 + pos: -36.5,-74.5 + parent: 2 + - uid: 3333 components: - type: Transform - pos: 321.5,433.5 - parent: 1 - - uid: 596 + pos: -57.5,-76.5 + parent: 2 + - uid: 3337 components: - type: Transform - pos: 327.5,433.5 - parent: 1 - - uid: 599 + pos: -118.5,-25.5 + parent: 2 + - uid: 3339 components: - type: Transform - pos: 327.5,432.5 - parent: 1 - - uid: 601 + pos: -39.5,11.5 + parent: 2 + - uid: 3342 components: - type: Transform - pos: 323.5,435.5 - parent: 1 - - uid: 609 + pos: -38.5,11.5 + parent: 2 + - uid: 3343 components: - type: Transform - pos: 324.5,435.5 - parent: 1 - - uid: 619 + pos: -37.5,11.5 + parent: 2 + - uid: 3349 components: - type: Transform - pos: 328.5,433.5 - parent: 1 - - uid: 622 + pos: -17.5,14.5 + parent: 2 + - uid: 3350 components: - type: Transform - pos: 325.5,441.5 - parent: 1 - - uid: 626 + pos: -17.5,12.5 + parent: 2 + - uid: 3351 components: - type: Transform - pos: 325.5,440.5 - parent: 1 - - uid: 634 + pos: -25.5,22.5 + parent: 2 + - uid: 3352 components: - type: Transform - pos: 325.5,438.5 - parent: 1 - - uid: 638 + pos: -24.5,22.5 + parent: 2 + - uid: 3359 components: - type: Transform - pos: 325.5,437.5 - parent: 1 - - uid: 639 + pos: -23.5,22.5 + parent: 2 + - uid: 3367 components: - type: Transform - pos: 326.5,440.5 - parent: 1 - - uid: 642 + pos: -21.5,21.5 + parent: 2 + - uid: 3387 components: - type: Transform - pos: 326.5,439.5 - parent: 1 - - uid: 644 + pos: -17.5,16.5 + parent: 2 + - uid: 3388 components: - type: Transform - pos: 328.5,442.5 - parent: 1 - - uid: 645 + pos: -31.5,22.5 + parent: 2 + - uid: 3416 components: - type: Transform - pos: 331.5,433.5 - parent: 1 - - uid: 646 + pos: -19.5,21.5 + parent: 2 + - uid: 3428 components: - type: Transform - pos: 332.5,433.5 - parent: 1 - - uid: 658 + pos: -77.5,-35.5 + parent: 2 + - uid: 3430 components: - type: Transform - pos: 330.5,442.5 - parent: 1 - - uid: 659 + pos: -18.5,21.5 + parent: 2 + - uid: 3459 components: - type: Transform - pos: 330.5,441.5 - parent: 1 - - uid: 660 + pos: -17.5,19.5 + parent: 2 + - uid: 3460 components: - type: Transform - pos: 330.5,439.5 - parent: 1 - - uid: 664 + pos: -9.5,-38.5 + parent: 2 + - uid: 3461 components: - type: Transform - pos: 330.5,437.5 - parent: 1 - - uid: 665 + pos: -10.5,-38.5 + parent: 2 + - uid: 3462 components: - type: Transform - pos: 330.5,436.5 - parent: 1 - - uid: 668 + pos: -8.5,-38.5 + parent: 2 + - uid: 3495 components: - type: Transform - pos: 331.5,436.5 - parent: 1 - - uid: 677 + pos: -95.5,-42.5 + parent: 2 + - uid: 3496 components: - type: Transform - pos: 335.5,433.5 - parent: 1 - - uid: 679 + pos: -17.5,18.5 + parent: 2 + - uid: 3507 components: - type: Transform - pos: 336.5,433.5 - parent: 1 - - uid: 686 + pos: -31.5,23.5 + parent: 2 + - uid: 3523 components: - type: Transform - pos: 337.5,433.5 - parent: 1 - - uid: 693 + pos: -31.5,26.5 + parent: 2 + - uid: 3539 components: - type: Transform - pos: 333.5,436.5 - parent: 1 - - uid: 694 + pos: -31.5,25.5 + parent: 2 + - uid: 3585 components: - type: Transform - pos: 338.5,433.5 - parent: 1 - - uid: 696 + rot: 1.5707963267948966 rad + pos: -131.5,-7.5 + parent: 2 + - uid: 3597 components: - type: Transform - pos: 333.5,383.5 - parent: 1 - - uid: 699 + pos: -31.5,24.5 + parent: 2 + - uid: 3606 components: - type: Transform - pos: 333.5,382.5 - parent: 1 - - uid: 700 + pos: -107.5,-59.5 + parent: 2 + - uid: 3609 components: - type: Transform - pos: 333.5,379.5 - parent: 1 - - uid: 725 + pos: -27.5,26.5 + parent: 2 + - uid: 3611 components: - type: Transform - pos: 334.5,438.5 - parent: 1 - - uid: 726 + pos: -27.5,24.5 + parent: 2 + - uid: 3613 components: - type: Transform - pos: 334.5,437.5 - parent: 1 - - uid: 727 + pos: -27.5,23.5 + parent: 2 + - uid: 3614 components: - type: Transform - pos: 334.5,436.5 - parent: 1 - - uid: 728 + pos: -27.5,25.5 + parent: 2 + - uid: 3623 components: - type: Transform - pos: 335.5,438.5 - parent: 1 - - uid: 732 + pos: -89.5,-48.5 + parent: 2 + - uid: 3624 components: - type: Transform - pos: 341.5,433.5 - parent: 1 - - uid: 744 + pos: -36.5,3.5 + parent: 2 + - uid: 3625 components: - type: Transform - pos: 336.5,438.5 - parent: 1 - - uid: 752 + pos: -35.5,3.5 + parent: 2 + - uid: 3626 components: - type: Transform - pos: 342.5,433.5 - parent: 1 - - uid: 770 + pos: -37.5,3.5 + parent: 2 + - uid: 3643 components: - type: Transform - pos: 343.5,433.5 - parent: 1 - - uid: 771 + pos: -36.5,10.5 + parent: 2 + - uid: 3654 components: - type: Transform - pos: 337.5,438.5 - parent: 1 - - uid: 772 + pos: -36.5,9.5 + parent: 2 + - uid: 3656 components: - type: Transform - pos: 338.5,438.5 - parent: 1 - - uid: 792 + pos: -35.5,9.5 + parent: 2 + - uid: 3682 components: - type: Transform - pos: 346.5,433.5 - parent: 1 - - uid: 805 + pos: -38.5,4.5 + parent: 2 + - uid: 3688 components: - type: Transform - pos: 347.5,433.5 - parent: 1 - - uid: 806 + pos: -38.5,5.5 + parent: 2 + - uid: 3689 components: - type: Transform - pos: 341.5,382.5 - parent: 1 - - uid: 809 + pos: -135.5,-18.5 + parent: 2 + - uid: 3693 components: - type: Transform - pos: 341.5,381.5 - parent: 1 - - uid: 812 + pos: -135.5,-19.5 + parent: 2 + - uid: 3694 components: - type: Transform - pos: 348.5,433.5 - parent: 1 - - uid: 818 + pos: -83.5,13.5 + parent: 2 + - uid: 3697 components: - type: Transform - pos: 349.5,433.5 - parent: 1 - - uid: 826 + pos: -129.5,23.5 + parent: 2 + - uid: 3698 components: - type: Transform - pos: 342.5,382.5 - parent: 1 - - uid: 828 + pos: -130.5,23.5 + parent: 2 + - uid: 3705 components: - type: Transform - pos: 349.5,383.5 - parent: 1 - - uid: 835 + pos: -134.5,23.5 + parent: 2 + - uid: 3743 components: - type: Transform - pos: 343.5,382.5 - parent: 1 - - uid: 853 + pos: -139.5,-12.5 + parent: 2 + - uid: 3755 components: - type: Transform - pos: 351.5,433.5 - parent: 1 - - uid: 872 + pos: -6.5,-38.5 + parent: 2 + - uid: 3765 components: - type: Transform - pos: 352.5,433.5 - parent: 1 - - uid: 873 + pos: -88.5,-51.5 + parent: 2 + - uid: 3786 components: - type: Transform - pos: 352.5,432.5 - parent: 1 - - uid: 875 + pos: -6.5,-34.5 + parent: 2 + - uid: 3800 components: - type: Transform - pos: 346.5,382.5 - parent: 1 - - uid: 897 + pos: -6.5,-37.5 + parent: 2 + - uid: 3804 components: - type: Transform - pos: 351.5,440.5 - parent: 1 - - uid: 898 + pos: -7.5,-26.5 + parent: 2 + - uid: 3808 components: - type: Transform - pos: 347.5,382.5 - parent: 1 - - uid: 899 + rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 3876 components: - type: Transform - pos: 348.5,382.5 - parent: 1 - - uid: 918 + pos: -7.5,-27.5 + parent: 2 + - uid: 3889 components: - type: Transform - pos: 350.5,439.5 - parent: 1 - - uid: 920 + pos: -13.5,-38.5 + parent: 2 + - uid: 3904 components: - type: Transform - pos: 351.5,439.5 - parent: 1 - - uid: 932 + pos: -105.5,-67.5 + parent: 2 + - uid: 3905 components: - type: Transform - pos: 351.5,382.5 - parent: 1 - - uid: 952 + pos: -103.5,-67.5 + parent: 2 + - uid: 3930 components: - type: Transform - pos: 351.5,381.5 - parent: 1 - - uid: 977 + pos: -12.5,-38.5 + parent: 2 + - uid: 3931 components: - type: Transform - pos: 354.5,439.5 - parent: 1 - - uid: 993 + pos: -9.5,-39.5 + parent: 2 + - uid: 3940 components: - type: Transform - pos: 355.5,439.5 - parent: 1 - - uid: 995 + pos: -9.5,-40.5 + parent: 2 + - uid: 3941 components: - type: Transform - pos: 356.5,439.5 - parent: 1 - - uid: 996 + pos: -9.5,-42.5 + parent: 2 + - uid: 4013 components: - type: Transform - pos: 356.5,438.5 - parent: 1 - - uid: 1017 + pos: -9.5,-44.5 + parent: 2 + - uid: 4036 components: - type: Transform - pos: 356.5,436.5 - parent: 1 - - uid: 1073 + pos: -10.5,-44.5 + parent: 2 + - uid: 4058 components: - type: Transform - pos: 356.5,435.5 - parent: 1 - - uid: 1107 + pos: -11.5,-44.5 + parent: 2 + - uid: 4068 components: - type: Transform - pos: 359.5,432.5 - parent: 1 - - uid: 1109 + pos: -13.5,-44.5 + parent: 2 + - uid: 4069 components: - type: Transform - pos: 359.5,428.5 - parent: 1 - - uid: 1115 + pos: -12.5,-44.5 + parent: 2 + - uid: 4322 components: - type: Transform - pos: 359.5,427.5 - parent: 1 - - uid: 1116 + pos: -106.5,32.5 + parent: 2 + - uid: 4338 components: - type: Transform - pos: 360.5,432.5 - parent: 1 - - uid: 1118 + rot: 1.5707963267948966 rad + pos: -44.5,-77.5 + parent: 2 + - uid: 4377 components: - type: Transform - pos: 360.5,426.5 - parent: 1 - - uid: 1119 + rot: 1.5707963267948966 rad + pos: -42.5,-77.5 + parent: 2 + - uid: 4398 components: - type: Transform - pos: 432.5,380.5 - parent: 1 - - uid: 1123 + rot: 1.5707963267948966 rad + pos: -43.5,-77.5 + parent: 2 + - uid: 4432 components: - type: Transform - pos: 362.5,425.5 - parent: 1 - - uid: 1124 + pos: -107.5,-58.5 + parent: 2 + - uid: 4437 components: - type: Transform - pos: 362.5,424.5 - parent: 1 - - uid: 1127 + rot: 1.5707963267948966 rad + pos: -58.5,-76.5 + parent: 2 + - uid: 4438 components: - type: Transform - pos: 391.5,416.5 - parent: 1 - - uid: 1134 + rot: 1.5707963267948966 rad + pos: -58.5,-78.5 + parent: 2 + - uid: 4439 components: - type: Transform - pos: 394.5,398.5 - parent: 1 - - uid: 1135 + rot: 1.5707963267948966 rad + pos: -58.5,-79.5 + parent: 2 + - uid: 4446 components: - type: Transform - pos: 391.5,425.5 - parent: 1 - - uid: 1136 + rot: 1.5707963267948966 rad + pos: -54.5,-76.5 + parent: 2 + - uid: 4452 components: - type: Transform - pos: 391.5,424.5 - parent: 1 - - uid: 1145 + pos: -83.5,2.5 + parent: 2 + - uid: 4476 components: - type: Transform - pos: 392.5,425.5 - parent: 1 - - uid: 1147 + pos: -87.5,-10.5 + parent: 2 + - uid: 4555 components: - type: Transform - pos: 346.5,383.5 - parent: 1 - - uid: 1153 + pos: -107.5,32.5 + parent: 2 + - uid: 4560 components: - type: Transform - pos: 347.5,384.5 - parent: 1 - - uid: 1154 + rot: -1.5707963267948966 rad + pos: -79.5,-53.5 + parent: 2 + - uid: 4566 components: - type: Transform - pos: 394.5,425.5 - parent: 1 - - uid: 1176 + rot: 3.141592653589793 rad + pos: -77.5,-25.5 + parent: 2 + - uid: 4606 components: - type: Transform - pos: 354.5,414.5 - parent: 1 - - uid: 1186 + pos: -108.5,32.5 + parent: 2 + - uid: 4608 components: - type: Transform - pos: 395.5,425.5 - parent: 1 - - uid: 1194 + rot: 1.5707963267948966 rad + pos: -115.5,-7.5 + parent: 2 + - uid: 4612 components: - type: Transform - pos: 355.5,415.5 - parent: 1 - - uid: 1195 + pos: -87.5,-0.5 + parent: 2 + - uid: 4650 components: - type: Transform - pos: 356.5,415.5 - parent: 1 - - uid: 1197 + pos: -110.5,32.5 + parent: 2 + - uid: 4657 components: - type: Transform - pos: 356.5,414.5 - parent: 1 - - uid: 1209 + pos: -111.5,32.5 + parent: 2 + - uid: 4658 components: - type: Transform - pos: 356.5,413.5 - parent: 1 - - uid: 1241 + pos: -112.5,32.5 + parent: 2 + - uid: 4659 components: - type: Transform - pos: 396.5,425.5 - parent: 1 - - uid: 1255 + pos: -113.5,32.5 + parent: 2 + - uid: 4660 components: - type: Transform - pos: 397.5,425.5 - parent: 1 - - uid: 1256 + pos: -118.5,32.5 + parent: 2 + - uid: 4689 components: - type: Transform - pos: 398.5,425.5 - parent: 1 - - uid: 1370 + rot: -1.5707963267948966 rad + pos: -98.5,23.5 + parent: 2 + - uid: 4731 components: - type: Transform - pos: 398.5,364.5 - parent: 1 - - uid: 1375 + pos: -117.5,32.5 + parent: 2 + - uid: 4739 components: - type: Transform - pos: 399.5,364.5 - parent: 1 - - uid: 1486 + pos: -116.5,32.5 + parent: 2 + - uid: 4740 components: - type: Transform - pos: 399.5,363.5 - parent: 1 - - uid: 1579 + pos: -115.5,32.5 + parent: 2 + - uid: 4741 components: - type: Transform - pos: 400.5,425.5 - parent: 1 - - uid: 1694 + pos: -120.5,32.5 + parent: 2 + - uid: 4744 components: - type: Transform - pos: 401.5,426.5 - parent: 1 - - uid: 1700 + pos: -121.5,32.5 + parent: 2 + - uid: 4752 components: - type: Transform - pos: 401.5,425.5 - parent: 1 - - uid: 1703 + pos: -121.5,31.5 + parent: 2 + - uid: 4753 components: - type: Transform - pos: 402.5,364.5 - parent: 1 - - uid: 1704 + pos: -121.5,30.5 + parent: 2 + - uid: 4755 components: - type: Transform - pos: 403.5,427.5 - parent: 1 - - uid: 1705 + pos: -121.5,28.5 + parent: 2 + - uid: 5103 components: - type: Transform - pos: 404.5,427.5 - parent: 1 - - uid: 1763 + pos: -10.5,-55.5 + parent: 2 + - uid: 5168 components: - type: Transform - pos: 405.5,363.5 - parent: 1 - - uid: 1764 + pos: -127.5,24.5 + parent: 2 + - uid: 5224 components: - type: Transform - pos: 406.5,363.5 - parent: 1 - - uid: 1781 + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 5276 components: - type: Transform - pos: 407.5,363.5 - parent: 1 - - uid: 1785 + pos: -127.5,25.5 + parent: 2 + - uid: 5277 components: - type: Transform - pos: 408.5,426.5 - parent: 1 - - uid: 1786 + pos: -127.5,26.5 + parent: 2 + - uid: 5346 components: - type: Transform - pos: 409.5,426.5 - parent: 1 - - uid: 1787 + pos: -124.5,16.5 + parent: 2 + - uid: 5381 components: - type: Transform - pos: 409.5,363.5 - parent: 1 - - uid: 1805 + pos: -132.5,14.5 + parent: 2 + - uid: 5399 components: - type: Transform - pos: 410.5,427.5 - parent: 1 - - uid: 1806 + pos: -124.5,26.5 + parent: 2 + - uid: 5403 components: - type: Transform - pos: 410.5,426.5 - parent: 1 - - uid: 1829 + pos: -123.5,26.5 + parent: 2 + - uid: 5404 components: - type: Transform - pos: 411.5,427.5 - parent: 1 - - uid: 1846 + pos: -125.5,26.5 + parent: 2 + - uid: 5406 components: - type: Transform - pos: 391.5,420.5 - parent: 1 - - uid: 1876 + pos: -121.5,27.5 + parent: 2 + - uid: 5412 components: - type: Transform - pos: 391.5,419.5 - parent: 1 - - uid: 1878 + rot: 3.141592653589793 rad + pos: -135.5,20.5 + parent: 2 + - uid: 5430 components: - type: Transform - pos: 414.5,427.5 - parent: 1 - - uid: 1879 + pos: -136.5,2.5 + parent: 2 + - uid: 5435 components: - type: Transform - pos: 392.5,420.5 - parent: 1 - - uid: 1897 + pos: -129.5,28.5 + parent: 2 + - uid: 5436 components: - type: Transform - pos: 418.5,427.5 - parent: 1 - - uid: 1907 + pos: -128.5,28.5 + parent: 2 + - uid: 5454 components: - type: Transform - pos: 419.5,427.5 - parent: 1 - - uid: 1908 + pos: -127.5,28.5 + parent: 2 + - uid: 5457 components: - type: Transform - pos: 420.5,426.5 - parent: 1 - - uid: 1931 + pos: -126.5,28.5 + parent: 2 + - uid: 5461 components: - type: Transform - pos: 420.5,425.5 - parent: 1 - - uid: 1939 + pos: -127.5,17.5 + parent: 2 + - uid: 5463 components: - type: Transform - pos: 420.5,427.5 - parent: 1 - - uid: 1976 + pos: -125.5,28.5 + parent: 2 + - uid: 5464 components: - type: Transform - pos: 420.5,424.5 - parent: 1 - - uid: 1996 + pos: -133.5,25.5 + parent: 2 + - uid: 5474 components: - type: Transform - pos: 420.5,381.5 - parent: 1 - - uid: 2004 + pos: -131.5,25.5 + parent: 2 + - uid: 5478 components: - type: Transform - pos: 421.5,421.5 - parent: 1 - - uid: 2017 + pos: -132.5,25.5 + parent: 2 + - uid: 5504 components: - type: Transform - pos: 421.5,420.5 - parent: 1 - - uid: 2018 + pos: -129.5,26.5 + parent: 2 + - uid: 5511 components: - type: Transform - pos: 421.5,419.5 - parent: 1 - - uid: 2020 + pos: -129.5,27.5 + parent: 2 + - uid: 5513 components: - type: Transform - pos: 421.5,381.5 - parent: 1 - - uid: 2063 + pos: -129.5,31.5 + parent: 2 + - uid: 5529 components: - type: Transform - pos: 422.5,419.5 - parent: 1 - - uid: 2077 + pos: -129.5,32.5 + parent: 2 + - uid: 5531 components: - type: Transform - pos: 422.5,383.5 - parent: 1 - - uid: 2107 + pos: -127.5,30.5 + parent: 2 + - uid: 5532 components: - type: Transform - pos: 433.5,414.5 - parent: 1 - - uid: 2108 + pos: -125.5,18.5 + parent: 2 + - uid: 5535 components: - type: Transform - pos: 433.5,413.5 - parent: 1 - - uid: 2150 + pos: -127.5,31.5 + parent: 2 + - uid: 5539 components: - type: Transform - pos: 433.5,412.5 - parent: 1 - - uid: 2169 + pos: -127.5,32.5 + parent: 2 + - uid: 5540 components: - type: Transform - pos: 423.5,376.5 - parent: 1 - - uid: 2223 + pos: -126.5,30.5 + parent: 2 + - uid: 5544 components: - type: Transform - pos: 424.5,371.5 - parent: 1 - - uid: 2224 + pos: -126.5,33.5 + parent: 2 + - uid: 5545 components: - type: Transform - pos: 424.5,370.5 - parent: 1 - - uid: 2226 + pos: -126.5,32.5 + parent: 2 + - uid: 5547 components: - type: Transform - pos: 424.5,368.5 - parent: 1 - - uid: 2229 + pos: -124.5,34.5 + parent: 2 + - uid: 5560 components: - type: Transform - pos: 424.5,367.5 - parent: 1 - - uid: 2230 + pos: -123.5,34.5 + parent: 2 + - uid: 5573 components: - type: Transform - pos: 424.5,366.5 - parent: 1 - - uid: 2279 + pos: -126.5,16.5 + parent: 2 + - uid: 5594 components: - type: Transform - pos: 425.5,378.5 - parent: 1 - - uid: 2322 + pos: -126.5,18.5 + parent: 2 + - uid: 5630 components: - type: Transform - pos: 426.5,379.5 - parent: 1 - - uid: 2323 + pos: -122.5,32.5 + parent: 2 + - uid: 5633 components: - type: Transform - pos: 426.5,378.5 - parent: 1 - - uid: 2338 + pos: -92.5,-51.5 + parent: 2 + - uid: 5638 components: - type: Transform - pos: 427.5,378.5 - parent: 1 - - uid: 2339 + pos: -40.5,4.5 + parent: 2 + - uid: 5668 components: - type: Transform - pos: 427.5,371.5 - parent: 1 - - uid: 2349 + pos: -40.5,3.5 + parent: 2 + - uid: 5670 components: - type: Transform - pos: 428.5,381.5 - parent: 1 - - uid: 2366 + pos: -93.5,-51.5 + parent: 2 + - uid: 5687 components: - type: Transform - pos: 428.5,371.5 - parent: 1 - - uid: 2367 + pos: -88.5,-53.5 + parent: 2 + - uid: 5695 components: - type: Transform - pos: 429.5,376.5 - parent: 1 - - uid: 2374 + pos: -89.5,-53.5 + parent: 2 + - uid: 5725 components: - type: Transform - pos: 429.5,372.5 - parent: 1 - - uid: 2377 + rot: 3.141592653589793 rad + pos: -135.5,14.5 + parent: 2 + - uid: 5753 components: - type: Transform - pos: 429.5,371.5 - parent: 1 - - uid: 2378 + pos: -83.5,-53.5 + parent: 2 + - uid: 5754 components: - type: Transform - pos: 435.5,402.5 - parent: 1 - - uid: 2387 + pos: -88.5,-43.5 + parent: 2 + - uid: 5755 components: - type: Transform - pos: 437.5,391.5 - parent: 1 - - uid: 2389 + pos: -82.5,-53.5 + parent: 2 + - uid: 5782 components: - type: Transform - pos: 437.5,387.5 - parent: 1 - - uid: 2390 + pos: -135.5,-17.5 + parent: 2 + - uid: 5784 components: - type: Transform - pos: 437.5,386.5 - parent: 1 - - uid: 2391 + pos: -135.5,-15.5 + parent: 2 + - uid: 5874 components: - type: Transform - pos: 439.5,406.5 - parent: 1 - - uid: 2392 + pos: -135.5,-14.5 + parent: 2 + - uid: 5900 components: - type: Transform - pos: 440.5,406.5 - parent: 1 - - uid: 2401 + pos: -87.5,-53.5 + parent: 2 + - uid: 5901 components: - type: Transform - pos: 440.5,405.5 - parent: 1 - - uid: 2402 + pos: -86.5,-53.5 + parent: 2 + - uid: 5954 components: - type: Transform - pos: 436.5,383.5 - parent: 1 - - uid: 2403 + pos: -135.5,-28.5 + parent: 2 + - uid: 5955 components: - type: Transform - pos: 436.5,391.5 - parent: 1 - - uid: 2404 + pos: -135.5,-25.5 + parent: 2 + - uid: 5956 components: - type: Transform - pos: 436.5,390.5 - parent: 1 - - uid: 2424 + pos: -136.5,-25.5 + parent: 2 + - uid: 5958 components: - type: Transform - pos: 421.5,429.5 - parent: 1 - - uid: 2428 + pos: -135.5,-26.5 + parent: 2 + - uid: 5962 components: - type: Transform - pos: 428.5,383.5 - parent: 1 - - uid: 2431 + pos: -92.5,-53.5 + parent: 2 + - uid: 5972 components: - type: Transform - pos: 428.5,382.5 - parent: 1 - - uid: 2434 + pos: -138.5,-25.5 + parent: 2 + - uid: 5984 components: - type: Transform - pos: 431.5,383.5 - parent: 1 - - uid: 2437 + pos: -136.5,-28.5 + parent: 2 + - uid: 5992 components: - type: Transform - pos: 358.5,419.5 - parent: 1 - - uid: 2457 + pos: -84.5,-53.5 + parent: 2 + - uid: 5996 components: - type: Transform - pos: 358.5,418.5 - parent: 1 - - uid: 2492 + rot: 3.141592653589793 rad + pos: -135.5,21.5 + parent: 2 + - uid: 6010 components: - type: Transform - pos: 423.5,428.5 - parent: 1 - - uid: 2508 + pos: -85.5,-53.5 + parent: 2 + - uid: 6011 components: - type: Transform - pos: 436.5,387.5 - parent: 1 - - uid: 2511 + pos: -90.5,-53.5 + parent: 2 + - uid: 6012 components: - type: Transform - pos: 436.5,382.5 - parent: 1 - - uid: 2512 + pos: -80.5,-53.5 + parent: 2 + - uid: 6013 components: - type: Transform - pos: 436.5,381.5 - parent: 1 - - uid: 2527 + pos: -91.5,-53.5 + parent: 2 + - uid: 6015 components: - type: Transform - pos: 432.5,381.5 - parent: 1 - - uid: 2530 + pos: -93.5,-53.5 + parent: 2 + - uid: 6020 components: - type: Transform - pos: 359.5,421.5 - parent: 1 - - uid: 2534 + pos: -77.5,-52.5 + parent: 2 + - uid: 6021 components: - type: Transform - pos: 340.5,433.5 - parent: 1 - - uid: 2535 + pos: -77.5,-51.5 + parent: 2 + - uid: 6134 components: - type: Transform - pos: 435.5,383.5 - parent: 1 - - uid: 2536 + pos: -81.5,-53.5 + parent: 2 + - uid: 6170 components: - type: Transform - pos: 351.5,441.5 - parent: 1 - - uid: 2545 + pos: -100.5,-66.5 + parent: 2 + - uid: 6171 components: - type: Transform - pos: 425.5,420.5 - parent: 1 - - uid: 2579 + pos: -100.5,-67.5 + parent: 2 + - uid: 6318 components: - type: Transform - pos: 426.5,420.5 - parent: 1 - - uid: 2609 + pos: -90.5,-43.5 + parent: 2 + - uid: 6521 components: - type: Transform - pos: 427.5,420.5 - parent: 1 - - uid: 2618 + pos: -103.5,-65.5 + parent: 2 + - uid: 6523 components: - type: Transform - pos: 428.5,420.5 - parent: 1 - - uid: 2671 + pos: -103.5,-66.5 + parent: 2 + - uid: 6526 components: - type: Transform - pos: 431.5,420.5 - parent: 1 - - uid: 2684 + pos: -102.5,-67.5 + parent: 2 + - uid: 6528 components: - type: Transform - pos: 432.5,420.5 - parent: 1 - - uid: 2743 + pos: -101.5,-67.5 + parent: 2 + - uid: 6530 components: - type: Transform - pos: 435.5,419.5 - parent: 1 - - uid: 2744 + pos: -101.5,-68.5 + parent: 2 + - uid: 6533 components: - type: Transform - pos: 435.5,418.5 - parent: 1 - - uid: 3085 + pos: -100.5,-68.5 + parent: 2 + - uid: 6534 components: - type: Transform - pos: 509.5,383.5 - parent: 1 - - uid: 3086 + pos: -100.5,-69.5 + parent: 2 + - uid: 6535 components: - type: Transform - pos: 508.5,383.5 - parent: 1 - - uid: 4690 + pos: -99.5,-69.5 + parent: 2 + - uid: 6536 components: - type: Transform - pos: 499.5,383.5 - parent: 1 - - uid: 4845 + pos: -99.5,-70.5 + parent: 2 + - uid: 6538 components: - type: Transform - pos: 333.5,454.5 - parent: 1 - - uid: 4852 + pos: -99.5,-71.5 + parent: 2 + - uid: 6540 components: - type: Transform - pos: 332.5,443.5 - parent: 1 - - uid: 4857 + pos: -98.5,-71.5 + parent: 2 + - uid: 6541 components: - type: Transform - pos: 342.5,446.5 - parent: 1 - - uid: 4859 + pos: -98.5,-72.5 + parent: 2 + - uid: 6548 components: - type: Transform - pos: 342.5,447.5 - parent: 1 - - uid: 4861 + pos: -96.5,-72.5 + parent: 2 + - uid: 6549 components: - type: Transform - pos: 342.5,449.5 - parent: 1 - - uid: 4874 + pos: -97.5,-72.5 + parent: 2 + - uid: 6554 components: - type: Transform - pos: 340.5,453.5 - parent: 1 - - uid: 4881 + pos: -96.5,-73.5 + parent: 2 + - uid: 6557 components: - type: Transform - pos: 341.5,450.5 - parent: 1 - - uid: 4887 + pos: -95.5,-73.5 + parent: 2 + - uid: 6559 components: - type: Transform - pos: 339.5,454.5 - parent: 1 - - uid: 4890 + pos: -95.5,-74.5 + parent: 2 + - uid: 6560 components: - type: Transform - pos: 340.5,452.5 - parent: 1 - - uid: 4917 + pos: -94.5,-74.5 + parent: 2 + - uid: 6561 components: - type: Transform - pos: 342.5,444.5 - parent: 1 - - uid: 5728 + pos: -93.5,-74.5 + parent: 2 + - uid: 6562 components: - type: Transform - pos: 501.5,383.5 - parent: 1 - - uid: 5729 + pos: -93.5,-75.5 + parent: 2 + - uid: 6563 components: - type: Transform - pos: 501.5,380.5 - parent: 1 - - uid: 5733 + pos: -92.5,-75.5 + parent: 2 + - uid: 6566 components: - type: Transform - pos: 502.5,383.5 - parent: 1 - - uid: 5734 + pos: -92.5,-76.5 + parent: 2 + - uid: 6568 components: - type: Transform - pos: 502.5,379.5 - parent: 1 - - uid: 5735 + pos: -91.5,-76.5 + parent: 2 + - uid: 6569 components: - type: Transform - pos: 503.5,379.5 - parent: 1 - - uid: 8415 + pos: -90.5,-76.5 + parent: 2 + - uid: 6570 components: - type: Transform - pos: 505.5,379.5 - parent: 1 - - uid: 12424 + pos: -88.5,-76.5 + parent: 2 + - uid: 6572 components: - type: Transform - pos: 332.5,453.5 - parent: 1 - - uid: 13701 + pos: -89.5,-76.5 + parent: 2 + - uid: 6573 components: - type: Transform - pos: 332.5,449.5 - parent: 1 - - uid: 14451 + pos: -88.5,-77.5 + parent: 2 + - uid: 6581 components: - type: Transform - pos: 332.5,444.5 - parent: 1 - - uid: 14631 + pos: -87.5,-77.5 + parent: 2 + - uid: 6582 components: - type: Transform - pos: 506.5,383.5 - parent: 1 - - uid: 14641 + pos: -86.5,-77.5 + parent: 2 + - uid: 6586 components: - type: Transform - pos: 506.5,379.5 - parent: 1 - - uid: 15838 + pos: -85.5,-77.5 + parent: 2 + - uid: 6589 components: - type: Transform - pos: 507.5,381.5 - parent: 1 - - uid: 15839 + pos: -78.5,-78.5 + parent: 2 + - uid: 6591 components: - type: Transform - pos: 507.5,380.5 - parent: 1 - - uid: 15840 + pos: -79.5,-78.5 + parent: 2 + - uid: 6592 components: - type: Transform - pos: 507.5,379.5 - parent: 1 - - uid: 17448 + pos: -77.5,-78.5 + parent: 2 + - uid: 6593 components: - type: Transform - pos: 505.5,377.5 - parent: 1 - - uid: 17449 + pos: -85.5,-78.5 + parent: 2 + - uid: 6613 components: - type: Transform - pos: 509.5,379.5 - parent: 1 - - uid: 17451 + pos: -84.5,-81.5 + parent: 2 + - uid: 6614 components: - type: Transform - pos: 504.5,377.5 - parent: 1 - - uid: 17461 + pos: -84.5,-78.5 + parent: 2 + - uid: 6617 components: - type: Transform - pos: 506.5,377.5 - parent: 1 - - uid: 17480 + pos: -77.5,-79.5 + parent: 2 + - uid: 6634 components: - type: Transform - pos: 509.5,378.5 - parent: 1 - - uid: 17482 + pos: -76.5,-79.5 + parent: 2 + - uid: 6637 components: - type: Transform - pos: 509.5,380.5 - parent: 1 - - uid: 17483 + pos: -75.5,-79.5 + parent: 2 + - uid: 6640 components: - type: Transform - pos: 499.5,381.5 - parent: 1 - - uid: 17504 + pos: -72.5,-79.5 + parent: 2 + - uid: 6644 components: - type: Transform - pos: 499.5,380.5 - parent: 1 - - uid: 17506 + pos: -73.5,-79.5 + parent: 2 + - uid: 6645 components: - type: Transform - pos: 501.5,377.5 - parent: 1 - - uid: 17518 + pos: -71.5,-79.5 + parent: 2 + - uid: 6648 components: - type: Transform - pos: 509.5,382.5 - parent: 1 - - uid: 17531 + pos: -70.5,-79.5 + parent: 2 + - uid: 6649 components: - type: Transform - pos: 508.5,377.5 - parent: 1 - - uid: 17532 + pos: -74.5,-79.5 + parent: 2 + - uid: 6662 components: - type: Transform - pos: 509.5,377.5 - parent: 1 - - uid: 17693 + pos: -84.5,-82.5 + parent: 2 + - uid: 6692 components: - type: Transform - pos: 500.5,377.5 - parent: 1 - - uid: 17731 + pos: -84.5,-79.5 + parent: 2 + - uid: 6697 components: - type: Transform - pos: 499.5,379.5 - parent: 1 - - uid: 18612 + pos: -69.5,-80.5 + parent: 2 + - uid: 6698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,443.5 - parent: 1 - - uid: 19678 + pos: -67.5,-80.5 + parent: 2 + - uid: 6699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,438.5 - parent: 1 - - uid: 19680 + pos: -68.5,-80.5 + parent: 2 + - uid: 6735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,438.5 - parent: 1 - - uid: 19682 + pos: -66.5,-80.5 + parent: 2 + - uid: 6739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,439.5 - parent: 1 - - uid: 19683 + pos: -65.5,-80.5 + parent: 2 + - uid: 6746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,442.5 - parent: 1 - - uid: 20030 + pos: -63.5,-80.5 + parent: 2 + - uid: 6750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 343.5,443.5 - parent: 1 - - uid: 20038 + pos: -62.5,-80.5 + parent: 2 + - uid: 6751 components: - type: Transform - pos: 334.5,439.5 - parent: 1 - - uid: 21292 + pos: -61.5,-80.5 + parent: 2 + - uid: 6762 components: - type: Transform - pos: 0.5,22.5 - parent: 5072 - - uid: 21293 + pos: -60.5,-80.5 + parent: 2 + - uid: 6764 components: - type: Transform - pos: 1.5,22.5 - parent: 5072 - - uid: 21298 + pos: -64.5,-80.5 + parent: 2 + - uid: 6767 components: - type: Transform - pos: 1.5,23.5 - parent: 5072 - - uid: 21322 + pos: -70.5,-80.5 + parent: 2 + - uid: 6811 components: - type: Transform - pos: 5.5,22.5 - parent: 5072 - - uid: 21335 + pos: -50.5,-78.5 + parent: 2 + - uid: 6857 components: - type: Transform - pos: 6.5,22.5 - parent: 5072 - - uid: 21336 + rot: 3.141592653589793 rad + pos: -138.5,8.5 + parent: 2 + - uid: 6875 components: - type: Transform - pos: 5.5,23.5 - parent: 5072 - - uid: 21353 + pos: -49.5,-78.5 + parent: 2 + - uid: 6877 components: - type: Transform - pos: 7.5,22.5 - parent: 5072 - - uid: 21411 + pos: -48.5,-78.5 + parent: 2 + - uid: 6878 components: - type: Transform - pos: 9.5,22.5 - parent: 5072 - - uid: 21434 + pos: -47.5,-78.5 + parent: 2 + - uid: 6880 components: - type: Transform - pos: 6.5,18.5 - parent: 5072 - - uid: 21446 + pos: -46.5,-78.5 + parent: 2 + - uid: 6899 components: - type: Transform - pos: 10.5,22.5 - parent: 5072 - - uid: 21481 + pos: -40.5,-77.5 + parent: 2 + - uid: 6901 components: - type: Transform - pos: 11.5,22.5 - parent: 5072 - - uid: 21505 + pos: -40.5,-76.5 + parent: 2 + - uid: 6902 components: - type: Transform - pos: 6.5,16.5 - parent: 5072 - - uid: 21518 + pos: -38.5,-76.5 + parent: 2 + - uid: 6903 components: - type: Transform - pos: 11.5,21.5 - parent: 5072 - - uid: 21560 + pos: -37.5,-76.5 + parent: 2 + - uid: 6904 components: - type: Transform - pos: 13.5,22.5 - parent: 5072 - - uid: 21609 + pos: -39.5,-76.5 + parent: 2 + - uid: 6909 components: - type: Transform - pos: 11.5,18.5 - parent: 5072 - - uid: 21611 + pos: -135.5,-0.5 + parent: 2 + - uid: 6945 components: - type: Transform - pos: 13.5,20.5 - parent: 5072 - - uid: 21615 + rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 2 + - uid: 7014 components: - type: Transform - pos: 14.5,23.5 - parent: 5072 - - uid: 21621 + pos: -80.5,-80.5 + parent: 2 + - uid: 7016 components: - type: Transform - pos: 10.5,27.5 - parent: 5072 - - uid: 21628 + pos: -80.5,-79.5 + parent: 2 + - uid: 7017 components: - type: Transform - pos: 11.5,17.5 - parent: 5072 - - uid: 21636 + pos: -80.5,-78.5 + parent: 2 + - uid: 7022 components: - type: Transform - pos: 11.5,27.5 - parent: 5072 - - uid: 21637 + pos: -83.5,-78.5 + parent: 2 + - uid: 7050 components: - type: Transform - pos: 10.5,28.5 - parent: 5072 - - uid: 21659 + pos: -103.5,-60.5 + parent: 2 + - uid: 7051 components: - type: Transform - pos: 15.5,19.5 - parent: 5072 - - uid: 21660 + pos: -103.5,-63.5 + parent: 2 + - uid: 7141 components: - type: Transform - pos: 14.5,26.5 - parent: 5072 - - uid: 21661 + pos: -20.5,-56.5 + parent: 2 + - uid: 7144 components: - type: Transform - pos: 13.5,27.5 - parent: 5072 - - uid: 21666 + pos: -23.5,-57.5 + parent: 2 + - uid: 7147 components: - type: Transform - pos: 14.5,27.5 - parent: 5072 - - uid: 21667 + pos: -20.5,-70.5 + parent: 2 + - uid: 7148 components: - type: Transform - pos: 13.5,28.5 - parent: 5072 - - uid: 21723 + pos: -30.5,-74.5 + parent: 2 + - uid: 7149 components: - type: Transform - pos: -8.5,27.5 - parent: 5072 - - uid: 21726 + pos: -30.5,-75.5 + parent: 2 + - uid: 7154 components: - type: Transform - pos: -8.5,28.5 - parent: 5072 - - uid: 21730 + pos: -22.5,-58.5 + parent: 2 + - uid: 7163 components: - type: Transform - pos: -8.5,29.5 - parent: 5072 - - uid: 21737 + pos: -23.5,-58.5 + parent: 2 + - uid: 7170 components: - type: Transform - pos: -3.5,26.5 - parent: 5072 - - uid: 21744 + pos: -20.5,-58.5 + parent: 2 + - uid: 7180 components: - type: Transform - pos: -3.5,25.5 - parent: 5072 - - uid: 21777 + pos: -29.5,-74.5 + parent: 2 + - uid: 7188 components: - type: Transform - pos: -3.5,29.5 - parent: 5072 - - uid: 21778 + pos: -28.5,-73.5 + parent: 2 + - uid: 7189 components: - type: Transform - pos: -4.5,30.5 - parent: 5072 - - uid: 21780 + pos: -27.5,-73.5 + parent: 2 + - uid: 7190 components: - type: Transform - pos: -3.5,22.5 - parent: 5072 - - uid: 21793 + pos: -26.5,-72.5 + parent: 2 + - uid: 7198 components: - type: Transform - pos: -3.5,30.5 - parent: 5072 - - uid: 21853 + pos: -25.5,-72.5 + parent: 2 + - uid: 7200 components: - type: Transform - pos: 8.5,32.5 - parent: 5072 - - uid: 21868 + pos: -25.5,-71.5 + parent: 2 + - uid: 7201 components: - type: Transform - pos: 6.5,15.5 - parent: 5072 - - uid: 21869 + pos: -23.5,-71.5 + parent: 2 + - uid: 7208 components: - type: Transform - pos: 7.5,15.5 - parent: 5072 - - uid: 21870 + pos: -24.5,-71.5 + parent: 2 + - uid: 7217 components: - type: Transform - pos: 8.5,15.5 - parent: 5072 - - uid: 21876 + pos: -23.5,-70.5 + parent: 2 + - uid: 7224 components: - type: Transform - pos: 17.5,19.5 - parent: 5072 - - uid: 21887 + pos: -20.5,-69.5 + parent: 2 + - uid: 7231 components: - type: Transform - pos: 17.5,22.5 - parent: 5072 -- proto: WallRock - entities: - - uid: 15628 + pos: -20.5,-68.5 + parent: 2 + - uid: 7361 components: - type: Transform - pos: 507.5,391.5 - parent: 1 - - uid: 17336 + rot: 1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - uid: 7362 components: - type: Transform - pos: 507.5,393.5 - parent: 1 - - uid: 17337 + rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - uid: 7508 components: - type: Transform - pos: 507.5,394.5 - parent: 1 - - uid: 17338 + pos: -16.5,-67.5 + parent: 2 + - uid: 7669 components: - type: Transform - pos: 507.5,395.5 - parent: 1 - - uid: 17339 + rot: 1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - uid: 7904 components: - type: Transform - pos: 507.5,396.5 - parent: 1 - - uid: 17340 + pos: -137.5,-28.5 + parent: 2 + - uid: 7906 components: - type: Transform - pos: 508.5,394.5 - parent: 1 - - uid: 17341 + pos: -137.5,-25.5 + parent: 2 + - uid: 7924 components: - type: Transform - pos: 508.5,396.5 - parent: 1 - - uid: 17343 + rot: 3.141592653589793 rad + pos: -39.5,-43.5 + parent: 2 + - uid: 7942 components: - type: Transform - pos: 508.5,397.5 - parent: 1 - - uid: 17344 + pos: -142.5,-19.5 + parent: 2 + - uid: 7943 components: - type: Transform - pos: 507.5,397.5 - parent: 1 - - uid: 17345 + pos: -142.5,-20.5 + parent: 2 + - uid: 8037 components: - type: Transform - pos: 506.5,393.5 - parent: 1 - - uid: 17347 + pos: -127.5,16.5 + parent: 2 + - uid: 8257 components: - type: Transform - pos: 506.5,394.5 - parent: 1 - - uid: 17349 + pos: -9.5,8.5 + parent: 2 + - uid: 8475 components: - type: Transform - pos: 506.5,397.5 - parent: 1 - - uid: 17350 + pos: -47.5,-33.5 + parent: 2 + - uid: 8525 components: - type: Transform - pos: 506.5,398.5 - parent: 1 - - uid: 17354 + pos: -41.5,-26.5 + parent: 2 + - uid: 8530 components: - type: Transform - pos: 505.5,398.5 - parent: 1 - - uid: 17357 + pos: -33.5,-51.5 + parent: 2 + - uid: 8557 components: - type: Transform - pos: 505.5,397.5 - parent: 1 - - uid: 17358 + pos: -16.5,-41.5 + parent: 2 + - uid: 8573 components: - type: Transform - pos: 504.5,396.5 - parent: 1 - - uid: 17359 + pos: -41.5,-28.5 + parent: 2 + - uid: 8574 components: - type: Transform - pos: 504.5,397.5 - parent: 1 - - uid: 17360 + pos: -41.5,-29.5 + parent: 2 + - uid: 8577 components: - type: Transform - pos: 504.5,398.5 - parent: 1 - - uid: 17364 + pos: -41.5,-31.5 + parent: 2 + - uid: 8581 components: - type: Transform - pos: 503.5,398.5 - parent: 1 - - uid: 17366 + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - uid: 8583 components: - type: Transform - pos: 503.5,397.5 - parent: 1 - - uid: 17370 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 8586 components: - type: Transform - pos: 502.5,398.5 - parent: 1 - - uid: 17372 + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 2 + - uid: 8587 components: - type: Transform - pos: 501.5,397.5 - parent: 1 - - uid: 17374 + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - uid: 8604 components: - type: Transform - pos: 501.5,398.5 - parent: 1 - - uid: 17375 + pos: -13.5,-67.5 + parent: 2 + - uid: 8677 components: - type: Transform - pos: 500.5,395.5 - parent: 1 - - uid: 17376 + pos: -41.5,-32.5 + parent: 2 + - uid: 8680 components: - type: Transform - pos: 491.5,378.5 - parent: 1 - - uid: 17377 + rot: 3.141592653589793 rad + pos: -40.5,-40.5 + parent: 2 + - uid: 8682 components: - type: Transform - pos: 500.5,398.5 - parent: 1 - - uid: 17378 + pos: -41.5,-33.5 + parent: 2 + - uid: 8704 components: - type: Transform - pos: 499.5,394.5 - parent: 1 - - uid: 17379 + pos: -44.5,-33.5 + parent: 2 + - uid: 8706 components: - type: Transform - pos: 499.5,395.5 - parent: 1 - - uid: 17380 + pos: -40.5,-47.5 + parent: 2 + - uid: 8707 components: - type: Transform - pos: 499.5,396.5 - parent: 1 - - uid: 17381 + pos: -31.5,-22.5 + parent: 2 + - uid: 8712 components: - type: Transform - pos: 499.5,397.5 - parent: 1 - - uid: 17383 + pos: -31.5,-45.5 + parent: 2 + - uid: 8717 components: - type: Transform - pos: 498.5,395.5 - parent: 1 - - uid: 17384 + pos: -40.5,-50.5 + parent: 2 + - uid: 8723 components: - type: Transform - pos: 498.5,396.5 - parent: 1 - - uid: 17386 + pos: -40.5,-46.5 + parent: 2 + - uid: 8728 components: - type: Transform - pos: 498.5,398.5 - parent: 1 - - uid: 17387 + pos: -27.5,-22.5 + parent: 2 + - uid: 8731 components: - type: Transform - pos: 497.5,394.5 - parent: 1 - - uid: 17388 + pos: -40.5,-48.5 + parent: 2 + - uid: 8781 components: - type: Transform - pos: 497.5,395.5 - parent: 1 - - uid: 17389 + pos: -39.5,-51.5 + parent: 2 + - uid: 8803 components: - type: Transform - pos: 497.5,396.5 - parent: 1 - - uid: 17390 + pos: -23.5,-22.5 + parent: 2 + - uid: 8807 components: - type: Transform - pos: 497.5,397.5 - parent: 1 - - uid: 17391 + pos: -16.5,-46.5 + parent: 2 + - uid: 8880 components: - type: Transform - pos: 497.5,398.5 - parent: 1 - - uid: 17392 + pos: -16.5,-45.5 + parent: 2 + - uid: 8915 components: - type: Transform - pos: 496.5,394.5 - parent: 1 - - uid: 17393 + pos: -16.5,-32.5 + parent: 2 + - uid: 8917 components: - type: Transform - pos: 496.5,395.5 - parent: 1 - - uid: 17394 + pos: -16.5,-42.5 + parent: 2 + - uid: 8923 components: - type: Transform - pos: 496.5,396.5 - parent: 1 - - uid: 17395 + pos: -16.5,-29.5 + parent: 2 + - uid: 8929 components: - type: Transform - pos: 496.5,397.5 - parent: 1 - - uid: 17397 + pos: -16.5,-28.5 + parent: 2 + - uid: 8948 components: - type: Transform - pos: 495.5,394.5 - parent: 1 - - uid: 17399 + pos: -16.5,-38.5 + parent: 2 + - uid: 9023 components: - type: Transform - pos: 495.5,397.5 - parent: 1 - - uid: 17400 + pos: -16.5,-36.5 + parent: 2 + - uid: 9025 components: - type: Transform - pos: 495.5,398.5 - parent: 1 - - uid: 17402 + pos: -16.5,-35.5 + parent: 2 + - uid: 9067 components: - type: Transform - pos: 494.5,398.5 - parent: 1 - - uid: 17403 + pos: -47.5,-38.5 + parent: 2 + - uid: 9072 components: - type: Transform - pos: 493.5,394.5 - parent: 1 - - uid: 17405 + pos: -37.5,-51.5 + parent: 2 + - uid: 9074 components: - type: Transform - pos: 492.5,395.5 - parent: 1 - - uid: 17408 + pos: -34.5,-51.5 + parent: 2 + - uid: 9142 components: - type: Transform - pos: 490.5,378.5 - parent: 1 - - uid: 17410 + rot: -1.5707963267948966 rad + pos: -97.5,23.5 + parent: 2 + - uid: 9211 components: - type: Transform - pos: 498.5,394.5 - parent: 1 - - uid: 17411 + pos: -40.5,-51.5 + parent: 2 + - uid: 9215 components: - type: Transform - pos: 492.5,394.5 - parent: 1 - - uid: 17412 + pos: -83.5,7.5 + parent: 2 + - uid: 9235 components: - type: Transform - pos: 495.5,399.5 - parent: 1 - - uid: 17415 + pos: -18.5,-67.5 + parent: 2 + - uid: 9327 components: - type: Transform - pos: 498.5,399.5 - parent: 1 - - uid: 17416 + pos: -35.5,-51.5 + parent: 2 + - uid: 9784 components: - type: Transform - pos: 499.5,399.5 - parent: 1 - - uid: 17417 + pos: -20.5,-22.5 + parent: 2 + - uid: 9975 components: - type: Transform - pos: 500.5,399.5 - parent: 1 - - uid: 17418 + rot: 3.141592653589793 rad + pos: -139.5,10.5 + parent: 2 + - uid: 10018 components: - type: Transform - pos: 501.5,399.5 - parent: 1 - - uid: 17419 + rot: 3.141592653589793 rad + pos: -139.5,14.5 + parent: 2 + - uid: 10032 components: - type: Transform - pos: 502.5,399.5 - parent: 1 - - uid: 17421 + rot: 3.141592653589793 rad + pos: -139.5,15.5 + parent: 2 + - uid: 10079 components: - type: Transform - pos: 505.5,399.5 - parent: 1 - - uid: 17422 + pos: -21.5,-22.5 + parent: 2 + - uid: 10080 components: - type: Transform - pos: 504.5,399.5 - parent: 1 - - uid: 17423 + pos: -17.5,-22.5 + parent: 2 + - uid: 10086 components: - type: Transform - pos: 497.5,400.5 - parent: 1 - - uid: 17424 + pos: -16.5,-23.5 + parent: 2 + - uid: 10088 components: - type: Transform - pos: 499.5,400.5 - parent: 1 - - uid: 17425 + rot: 3.141592653589793 rad + pos: -138.5,9.5 + parent: 2 + - uid: 10129 components: - type: Transform - pos: 498.5,400.5 - parent: 1 - - uid: 17426 + pos: -16.5,-24.5 + parent: 2 + - uid: 10146 components: - type: Transform - pos: 500.5,400.5 - parent: 1 - - uid: 17427 + pos: -129.5,-7.5 + parent: 2 + - uid: 10174 components: - type: Transform - pos: 501.5,400.5 - parent: 1 - - uid: 17429 + pos: -85.5,3.5 + parent: 2 + - uid: 10451 components: - type: Transform - pos: 503.5,400.5 - parent: 1 - - uid: 17430 + pos: -127.5,18.5 + parent: 2 + - uid: 10561 components: - type: Transform - pos: 504.5,400.5 - parent: 1 - - uid: 17431 + rot: -1.5707963267948966 rad + pos: -99.5,36.5 + parent: 2 + - uid: 10748 components: - type: Transform - pos: 500.5,401.5 - parent: 1 - - uid: 17432 + rot: -1.5707963267948966 rad + pos: -99.5,30.5 + parent: 2 + - uid: 10752 components: - type: Transform - pos: 502.5,401.5 - parent: 1 - - uid: 17433 + rot: -1.5707963267948966 rad + pos: -99.5,31.5 + parent: 2 + - uid: 10800 components: - type: Transform - pos: 501.5,401.5 - parent: 1 - - uid: 17434 + rot: -1.5707963267948966 rad + pos: -99.5,23.5 + parent: 2 + - uid: 10862 components: - type: Transform - pos: 491.5,397.5 - parent: 1 - - uid: 17435 + rot: -1.5707963267948966 rad + pos: -99.5,35.5 + parent: 2 + - uid: 11036 components: - type: Transform - pos: 491.5,395.5 - parent: 1 - - uid: 17436 + pos: -16.5,-26.5 + parent: 2 + - uid: 11056 components: - type: Transform - pos: 491.5,394.5 - parent: 1 - - uid: 17437 + pos: -20.5,-67.5 + parent: 2 + - uid: 11075 components: - type: Transform - pos: 491.5,393.5 - parent: 1 - - uid: 17440 + pos: -39.5,-39.5 + parent: 2 + - uid: 11110 components: - type: Transform - pos: 491.5,396.5 - parent: 1 - - uid: 17445 + pos: -135.5,11.5 + parent: 2 + - uid: 11123 components: - type: Transform - pos: 491.5,385.5 - parent: 1 - - uid: 17446 + pos: -138.5,-28.5 + parent: 2 + - uid: 11264 components: - type: Transform - pos: 491.5,384.5 - parent: 1 - - uid: 17456 + pos: -88.5,-9.5 + parent: 2 + - uid: 11292 components: - type: Transform - pos: 491.5,372.5 - parent: 1 - - uid: 17457 + pos: -40.5,-39.5 + parent: 2 + - uid: 11364 components: - type: Transform - pos: 491.5,383.5 - parent: 1 - - uid: 17458 + pos: -96.5,36.5 + parent: 2 + - uid: 11636 components: - type: Transform - pos: 491.5,371.5 - parent: 1 - - uid: 17459 + rot: -1.5707963267948966 rad + pos: -99.5,27.5 + parent: 2 + - uid: 12003 components: - type: Transform - pos: 491.5,370.5 - parent: 1 - - uid: 17463 + pos: -37.5,-45.5 + parent: 2 + - uid: 12011 components: - type: Transform - pos: 490.5,397.5 - parent: 1 - - uid: 17465 + pos: -35.5,-45.5 + parent: 2 + - uid: 12120 components: - type: Transform - pos: 490.5,394.5 - parent: 1 - - uid: 17466 + pos: -39.5,-45.5 + parent: 2 + - uid: 12182 components: - type: Transform - pos: 490.5,393.5 - parent: 1 - - uid: 17469 + rot: -1.5707963267948966 rad + pos: -99.5,25.5 + parent: 2 + - uid: 12186 components: - type: Transform - pos: 490.5,395.5 - parent: 1 - - uid: 17473 + rot: -1.5707963267948966 rad + pos: -99.5,26.5 + parent: 2 + - uid: 12230 components: - type: Transform - pos: 490.5,386.5 - parent: 1 - - uid: 17475 + pos: -42.5,-39.5 + parent: 2 + - uid: 12613 components: - type: Transform - pos: 490.5,385.5 - parent: 1 - - uid: 17476 + pos: -43.5,-39.5 + parent: 2 + - uid: 12873 components: - type: Transform - pos: 490.5,384.5 - parent: 1 - - uid: 17477 + pos: -46.5,-39.5 + parent: 2 + - uid: 12874 components: - type: Transform - pos: 490.5,383.5 - parent: 1 - - uid: 17479 + pos: -47.5,-39.5 + parent: 2 + - uid: 12904 components: - type: Transform - pos: 490.5,382.5 - parent: 1 - - uid: 17486 + pos: -20.5,-65.5 + parent: 2 + - uid: 13127 components: - type: Transform - pos: 490.5,372.5 - parent: 1 - - uid: 17487 + pos: -35.5,-34.5 + parent: 2 + - uid: 13820 components: - type: Transform - pos: 490.5,375.5 - parent: 1 - - uid: 17488 + pos: -142.5,-15.5 + parent: 2 + - uid: 13955 components: - type: Transform - pos: 490.5,370.5 - parent: 1 - - uid: 17489 + pos: -142.5,-17.5 + parent: 2 + - uid: 14026 components: - type: Transform - pos: 490.5,371.5 - parent: 1 - - uid: 17490 + pos: -142.5,-16.5 + parent: 2 + - uid: 14046 components: - type: Transform - pos: 490.5,368.5 - parent: 1 - - uid: 17491 + rot: -1.5707963267948966 rad + pos: -137.5,-23.5 + parent: 2 + - uid: 14591 components: - type: Transform - pos: 490.5,373.5 - parent: 1 - - uid: 17492 + pos: -138.5,-23.5 + parent: 2 + - uid: 15271 components: - type: Transform - pos: 490.5,369.5 - parent: 1 - - uid: 17493 + pos: -28.5,-51.5 + parent: 2 + - uid: 15673 components: - type: Transform - pos: 490.5,374.5 - parent: 1 - - uid: 17494 + pos: -26.5,-58.5 + parent: 2 + - uid: 16296 components: - type: Transform - pos: 492.5,368.5 - parent: 1 - - uid: 17495 + pos: -138.5,-22.5 + parent: 2 + - uid: 16564 components: - type: Transform - pos: 492.5,370.5 - parent: 1 - - uid: 17496 + pos: -47.5,-35.5 + parent: 2 + - uid: 16565 components: - type: Transform - pos: 492.5,369.5 - parent: 1 - - uid: 17497 + pos: -47.5,-36.5 + parent: 2 + - uid: 16566 components: - type: Transform - pos: 492.5,371.5 - parent: 1 - - uid: 17500 + pos: -43.5,-33.5 + parent: 2 + - uid: 16567 components: - type: Transform - pos: 492.5,374.5 - parent: 1 - - uid: 17507 + pos: -32.5,-43.5 + parent: 2 + - uid: 17027 components: - type: Transform - pos: 492.5,382.5 - parent: 1 - - uid: 17508 + pos: -84.5,3.5 + parent: 2 + - uid: 17031 components: - type: Transform - pos: 492.5,383.5 - parent: 1 - - uid: 17509 + pos: -86.5,3.5 + parent: 2 + - uid: 17035 components: - type: Transform - pos: 492.5,384.5 - parent: 1 - - uid: 17511 + pos: -55.5,-76.5 + parent: 2 + - uid: 17084 components: - type: Transform - pos: 492.5,386.5 - parent: 1 - - uid: 17517 + rot: 1.5707963267948966 rad + pos: -83.5,0.5 + parent: 2 + - uid: 17086 components: - type: Transform - pos: 492.5,392.5 - parent: 1 - - uid: 17519 + rot: 1.5707963267948966 rad + pos: -87.5,0.5 + parent: 2 + - uid: 17087 components: - type: Transform - pos: 492.5,393.5 - parent: 1 - - uid: 17520 + rot: 1.5707963267948966 rad + pos: -87.5,2.5 + parent: 2 + - uid: 17117 components: - type: Transform - pos: 493.5,393.5 - parent: 1 - - uid: 17521 + pos: -19.5,5.5 + parent: 2 + - uid: 17119 components: - type: Transform - pos: 493.5,391.5 - parent: 1 - - uid: 17522 + pos: -19.5,4.5 + parent: 2 + - uid: 17123 components: - type: Transform - pos: 493.5,390.5 - parent: 1 - - uid: 17525 + pos: -19.5,6.5 + parent: 2 + - uid: 17132 components: - type: Transform - pos: 493.5,387.5 - parent: 1 - - uid: 17526 + pos: -20.5,3.5 + parent: 2 + - uid: 17135 components: - type: Transform - pos: 493.5,386.5 - parent: 1 - - uid: 17527 + pos: -19.5,3.5 + parent: 2 + - uid: 17138 components: - type: Transform - pos: 493.5,385.5 - parent: 1 - - uid: 17528 + pos: -21.5,3.5 + parent: 2 + - uid: 17143 components: - type: Transform - pos: 493.5,384.5 - parent: 1 - - uid: 17529 + pos: -24.5,3.5 + parent: 2 + - uid: 17175 components: - type: Transform - pos: 493.5,383.5 - parent: 1 - - uid: 17530 + pos: -38.5,-34.5 + parent: 2 + - uid: 17187 components: - type: Transform - pos: 493.5,382.5 - parent: 1 - - uid: 17534 + pos: -23.5,3.5 + parent: 2 + - uid: 17193 components: - type: Transform - pos: 493.5,392.5 - parent: 1 - - uid: 17536 + pos: -38.5,-35.5 + parent: 2 + - uid: 17196 components: - type: Transform - pos: 493.5,376.5 - parent: 1 - - uid: 17538 + pos: -38.5,-38.5 + parent: 2 + - uid: 17399 components: - type: Transform - pos: 493.5,375.5 - parent: 1 - - uid: 17542 + pos: -27.5,-58.5 + parent: 2 + - uid: 17401 components: - type: Transform - pos: 493.5,370.5 - parent: 1 - - uid: 17543 + pos: -24.5,-58.5 + parent: 2 + - uid: 17443 components: - type: Transform - pos: 494.5,393.5 - parent: 1 - - uid: 17544 + pos: -135.5,23.5 + parent: 2 + - uid: 17500 components: - type: Transform - pos: 494.5,392.5 - parent: 1 - - uid: 17545 + rot: 3.141592653589793 rad + pos: -77.5,-24.5 + parent: 2 + - uid: 17520 components: - type: Transform - pos: 494.5,391.5 - parent: 1 - - uid: 17546 + pos: -141.5,-21.5 + parent: 2 + - uid: 17624 components: - type: Transform - pos: 494.5,390.5 - parent: 1 - - uid: 17547 + pos: -14.5,-67.5 + parent: 2 + - uid: 17625 components: - type: Transform - pos: 494.5,389.5 - parent: 1 - - uid: 17548 + rot: 1.5707963267948966 rad + pos: -12.5,-59.5 + parent: 2 + - uid: 17650 components: - type: Transform - pos: 494.5,388.5 - parent: 1 - - uid: 17549 + pos: -20.5,-66.5 + parent: 2 + - uid: 18045 components: - type: Transform - pos: 494.5,387.5 - parent: 1 - - uid: 17550 + rot: 3.141592653589793 rad + pos: -139.5,12.5 + parent: 2 + - uid: 18061 components: - type: Transform - pos: 494.5,386.5 - parent: 1 - - uid: 17551 + rot: 3.141592653589793 rad + pos: -139.5,9.5 + parent: 2 + - uid: 18083 components: - type: Transform - pos: 494.5,385.5 - parent: 1 - - uid: 17552 + rot: 1.5707963267948966 rad + pos: -115.5,-13.5 + parent: 2 + - uid: 18128 components: - type: Transform - pos: 494.5,384.5 - parent: 1 - - uid: 17554 + pos: -93.5,-59.5 + parent: 2 + - uid: 18135 components: - type: Transform - pos: 494.5,381.5 - parent: 1 - - uid: 17555 + pos: -91.5,-60.5 + parent: 2 + - uid: 18149 components: - type: Transform - pos: 494.5,382.5 - parent: 1 - - uid: 17559 + pos: -34.5,-45.5 + parent: 2 + - uid: 18367 components: - type: Transform - pos: 493.5,371.5 - parent: 1 - - uid: 17560 + pos: -101.5,-1.5 + parent: 2 + - uid: 18368 components: - type: Transform - pos: 494.5,377.5 - parent: 1 - - uid: 17561 + pos: -100.5,-1.5 + parent: 2 + - uid: 18374 components: - type: Transform - pos: 494.5,376.5 - parent: 1 - - uid: 17564 + pos: -124.5,15.5 + parent: 2 + - uid: 18376 components: - type: Transform - pos: 494.5,373.5 - parent: 1 - - uid: 17565 + pos: -124.5,14.5 + parent: 2 + - uid: 18384 components: - type: Transform - pos: 494.5,371.5 - parent: 1 - - uid: 17566 + pos: -131.5,16.5 + parent: 2 + - uid: 18685 components: - type: Transform - pos: 494.5,372.5 - parent: 1 - - uid: 17567 + pos: -26.5,3.5 + parent: 2 + - uid: 18749 components: - type: Transform - pos: 494.5,370.5 - parent: 1 - - uid: 17568 + pos: -27.5,9.5 + parent: 2 + - uid: 18834 components: - type: Transform - pos: 495.5,372.5 - parent: 1 - - uid: 17569 + pos: -91.5,-58.5 + parent: 2 + - uid: 18890 components: - type: Transform - pos: 495.5,374.5 - parent: 1 - - uid: 17570 + pos: -91.5,-59.5 + parent: 2 + - uid: 19163 components: - type: Transform - pos: 495.5,375.5 - parent: 1 - - uid: 17571 + pos: -95.5,-61.5 + parent: 2 + - uid: 19166 components: - type: Transform - pos: 495.5,376.5 - parent: 1 - - uid: 17572 + pos: -94.5,-60.5 + parent: 2 + - uid: 19167 components: - type: Transform - pos: 495.5,377.5 - parent: 1 - - uid: 17573 + pos: -95.5,-60.5 + parent: 2 + - uid: 19168 components: - type: Transform - pos: 495.5,378.5 - parent: 1 - - uid: 17575 + pos: -91.5,-73.5 + parent: 2 + - uid: 19173 components: - type: Transform - pos: 495.5,373.5 - parent: 1 - - uid: 17577 + pos: -90.5,-73.5 + parent: 2 + - uid: 19226 components: - type: Transform - pos: 495.5,382.5 - parent: 1 - - uid: 17579 + pos: -136.5,-21.5 + parent: 2 + - uid: 19254 components: - type: Transform - pos: 495.5,383.5 - parent: 1 - - uid: 17580 + pos: -110.5,-58.5 + parent: 2 + - uid: 19255 components: - type: Transform - pos: 495.5,384.5 - parent: 1 - - uid: 17581 + pos: -88.5,-74.5 + parent: 2 + - uid: 19296 components: - type: Transform - pos: 495.5,385.5 - parent: 1 - - uid: 17582 + pos: -138.5,-21.5 + parent: 2 + - uid: 19302 components: - type: Transform - pos: 495.5,386.5 - parent: 1 - - uid: 17583 + pos: -88.5,-73.5 + parent: 2 + - uid: 19307 components: - type: Transform - pos: 495.5,387.5 - parent: 1 - - uid: 17584 + pos: -88.5,-61.5 + parent: 2 + - uid: 19320 components: - type: Transform - pos: 495.5,389.5 - parent: 1 - - uid: 17586 + pos: -40.5,-45.5 + parent: 2 + - uid: 19321 components: - type: Transform - pos: 495.5,391.5 - parent: 1 - - uid: 17587 + pos: -140.5,-21.5 + parent: 2 + - uid: 19455 components: - type: Transform - pos: 495.5,392.5 - parent: 1 - - uid: 17588 + pos: -137.5,-21.5 + parent: 2 + - uid: 19487 components: - type: Transform - pos: 495.5,393.5 - parent: 1 - - uid: 17589 + pos: -88.5,-63.5 + parent: 2 + - uid: 19491 components: - type: Transform - pos: 495.5,388.5 - parent: 1 - - uid: 17590 + pos: -27.5,8.5 + parent: 2 + - uid: 19548 components: - type: Transform - pos: 496.5,392.5 - parent: 1 - - uid: 17593 + pos: -117.5,-7.5 + parent: 2 + - uid: 19555 components: - type: Transform - pos: 496.5,389.5 - parent: 1 - - uid: 17594 + pos: -96.5,-64.5 + parent: 2 + - uid: 19559 components: - type: Transform - pos: 496.5,388.5 - parent: 1 - - uid: 17595 + pos: -96.5,-61.5 + parent: 2 + - uid: 19569 components: - type: Transform - pos: 497.5,393.5 - parent: 1 - - uid: 17597 + pos: -96.5,-66.5 + parent: 2 + - uid: 19570 components: - type: Transform - pos: 497.5,391.5 - parent: 1 - - uid: 17598 + pos: -96.5,-63.5 + parent: 2 + - uid: 19620 components: - type: Transform - pos: 497.5,390.5 - parent: 1 - - uid: 17599 + pos: -96.5,-67.5 + parent: 2 + - uid: 19621 components: - type: Transform - pos: 497.5,389.5 - parent: 1 - - uid: 17600 + pos: -96.5,-65.5 + parent: 2 + - uid: 19624 components: - type: Transform - pos: 497.5,388.5 - parent: 1 - - uid: 17601 + pos: -139.5,-21.5 + parent: 2 + - uid: 19803 components: - type: Transform - pos: 498.5,393.5 - parent: 1 - - uid: 17602 + pos: -27.5,3.5 + parent: 2 + - uid: 19881 components: - type: Transform - pos: 498.5,392.5 - parent: 1 - - uid: 17603 + rot: -1.5707963267948966 rad + pos: -102.5,31.5 + parent: 2 + - uid: 20034 components: - type: Transform - pos: 498.5,391.5 - parent: 1 - - uid: 17604 + pos: -88.5,-65.5 + parent: 2 + - uid: 20036 components: - type: Transform - pos: 498.5,390.5 - parent: 1 - - uid: 17605 + pos: -88.5,-67.5 + parent: 2 + - uid: 20148 components: - type: Transform - pos: 498.5,389.5 - parent: 1 - - uid: 17606 + pos: -88.5,-62.5 + parent: 2 + - uid: 20222 components: - type: Transform - pos: 498.5,388.5 - parent: 1 - - uid: 17607 + pos: -88.5,-66.5 + parent: 2 + - uid: 20223 components: - type: Transform - pos: 499.5,393.5 - parent: 1 - - uid: 17608 + pos: -91.5,-68.5 + parent: 2 + - uid: 20260 components: - type: Transform - pos: 499.5,392.5 - parent: 1 - - uid: 17609 + pos: -27.5,4.5 + parent: 2 + - uid: 20266 components: - type: Transform - pos: 499.5,391.5 - parent: 1 - - uid: 17610 + pos: -94.5,-68.5 + parent: 2 + - uid: 20267 components: - type: Transform - pos: 499.5,390.5 - parent: 1 - - uid: 17612 + pos: -123.5,30.5 + parent: 2 + - uid: 20268 components: - type: Transform - pos: 499.5,388.5 - parent: 1 - - uid: 17614 + pos: -122.5,30.5 + parent: 2 + - uid: 20269 components: - type: Transform - pos: 500.5,392.5 - parent: 1 - - uid: 17615 + pos: -122.5,34.5 + parent: 2 + - uid: 20279 components: - type: Transform - pos: 500.5,391.5 - parent: 1 - - uid: 17616 + pos: -95.5,-67.5 + parent: 2 + - uid: 20280 components: - type: Transform - pos: 500.5,390.5 - parent: 1 - - uid: 17617 + pos: -93.5,-68.5 + parent: 2 + - uid: 20281 components: - type: Transform - pos: 500.5,389.5 - parent: 1 - - uid: 17618 + pos: -90.5,-71.5 + parent: 2 + - uid: 20282 components: - type: Transform - pos: 500.5,388.5 - parent: 1 - - uid: 17619 + pos: -89.5,-61.5 + parent: 2 + - uid: 20283 components: - type: Transform - pos: 496.5,393.5 - parent: 1 - - uid: 17621 + pos: -88.5,-70.5 + parent: 2 + - uid: 20284 components: - type: Transform - pos: 496.5,385.5 - parent: 1 - - uid: 17622 + pos: -88.5,-71.5 + parent: 2 + - uid: 20285 components: - type: Transform - pos: 496.5,384.5 - parent: 1 - - uid: 17623 + pos: -87.5,-71.5 + parent: 2 + - uid: 20286 components: - type: Transform - pos: 496.5,383.5 - parent: 1 - - uid: 17624 + pos: -90.5,-70.5 + parent: 2 + - uid: 20287 components: - type: Transform - pos: 496.5,382.5 - parent: 1 - - uid: 17625 + pos: -89.5,-68.5 + parent: 2 + - uid: 20289 components: - type: Transform - pos: 496.5,381.5 - parent: 1 - - uid: 17626 + pos: -90.5,-68.5 + parent: 2 + - uid: 20290 components: - type: Transform - pos: 496.5,380.5 - parent: 1 - - uid: 17627 + pos: -89.5,-67.5 + parent: 2 + - uid: 20291 components: - type: Transform - pos: 496.5,379.5 - parent: 1 - - uid: 17628 + pos: -90.5,-60.5 + parent: 2 + - uid: 20294 components: - type: Transform - pos: 496.5,378.5 - parent: 1 - - uid: 17631 + pos: -89.5,-7.5 + parent: 2 + - uid: 20295 components: - type: Transform - pos: 497.5,386.5 - parent: 1 - - uid: 17632 + pos: -89.5,-9.5 + parent: 2 + - uid: 20306 components: - type: Transform - pos: 497.5,385.5 - parent: 1 - - uid: 17633 + pos: -89.5,-8.5 + parent: 2 + - uid: 20307 components: - type: Transform - pos: 497.5,384.5 - parent: 1 - - uid: 17635 + pos: -86.5,-10.5 + parent: 2 + - uid: 20309 components: - type: Transform - pos: 497.5,382.5 - parent: 1 - - uid: 17636 + pos: -87.5,-9.5 + parent: 2 + - uid: 20324 components: - type: Transform - pos: 497.5,381.5 - parent: 1 - - uid: 17637 + rot: 1.5707963267948966 rad + pos: -45.5,-77.5 + parent: 2 + - uid: 20325 components: - type: Transform - pos: 497.5,380.5 - parent: 1 - - uid: 17638 + rot: 1.5707963267948966 rad + pos: -46.5,-77.5 + parent: 2 + - uid: 20327 components: - type: Transform - pos: 497.5,378.5 - parent: 1 - - uid: 17639 + rot: 1.5707963267948966 rad + pos: -41.5,-77.5 + parent: 2 + - uid: 20338 components: - type: Transform - pos: 497.5,379.5 - parent: 1 - - uid: 17640 + pos: -87.5,3.5 + parent: 2 + - uid: 20369 components: - type: Transform - pos: 496.5,377.5 - parent: 1 - - uid: 17641 + pos: -107.5,-56.5 + parent: 2 + - uid: 20415 components: - type: Transform - pos: 498.5,382.5 - parent: 1 - - uid: 17642 + pos: -22.5,9.5 + parent: 2 + - uid: 20419 components: - type: Transform - pos: 501.5,392.5 - parent: 1 - - uid: 17645 + pos: -21.5,9.5 + parent: 2 + - uid: 20432 components: - type: Transform - pos: 509.5,395.5 - parent: 1 - - uid: 17646 + pos: -19.5,9.5 + parent: 2 + - uid: 20436 components: - type: Transform - pos: 509.5,396.5 - parent: 1 - - uid: 17647 + pos: -105.5,33.5 + parent: 2 + - uid: 20439 components: - type: Transform - pos: 508.5,398.5 - parent: 1 - - uid: 17649 + pos: -105.5,35.5 + parent: 2 + - uid: 20447 components: - type: Transform - pos: 489.5,393.5 - parent: 1 - - uid: 17653 + pos: -105.5,34.5 + parent: 2 + - uid: 20457 components: - type: Transform - pos: 489.5,389.5 - parent: 1 - - uid: 17654 + pos: -118.5,36.5 + parent: 2 + - uid: 20660 components: - type: Transform - pos: 489.5,388.5 - parent: 1 - - uid: 17655 + pos: -19.5,8.5 + parent: 2 + - uid: 20661 components: - type: Transform - pos: 489.5,387.5 - parent: 1 - - uid: 17656 + pos: -19.5,7.5 + parent: 2 + - uid: 20662 components: - type: Transform - pos: 489.5,386.5 - parent: 1 - - uid: 17657 + pos: -23.5,9.5 + parent: 2 + - uid: 20840 components: - type: Transform - pos: 489.5,394.5 - parent: 1 - - uid: 17658 + pos: -26.5,22.5 + parent: 2 + - uid: 20841 components: - type: Transform - pos: 489.5,385.5 - parent: 1 - - uid: 17659 + pos: -22.5,21.5 + parent: 2 + - uid: 20843 components: - type: Transform - pos: 489.5,384.5 - parent: 1 - - uid: 17667 + pos: -22.5,22.5 + parent: 2 + - uid: 21327 components: - type: Transform - pos: 489.5,375.5 - parent: 1 - - uid: 17668 + pos: -13.5,-62.5 + parent: 2 + - uid: 21351 components: - type: Transform - pos: 489.5,374.5 - parent: 1 - - uid: 17669 + pos: -14.5,-63.5 + parent: 2 + - uid: 21397 components: - type: Transform - pos: 489.5,373.5 - parent: 1 - - uid: 17670 + pos: -99.5,-3.5 + parent: 2 + - uid: 21419 components: - type: Transform - pos: 489.5,372.5 - parent: 1 - - uid: 17671 + rot: -1.5707963267948966 rad + pos: -92.5,0.5 + parent: 2 + - uid: 21803 components: - type: Transform - pos: 489.5,371.5 - parent: 1 - - uid: 17678 + rot: 1.5707963267948966 rad + pos: -132.5,-12.5 + parent: 2 + - uid: 21857 components: - type: Transform - pos: 488.5,393.5 - parent: 1 - - uid: 17679 + rot: 1.5707963267948966 rad + pos: -132.5,-8.5 + parent: 2 + - uid: 21858 components: - type: Transform - pos: 489.5,367.5 - parent: 1 - - uid: 17681 + rot: 1.5707963267948966 rad + pos: -132.5,-11.5 + parent: 2 + - uid: 21864 components: - type: Transform - pos: 488.5,391.5 - parent: 1 - - uid: 17683 + pos: -38.5,-10.5 + parent: 2 + - uid: 21865 components: - type: Transform - pos: 488.5,390.5 - parent: 1 - - uid: 17684 + pos: -38.5,-9.5 + parent: 2 + - uid: 21870 components: - type: Transform - pos: 488.5,388.5 - parent: 1 - - uid: 17685 + pos: -37.5,-0.5 + parent: 2 + - uid: 22012 components: - type: Transform - pos: 488.5,387.5 - parent: 1 - - uid: 17687 + pos: -105.5,37.5 + parent: 2 + - uid: 22018 components: - type: Transform - pos: 488.5,385.5 - parent: 1 - - uid: 17694 + pos: -103.5,35.5 + parent: 2 + - uid: 22032 components: - type: Transform - pos: 488.5,376.5 - parent: 1 - - uid: 17695 + pos: -103.5,34.5 + parent: 2 + - uid: 22055 components: - type: Transform - pos: 488.5,375.5 - parent: 1 - - uid: 17696 + pos: -124.5,18.5 + parent: 2 + - uid: 22102 components: - type: Transform - pos: 488.5,373.5 - parent: 1 - - uid: 17697 + rot: 1.5707963267948966 rad + pos: -75.5,-28.5 + parent: 2 + - uid: 22120 components: - type: Transform - pos: 488.5,374.5 - parent: 1 - - uid: 17699 + rot: 1.5707963267948966 rad + pos: -75.5,-33.5 + parent: 2 + - uid: 22121 components: - type: Transform - pos: 488.5,371.5 - parent: 1 - - uid: 17700 + rot: 1.5707963267948966 rad + pos: -75.5,-30.5 + parent: 2 + - uid: 22145 components: - type: Transform - pos: 488.5,370.5 - parent: 1 - - uid: 17703 + pos: -102.5,37.5 + parent: 2 + - uid: 22193 components: - type: Transform - pos: 488.5,386.5 - parent: 1 - - uid: 17704 + pos: -103.5,32.5 + parent: 2 + - uid: 22194 components: - type: Transform - pos: 488.5,369.5 - parent: 1 - - uid: 17705 + pos: -102.5,35.5 + parent: 2 + - uid: 22211 components: - type: Transform - pos: 487.5,395.5 - parent: 1 - - uid: 17706 + pos: -103.5,33.5 + parent: 2 + - uid: 22322 components: - type: Transform - pos: 487.5,393.5 - parent: 1 - - uid: 17707 + rot: 3.141592653589793 rad + pos: -95.5,-51.5 + parent: 2 + - uid: 22436 components: - type: Transform - pos: 487.5,391.5 - parent: 1 - - uid: 17709 + rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + - uid: 22457 components: - type: Transform - pos: 487.5,389.5 - parent: 1 - - uid: 17710 + rot: 3.141592653589793 rad + pos: -131.5,23.5 + parent: 2 + - uid: 22461 components: - type: Transform - pos: 487.5,388.5 - parent: 1 - - uid: 17711 + rot: 3.141592653589793 rad + pos: -127.5,23.5 + parent: 2 + - uid: 22482 components: - type: Transform - pos: 487.5,387.5 - parent: 1 - - uid: 17712 + rot: 3.141592653589793 rad + pos: -135.5,9.5 + parent: 2 + - uid: 22683 components: - type: Transform - pos: 487.5,390.5 - parent: 1 - - uid: 17713 + rot: -1.5707963267948966 rad + pos: -98.5,0.5 + parent: 2 + - uid: 22687 components: - type: Transform - pos: 487.5,385.5 - parent: 1 - - uid: 17714 + rot: 3.141592653589793 rad + pos: -92.5,-5.5 + parent: 2 + - uid: 22796 components: - type: Transform - pos: 487.5,386.5 - parent: 1 - - uid: 17715 + rot: -1.5707963267948966 rad + pos: -98.5,-5.5 + parent: 2 + - uid: 22797 components: - type: Transform - pos: 487.5,383.5 - parent: 1 - - uid: 17719 + rot: -1.5707963267948966 rad + pos: -92.5,-6.5 + parent: 2 + - uid: 22814 components: - type: Transform - pos: 487.5,384.5 - parent: 1 - - uid: 17720 + rot: -1.5707963267948966 rad + pos: -139.5,21.5 + parent: 2 + - uid: 22842 components: - type: Transform - pos: 487.5,394.5 - parent: 1 - - uid: 17723 + pos: -139.5,23.5 + parent: 2 + - uid: 23031 components: - type: Transform - pos: 487.5,376.5 - parent: 1 - - uid: 17725 + pos: -138.5,25.5 + parent: 2 + - uid: 23040 components: - type: Transform - pos: 487.5,373.5 - parent: 1 - - uid: 17729 + pos: -89.5,28.5 + parent: 2 + - uid: 23117 components: - type: Transform - pos: 487.5,370.5 - parent: 1 - - uid: 17730 + rot: -1.5707963267948966 rad + pos: -139.5,24.5 + parent: 2 + - uid: 23118 components: - type: Transform - pos: 487.5,369.5 - parent: 1 - - uid: 17732 + rot: -1.5707963267948966 rad + pos: -138.5,21.5 + parent: 2 + - uid: 23152 components: - type: Transform - pos: 487.5,368.5 - parent: 1 - - uid: 17734 + rot: 3.141592653589793 rad + pos: -135.5,10.5 + parent: 2 + - uid: 23159 components: - type: Transform - pos: 487.5,392.5 - parent: 1 - - uid: 17737 + pos: -137.5,29.5 + parent: 2 + - uid: 23462 components: - type: Transform - pos: 476.5,369.5 - parent: 1 - - uid: 17738 + pos: -23.5,-69.5 + parent: 2 + - uid: 23705 components: - type: Transform - pos: 476.5,368.5 - parent: 1 - - uid: 17740 + pos: -107.5,-18.5 + parent: 2 + - uid: 23711 components: - type: Transform - pos: 476.5,366.5 - parent: 1 - - uid: 17741 + rot: 3.141592653589793 rad + pos: -76.5,-27.5 + parent: 2 + - uid: 23837 components: - type: Transform - pos: 476.5,365.5 - parent: 1 - - uid: 17742 + pos: -132.5,13.5 + parent: 2 + - uid: 23909 components: - type: Transform - pos: 476.5,364.5 - parent: 1 - - uid: 17743 + pos: -17.5,-67.5 + parent: 2 + - uid: 23911 components: - type: Transform - pos: 476.5,362.5 - parent: 1 - - uid: 17744 + pos: -22.5,-70.5 + parent: 2 + - uid: 23937 components: - type: Transform - pos: 476.5,361.5 - parent: 1 - - uid: 17746 + rot: 3.141592653589793 rad + pos: -40.5,-43.5 + parent: 2 + - uid: 23938 components: - type: Transform - pos: 477.5,370.5 - parent: 1 - - uid: 17747 + rot: 3.141592653589793 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 23954 components: - type: Transform - pos: 477.5,369.5 - parent: 1 - - uid: 17748 + pos: -132.5,15.5 + parent: 2 + - uid: 23956 components: - type: Transform - pos: 477.5,368.5 - parent: 1 - - uid: 17749 + pos: -132.5,16.5 + parent: 2 + - uid: 24002 components: - type: Transform - pos: 477.5,367.5 - parent: 1 - - uid: 17750 + rot: -1.5707963267948966 rad + pos: -82.5,6.5 + parent: 2 + - uid: 24109 components: - type: Transform - pos: 477.5,366.5 - parent: 1 - - uid: 17751 + pos: -20.5,-63.5 + parent: 2 + - uid: 24112 components: - type: Transform - pos: 476.5,363.5 - parent: 1 - - uid: 17752 + pos: -17.5,-63.5 + parent: 2 + - uid: 24113 components: - type: Transform - pos: 477.5,365.5 - parent: 1 - - uid: 17753 + pos: -19.5,-63.5 + parent: 2 + - uid: 24189 components: - type: Transform - pos: 477.5,364.5 - parent: 1 - - uid: 17754 + pos: -21.5,-70.5 + parent: 2 + - uid: 24197 components: - type: Transform - pos: 477.5,363.5 - parent: 1 - - uid: 17755 + pos: -18.5,-63.5 + parent: 2 + - uid: 24287 components: - type: Transform - pos: 477.5,362.5 - parent: 1 - - uid: 17756 + pos: -26.5,-69.5 + parent: 2 + - uid: 24362 components: - type: Transform - pos: 477.5,361.5 - parent: 1 - - uid: 17758 + rot: 3.141592653589793 rad + pos: -79.5,-27.5 + parent: 2 + - uid: 24369 components: - type: Transform - pos: 478.5,370.5 - parent: 1 - - uid: 17761 + pos: -37.5,-9.5 + parent: 2 + - uid: 24374 components: - type: Transform - pos: 478.5,367.5 - parent: 1 - - uid: 17762 + pos: -37.5,-1.5 + parent: 2 + - uid: 24436 components: - type: Transform - pos: 478.5,366.5 - parent: 1 - - uid: 17763 + rot: 3.141592653589793 rad + pos: -135.5,16.5 + parent: 2 + - uid: 24442 components: - type: Transform - pos: 478.5,365.5 - parent: 1 - - uid: 17764 + pos: -139.5,25.5 + parent: 2 + - uid: 24466 components: - type: Transform - pos: 478.5,364.5 - parent: 1 - - uid: 17765 + rot: 3.141592653589793 rad + pos: -135.5,18.5 + parent: 2 + - uid: 24467 components: - type: Transform - pos: 478.5,362.5 - parent: 1 - - uid: 17766 + rot: 3.141592653589793 rad + pos: -133.5,23.5 + parent: 2 + - uid: 25782 components: - type: Transform - pos: 478.5,363.5 - parent: 1 - - uid: 17767 + pos: -11.5,-56.5 + parent: 2 + - uid: 25784 components: - type: Transform - pos: 478.5,361.5 - parent: 1 - - uid: 17775 + pos: -11.5,-57.5 + parent: 2 + - uid: 25785 components: - type: Transform - pos: 479.5,362.5 - parent: 1 - - uid: 17777 + pos: -11.5,-58.5 + parent: 2 + - uid: 25786 components: - type: Transform - pos: 479.5,361.5 - parent: 1 - - uid: 17782 + pos: -11.5,-59.5 + parent: 2 + - uid: 25788 components: - type: Transform - pos: 480.5,366.5 - parent: 1 - - uid: 17783 + pos: -12.5,-60.5 + parent: 2 + - uid: 25789 components: - type: Transform - pos: 480.5,365.5 - parent: 1 - - uid: 17785 + pos: -12.5,-61.5 + parent: 2 + - uid: 25790 components: - type: Transform - pos: 480.5,362.5 - parent: 1 - - uid: 17786 + pos: -12.5,-62.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 3581 components: - type: Transform - pos: 480.5,361.5 - parent: 1 - - uid: 17790 + rot: 3.141592653589793 rad + pos: -44.5,-72.5 + parent: 2 + - uid: 4421 components: - type: Transform - pos: 479.5,366.5 - parent: 1 - - uid: 17791 + rot: 3.141592653589793 rad + pos: -44.5,-74.5 + parent: 2 + - uid: 4425 components: - type: Transform - pos: 481.5,368.5 - parent: 1 - - uid: 17793 + rot: 3.141592653589793 rad + pos: -43.5,-72.5 + parent: 2 + - uid: 4427 components: - type: Transform - pos: 481.5,366.5 - parent: 1 - - uid: 17794 + rot: 3.141592653589793 rad + pos: -43.5,-74.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 3211 components: - type: Transform - pos: 481.5,365.5 - parent: 1 - - uid: 17795 + rot: -1.5707963267948966 rad + pos: -42.5,-72.5 + parent: 2 + - uid: 3331 components: - type: Transform - pos: 481.5,364.5 - parent: 1 - - uid: 17796 + rot: 3.141592653589793 rad + pos: -42.5,-74.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 72 components: - type: Transform - pos: 480.5,363.5 - parent: 1 - - uid: 17797 + rot: 1.5707963267948966 rad + pos: -73.5,-21.5 + parent: 2 + - uid: 267 components: - type: Transform - pos: 481.5,363.5 - parent: 1 - - uid: 17798 + pos: -73.5,-11.5 + parent: 2 + - uid: 286 components: - type: Transform - pos: 481.5,362.5 - parent: 1 - - uid: 17799 + pos: -31.5,-28.5 + parent: 2 + - uid: 335 components: - type: Transform - pos: 481.5,361.5 - parent: 1 - - uid: 17806 + pos: -16.5,-17.5 + parent: 2 + - uid: 340 components: - type: Transform - pos: 482.5,362.5 - parent: 1 - - uid: 17807 + pos: -31.5,-32.5 + parent: 2 + - uid: 343 components: - type: Transform - pos: 482.5,361.5 - parent: 1 - - uid: 17813 + pos: -40.5,-34.5 + parent: 2 + - uid: 355 components: - type: Transform - pos: 483.5,365.5 - parent: 1 - - uid: 17814 + pos: -31.5,5.5 + parent: 2 + - uid: 404 components: - type: Transform - pos: 483.5,364.5 - parent: 1 - - uid: 17815 + pos: -86.5,7.5 + parent: 2 + - uid: 417 components: - type: Transform - pos: 483.5,363.5 - parent: 1 - - uid: 17816 + pos: -91.5,6.5 + parent: 2 + - uid: 418 components: - type: Transform - pos: 483.5,362.5 - parent: 1 - - uid: 17817 + pos: -91.5,10.5 + parent: 2 + - uid: 429 components: - type: Transform - pos: 483.5,361.5 - parent: 1 - - uid: 17820 + pos: -97.5,12.5 + parent: 2 + - uid: 448 components: - type: Transform - pos: 484.5,369.5 - parent: 1 - - uid: 17821 + pos: -100.5,19.5 + parent: 2 + - uid: 451 components: - type: Transform - pos: 484.5,368.5 - parent: 1 - - uid: 17822 + pos: -99.5,19.5 + parent: 2 + - uid: 496 components: - type: Transform - pos: 484.5,367.5 - parent: 1 - - uid: 17823 + pos: -100.5,17.5 + parent: 2 + - uid: 588 components: - type: Transform - pos: 484.5,366.5 - parent: 1 - - uid: 17824 + pos: -92.5,3.5 + parent: 2 + - uid: 740 components: - type: Transform - pos: 484.5,365.5 - parent: 1 - - uid: 17825 + pos: -79.5,-10.5 + parent: 2 + - uid: 781 components: - type: Transform - pos: 484.5,364.5 - parent: 1 - - uid: 17826 + pos: -95.5,3.5 + parent: 2 + - uid: 799 components: - type: Transform - pos: 484.5,363.5 - parent: 1 - - uid: 17827 + rot: 3.141592653589793 rad + pos: -133.5,-55.5 + parent: 2 + - uid: 908 components: - type: Transform - pos: 484.5,362.5 - parent: 1 - - uid: 17828 + pos: -116.5,-19.5 + parent: 2 + - uid: 951 components: - type: Transform - pos: 484.5,361.5 - parent: 1 - - uid: 17829 + pos: -66.5,-23.5 + parent: 2 + - uid: 958 components: - type: Transform - pos: 482.5,364.5 - parent: 1 - - uid: 17830 + pos: -68.5,-23.5 + parent: 2 + - uid: 966 components: - type: Transform - pos: 482.5,365.5 - parent: 1 - - uid: 17831 + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 1016 components: - type: Transform - pos: 480.5,368.5 - parent: 1 - - uid: 17832 + pos: -56.5,-20.5 + parent: 2 + - uid: 1022 components: - type: Transform - pos: 482.5,363.5 - parent: 1 - - uid: 17834 + pos: -45.5,-17.5 + parent: 2 + - uid: 1023 components: - type: Transform - pos: 478.5,360.5 - parent: 1 - - uid: 17835 + pos: -50.5,-17.5 + parent: 2 + - uid: 1033 components: - type: Transform - pos: 480.5,360.5 - parent: 1 - - uid: 17836 + pos: -44.5,-19.5 + parent: 2 + - uid: 1042 components: - type: Transform - pos: 481.5,360.5 - parent: 1 - - uid: 17837 + pos: -51.5,-26.5 + parent: 2 + - uid: 1044 components: - type: Transform - pos: 479.5,360.5 - parent: 1 - - uid: 17838 + pos: -47.5,-25.5 + parent: 2 + - uid: 1048 components: - type: Transform - pos: 480.5,359.5 - parent: 1 - - uid: 17839 + pos: -44.5,-24.5 + parent: 2 + - uid: 1053 components: - type: Transform - pos: 481.5,359.5 - parent: 1 - - uid: 17840 + pos: -44.5,-28.5 + parent: 2 + - uid: 1055 components: - type: Transform - pos: 483.5,360.5 - parent: 1 - - uid: 17841 + pos: -44.5,-30.5 + parent: 2 + - uid: 1062 components: - type: Transform - pos: 475.5,364.5 - parent: 1 - - uid: 17842 + pos: -47.5,-30.5 + parent: 2 + - uid: 1064 components: - type: Transform - pos: 475.5,365.5 - parent: 1 - - uid: 17843 + pos: -51.5,-28.5 + parent: 2 + - uid: 1065 components: - type: Transform - pos: 475.5,366.5 - parent: 1 - - uid: 17844 + pos: -56.5,-28.5 + parent: 2 + - uid: 1066 components: - type: Transform - pos: 475.5,367.5 - parent: 1 - - uid: 17846 + pos: -111.5,34.5 + parent: 2 + - uid: 1072 components: - type: Transform - pos: 475.5,369.5 - parent: 1 - - uid: 17847 + pos: -52.5,-34.5 + parent: 2 + - uid: 1094 components: - type: Transform - pos: 475.5,370.5 - parent: 1 - - uid: 17848 + pos: -71.5,-17.5 + parent: 2 + - uid: 1107 components: - type: Transform - pos: 475.5,371.5 - parent: 1 - - uid: 17849 + pos: -110.5,-19.5 + parent: 2 + - uid: 1135 components: - type: Transform - pos: 475.5,372.5 - parent: 1 - - uid: 17850 + pos: -44.5,-15.5 + parent: 2 + - uid: 1140 components: - type: Transform - pos: 473.5,366.5 - parent: 1 - - uid: 17851 + pos: -117.5,-24.5 + parent: 2 + - uid: 1178 components: - type: Transform - pos: 474.5,366.5 - parent: 1 - - uid: 17852 + pos: -69.5,-53.5 + parent: 2 + - uid: 1190 components: - type: Transform - pos: 474.5,367.5 - parent: 1 - - uid: 17853 + pos: -93.5,3.5 + parent: 2 + - uid: 1204 components: - type: Transform - pos: 474.5,368.5 - parent: 1 - - uid: 17856 + pos: -62.5,-36.5 + parent: 2 + - uid: 1231 components: - type: Transform - pos: 474.5,372.5 - parent: 1 - - uid: 17857 + pos: -58.5,-36.5 + parent: 2 + - uid: 1241 components: - type: Transform - pos: 473.5,372.5 - parent: 1 - - uid: 17858 + pos: -31.5,-16.5 + parent: 2 + - uid: 1242 components: - type: Transform - pos: 474.5,371.5 - parent: 1 - - uid: 17859 + pos: -27.5,-16.5 + parent: 2 + - uid: 1358 components: - type: Transform - pos: 472.5,374.5 - parent: 1 - - uid: 17860 + pos: -38.5,-50.5 + parent: 2 + - uid: 1361 components: - type: Transform - pos: 472.5,373.5 - parent: 1 - - uid: 17861 + pos: -38.5,-48.5 + parent: 2 + - uid: 1408 components: - type: Transform - pos: 471.5,375.5 - parent: 1 - - uid: 17862 + pos: -47.5,-42.5 + parent: 2 + - uid: 1427 components: - type: Transform - pos: 473.5,375.5 - parent: 1 - - uid: 17863 + pos: -43.5,-50.5 + parent: 2 + - uid: 1434 components: - type: Transform - pos: 473.5,374.5 - parent: 1 - - uid: 17865 + pos: -47.5,-54.5 + parent: 2 + - uid: 1436 components: - type: Transform - pos: 473.5,380.5 - parent: 1 - - uid: 17866 + pos: -52.5,-49.5 + parent: 2 + - uid: 1438 components: - type: Transform - pos: 474.5,381.5 - parent: 1 - - uid: 17867 + pos: -47.5,-50.5 + parent: 2 + - uid: 1444 components: - type: Transform - pos: 474.5,382.5 - parent: 1 - - uid: 17869 + pos: -45.5,-53.5 + parent: 2 + - uid: 1445 components: - type: Transform - pos: 475.5,383.5 - parent: 1 - - uid: 17870 + pos: -54.5,-42.5 + parent: 2 + - uid: 1454 components: - type: Transform - pos: 476.5,383.5 - parent: 1 - - uid: 17871 + pos: -43.5,-55.5 + parent: 2 + - uid: 1459 components: - type: Transform - pos: 478.5,383.5 - parent: 1 - - uid: 17872 + pos: -46.5,-57.5 + parent: 2 + - uid: 1465 components: - type: Transform - pos: 477.5,383.5 - parent: 1 - - uid: 17873 + pos: -51.5,-57.5 + parent: 2 + - uid: 1476 components: - type: Transform - pos: 479.5,383.5 - parent: 1 - - uid: 17876 + pos: -55.5,-43.5 + parent: 2 + - uid: 1478 components: - type: Transform - pos: 483.5,383.5 - parent: 1 - - uid: 17877 + pos: -55.5,-48.5 + parent: 2 + - uid: 1480 components: - type: Transform - pos: 482.5,383.5 - parent: 1 - - uid: 17878 + pos: -57.5,-51.5 + parent: 2 + - uid: 1491 components: - type: Transform - pos: 484.5,383.5 - parent: 1 - - uid: 17879 + pos: -71.5,-54.5 + parent: 2 + - uid: 1516 components: - type: Transform - pos: 485.5,383.5 - parent: 1 - - uid: 17880 + pos: -72.5,-54.5 + parent: 2 + - uid: 1528 components: - type: Transform - pos: 486.5,383.5 - parent: 1 - - uid: 17881 + pos: -72.5,-52.5 + parent: 2 + - uid: 1541 components: - type: Transform - pos: 483.5,382.5 - parent: 1 - - uid: 17882 + pos: -22.5,-17.5 + parent: 2 + - uid: 1595 components: - type: Transform - pos: 485.5,382.5 - parent: 1 - - uid: 17883 + pos: -101.5,-43.5 + parent: 2 + - uid: 1627 components: - type: Transform - pos: 486.5,382.5 - parent: 1 - - uid: 17884 + pos: -26.5,-10.5 + parent: 2 + - uid: 1630 components: - type: Transform - pos: 484.5,382.5 - parent: 1 - - uid: 17885 + pos: -24.5,-11.5 + parent: 2 + - uid: 1634 components: - type: Transform - pos: 484.5,381.5 - parent: 1 - - uid: 17888 + pos: -27.5,-4.5 + parent: 2 + - uid: 1638 components: - type: Transform - pos: 485.5,380.5 - parent: 1 - - uid: 17889 + pos: -129.5,-53.5 + parent: 2 + - uid: 1640 components: - type: Transform - pos: 485.5,378.5 - parent: 1 - - uid: 17890 + pos: -25.5,0.5 + parent: 2 + - uid: 1643 components: - type: Transform - pos: 485.5,377.5 - parent: 1 - - uid: 17891 + pos: -21.5,0.5 + parent: 2 + - uid: 1654 components: - type: Transform - pos: 485.5,376.5 - parent: 1 - - uid: 17892 + pos: -21.5,-10.5 + parent: 2 + - uid: 1664 components: - type: Transform - pos: 485.5,375.5 - parent: 1 - - uid: 17893 + pos: -20.5,-7.5 + parent: 2 + - uid: 1671 components: - type: Transform - pos: 485.5,374.5 - parent: 1 - - uid: 17894 + pos: -16.5,-11.5 + parent: 2 + - uid: 1684 components: - type: Transform - pos: 485.5,373.5 - parent: 1 - - uid: 17895 + pos: -19.5,-10.5 + parent: 2 + - uid: 1767 components: - type: Transform - pos: 485.5,372.5 - parent: 1 - - uid: 17897 + pos: -13.5,-18.5 + parent: 2 + - uid: 1770 components: - type: Transform - pos: 485.5,370.5 - parent: 1 - - uid: 17899 + pos: -13.5,-15.5 + parent: 2 + - uid: 1778 components: - type: Transform - pos: 485.5,368.5 - parent: 1 - - uid: 17900 + pos: -76.5,-15.5 + parent: 2 + - uid: 2168 components: - type: Transform - pos: 485.5,367.5 - parent: 1 - - uid: 17901 + pos: -118.5,-42.5 + parent: 2 + - uid: 2169 components: - type: Transform - pos: 485.5,366.5 - parent: 1 - - uid: 17902 + pos: -112.5,-42.5 + parent: 2 + - uid: 2171 components: - type: Transform - pos: 485.5,365.5 - parent: 1 - - uid: 17904 + pos: -116.5,-42.5 + parent: 2 + - uid: 2174 components: - type: Transform - pos: 486.5,378.5 - parent: 1 - - uid: 17905 + pos: -117.5,-42.5 + parent: 2 + - uid: 2175 components: - type: Transform - pos: 486.5,377.5 - parent: 1 - - uid: 17906 + pos: -117.5,-41.5 + parent: 2 + - uid: 2178 components: - type: Transform - pos: 485.5,379.5 - parent: 1 - - uid: 17907 + pos: -117.5,-37.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -122.5,-42.5 + parent: 2 + - uid: 2193 components: - type: Transform - pos: 486.5,376.5 - parent: 1 - - uid: 17909 + pos: -123.5,-42.5 + parent: 2 + - uid: 2209 components: - type: Transform - pos: 486.5,374.5 - parent: 1 - - uid: 17910 + pos: -123.5,-37.5 + parent: 2 + - uid: 2210 components: - type: Transform - pos: 486.5,373.5 - parent: 1 - - uid: 17911 + pos: -123.5,-38.5 + parent: 2 + - uid: 2212 components: - type: Transform - pos: 486.5,371.5 - parent: 1 - - uid: 17912 + pos: -123.5,-41.5 + parent: 2 + - uid: 2217 components: - type: Transform - pos: 486.5,372.5 - parent: 1 - - uid: 17913 + pos: -116.5,-48.5 + parent: 2 + - uid: 2218 components: - type: Transform - pos: 486.5,370.5 - parent: 1 - - uid: 17914 + pos: -117.5,-48.5 + parent: 2 + - uid: 2219 components: - type: Transform - pos: 486.5,369.5 - parent: 1 - - uid: 17915 + pos: -112.5,-48.5 + parent: 2 + - uid: 2220 components: - type: Transform - pos: 486.5,367.5 - parent: 1 - - uid: 17916 + pos: -118.5,-48.5 + parent: 2 + - uid: 2224 components: - type: Transform - pos: 486.5,368.5 - parent: 1 - - uid: 17917 + pos: -122.5,-48.5 + parent: 2 + - uid: 2225 components: - type: Transform - pos: 486.5,366.5 - parent: 1 - - uid: 17918 + pos: -123.5,-48.5 + parent: 2 + - uid: 2232 components: - type: Transform - pos: 486.5,365.5 - parent: 1 - - uid: 17920 + pos: -117.5,-53.5 + parent: 2 + - uid: 2233 components: - type: Transform - pos: 485.5,363.5 - parent: 1 - - uid: 17921 + pos: -124.5,-49.5 + parent: 2 + - uid: 2237 components: - type: Transform - pos: 488.5,366.5 - parent: 1 - - uid: 17922 + pos: -117.5,-49.5 + parent: 2 + - uid: 2247 components: - type: Transform - pos: 483.5,372.5 - parent: 1 - - uid: 17924 + pos: -123.5,-53.5 + parent: 2 + - uid: 2250 components: - type: Transform - pos: 484.5,373.5 - parent: 1 - - uid: 17925 + pos: -123.5,-49.5 + parent: 2 + - uid: 2252 components: - type: Transform - pos: 496.5,375.5 - parent: 1 - - uid: 17926 + pos: -127.5,-49.5 + parent: 2 + - uid: 2254 components: - type: Transform - pos: 478.5,384.5 - parent: 1 - - uid: 17928 + pos: -128.5,-49.5 + parent: 2 + - uid: 2256 components: - type: Transform - pos: 479.5,384.5 - parent: 1 - - uid: 17931 + pos: -126.5,-49.5 + parent: 2 + - uid: 2263 components: - type: Transform - pos: 483.5,384.5 - parent: 1 - - uid: 17934 + pos: -130.5,-49.5 + parent: 2 + - uid: 2265 components: - type: Transform - pos: 486.5,384.5 - parent: 1 - - uid: 17936 + pos: -124.5,-41.5 + parent: 2 + - uid: 2266 components: - type: Transform - pos: 484.5,385.5 - parent: 1 - - uid: 17939 + pos: -125.5,-41.5 + parent: 2 + - uid: 2267 components: - type: Transform - pos: 486.5,385.5 - parent: 1 - - uid: 17940 + pos: -126.5,-41.5 + parent: 2 + - uid: 2269 components: - type: Transform - pos: 485.5,386.5 - parent: 1 - - uid: 17941 + pos: -128.5,-41.5 + parent: 2 + - uid: 2270 components: - type: Transform - pos: 485.5,388.5 - parent: 1 - - uid: 17942 + pos: -130.5,-41.5 + parent: 2 + - uid: 2271 components: - type: Transform - pos: 485.5,389.5 - parent: 1 - - uid: 17943 + pos: -129.5,-41.5 + parent: 2 + - uid: 2428 components: - type: Transform - pos: 485.5,390.5 - parent: 1 - - uid: 17944 + pos: -123.5,-52.5 + parent: 2 + - uid: 2482 components: - type: Transform - pos: 485.5,391.5 - parent: 1 - - uid: 17945 + pos: -127.5,-54.5 + parent: 2 + - uid: 2484 components: - type: Transform - pos: 485.5,392.5 - parent: 1 - - uid: 17946 + pos: -127.5,-53.5 + parent: 2 + - uid: 2485 components: - type: Transform - pos: 485.5,387.5 - parent: 1 - - uid: 17947 + pos: -127.5,-52.5 + parent: 2 + - uid: 2548 components: - type: Transform - pos: 485.5,393.5 - parent: 1 - - uid: 17948 + pos: -102.5,-36.5 + parent: 2 + - uid: 2554 components: - type: Transform - pos: 486.5,387.5 - parent: 1 - - uid: 17949 + pos: -129.5,-54.5 + parent: 2 + - uid: 2558 components: - type: Transform - pos: 486.5,386.5 - parent: 1 - - uid: 17950 + pos: -127.5,-51.5 + parent: 2 + - uid: 2677 components: - type: Transform - pos: 486.5,388.5 - parent: 1 - - uid: 17951 + pos: -127.5,-50.5 + parent: 2 + - uid: 3321 components: - type: Transform - pos: 486.5,389.5 - parent: 1 - - uid: 17953 + pos: -59.5,-21.5 + parent: 2 + - uid: 3360 components: - type: Transform - pos: 486.5,393.5 - parent: 1 - - uid: 17954 + pos: -52.5,-39.5 + parent: 2 + - uid: 3361 components: - type: Transform - pos: 486.5,391.5 - parent: 1 - - uid: 17955 + pos: -56.5,-39.5 + parent: 2 + - uid: 3450 components: - type: Transform - pos: 486.5,392.5 - parent: 1 - - uid: 17956 + pos: -50.5,-31.5 + parent: 2 + - uid: 3591 components: - type: Transform - pos: 486.5,394.5 - parent: 1 - - uid: 17957 + pos: -105.5,-0.5 + parent: 2 + - uid: 3615 components: - type: Transform - pos: 484.5,389.5 - parent: 1 - - uid: 17958 + pos: -72.5,-51.5 + parent: 2 + - uid: 3616 components: - type: Transform - pos: 488.5,396.5 - parent: 1 - - uid: 17959 + pos: -71.5,-51.5 + parent: 2 + - uid: 3620 components: - type: Transform - pos: 489.5,396.5 - parent: 1 - - uid: 17961 + pos: -59.5,-58.5 + parent: 2 + - uid: 3627 components: - type: Transform - pos: 508.5,392.5 - parent: 1 -- proto: WallRockArtifactFragment - entities: - - uid: 17447 + pos: -66.5,-50.5 + parent: 2 + - uid: 3677 components: - type: Transform - pos: 491.5,382.5 - parent: 1 - - uid: 17510 + pos: -59.5,-60.5 + parent: 2 + - uid: 3684 components: - type: Transform - pos: 492.5,385.5 - parent: 1 - - uid: 17553 + pos: -56.5,-52.5 + parent: 2 + - uid: 3695 components: - type: Transform - pos: 494.5,383.5 - parent: 1 - - uid: 17643 + pos: -59.5,-52.5 + parent: 2 + - uid: 3733 components: - type: Transform - pos: 490.5,379.5 - parent: 1 - - uid: 17660 + pos: -60.5,-63.5 + parent: 2 + - uid: 3739 components: - type: Transform - pos: 489.5,383.5 - parent: 1 - - uid: 17686 + pos: -67.5,-61.5 + parent: 2 + - uid: 3742 components: - type: Transform - pos: 488.5,384.5 - parent: 1 - - uid: 17688 + pos: -71.5,-61.5 + parent: 2 + - uid: 3763 components: - type: Transform - pos: 488.5,383.5 - parent: 1 - - uid: 17887 + pos: -59.5,-62.5 + parent: 2 + - uid: 3766 components: - type: Transform - pos: 485.5,381.5 - parent: 1 -- proto: WallRockCoal - entities: - - uid: 17455 + pos: -62.5,-60.5 + parent: 2 + - uid: 3769 components: - type: Transform - pos: 491.5,373.5 - parent: 1 - - uid: 17498 + pos: -62.5,-64.5 + parent: 2 + - uid: 3798 components: - type: Transform - pos: 492.5,372.5 - parent: 1 - - uid: 17499 + pos: -53.5,-55.5 + parent: 2 + - uid: 3872 components: - type: Transform - pos: 492.5,373.5 - parent: 1 - - uid: 17539 + rot: 3.141592653589793 rad + pos: -17.5,-7.5 + parent: 2 + - uid: 4067 components: - type: Transform - pos: 493.5,374.5 - parent: 1 - - uid: 17540 + pos: -21.5,-32.5 + parent: 2 + - uid: 4125 components: - type: Transform - pos: 493.5,373.5 - parent: 1 - - uid: 17541 + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 4276 components: - type: Transform - pos: 493.5,372.5 - parent: 1 - - uid: 17562 + pos: -61.5,-68.5 + parent: 2 + - uid: 4557 components: - type: Transform - pos: 494.5,375.5 - parent: 1 - - uid: 17563 + rot: 1.5707963267948966 rad + pos: -71.5,-31.5 + parent: 2 + - uid: 4704 components: - type: Transform - pos: 494.5,374.5 - parent: 1 - - uid: 17576 + pos: -88.5,32.5 + parent: 2 + - uid: 4714 components: - type: Transform - pos: 495.5,381.5 - parent: 1 - - uid: 17698 + pos: -86.5,32.5 + parent: 2 + - uid: 4852 components: - type: Transform - pos: 488.5,372.5 - parent: 1 - - uid: 17724 + pos: -131.5,-41.5 + parent: 2 + - uid: 5112 components: - type: Transform - pos: 487.5,375.5 - parent: 1 - - uid: 17726 + pos: -61.5,-73.5 + parent: 2 + - uid: 5118 components: - type: Transform - pos: 487.5,374.5 - parent: 1 - - uid: 17908 + rot: 1.5707963267948966 rad + pos: -131.5,-33.5 + parent: 2 + - uid: 5618 components: - type: Transform - pos: 486.5,375.5 - parent: 1 -- proto: WallRockDiamond - entities: - - uid: 17342 + pos: -10.5,0.5 + parent: 2 + - uid: 5761 components: - type: Transform - pos: 508.5,395.5 - parent: 1 - - uid: 17382 + pos: -41.5,-34.5 + parent: 2 + - uid: 6111 components: - type: Transform - pos: 499.5,398.5 - parent: 1 - - uid: 17611 + pos: -31.5,-66.5 + parent: 2 + - uid: 6135 components: - type: Transform - pos: 499.5,389.5 - parent: 1 - - uid: 17648 + pos: -112.5,-20.5 + parent: 2 + - uid: 6162 components: - type: Transform - pos: 489.5,395.5 - parent: 1 - - uid: 17952 + pos: -110.5,-22.5 + parent: 2 + - uid: 6832 components: - type: Transform - pos: 486.5,390.5 - parent: 1 -- proto: WallRockGold - entities: - - uid: 4833 + pos: -98.5,-48.5 + parent: 2 + - uid: 7117 components: - type: Transform - pos: 500.5,387.5 - parent: 1 - - uid: 5664 + pos: -73.5,-54.5 + parent: 2 + - uid: 7512 components: - type: Transform - pos: 501.5,388.5 - parent: 1 -- proto: WallRockPlasma - entities: - - uid: 17335 + pos: -62.5,-21.5 + parent: 2 + - uid: 7531 components: - type: Transform - pos: 507.5,392.5 - parent: 1 - - uid: 17385 + rot: 1.5707963267948966 rad + pos: -133.5,-34.5 + parent: 2 + - uid: 7532 components: - type: Transform - pos: 498.5,397.5 - parent: 1 - - uid: 17396 + pos: -128.5,-55.5 + parent: 2 + - uid: 7811 components: - type: Transform - pos: 496.5,398.5 - parent: 1 - - uid: 17413 + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 7860 components: - type: Transform - pos: 496.5,399.5 - parent: 1 - - uid: 17414 + pos: -129.5,-52.5 + parent: 2 + - uid: 7946 components: - type: Transform - pos: 497.5,399.5 - parent: 1 - - uid: 17420 + pos: -9.5,-13.5 + parent: 2 + - uid: 8184 components: - type: Transform - pos: 503.5,399.5 - parent: 1 - - uid: 17428 + pos: -5.5,-13.5 + parent: 2 + - uid: 8220 components: - type: Transform - pos: 502.5,400.5 - parent: 1 - - uid: 17464 + pos: -7.5,-20.5 + parent: 2 + - uid: 8255 components: - type: Transform - pos: 490.5,396.5 - parent: 1 - - uid: 17585 + pos: -6.5,-17.5 + parent: 2 + - uid: 8466 components: - type: Transform - pos: 495.5,390.5 - parent: 1 - - uid: 17591 + pos: -17.5,4.5 + parent: 2 + - uid: 8467 components: - type: Transform - pos: 496.5,391.5 - parent: 1 - - uid: 17592 + pos: -21.5,-23.5 + parent: 2 + - uid: 8471 components: - type: Transform - pos: 496.5,390.5 - parent: 1 - - uid: 17596 + pos: -21.5,-26.5 + parent: 2 + - uid: 8474 components: - type: Transform - pos: 497.5,392.5 - parent: 1 - - uid: 17620 + pos: -17.5,8.5 + parent: 2 + - uid: 8548 components: - type: Transform - pos: 496.5,387.5 - parent: 1 - - uid: 17629 + rot: -1.5707963267948966 rad + pos: -92.5,31.5 + parent: 2 + - uid: 8699 components: - type: Transform - pos: 496.5,386.5 - parent: 1 - - uid: 17630 + pos: -27.5,-39.5 + parent: 2 + - uid: 8700 components: - type: Transform - pos: 497.5,387.5 - parent: 1 - - uid: 17634 + pos: -8.5,-34.5 + parent: 2 + - uid: 8724 components: - type: Transform - pos: 497.5,383.5 - parent: 1 - - uid: 17676 + pos: -12.5,-34.5 + parent: 2 + - uid: 8779 components: - type: Transform - pos: 488.5,395.5 - parent: 1 - - uid: 17677 + pos: -13.5,-29.5 + parent: 2 + - uid: 8782 components: - type: Transform - pos: 488.5,394.5 - parent: 1 -- proto: WallRockQuartz - entities: - - uid: 4340 + pos: -13.5,-32.5 + parent: 2 + - uid: 8798 components: - type: Transform - pos: 498.5,386.5 - parent: 1 - - uid: 4342 + pos: -20.5,-42.5 + parent: 2 + - uid: 8799 components: - type: Transform - pos: 498.5,384.5 - parent: 1 -- proto: WallRockSalt - entities: - - uid: 17772 + pos: -12.5,-35.5 + parent: 2 + - uid: 8801 components: - type: Transform - pos: 479.5,365.5 - parent: 1 - - uid: 17781 + pos: -27.5,-26.5 + parent: 2 + - uid: 8802 components: - type: Transform - pos: 480.5,367.5 - parent: 1 - - uid: 17792 + pos: -27.5,-27.5 + parent: 2 + - uid: 8808 components: - type: Transform - pos: 481.5,367.5 - parent: 1 - - uid: 17803 + pos: -24.5,-27.5 + parent: 2 + - uid: 8810 components: - type: Transform - pos: 482.5,367.5 - parent: 1 - - uid: 17804 + pos: -27.5,-23.5 + parent: 2 + - uid: 8811 components: - type: Transform - pos: 482.5,366.5 - parent: 1 - - uid: 17812 + pos: -13.5,-42.5 + parent: 2 + - uid: 8826 components: - type: Transform - pos: 483.5,366.5 - parent: 1 -- proto: WallRockSilver - entities: - - uid: 17682 + pos: -27.5,-34.5 + parent: 2 + - uid: 8833 components: - type: Transform - pos: 488.5,389.5 - parent: 1 - - uid: 17735 + pos: -24.5,-33.5 + parent: 2 + - uid: 8834 components: - type: Transform - pos: 476.5,371.5 - parent: 1 - - uid: 17736 + pos: -23.5,-33.5 + parent: 2 + - uid: 8836 components: - type: Transform - pos: 476.5,370.5 - parent: 1 - - uid: 17739 + pos: -21.5,-27.5 + parent: 2 + - uid: 8851 components: - type: Transform - pos: 476.5,367.5 - parent: 1 - - uid: 17745 + pos: -31.5,-52.5 + parent: 2 + - uid: 8859 components: - type: Transform - pos: 477.5,371.5 - parent: 1 - - uid: 17773 + pos: -37.5,-55.5 + parent: 2 + - uid: 8862 components: - type: Transform - pos: 479.5,364.5 - parent: 1 - - uid: 17774 + pos: -37.5,-52.5 + parent: 2 + - uid: 8953 components: - type: Transform - pos: 479.5,363.5 - parent: 1 - - uid: 17784 + pos: -40.5,-62.5 + parent: 2 + - uid: 8970 components: - type: Transform - pos: 480.5,364.5 - parent: 1 - - uid: 17845 + pos: -36.5,-61.5 + parent: 2 + - uid: 9061 components: - type: Transform - pos: 475.5,368.5 - parent: 1 - - uid: 17854 + pos: -46.5,-68.5 + parent: 2 + - uid: 9062 components: - type: Transform - pos: 473.5,373.5 - parent: 1 - - uid: 17855 + pos: -25.5,-33.5 + parent: 2 + - uid: 9065 components: - type: Transform - pos: 474.5,373.5 - parent: 1 - - uid: 17864 + pos: -26.5,-61.5 + parent: 2 + - uid: 9093 components: - type: Transform - pos: 473.5,379.5 - parent: 1 - - uid: 17868 + pos: -53.5,-59.5 + parent: 2 + - uid: 9097 components: - type: Transform - pos: 475.5,382.5 - parent: 1 - - uid: 17932 + pos: -53.5,-61.5 + parent: 2 + - uid: 9103 components: - type: Transform - pos: 485.5,384.5 - parent: 1 - - uid: 17933 + pos: -45.5,-62.5 + parent: 2 + - uid: 9104 components: - type: Transform - pos: 484.5,384.5 - parent: 1 - - uid: 17937 + pos: -49.5,-62.5 + parent: 2 + - uid: 9110 components: - type: Transform - pos: 485.5,385.5 - parent: 1 -- proto: WallRockUranium - entities: - - uid: 17369 + pos: -43.5,-59.5 + parent: 2 + - uid: 9207 components: - type: Transform - pos: 489.5,379.5 - parent: 1 - - uid: 17460 + pos: -45.5,-65.5 + parent: 2 + - uid: 9209 components: - type: Transform - pos: 491.5,368.5 - parent: 1 - - uid: 17462 + pos: -23.5,-41.5 + parent: 2 + - uid: 9217 components: - type: Transform - pos: 491.5,369.5 - parent: 1 - - uid: 17672 + pos: -24.5,-41.5 + parent: 2 + - uid: 9245 components: - type: Transform - pos: 489.5,370.5 - parent: 1 - - uid: 17673 + pos: -94.5,46.5 + parent: 2 + - uid: 9258 components: - type: Transform - pos: 489.5,369.5 - parent: 1 - - uid: 17674 + pos: -19.5,15.5 + parent: 2 + - uid: 9326 components: - type: Transform - pos: 489.5,368.5 - parent: 1 - - uid: 17702 + pos: -26.5,-41.5 + parent: 2 + - uid: 9516 components: - type: Transform - pos: 488.5,368.5 - parent: 1 - - uid: 17708 + pos: -113.5,-28.5 + parent: 2 + - uid: 9667 components: - type: Transform - pos: 488.5,367.5 - parent: 1 - - uid: 17727 + pos: -113.5,26.5 + parent: 2 + - uid: 9668 components: - type: Transform - pos: 487.5,372.5 - parent: 1 - - uid: 17728 + pos: -115.5,26.5 + parent: 2 + - uid: 9684 components: - type: Transform - pos: 487.5,371.5 - parent: 1 - - uid: 17733 + pos: -117.5,27.5 + parent: 2 + - uid: 9697 components: - type: Transform - pos: 487.5,367.5 - parent: 1 - - uid: 17898 + pos: -117.5,31.5 + parent: 2 + - uid: 9717 components: - type: Transform - pos: 485.5,369.5 - parent: 1 -- proto: WallShuttle - entities: - - uid: 16204 + pos: -117.5,20.5 + parent: 2 + - uid: 9718 components: - type: Transform - pos: -1.5,5.5 - parent: 16114 - - uid: 16205 + pos: -116.5,23.5 + parent: 2 + - uid: 9733 components: - type: Transform - pos: 2.5,0.5 - parent: 16114 - - uid: 16206 + pos: -47.5,-48.5 + parent: 2 + - uid: 9736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 16114 - - uid: 16207 + pos: -120.5,28.5 + parent: 2 + - uid: 9765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 16114 - - uid: 16208 + pos: -47.5,-49.5 + parent: 2 + - uid: 10011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 16114 - - uid: 16209 + pos: -19.5,-0.5 + parent: 2 + - uid: 10077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 16114 - - uid: 16210 + pos: -27.5,-69.5 + parent: 2 + - uid: 11045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 16114 - - uid: 16211 + pos: -20.5,-45.5 + parent: 2 + - uid: 11078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 16114 - - uid: 16212 + pos: -23.5,-64.5 + parent: 2 + - uid: 11134 components: - type: Transform - pos: -2.5,0.5 - parent: 16114 - - uid: 16213 + pos: -107.5,-25.5 + parent: 2 + - uid: 11162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 16114 - - uid: 16214 + pos: -108.5,-32.5 + parent: 2 + - uid: 11184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 16114 - - uid: 16215 + pos: -56.5,-58.5 + parent: 2 + - uid: 12153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 16114 - - uid: 20769 + pos: -69.5,-62.5 + parent: 2 + - uid: 12154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 20527 - - uid: 20770 + pos: -66.5,-63.5 + parent: 2 + - uid: 12572 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 20527 - - uid: 20771 + pos: -13.5,-0.5 + parent: 2 + - uid: 12709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 20527 - - uid: 20772 + pos: -65.5,-58.5 + parent: 2 + - uid: 12859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 20527 - - uid: 20773 + pos: -40.5,-54.5 + parent: 2 + - uid: 12863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 20527 - - uid: 20774 + pos: -40.5,-57.5 + parent: 2 + - uid: 12867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 20527 - - uid: 20775 + pos: -36.5,-56.5 + parent: 2 + - uid: 12868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 20527 - - uid: 20776 + pos: -37.5,-58.5 + parent: 2 + - uid: 12875 components: - type: Transform - pos: -0.5,7.5 - parent: 20527 - - uid: 20777 + pos: -31.5,-56.5 + parent: 2 + - uid: 13230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 20527 - - uid: 20778 + rot: -1.5707963267948966 rad + pos: -113.5,23.5 + parent: 2 + - uid: 13232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 20527 - - uid: 20779 + rot: -1.5707963267948966 rad + pos: -106.5,26.5 + parent: 2 + - uid: 13233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 20527 - - uid: 20780 + rot: -1.5707963267948966 rad + pos: -114.5,20.5 + parent: 2 + - uid: 13234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 20527 - - uid: 20781 + rot: -1.5707963267948966 rad + pos: -110.5,26.5 + parent: 2 + - uid: 13235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 20527 - - uid: 20782 + rot: -1.5707963267948966 rad + pos: -111.5,30.5 + parent: 2 + - uid: 13236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,4.5 - parent: 20527 - - uid: 20783 + rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 2 + - uid: 13515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,3.5 - parent: 20527 - - uid: 20784 + pos: -68.5,-59.5 + parent: 2 + - uid: 13540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 - parent: 20527 - - uid: 20785 + pos: -108.5,-30.5 + parent: 2 + - uid: 13619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 20527 - - uid: 20786 + pos: -61.5,-59.5 + parent: 2 + - uid: 13621 components: - type: Transform - pos: 3.5,9.5 - parent: 20527 - - uid: 20787 + pos: -62.5,-62.5 + parent: 2 + - uid: 13626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 - parent: 20527 - - uid: 20788 + rot: 1.5707963267948966 rad + pos: -133.5,-33.5 + parent: 2 + - uid: 14065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 20527 - - uid: 20789 + rot: 1.5707963267948966 rad + pos: -132.5,-33.5 + parent: 2 + - uid: 14586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 20527 - - uid: 20790 + pos: -31.5,-65.5 + parent: 2 + - uid: 14755 components: - type: Transform - pos: 3.5,8.5 - parent: 20527 - - uid: 20791 + pos: -101.5,-0.5 + parent: 2 + - uid: 14801 components: - type: Transform - pos: -0.5,8.5 - parent: 20527 - - uid: 20792 + pos: -55.5,-55.5 + parent: 2 + - uid: 15006 components: - type: Transform - pos: 3.5,7.5 - parent: 20527 -- proto: WallShuttleDiagonal - entities: - - uid: 7523 + rot: 1.5707963267948966 rad + pos: -71.5,-35.5 + parent: 2 + - uid: 15213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 16114 - - uid: 16216 + pos: -130.5,-55.5 + parent: 2 + - uid: 15221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 16114 - - uid: 16217 + pos: -129.5,-55.5 + parent: 2 + - uid: 15227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 16114 - - uid: 16220 + pos: -73.5,-58.5 + parent: 2 + - uid: 15342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 16114 - - uid: 20793 + pos: -115.5,-34.5 + parent: 2 + - uid: 15343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,4.5 - parent: 20527 - - uid: 20794 + pos: -112.5,-34.5 + parent: 2 + - uid: 15884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 - parent: 20527 - - uid: 20795 + pos: -106.5,-36.5 + parent: 2 + - uid: 15975 components: - type: Transform - pos: 8.5,2.5 - parent: 20527 - - uid: 20796 + pos: -87.5,13.5 + parent: 2 + - uid: 16038 components: - type: Transform - pos: -0.5,9.5 - parent: 20527 - - uid: 20797 + pos: -57.5,-61.5 + parent: 2 + - uid: 16568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 20527 - - uid: 20798 + pos: -20.5,-28.5 + parent: 2 + - uid: 16703 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 20527 - - uid: 20799 + pos: -133.5,-35.5 + parent: 2 + - uid: 16704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 20527 -- proto: WallShuttleInterior - entities: - - uid: 16221 + rot: 3.141592653589793 rad + pos: -133.5,-56.5 + parent: 2 + - uid: 16842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,1.5 - parent: 16114 - - uid: 16222 + pos: -133.5,-58.5 + parent: 2 + - uid: 17096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 16114 - - uid: 20800 + pos: -37.5,-68.5 + parent: 2 + - uid: 17110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,0.5 - parent: 20527 - - uid: 20801 + pos: -40.5,-66.5 + parent: 2 + - uid: 17305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 20527 - - uid: 20802 + rot: -1.5707963267948966 rad + pos: -139.5,-53.5 + parent: 2 + - uid: 17371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 20527 - - uid: 20803 + rot: -1.5707963267948966 rad + pos: -131.5,-55.5 + parent: 2 + - uid: 17372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 20527 - - uid: 20804 + rot: -1.5707963267948966 rad + pos: -131.5,-54.5 + parent: 2 + - uid: 17541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 20527 -- proto: WallSolid - entities: - - uid: 473 + pos: -32.5,-68.5 + parent: 2 + - uid: 18365 components: - type: Transform - pos: 325.5,419.5 - parent: 1 - - uid: 492 + rot: 1.5707963267948966 rad + pos: -133.5,-36.5 + parent: 2 + - uid: 21714 components: - type: Transform - pos: 326.5,433.5 - parent: 1 - - uid: 493 + pos: -124.5,19.5 + parent: 2 + - uid: 21719 components: - type: Transform - pos: 326.5,419.5 - parent: 1 - - uid: 512 + pos: -123.5,23.5 + parent: 2 + - uid: 23185 components: - type: Transform - pos: 327.5,422.5 - parent: 1 - - uid: 515 + pos: -52.5,-72.5 + parent: 2 + - uid: 23337 components: - type: Transform - pos: 327.5,419.5 - parent: 1 - - uid: 526 + rot: 1.5707963267948966 rad + pos: -66.5,-36.5 + parent: 2 + - uid: 23341 components: - type: Transform - pos: 328.5,438.5 - parent: 1 - - uid: 536 + rot: 1.5707963267948966 rad + pos: -69.5,-28.5 + parent: 2 + - uid: 23364 components: - type: Transform - pos: 328.5,422.5 - parent: 1 - - uid: 537 + rot: 1.5707963267948966 rad + pos: -66.5,-27.5 + parent: 2 + - uid: 23506 components: - type: Transform - pos: 328.5,419.5 - parent: 1 - - uid: 542 + rot: -1.5707963267948966 rad + pos: -103.5,27.5 + parent: 2 + - uid: 23706 components: - type: Transform - pos: 328.5,410.5 - parent: 1 - - uid: 549 + rot: 1.5707963267948966 rad + pos: -72.5,-23.5 + parent: 2 + - uid: 23820 components: - type: Transform - pos: 329.5,438.5 - parent: 1 - - uid: 554 + pos: -50.5,-37.5 + parent: 2 + - uid: 24806 components: - type: Transform - pos: 329.5,415.5 - parent: 1 - - uid: 585 + pos: -87.5,-6.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 281 components: - type: Transform - pos: 330.5,409.5 - parent: 1 - - uid: 613 + rot: 3.141592653589793 rad + pos: -104.5,16.5 + parent: 2 + - uid: 376 components: - type: Transform - pos: 332.5,409.5 - parent: 1 - - uid: 614 + rot: 1.5707963267948966 rad + pos: -104.5,12.5 + parent: 2 + - uid: 412 components: - type: Transform - pos: 332.5,408.5 - parent: 1 - - uid: 615 + pos: -98.5,3.5 + parent: 2 + - uid: 520 components: - type: Transform - pos: 332.5,407.5 - parent: 1 - - uid: 617 + pos: -91.5,3.5 + parent: 2 + - uid: 589 components: - type: Transform - pos: 332.5,405.5 - parent: 1 - - uid: 620 + pos: -90.5,3.5 + parent: 2 + - uid: 720 components: - type: Transform - pos: 332.5,390.5 - parent: 1 - - uid: 631 + rot: 1.5707963267948966 rad + pos: -106.5,-21.5 + parent: 2 + - uid: 821 components: - type: Transform - pos: 333.5,409.5 - parent: 1 - - uid: 632 + pos: -71.5,-58.5 + parent: 2 + - uid: 1003 components: - type: Transform - pos: 333.5,405.5 - parent: 1 - - uid: 635 + pos: -96.5,3.5 + parent: 2 + - uid: 1070 components: - type: Transform - pos: 333.5,386.5 - parent: 1 - - uid: 657 + pos: -74.5,-20.5 + parent: 2 + - uid: 1089 components: - type: Transform - pos: 334.5,391.5 - parent: 1 - - uid: 661 + pos: -97.5,3.5 + parent: 2 + - uid: 1188 components: - type: Transform - pos: 334.5,386.5 - parent: 1 - - uid: 673 + pos: -39.5,-69.5 + parent: 2 + - uid: 1218 components: - type: Transform - pos: 335.5,391.5 - parent: 1 - - uid: 674 + pos: -94.5,3.5 + parent: 2 + - uid: 1709 components: - type: Transform - pos: 335.5,384.5 - parent: 1 - - uid: 682 + pos: -99.5,3.5 + parent: 2 + - uid: 1752 components: - type: Transform - pos: 336.5,419.5 - parent: 1 - - uid: 683 + pos: -107.5,-21.5 + parent: 2 + - uid: 1956 components: - type: Transform - pos: 336.5,418.5 - parent: 1 - - uid: 684 + pos: -89.5,0.5 + parent: 2 + - uid: 2131 components: - type: Transform - pos: 336.5,417.5 - parent: 1 - - uid: 687 + pos: -89.5,2.5 + parent: 2 + - uid: 2377 components: - type: Transform - pos: 336.5,409.5 - parent: 1 - - uid: 692 + pos: -89.5,1.5 + parent: 2 + - uid: 2541 components: - type: Transform - pos: 336.5,391.5 - parent: 1 - - uid: 695 + pos: -66.5,-34.5 + parent: 2 + - uid: 3729 components: - type: Transform - pos: 336.5,388.5 - parent: 1 - - uid: 701 + rot: -1.5707963267948966 rad + pos: -95.5,-58.5 + parent: 2 + - uid: 3730 components: - type: Transform - pos: 337.5,436.5 - parent: 1 - - uid: 709 + rot: -1.5707963267948966 rad + pos: -95.5,-54.5 + parent: 2 + - uid: 3817 components: - type: Transform - pos: 337.5,418.5 - parent: 1 - - uid: 711 + rot: -1.5707963267948966 rad + pos: -70.5,-24.5 + parent: 2 + - uid: 3863 components: - type: Transform - pos: 337.5,409.5 - parent: 1 - - uid: 712 + rot: 3.141592653589793 rad + pos: -71.5,-33.5 + parent: 2 + - uid: 3945 components: - type: Transform - pos: 337.5,408.5 - parent: 1 - - uid: 713 + rot: 3.141592653589793 rad + pos: -71.5,-32.5 + parent: 2 + - uid: 3994 components: - type: Transform - pos: 337.5,405.5 - parent: 1 - - uid: 724 + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 4007 components: - type: Transform - pos: 337.5,388.5 - parent: 1 - - uid: 740 + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 4547 components: - type: Transform - pos: 338.5,405.5 - parent: 1 - - uid: 782 + rot: -1.5707963267948966 rad + pos: -56.5,-62.5 + parent: 2 + - uid: 4559 components: - type: Transform - pos: 340.5,409.5 - parent: 1 - - uid: 783 + rot: 3.141592653589793 rad + pos: -71.5,-34.5 + parent: 2 + - uid: 4632 components: - type: Transform - pos: 340.5,408.5 - parent: 1 - - uid: 786 + pos: -99.5,4.5 + parent: 2 + - uid: 4655 components: - type: Transform - pos: 340.5,396.5 - parent: 1 - - uid: 796 + rot: -1.5707963267948966 rad + pos: -103.5,21.5 + parent: 2 + - uid: 5741 components: - type: Transform - pos: 341.5,418.5 - parent: 1 - - uid: 800 + rot: 3.141592653589793 rad + pos: -96.5,26.5 + parent: 2 + - uid: 7084 components: - type: Transform - pos: 341.5,400.5 - parent: 1 - - uid: 801 + pos: -41.5,-11.5 + parent: 2 + - uid: 7087 components: - type: Transform - pos: 341.5,396.5 - parent: 1 - - uid: 804 + pos: -44.5,-11.5 + parent: 2 + - uid: 7100 components: - type: Transform - pos: 341.5,384.5 - parent: 1 - - uid: 814 + pos: -16.5,-15.5 + parent: 2 + - uid: 7102 components: - type: Transform - pos: 342.5,419.5 - parent: 1 - - uid: 815 + pos: -76.5,-10.5 + parent: 2 + - uid: 7103 components: - type: Transform - pos: 342.5,418.5 - parent: 1 - - uid: 816 + pos: -77.5,-10.5 + parent: 2 + - uid: 7104 components: - type: Transform - pos: 342.5,417.5 - parent: 1 - - uid: 821 + pos: -78.5,-10.5 + parent: 2 + - uid: 7107 components: - type: Transform - pos: 342.5,401.5 - parent: 1 - - uid: 822 + pos: -80.5,-10.5 + parent: 2 + - uid: 7110 components: - type: Transform - pos: 342.5,400.5 - parent: 1 - - uid: 823 + pos: -40.5,-10.5 + parent: 2 + - uid: 7112 components: - type: Transform - pos: 342.5,396.5 - parent: 1 - - uid: 829 + pos: -39.5,-10.5 + parent: 2 + - uid: 7116 components: - type: Transform - pos: 343.5,436.5 - parent: 1 - - uid: 838 + pos: -16.5,-16.5 + parent: 2 + - uid: 7126 components: - type: Transform - pos: 343.5,410.5 - parent: 1 - - uid: 839 + pos: -41.5,-10.5 + parent: 2 + - uid: 7128 components: - type: Transform - pos: 343.5,409.5 - parent: 1 - - uid: 840 + pos: -31.5,4.5 + parent: 2 + - uid: 7129 components: - type: Transform - pos: 343.5,408.5 - parent: 1 - - uid: 841 + pos: -31.5,7.5 + parent: 2 + - uid: 7131 components: - type: Transform - pos: 343.5,405.5 - parent: 1 - - uid: 842 + pos: -32.5,9.5 + parent: 2 + - uid: 7135 components: - type: Transform - pos: 343.5,396.5 - parent: 1 - - uid: 843 + pos: -86.5,6.5 + parent: 2 + - uid: 7136 components: - type: Transform - pos: 343.5,395.5 - parent: 1 - - uid: 847 + pos: -87.5,6.5 + parent: 2 + - uid: 7137 components: - type: Transform - pos: 340.5,395.5 - parent: 1 - - uid: 849 + pos: -88.5,6.5 + parent: 2 + - uid: 7157 components: - type: Transform - pos: 339.5,395.5 - parent: 1 - - uid: 852 + pos: -89.5,6.5 + parent: 2 + - uid: 7169 components: - type: Transform - pos: 343.5,384.5 - parent: 1 - - uid: 861 + pos: -90.5,6.5 + parent: 2 + - uid: 7172 components: - type: Transform - pos: 344.5,410.5 - parent: 1 - - uid: 862 + pos: -31.5,6.5 + parent: 2 + - uid: 7182 components: - type: Transform - pos: 344.5,408.5 - parent: 1 - - uid: 865 + pos: -86.5,8.5 + parent: 2 + - uid: 7193 components: - type: Transform - pos: 344.5,405.5 - parent: 1 - - uid: 866 + pos: -86.5,9.5 + parent: 2 + - uid: 7195 components: - type: Transform - pos: 344.5,396.5 - parent: 1 - - uid: 871 + pos: -86.5,11.5 + parent: 2 + - uid: 7196 components: - type: Transform - pos: 345.5,436.5 - parent: 1 - - uid: 884 + pos: -86.5,12.5 + parent: 2 + - uid: 7215 components: - type: Transform - pos: 345.5,410.5 - parent: 1 - - uid: 885 + pos: -91.5,12.5 + parent: 2 + - uid: 7216 components: - type: Transform - pos: 345.5,405.5 - parent: 1 - - uid: 886 + pos: -91.5,11.5 + parent: 2 + - uid: 7234 components: - type: Transform - pos: 345.5,401.5 - parent: 1 - - uid: 887 + pos: -91.5,9.5 + parent: 2 + - uid: 7235 components: - type: Transform - pos: 345.5,400.5 - parent: 1 - - uid: 888 + pos: -91.5,8.5 + parent: 2 + - uid: 7241 components: - type: Transform - pos: 345.5,399.5 - parent: 1 - - uid: 889 + pos: -91.5,7.5 + parent: 2 + - uid: 7245 components: - type: Transform - pos: 345.5,397.5 - parent: 1 - - uid: 890 + pos: -92.5,6.5 + parent: 2 + - uid: 7246 components: - type: Transform - pos: 345.5,396.5 - parent: 1 - - uid: 907 + pos: -95.5,6.5 + parent: 2 + - uid: 7259 components: - type: Transform - pos: 346.5,405.5 - parent: 1 - - uid: 908 + pos: -96.5,6.5 + parent: 2 + - uid: 7278 components: - type: Transform - pos: 346.5,401.5 - parent: 1 - - uid: 909 + pos: -93.5,6.5 + parent: 2 + - uid: 7279 components: - type: Transform - pos: 346.5,396.5 - parent: 1 - - uid: 910 + pos: -97.5,6.5 + parent: 2 + - uid: 7356 components: - type: Transform - pos: 346.5,395.5 - parent: 1 - - uid: 913 + pos: -98.5,12.5 + parent: 2 + - uid: 7369 components: - type: Transform - pos: 346.5,391.5 - parent: 1 - - uid: 914 + pos: -97.5,8.5 + parent: 2 + - uid: 7514 components: - type: Transform - pos: 346.5,390.5 - parent: 1 - - uid: 915 + pos: -97.5,13.5 + parent: 2 + - uid: 7516 components: - type: Transform - pos: 346.5,386.5 - parent: 1 - - uid: 929 + pos: -103.5,12.5 + parent: 2 + - uid: 7521 components: - type: Transform - pos: 347.5,410.5 - parent: 1 - - uid: 930 + pos: -103.5,19.5 + parent: 2 + - uid: 7678 components: - type: Transform - pos: 347.5,405.5 - parent: 1 - - uid: 933 + pos: -31.5,-50.5 + parent: 2 + - uid: 7801 components: - type: Transform - pos: 348.5,436.5 - parent: 1 - - uid: 934 + rot: 3.141592653589793 rad + pos: -24.5,0.5 + parent: 2 + - uid: 7812 components: - type: Transform - pos: 348.5,435.5 - parent: 1 - - uid: 935 + pos: -17.5,-0.5 + parent: 2 + - uid: 8340 components: - type: Transform - pos: 348.5,434.5 - parent: 1 - - uid: 942 + pos: -16.5,-19.5 + parent: 2 + - uid: 8341 components: - type: Transform - pos: 348.5,410.5 - parent: 1 - - uid: 943 + pos: -102.5,19.5 + parent: 2 + - uid: 8347 components: - type: Transform - pos: 348.5,409.5 - parent: 1 - - uid: 944 + pos: -98.5,19.5 + parent: 2 + - uid: 8374 components: - type: Transform - pos: 348.5,408.5 - parent: 1 - - uid: 947 + pos: -16.5,-21.5 + parent: 2 + - uid: 8379 components: - type: Transform - pos: 348.5,405.5 - parent: 1 - - uid: 948 + pos: -21.5,-24.5 + parent: 2 + - uid: 8455 components: - type: Transform - pos: 348.5,401.5 - parent: 1 - - uid: 949 + pos: -103.5,17.5 + parent: 2 + - uid: 8473 components: - type: Transform - pos: 348.5,396.5 - parent: 1 - - uid: 951 + pos: -31.5,-27.5 + parent: 2 + - uid: 8520 components: - type: Transform - pos: 348.5,386.5 - parent: 1 - - uid: 960 + pos: -31.5,-33.5 + parent: 2 + - uid: 8521 components: - type: Transform - pos: 349.5,405.5 - parent: 1 - - uid: 961 + pos: -16.5,-18.5 + parent: 2 + - uid: 8523 components: - type: Transform - pos: 349.5,401.5 - parent: 1 - - uid: 963 + pos: -21.5,-25.5 + parent: 2 + - uid: 8524 components: - type: Transform - pos: 349.5,398.5 - parent: 1 - - uid: 978 + pos: -27.5,-40.5 + parent: 2 + - uid: 8568 components: - type: Transform - pos: 350.5,436.5 - parent: 1 - - uid: 987 + pos: -31.5,-26.5 + parent: 2 + - uid: 8580 components: - type: Transform - pos: 350.5,405.5 - parent: 1 - - uid: 988 + pos: -12.5,0.5 + parent: 2 + - uid: 8672 components: - type: Transform - pos: 350.5,401.5 - parent: 1 - - uid: 997 + rot: 3.141592653589793 rad + pos: -96.5,31.5 + parent: 2 + - uid: 8698 components: - type: Transform - pos: 351.5,437.5 - parent: 1 - - uid: 998 + pos: -27.5,-32.5 + parent: 2 + - uid: 8703 components: - type: Transform - pos: 351.5,436.5 - parent: 1 - - uid: 999 + pos: -27.5,-35.5 + parent: 2 + - uid: 8736 components: - type: Transform - pos: 351.5,434.5 - parent: 1 - - uid: 1006 + pos: -22.5,-41.5 + parent: 2 + - uid: 8780 components: - type: Transform - pos: 351.5,423.5 - parent: 1 - - uid: 1009 + pos: -27.5,-41.5 + parent: 2 + - uid: 8796 components: - type: Transform - pos: 338.5,395.5 - parent: 1 - - uid: 1010 + pos: -20.5,-41.5 + parent: 2 + - uid: 8797 components: - type: Transform - pos: 351.5,405.5 - parent: 1 - - uid: 1011 + pos: -21.5,-41.5 + parent: 2 + - uid: 8805 components: - type: Transform - pos: 351.5,401.5 - parent: 1 - - uid: 1022 + pos: -23.5,-16.5 + parent: 2 + - uid: 8809 components: - type: Transform - pos: 352.5,436.5 - parent: 1 - - uid: 1039 + pos: -26.5,-27.5 + parent: 2 + - uid: 8825 components: - type: Transform - pos: 352.5,412.5 - parent: 1 - - uid: 1040 + pos: -27.5,-33.5 + parent: 2 + - uid: 8830 components: - type: Transform - pos: 352.5,410.5 - parent: 1 - - uid: 1041 + pos: -27.5,-28.5 + parent: 2 + - uid: 8831 components: - type: Transform - pos: 352.5,409.5 - parent: 1 - - uid: 1042 + pos: -26.5,-33.5 + parent: 2 + - uid: 8832 components: - type: Transform - pos: 352.5,408.5 - parent: 1 - - uid: 1044 + pos: -20.5,-33.5 + parent: 2 + - uid: 8835 components: - type: Transform - pos: 352.5,406.5 - parent: 1 - - uid: 1045 + pos: -22.5,-33.5 + parent: 2 + - uid: 8837 components: - type: Transform - pos: 352.5,405.5 - parent: 1 - - uid: 1046 + pos: -21.5,-33.5 + parent: 2 + - uid: 8839 components: - type: Transform - pos: 352.5,401.5 - parent: 1 - - uid: 1047 + pos: -22.5,-27.5 + parent: 2 + - uid: 8844 components: - type: Transform - pos: 352.5,398.5 - parent: 1 - - uid: 1048 + pos: -23.5,-37.5 + parent: 2 + - uid: 8853 components: - type: Transform - pos: 352.5,397.5 - parent: 1 - - uid: 1062 + pos: -21.5,-37.5 + parent: 2 + - uid: 8854 components: - type: Transform - pos: 353.5,410.5 - parent: 1 - - uid: 1063 + pos: -24.5,-37.5 + parent: 2 + - uid: 8855 components: - type: Transform - pos: 353.5,401.5 - parent: 1 - - uid: 1070 + pos: -22.5,-37.5 + parent: 2 + - uid: 8858 components: - type: Transform - pos: 353.5,387.5 - parent: 1 - - uid: 1075 + pos: -101.5,19.5 + parent: 2 + - uid: 8860 components: - type: Transform - pos: 354.5,436.5 - parent: 1 - - uid: 1091 + pos: -98.5,17.5 + parent: 2 + - uid: 8883 components: - type: Transform - pos: 354.5,407.5 - parent: 1 - - uid: 1092 + pos: -20.5,-46.5 + parent: 2 + - uid: 9049 components: - type: Transform - pos: 354.5,405.5 - parent: 1 - - uid: 1104 + pos: -99.5,17.5 + parent: 2 + - uid: 9059 components: - type: Transform - pos: 355.5,436.5 - parent: 1 - - uid: 1105 + pos: -101.5,17.5 + parent: 2 + - uid: 9060 components: - type: Transform - pos: 355.5,430.5 - parent: 1 - - uid: 1108 + pos: -97.5,17.5 + parent: 2 + - uid: 9063 components: - type: Transform - pos: 355.5,408.5 - parent: 1 - - uid: 1110 + pos: -102.5,17.5 + parent: 2 + - uid: 9068 components: - type: Transform - pos: 355.5,405.5 - parent: 1 - - uid: 1126 + pos: -17.5,-33.5 + parent: 2 + - uid: 9070 components: - type: Transform - pos: 356.5,426.5 - parent: 1 - - uid: 1128 + pos: -41.5,-16.5 + parent: 2 + - uid: 9094 components: - type: Transform - pos: 356.5,419.5 - parent: 1 - - uid: 1129 + pos: -32.5,0.5 + parent: 2 + - uid: 9100 components: - type: Transform - pos: 356.5,416.5 - parent: 1 - - uid: 1137 + pos: -97.5,26.5 + parent: 2 + - uid: 9102 components: - type: Transform - pos: 356.5,405.5 - parent: 1 - - uid: 1148 + pos: -98.5,6.5 + parent: 2 + - uid: 9105 components: - type: Transform - pos: 357.5,425.5 - parent: 1 - - uid: 1150 + pos: -112.5,-19.5 + parent: 2 + - uid: 9106 components: - type: Transform - pos: 357.5,415.5 - parent: 1 - - uid: 1151 + pos: -109.5,-19.5 + parent: 2 + - uid: 9111 components: - type: Transform - pos: 357.5,410.5 - parent: 1 - - uid: 1152 + pos: -66.5,-17.5 + parent: 2 + - uid: 9119 components: - type: Transform - pos: 357.5,409.5 - parent: 1 - - uid: 1155 + pos: -56.5,-18.5 + parent: 2 + - uid: 9195 components: - type: Transform - pos: 357.5,406.5 - parent: 1 - - uid: 1156 + pos: -19.5,-41.5 + parent: 2 + - uid: 9205 components: - type: Transform - pos: 357.5,405.5 - parent: 1 - - uid: 1157 + pos: -17.5,-41.5 + parent: 2 + - uid: 9206 components: - type: Transform - pos: 357.5,401.5 - parent: 1 - - uid: 1164 + pos: -20.5,-43.5 + parent: 2 + - uid: 9271 components: - type: Transform - pos: 357.5,388.5 - parent: 1 - - uid: 1165 + pos: -56.5,-17.5 + parent: 2 + - uid: 9272 components: - type: Transform - pos: 357.5,387.5 - parent: 1 - - uid: 1177 + pos: -55.5,-17.5 + parent: 2 + - uid: 9281 components: - type: Transform - pos: 358.5,429.5 - parent: 1 - - uid: 1182 + pos: -49.5,-17.5 + parent: 2 + - uid: 9286 components: - type: Transform - pos: 358.5,415.5 - parent: 1 - - uid: 1183 + pos: -52.5,-17.5 + parent: 2 + - uid: 9288 components: - - type: Transform - pos: 358.5,414.5 - parent: 1 - - uid: 1184 + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 9295 components: - type: Transform - pos: 358.5,412.5 - parent: 1 - - uid: 1185 + rot: -1.5707963267948966 rad + pos: -75.5,-36.5 + parent: 2 + - uid: 9307 components: - type: Transform - pos: 358.5,411.5 - parent: 1 - - uid: 1188 + pos: -47.5,-17.5 + parent: 2 + - uid: 9310 components: - type: Transform - pos: 358.5,387.5 - parent: 1 - - uid: 1189 + pos: -70.5,-17.5 + parent: 2 + - uid: 9313 components: - type: Transform - pos: 358.5,383.5 - parent: 1 - - uid: 1198 + pos: -72.5,-17.5 + parent: 2 + - uid: 9314 components: - type: Transform - pos: 359.5,425.5 - parent: 1 - - uid: 1201 + pos: -66.5,-20.5 + parent: 2 + - uid: 9320 components: - type: Transform - pos: 359.5,408.5 - parent: 1 - - uid: 1203 + pos: -111.5,-19.5 + parent: 2 + - uid: 9321 components: - type: Transform - pos: 359.5,401.5 - parent: 1 - - uid: 1217 + pos: -113.5,-19.5 + parent: 2 + - uid: 9322 components: - type: Transform - pos: 360.5,414.5 - parent: 1 - - uid: 1221 + pos: -67.5,-23.5 + parent: 2 + - uid: 9323 components: - type: Transform - pos: 360.5,401.5 - parent: 1 - - uid: 1222 + pos: -70.5,-23.5 + parent: 2 + - uid: 9353 components: - type: Transform - pos: 360.5,400.5 - parent: 1 - - uid: 1224 + pos: -69.5,-23.5 + parent: 2 + - uid: 9425 components: - type: Transform - pos: 360.5,398.5 - parent: 1 - - uid: 1225 + pos: -117.5,-14.5 + parent: 2 + - uid: 9449 components: - type: Transform - pos: 360.5,396.5 - parent: 1 - - uid: 1226 + pos: -73.5,-17.5 + parent: 2 + - uid: 9450 components: - type: Transform - pos: 360.5,395.5 - parent: 1 - - uid: 1227 + pos: -73.5,-16.5 + parent: 2 + - uid: 9451 components: - type: Transform - pos: 360.5,394.5 - parent: 1 - - uid: 1228 + pos: -73.5,-15.5 + parent: 2 + - uid: 9463 components: - type: Transform - pos: 360.5,391.5 - parent: 1 - - uid: 1282 + pos: -76.5,-11.5 + parent: 2 + - uid: 9464 components: - type: Transform - pos: 363.5,401.5 - parent: 1 - - uid: 1288 + pos: -56.5,-24.5 + parent: 2 + - uid: 9468 components: - type: Transform - pos: 363.5,391.5 - parent: 1 - - uid: 1289 + pos: -44.5,-17.5 + parent: 2 + - uid: 9469 components: - type: Transform - pos: 363.5,387.5 - parent: 1 - - uid: 1299 + pos: -46.5,-17.5 + parent: 2 + - uid: 9481 components: - type: Transform - pos: 364.5,401.5 - parent: 1 - - uid: 1300 + pos: -56.5,-25.5 + parent: 2 + - uid: 9508 components: - type: Transform - pos: 364.5,400.5 - parent: 1 - - uid: 1305 + pos: -48.5,-22.5 + parent: 2 + - uid: 9510 components: - type: Transform - pos: 364.5,391.5 - parent: 1 - - uid: 1308 + pos: -48.5,-24.5 + parent: 2 + - uid: 9519 components: - type: Transform - pos: 364.5,387.5 - parent: 1 - - uid: 1315 + pos: -51.5,-17.5 + parent: 2 + - uid: 9520 components: - type: Transform - pos: 365.5,417.5 - parent: 1 - - uid: 1316 + pos: -48.5,-18.5 + parent: 2 + - uid: 9521 components: - type: Transform - pos: 373.5,385.5 - parent: 1 - - uid: 1321 + pos: -44.5,-18.5 + parent: 2 + - uid: 9524 components: - type: Transform - pos: 365.5,382.5 - parent: 1 - - uid: 1348 + pos: -55.5,-25.5 + parent: 2 + - uid: 9526 components: - type: Transform - pos: 368.5,384.5 - parent: 1 - - uid: 1360 + pos: -56.5,-26.5 + parent: 2 + - uid: 9535 components: - type: Transform - pos: 368.5,385.5 - parent: 1 - - uid: 1362 + pos: -52.5,-25.5 + parent: 2 + - uid: 9538 components: - type: Transform - pos: 368.5,383.5 - parent: 1 - - uid: 1363 + pos: -51.5,-25.5 + parent: 2 + - uid: 9544 components: - type: Transform - pos: 368.5,382.5 - parent: 1 - - uid: 1367 + pos: -50.5,-25.5 + parent: 2 + - uid: 9551 components: - type: Transform - pos: 369.5,417.5 - parent: 1 - - uid: 1374 + pos: -48.5,-25.5 + parent: 2 + - uid: 9552 components: - type: Transform - pos: 369.5,386.5 - parent: 1 - - uid: 1404 + pos: -46.5,-25.5 + parent: 2 + - uid: 9557 components: - type: Transform - pos: 370.5,386.5 - parent: 1 - - uid: 1407 + pos: -44.5,-25.5 + parent: 2 + - uid: 9560 components: - type: Transform - pos: 371.5,419.5 - parent: 1 - - uid: 1434 + pos: -45.5,-25.5 + parent: 2 + - uid: 9592 components: - type: Transform - pos: 373.5,386.5 - parent: 1 - - uid: 1493 + pos: -44.5,-20.5 + parent: 2 + - uid: 9595 components: - type: Transform - pos: 377.5,419.5 - parent: 1 - - uid: 1527 + pos: -44.5,-21.5 + parent: 2 + - uid: 9596 components: - type: Transform - pos: 378.5,395.5 - parent: 1 - - uid: 1561 + pos: -44.5,-26.5 + parent: 2 + - uid: 9608 components: - type: Transform - pos: 381.5,419.5 - parent: 1 - - uid: 1629 + pos: -44.5,-29.5 + parent: 2 + - uid: 9612 components: - type: Transform - pos: 387.5,395.5 - parent: 1 - - uid: 1681 + pos: -45.5,-30.5 + parent: 2 + - uid: 9613 components: - type: Transform - pos: 389.5,420.5 - parent: 1 - - uid: 1686 + pos: -46.5,-30.5 + parent: 2 + - uid: 9622 components: - type: Transform - pos: 389.5,413.5 - parent: 1 - - uid: 1687 + pos: -48.5,-30.5 + parent: 2 + - uid: 9654 components: - type: Transform - pos: 389.5,409.5 - parent: 1 - - uid: 1688 + pos: -49.5,-30.5 + parent: 2 + - uid: 9656 components: - type: Transform - pos: 389.5,405.5 - parent: 1 - - uid: 1695 + pos: -50.5,-30.5 + parent: 2 + - uid: 9658 components: - type: Transform - pos: 390.5,409.5 - parent: 1 - - uid: 1696 + pos: -51.5,-30.5 + parent: 2 + - uid: 9660 components: - type: Transform - pos: 390.5,405.5 - parent: 1 - - uid: 1711 + pos: -51.5,-29.5 + parent: 2 + - uid: 9662 components: - type: Transform - pos: 391.5,412.5 - parent: 1 - - uid: 1712 + pos: -51.5,-34.5 + parent: 2 + - uid: 9663 components: - type: Transform - pos: 391.5,410.5 - parent: 1 - - uid: 1713 + pos: -56.5,-34.5 + parent: 2 + - uid: 9665 components: - type: Transform - pos: 391.5,409.5 - parent: 1 - - uid: 1714 + pos: -53.5,-34.5 + parent: 2 + - uid: 9666 components: - type: Transform - pos: 391.5,408.5 - parent: 1 - - uid: 1715 + pos: -55.5,-34.5 + parent: 2 + - uid: 9669 components: - type: Transform - pos: 391.5,406.5 - parent: 1 - - uid: 1716 + pos: -54.5,-34.5 + parent: 2 + - uid: 9670 components: - type: Transform - pos: 391.5,405.5 - parent: 1 - - uid: 1719 + pos: -56.5,-33.5 + parent: 2 + - uid: 9679 components: - type: Transform - pos: 391.5,394.5 - parent: 1 - - uid: 1731 + pos: -117.5,-19.5 + parent: 2 + - uid: 9686 components: - type: Transform - pos: 392.5,422.5 - parent: 1 - - uid: 1782 + pos: -117.5,-18.5 + parent: 2 + - uid: 9687 components: - type: Transform - pos: 394.5,423.5 - parent: 1 - - uid: 1783 + pos: -117.5,-20.5 + parent: 2 + - uid: 9688 components: - type: Transform - pos: 394.5,422.5 - parent: 1 - - uid: 1784 + pos: -44.5,-16.5 + parent: 2 + - uid: 9694 components: - type: Transform - pos: 394.5,421.5 - parent: 1 - - uid: 1794 + pos: -41.5,-15.5 + parent: 2 + - uid: 9695 components: - type: Transform - pos: 394.5,410.5 - parent: 1 - - uid: 1795 + pos: -50.5,-34.5 + parent: 2 + - uid: 9698 components: - type: Transform - pos: 394.5,409.5 - parent: 1 - - uid: 1796 + pos: -57.5,-36.5 + parent: 2 + - uid: 9699 components: - type: Transform - pos: 394.5,408.5 - parent: 1 - - uid: 1797 + pos: -61.5,-36.5 + parent: 2 + - uid: 9701 components: - type: Transform - pos: 394.5,406.5 - parent: 1 - - uid: 1798 + pos: -32.5,3.5 + parent: 2 + - uid: 9731 components: - type: Transform - pos: 394.5,405.5 - parent: 1 - - uid: 1807 + pos: -74.5,-59.5 + parent: 2 + - uid: 9734 components: - type: Transform - pos: 395.5,423.5 - parent: 1 - - uid: 1810 + pos: -38.5,-47.5 + parent: 2 + - uid: 9737 components: - type: Transform - pos: 395.5,408.5 - parent: 1 - - uid: 1831 + pos: -52.5,-42.5 + parent: 2 + - uid: 9738 components: - type: Transform - pos: 397.5,423.5 - parent: 1 - - uid: 1834 + pos: -43.5,-49.5 + parent: 2 + - uid: 9744 components: - type: Transform - pos: 397.5,408.5 - parent: 1 - - uid: 1841 + pos: -46.5,-42.5 + parent: 2 + - uid: 9745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,405.5 - parent: 1 - - uid: 1844 + pos: -48.5,-42.5 + parent: 2 + - uid: 9746 components: - type: Transform - pos: 397.5,371.5 - parent: 1 - - uid: 1848 + pos: -49.5,-42.5 + parent: 2 + - uid: 9749 components: - type: Transform - pos: 398.5,423.5 - parent: 1 - - uid: 1849 + pos: -50.5,-42.5 + parent: 2 + - uid: 9750 components: - type: Transform - pos: 398.5,422.5 - parent: 1 - - uid: 1850 + pos: -51.5,-42.5 + parent: 2 + - uid: 9751 components: - type: Transform - pos: 398.5,420.5 - parent: 1 - - uid: 1851 + pos: -43.5,-43.5 + parent: 2 + - uid: 9753 components: - type: Transform - pos: 398.5,419.5 - parent: 1 - - uid: 1852 + pos: -43.5,-47.5 + parent: 2 + - uid: 9754 components: - type: Transform - pos: 398.5,418.5 - parent: 1 - - uid: 1853 + pos: -43.5,-48.5 + parent: 2 + - uid: 9755 components: - type: Transform - pos: 398.5,417.5 - parent: 1 - - uid: 1859 + pos: -53.5,-42.5 + parent: 2 + - uid: 9756 components: - type: Transform - pos: 398.5,410.5 - parent: 1 - - uid: 1860 + pos: -43.5,-52.5 + parent: 2 + - uid: 9758 components: - type: Transform - pos: 398.5,409.5 - parent: 1 - - uid: 1861 + pos: -43.5,-53.5 + parent: 2 + - uid: 9759 components: - type: Transform - pos: 398.5,408.5 - parent: 1 - - uid: 1862 + pos: -43.5,-51.5 + parent: 2 + - uid: 9766 components: - type: Transform - pos: 398.5,407.5 - parent: 1 - - uid: 1863 + pos: -49.5,-49.5 + parent: 2 + - uid: 9767 components: - type: Transform - pos: 398.5,406.5 - parent: 1 - - uid: 1864 + pos: -48.5,-49.5 + parent: 2 + - uid: 9768 components: - type: Transform - pos: 398.5,405.5 - parent: 1 - - uid: 1870 + pos: -47.5,-51.5 + parent: 2 + - uid: 9774 components: - type: Transform - pos: 398.5,371.5 - parent: 1 - - uid: 1871 + pos: -47.5,-53.5 + parent: 2 + - uid: 9776 components: - type: Transform - pos: 398.5,370.5 - parent: 1 - - uid: 1872 + pos: -47.5,-52.5 + parent: 2 + - uid: 9777 components: - type: Transform - pos: 398.5,369.5 - parent: 1 - - uid: 1880 + pos: -46.5,-53.5 + parent: 2 + - uid: 9778 components: - type: Transform - pos: 399.5,419.5 - parent: 1 - - uid: 1881 + pos: -44.5,-53.5 + parent: 2 + - uid: 9780 components: - type: Transform - pos: 399.5,414.5 - parent: 1 - - uid: 1882 + pos: -53.5,-49.5 + parent: 2 + - uid: 9783 components: - type: Transform - pos: 399.5,411.5 - parent: 1 - - uid: 1883 + pos: -54.5,-49.5 + parent: 2 + - uid: 9789 components: - type: Transform - pos: 399.5,405.5 - parent: 1 - - uid: 1889 + pos: -43.5,-54.5 + parent: 2 + - uid: 9793 components: - type: Transform - pos: 399.5,371.5 - parent: 1 - - uid: 1896 + pos: -43.5,-57.5 + parent: 2 + - uid: 9794 components: - type: Transform - pos: 400.5,423.5 - parent: 1 - - uid: 1898 + pos: -43.5,-56.5 + parent: 2 + - uid: 9795 components: - type: Transform - pos: 400.5,414.5 - parent: 1 - - uid: 1899 + pos: -44.5,-57.5 + parent: 2 + - uid: 9796 components: - type: Transform - pos: 400.5,411.5 - parent: 1 - - uid: 1910 + pos: -45.5,-57.5 + parent: 2 + - uid: 9797 components: - type: Transform - pos: 401.5,419.5 - parent: 1 - - uid: 1911 + pos: -47.5,-57.5 + parent: 2 + - uid: 9799 components: - type: Transform - pos: 401.5,414.5 - parent: 1 - - uid: 1912 + pos: -47.5,-56.5 + parent: 2 + - uid: 9800 components: - type: Transform - pos: 401.5,411.5 - parent: 1 - - uid: 1913 + pos: -48.5,-57.5 + parent: 2 + - uid: 9803 components: - type: Transform - pos: 401.5,405.5 - parent: 1 - - uid: 1926 + pos: -49.5,-57.5 + parent: 2 + - uid: 9804 components: - type: Transform - pos: 401.5,371.5 - parent: 1 - - uid: 1932 + pos: -50.5,-57.5 + parent: 2 + - uid: 9805 components: - type: Transform - pos: 402.5,425.5 - parent: 1 - - uid: 1933 + pos: -52.5,-57.5 + parent: 2 + - uid: 9812 components: - type: Transform - pos: 402.5,423.5 - parent: 1 - - uid: 1934 + pos: -53.5,-57.5 + parent: 2 + - uid: 9813 components: - type: Transform - pos: 402.5,419.5 - parent: 1 - - uid: 1935 + pos: -44.5,-48.5 + parent: 2 + - uid: 9814 components: - type: Transform - pos: 402.5,418.5 - parent: 1 - - uid: 1936 + pos: -56.5,-50.5 + parent: 2 + - uid: 9815 components: - type: Transform - pos: 402.5,417.5 - parent: 1 - - uid: 1937 + pos: -56.5,-49.5 + parent: 2 + - uid: 9816 components: - type: Transform - pos: 402.5,415.5 - parent: 1 - - uid: 1938 + pos: -55.5,-49.5 + parent: 2 + - uid: 9822 components: - type: Transform - pos: 402.5,414.5 - parent: 1 - - uid: 1940 + pos: -27.5,-5.5 + parent: 2 + - uid: 9952 components: - type: Transform - pos: 402.5,411.5 - parent: 1 - - uid: 1941 + pos: -108.5,-29.5 + parent: 2 + - uid: 9953 components: - type: Transform - pos: 402.5,410.5 - parent: 1 - - uid: 1942 + pos: -112.5,-28.5 + parent: 2 + - uid: 9954 components: - type: Transform - pos: 402.5,408.5 - parent: 1 - - uid: 1944 + pos: -31.5,9.5 + parent: 2 + - uid: 9969 components: - type: Transform - pos: 402.5,406.5 - parent: 1 - - uid: 1945 + pos: -27.5,-10.5 + parent: 2 + - uid: 10019 components: - type: Transform - pos: 402.5,405.5 - parent: 1 - - uid: 1968 + pos: -72.5,-58.5 + parent: 2 + - uid: 10098 components: - type: Transform - pos: 402.5,374.5 - parent: 1 - - uid: 1970 + pos: -24.5,-10.5 + parent: 2 + - uid: 10138 components: - type: Transform - pos: 402.5,371.5 - parent: 1 - - uid: 1978 + pos: -25.5,-10.5 + parent: 2 + - uid: 10139 components: - type: Transform - pos: 403.5,423.5 - parent: 1 - - uid: 1979 + pos: -27.5,-6.5 + parent: 2 + - uid: 10149 components: - type: Transform - pos: 403.5,422.5 - parent: 1 - - uid: 1980 + pos: -27.5,-0.5 + parent: 2 + - uid: 10153 components: - type: Transform - pos: 403.5,420.5 - parent: 1 - - uid: 1981 + pos: -27.5,0.5 + parent: 2 + - uid: 10154 components: - type: Transform - pos: 403.5,419.5 - parent: 1 - - uid: 1983 + pos: -26.5,0.5 + parent: 2 + - uid: 10166 components: - type: Transform - pos: 403.5,405.5 - parent: 1 - - uid: 1986 + pos: -22.5,0.5 + parent: 2 + - uid: 10262 components: - type: Transform - pos: 403.5,394.5 - parent: 1 - - uid: 1998 + rot: -1.5707963267948966 rad + pos: -72.5,-60.5 + parent: 2 + - uid: 10351 components: - type: Transform - pos: 404.5,424.5 - parent: 1 - - uid: 1999 + pos: -22.5,-10.5 + parent: 2 + - uid: 10375 components: - type: Transform - pos: 404.5,423.5 - parent: 1 - - uid: 2005 + pos: -22.5,-11.5 + parent: 2 + - uid: 10592 components: - type: Transform - pos: 405.5,423.5 - parent: 1 - - uid: 2008 + rot: 3.141592653589793 rad + pos: -71.5,-36.5 + parent: 2 + - uid: 10758 components: - type: Transform - pos: 405.5,419.5 - parent: 1 - - uid: 2010 + rot: 1.5707963267948966 rad + pos: -71.5,-23.5 + parent: 2 + - uid: 10785 components: - type: Transform - pos: 405.5,405.5 - parent: 1 - - uid: 2015 + rot: 1.5707963267948966 rad + pos: -103.5,23.5 + parent: 2 + - uid: 11002 components: - type: Transform - pos: 405.5,366.5 - parent: 1 - - uid: 2019 + pos: -20.5,-0.5 + parent: 2 + - uid: 11005 components: - type: Transform - pos: 406.5,423.5 - parent: 1 - - uid: 2021 + pos: -20.5,0.5 + parent: 2 + - uid: 11006 components: - type: Transform - pos: 406.5,412.5 - parent: 1 - - uid: 2022 + pos: -20.5,-10.5 + parent: 2 + - uid: 11007 components: - type: Transform - pos: 406.5,411.5 - parent: 1 - - uid: 2025 + pos: -20.5,-9.5 + parent: 2 + - uid: 11051 components: - type: Transform - pos: 406.5,408.5 - parent: 1 - - uid: 2027 + pos: -25.5,-41.5 + parent: 2 + - uid: 11063 components: - type: Transform - pos: 406.5,406.5 - parent: 1 - - uid: 2028 + rot: 3.141592653589793 rad + pos: -104.5,14.5 + parent: 2 + - uid: 11093 components: - type: Transform - pos: 406.5,405.5 - parent: 1 - - uid: 2035 + pos: -20.5,-8.5 + parent: 2 + - uid: 11095 components: - type: Transform - pos: 406.5,394.5 - parent: 1 - - uid: 2036 + pos: -16.5,-10.5 + parent: 2 + - uid: 11098 components: - type: Transform - pos: 406.5,393.5 - parent: 1 - - uid: 2037 + pos: -18.5,-10.5 + parent: 2 + - uid: 11102 components: - type: Transform - pos: 406.5,392.5 - parent: 1 - - uid: 2038 + pos: -17.5,-10.5 + parent: 2 + - uid: 11116 components: - type: Transform - pos: 406.5,391.5 - parent: 1 - - uid: 2039 + pos: -13.5,-11.5 + parent: 2 + - uid: 11118 components: - type: Transform - pos: 406.5,390.5 - parent: 1 - - uid: 2040 + pos: -13.5,-10.5 + parent: 2 + - uid: 11154 components: - type: Transform - pos: 406.5,389.5 - parent: 1 - - uid: 2041 + pos: -76.5,-16.5 + parent: 2 + - uid: 11164 components: - type: Transform - pos: 406.5,388.5 - parent: 1 - - uid: 2042 + pos: -107.5,-28.5 + parent: 2 + - uid: 11169 components: - type: Transform - pos: 406.5,387.5 - parent: 1 - - uid: 2043 + pos: -110.5,-24.5 + parent: 2 + - uid: 11177 components: - type: Transform - pos: 406.5,386.5 - parent: 1 - - uid: 2044 + pos: -110.5,-23.5 + parent: 2 + - uid: 11245 components: - type: Transform - pos: 406.5,385.5 - parent: 1 - - uid: 2045 + pos: -87.5,-7.5 + parent: 2 + - uid: 11247 components: - type: Transform - pos: 406.5,384.5 - parent: 1 - - uid: 2046 + pos: -113.5,-34.5 + parent: 2 + - uid: 11269 components: - type: Transform - pos: 406.5,383.5 - parent: 1 - - uid: 2047 + pos: -111.5,-34.5 + parent: 2 + - uid: 11271 components: - type: Transform - pos: 406.5,382.5 - parent: 1 - - uid: 2049 + pos: -31.5,0.5 + parent: 2 + - uid: 11272 components: - type: Transform - pos: 406.5,379.5 - parent: 1 - - uid: 2051 + pos: -34.5,-55.5 + parent: 2 + - uid: 11650 components: - type: Transform - pos: 406.5,377.5 - parent: 1 - - uid: 2054 + rot: 1.5707963267948966 rad + pos: -103.5,25.5 + parent: 2 + - uid: 11709 components: - type: Transform - pos: 406.5,373.5 - parent: 1 - - uid: 2055 + pos: -66.5,-35.5 + parent: 2 + - uid: 11773 components: - type: Transform - pos: 406.5,372.5 - parent: 1 - - uid: 2057 + pos: -63.5,-21.5 + parent: 2 + - uid: 11776 components: - type: Transform - pos: 406.5,369.5 - parent: 1 - - uid: 2058 + pos: -54.5,-39.5 + parent: 2 + - uid: 11777 components: - type: Transform - pos: 406.5,368.5 - parent: 1 - - uid: 2059 + pos: -56.5,-37.5 + parent: 2 + - uid: 11778 components: - type: Transform - pos: 406.5,367.5 - parent: 1 - - uid: 2060 + pos: -56.5,-38.5 + parent: 2 + - uid: 11785 components: - type: Transform - pos: 406.5,366.5 - parent: 1 - - uid: 2061 + pos: -53.5,-39.5 + parent: 2 + - uid: 11786 components: - type: Transform - pos: 406.5,365.5 - parent: 1 - - uid: 2064 + pos: -55.5,-39.5 + parent: 2 + - uid: 11871 components: - type: Transform - pos: 407.5,423.5 - parent: 1 - - uid: 2067 + pos: -51.5,-39.5 + parent: 2 + - uid: 11875 components: - type: Transform - pos: 407.5,419.5 - parent: 1 - - uid: 2072 + pos: -56.5,-36.5 + parent: 2 + - uid: 11882 components: - type: Transform - pos: 407.5,394.5 - parent: 1 - - uid: 2073 + pos: -60.5,-36.5 + parent: 2 + - uid: 11888 components: - type: Transform - pos: 407.5,386.5 - parent: 1 - - uid: 2075 + pos: -59.5,-36.5 + parent: 2 + - uid: 11892 components: - type: Transform - pos: 407.5,377.5 - parent: 1 - - uid: 2080 + rot: -1.5707963267948966 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 11894 components: - type: Transform - pos: 408.5,423.5 - parent: 1 - - uid: 2081 + rot: 1.5707963267948966 rad + pos: -101.5,25.5 + parent: 2 + - uid: 12146 components: - type: Transform - pos: 408.5,419.5 - parent: 1 - - uid: 2085 + pos: -69.5,-52.5 + parent: 2 + - uid: 12147 components: - type: Transform - pos: 408.5,394.5 - parent: 1 - - uid: 2087 + pos: -50.5,-33.5 + parent: 2 + - uid: 12152 components: - type: Transform - pos: 408.5,366.5 - parent: 1 - - uid: 2091 + pos: -55.5,-42.5 + parent: 2 + - uid: 12155 components: - type: Transform - pos: 409.5,419.5 - parent: 1 - - uid: 2096 + pos: -46.5,-48.5 + parent: 2 + - uid: 12156 components: - type: Transform - pos: 409.5,394.5 - parent: 1 - - uid: 2097 + pos: -44.5,-42.5 + parent: 2 + - uid: 12157 components: - type: Transform - pos: 409.5,386.5 - parent: 1 - - uid: 2098 + pos: -62.5,-51.5 + parent: 2 + - uid: 12162 components: - type: Transform - pos: 409.5,383.5 - parent: 1 - - uid: 2100 + pos: -61.5,-51.5 + parent: 2 + - uid: 12168 components: - type: Transform - pos: 409.5,373.5 - parent: 1 - - uid: 2101 + pos: -60.5,-51.5 + parent: 2 + - uid: 12175 components: - type: Transform - pos: 409.5,372.5 - parent: 1 - - uid: 2102 + pos: -67.5,-51.5 + parent: 2 + - uid: 12179 components: - type: Transform - pos: 409.5,370.5 - parent: 1 - - uid: 2103 + pos: -70.5,-51.5 + parent: 2 + - uid: 12183 components: - type: Transform - pos: 409.5,369.5 - parent: 1 - - uid: 2104 + pos: -69.5,-51.5 + parent: 2 + - uid: 12187 components: - type: Transform - pos: 409.5,367.5 - parent: 1 - - uid: 2105 + pos: -97.5,25.5 + parent: 2 + - uid: 12188 components: - type: Transform - pos: 409.5,366.5 - parent: 1 - - uid: 2110 + pos: -59.5,-59.5 + parent: 2 + - uid: 12189 components: - type: Transform - pos: 410.5,423.5 - parent: 1 - - uid: 2111 + pos: -59.5,-51.5 + parent: 2 + - uid: 12202 components: - type: Transform - pos: 410.5,422.5 - parent: 1 - - uid: 2113 + pos: -66.5,-51.5 + parent: 2 + - uid: 12203 components: - type: Transform - pos: 410.5,420.5 - parent: 1 - - uid: 2114 + pos: -68.5,-51.5 + parent: 2 + - uid: 12214 components: - type: Transform - pos: 410.5,419.5 - parent: 1 - - uid: 2117 + pos: -62.5,-50.5 + parent: 2 + - uid: 12396 components: - type: Transform - pos: 410.5,415.5 - parent: 1 - - uid: 2119 + pos: -69.5,-54.5 + parent: 2 + - uid: 12426 components: - type: Transform - pos: 410.5,413.5 - parent: 1 - - uid: 2136 + pos: -29.5,-61.5 + parent: 2 + - uid: 12551 components: - type: Transform - pos: 410.5,394.5 - parent: 1 - - uid: 2137 + pos: -43.5,-42.5 + parent: 2 + - uid: 12596 components: - type: Transform - pos: 410.5,393.5 - parent: 1 - - uid: 2138 + rot: 1.5707963267948966 rad + pos: -73.5,-23.5 + parent: 2 + - uid: 12669 components: - type: Transform - pos: 410.5,391.5 - parent: 1 - - uid: 2143 + pos: -56.5,-54.5 + parent: 2 + - uid: 12694 components: - type: Transform - pos: 410.5,386.5 - parent: 1 - - uid: 2144 + pos: -73.5,-51.5 + parent: 2 + - uid: 12708 components: - type: Transform - pos: 410.5,385.5 - parent: 1 - - uid: 2145 + pos: -59.5,-53.5 + parent: 2 + - uid: 12716 components: - type: Transform - pos: 410.5,383.5 - parent: 1 - - uid: 2147 + pos: -59.5,-54.5 + parent: 2 + - uid: 12857 components: - type: Transform - pos: 410.5,372.5 - parent: 1 - - uid: 2148 + pos: -74.5,-51.5 + parent: 2 + - uid: 12860 components: - type: Transform - pos: 410.5,369.5 - parent: 1 - - uid: 2149 + pos: -66.5,-61.5 + parent: 2 + - uid: 12861 components: - type: Transform - pos: 410.5,366.5 - parent: 1 - - uid: 2159 + pos: -72.5,-61.5 + parent: 2 + - uid: 12862 components: - type: Transform - pos: 411.5,386.5 - parent: 1 - - uid: 2160 + pos: -70.5,-61.5 + parent: 2 + - uid: 12864 components: - type: Transform - pos: 411.5,383.5 - parent: 1 - - uid: 2162 + pos: -59.5,-63.5 + parent: 2 + - uid: 12865 components: - type: Transform - pos: 411.5,372.5 - parent: 1 - - uid: 2163 + pos: -66.5,-64.5 + parent: 2 + - uid: 12866 components: - type: Transform - pos: 411.5,369.5 - parent: 1 - - uid: 2164 + pos: -64.5,-64.5 + parent: 2 + - uid: 12869 components: - type: Transform - pos: 411.5,366.5 - parent: 1 - - uid: 2172 + pos: -63.5,-64.5 + parent: 2 + - uid: 12870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 331.5,425.5 - parent: 1 - - uid: 2174 + pos: -53.5,-54.5 + parent: 2 + - uid: 12871 components: - type: Transform - pos: 412.5,386.5 - parent: 1 - - uid: 2175 + pos: -53.5,-56.5 + parent: 2 + - uid: 13237 components: - type: Transform - pos: 412.5,383.5 - parent: 1 - - uid: 2176 + rot: -1.5707963267948966 rad + pos: -111.5,23.5 + parent: 2 + - uid: 13238 components: - type: Transform - pos: 412.5,377.5 - parent: 1 - - uid: 2177 + rot: -1.5707963267948966 rad + pos: -106.5,21.5 + parent: 2 + - uid: 13239 components: - type: Transform - pos: 412.5,372.5 - parent: 1 - - uid: 2178 + rot: -1.5707963267948966 rad + pos: -106.5,23.5 + parent: 2 + - uid: 13286 components: - type: Transform - pos: 412.5,369.5 - parent: 1 - - uid: 2179 + rot: -1.5707963267948966 rad + pos: -106.5,22.5 + parent: 2 + - uid: 13288 components: - type: Transform - pos: 412.5,366.5 - parent: 1 - - uid: 2188 + rot: -1.5707963267948966 rad + pos: -106.5,20.5 + parent: 2 + - uid: 13469 components: - type: Transform - pos: 413.5,394.5 - parent: 1 - - uid: 2189 + pos: -56.5,-42.5 + parent: 2 + - uid: 13512 components: - type: Transform - pos: 413.5,393.5 - parent: 1 - - uid: 2190 + rot: -1.5707963267948966 rad + pos: -114.5,23.5 + parent: 2 + - uid: 13517 components: - type: Transform - pos: 413.5,391.5 - parent: 1 - - uid: 2194 + pos: -90.5,26.5 + parent: 2 + - uid: 13569 components: - type: Transform - pos: 413.5,387.5 - parent: 1 - - uid: 2195 + pos: -92.5,26.5 + parent: 2 + - uid: 14300 components: - type: Transform - pos: 413.5,386.5 - parent: 1 - - uid: 2196 + rot: 3.141592653589793 rad + pos: -71.5,-30.5 + parent: 2 + - uid: 14301 components: - type: Transform - pos: 413.5,385.5 - parent: 1 - - uid: 2198 + rot: 3.141592653589793 rad + pos: -71.5,-28.5 + parent: 2 + - uid: 14488 components: - type: Transform - pos: 413.5,383.5 - parent: 1 - - uid: 2200 + pos: -114.5,-34.5 + parent: 2 + - uid: 14497 components: - type: Transform - pos: 413.5,380.5 - parent: 1 - - uid: 2201 + pos: -22.5,-21.5 + parent: 2 + - uid: 14498 components: - type: Transform - pos: 413.5,379.5 - parent: 1 - - uid: 2202 + pos: -17.5,-16.5 + parent: 2 + - uid: 14576 components: - type: Transform - pos: 413.5,378.5 - parent: 1 - - uid: 2203 + pos: -112.5,-24.5 + parent: 2 + - uid: 14580 components: - type: Transform - pos: 413.5,377.5 - parent: 1 - - uid: 2204 + pos: -22.5,-16.5 + parent: 2 + - uid: 14581 components: - type: Transform - pos: 413.5,373.5 - parent: 1 - - uid: 2205 + pos: -21.5,-16.5 + parent: 2 + - uid: 14651 components: - type: Transform - pos: 413.5,372.5 - parent: 1 - - uid: 2208 + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - uid: 14654 components: - type: Transform - pos: 413.5,369.5 - parent: 1 - - uid: 2211 + rot: 1.5707963267948966 rad + pos: -72.5,-36.5 + parent: 2 + - uid: 14830 components: - type: Transform - pos: 413.5,366.5 - parent: 1 - - uid: 2231 + rot: 3.141592653589793 rad + pos: -71.5,-29.5 + parent: 2 + - uid: 14976 components: - type: Transform - pos: 414.5,423.5 - parent: 1 - - uid: 2232 + rot: -1.5707963267948966 rad + pos: -108.5,23.5 + parent: 2 + - uid: 15047 components: - type: Transform - pos: 414.5,422.5 - parent: 1 - - uid: 2234 + pos: -112.5,-23.5 + parent: 2 + - uid: 15092 components: - type: Transform - pos: 414.5,419.5 - parent: 1 - - uid: 2236 + rot: -1.5707963267948966 rad + pos: -107.5,23.5 + parent: 2 + - uid: 15284 components: - type: Transform - pos: 414.5,416.5 - parent: 1 - - uid: 2237 + pos: -112.5,-22.5 + parent: 2 + - uid: 15285 components: - type: Transform - pos: 414.5,415.5 - parent: 1 - - uid: 2254 + pos: -96.5,-48.5 + parent: 2 + - uid: 15349 components: - type: Transform - pos: 414.5,394.5 - parent: 1 - - uid: 2257 + rot: -1.5707963267948966 rad + pos: -110.5,23.5 + parent: 2 + - uid: 15448 components: - type: Transform - pos: 414.5,380.5 - parent: 1 - - uid: 2261 + rot: -1.5707963267948966 rad + pos: -112.5,23.5 + parent: 2 + - uid: 15682 components: - type: Transform - pos: 414.5,361.5 - parent: 1 - - uid: 2275 + rot: -1.5707963267948966 rad + pos: -66.5,-28.5 + parent: 2 + - uid: 15683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 417.5,376.5 - parent: 1 - - uid: 2286 + pos: -66.5,-24.5 + parent: 2 + - uid: 15685 components: - type: Transform - pos: 416.5,394.5 - parent: 1 - - uid: 2291 + rot: -1.5707963267948966 rad + pos: -70.5,-28.5 + parent: 2 + - uid: 15692 components: - type: Transform - pos: 416.5,373.5 - parent: 1 - - uid: 2292 + rot: -1.5707963267948966 rad + pos: -70.5,-34.5 + parent: 2 + - uid: 15694 components: - type: Transform - pos: 416.5,372.5 - parent: 1 - - uid: 2293 + rot: -1.5707963267948966 rad + pos: -70.5,-26.5 + parent: 2 + - uid: 15773 components: - type: Transform - pos: 416.5,370.5 - parent: 1 - - uid: 2294 + rot: -1.5707963267948966 rad + pos: -114.5,21.5 + parent: 2 + - uid: 15924 components: - type: Transform - pos: 416.5,369.5 - parent: 1 - - uid: 2295 + pos: -57.5,-17.5 + parent: 2 + - uid: 15987 components: - type: Transform - pos: 416.5,367.5 - parent: 1 - - uid: 2296 + pos: -74.5,-54.5 + parent: 2 + - uid: 15994 components: - type: Transform - pos: 416.5,366.5 - parent: 1 - - uid: 2324 + pos: -59.5,-20.5 + parent: 2 + - uid: 15995 components: - type: Transform - pos: 417.5,389.5 - parent: 1 - - uid: 2325 + pos: -63.5,-20.5 + parent: 2 + - uid: 15996 components: - type: Transform - pos: 417.5,387.5 - parent: 1 - - uid: 2326 + pos: -61.5,-21.5 + parent: 2 + - uid: 15997 components: - type: Transform - pos: 417.5,386.5 - parent: 1 - - uid: 2327 + pos: -60.5,-21.5 + parent: 2 + - uid: 16096 components: - type: Transform - pos: 417.5,385.5 - parent: 1 - - uid: 2328 + rot: -1.5707963267948966 rad + pos: -95.5,-59.5 + parent: 2 + - uid: 16107 components: - type: Transform - pos: 417.5,384.5 - parent: 1 - - uid: 2329 + pos: -35.5,-55.5 + parent: 2 + - uid: 16109 components: - type: Transform - pos: 417.5,383.5 - parent: 1 - - uid: 2330 + pos: -36.5,-55.5 + parent: 2 + - uid: 16111 components: - type: Transform - pos: 417.5,381.5 - parent: 1 - - uid: 2331 + pos: -37.5,-54.5 + parent: 2 + - uid: 16112 components: - type: Transform - pos: 417.5,380.5 - parent: 1 - - uid: 2332 + pos: -37.5,-53.5 + parent: 2 + - uid: 16115 components: - type: Transform - pos: 417.5,378.5 - parent: 1 - - uid: 2333 + pos: -77.5,-54.5 + parent: 2 + - uid: 16120 components: - type: Transform - pos: 417.5,377.5 - parent: 1 - - uid: 2334 + pos: -53.5,-58.5 + parent: 2 + - uid: 16122 components: - type: Transform - pos: 417.5,372.5 - parent: 1 - - uid: 2335 + pos: -42.5,-70.5 + parent: 2 + - uid: 16126 components: - type: Transform - pos: 417.5,369.5 - parent: 1 - - uid: 2336 + pos: -44.5,-70.5 + parent: 2 + - uid: 16132 components: - type: Transform - pos: 417.5,366.5 - parent: 1 - - uid: 2340 + pos: -45.5,-70.5 + parent: 2 + - uid: 16133 components: - type: Transform - pos: 418.5,423.5 - parent: 1 - - uid: 2341 + pos: -46.5,-67.5 + parent: 2 + - uid: 16150 components: - type: Transform - pos: 418.5,422.5 - parent: 1 - - uid: 2342 + pos: -46.5,-66.5 + parent: 2 + - uid: 16160 components: - type: Transform - pos: 418.5,421.5 - parent: 1 - - uid: 2343 + pos: -46.5,-69.5 + parent: 2 + - uid: 16162 components: - type: Transform - pos: 418.5,420.5 - parent: 1 - - uid: 2344 + pos: -46.5,-70.5 + parent: 2 + - uid: 16163 components: - type: Transform - pos: 418.5,418.5 - parent: 1 - - uid: 2352 + pos: -41.5,-70.5 + parent: 2 + - uid: 16169 components: - type: Transform - pos: 418.5,386.5 - parent: 1 - - uid: 2354 + pos: -47.5,-62.5 + parent: 2 + - uid: 16185 components: - type: Transform - pos: 418.5,372.5 - parent: 1 - - uid: 2355 + pos: -53.5,-62.5 + parent: 2 + - uid: 16199 components: - type: Transform - pos: 418.5,369.5 - parent: 1 - - uid: 2356 + pos: -50.5,-62.5 + parent: 2 + - uid: 16200 components: - type: Transform - pos: 418.5,366.5 - parent: 1 - - uid: 2357 + pos: -52.5,-62.5 + parent: 2 + - uid: 16215 components: - type: Transform - pos: 418.5,364.5 - parent: 1 - - uid: 2358 + pos: -43.5,-62.5 + parent: 2 + - uid: 16228 components: - type: Transform - pos: 418.5,363.5 - parent: 1 - - uid: 2359 + pos: -44.5,-62.5 + parent: 2 + - uid: 16229 components: - type: Transform - pos: 418.5,361.5 - parent: 1 - - uid: 2380 + pos: -51.5,-62.5 + parent: 2 + - uid: 16238 components: - type: Transform - pos: 419.5,379.5 - parent: 1 - - uid: 2382 + pos: -43.5,-61.5 + parent: 2 + - uid: 16249 components: - type: Transform - pos: 419.5,372.5 - parent: 1 - - uid: 2383 + pos: -43.5,-58.5 + parent: 2 + - uid: 16267 components: - type: Transform - pos: 419.5,369.5 - parent: 1 - - uid: 2384 + pos: -43.5,-60.5 + parent: 2 + - uid: 16268 components: - type: Transform - pos: 419.5,366.5 - parent: 1 - - uid: 2385 + pos: -48.5,-62.5 + parent: 2 + - uid: 16269 components: - type: Transform - pos: 419.5,363.5 - parent: 1 - - uid: 2386 + pos: -46.5,-62.5 + parent: 2 + - uid: 16271 components: - type: Transform - pos: 419.5,361.5 - parent: 1 - - uid: 2393 + pos: -56.5,-51.5 + parent: 2 + - uid: 16278 components: - type: Transform - pos: 420.5,421.5 - parent: 1 - - uid: 2400 + pos: -109.5,-28.5 + parent: 2 + - uid: 16279 components: - type: Transform - pos: 420.5,386.5 - parent: 1 - - uid: 2405 + pos: -108.5,-28.5 + parent: 2 + - uid: 16280 components: - type: Transform - pos: 420.5,379.5 - parent: 1 - - uid: 2406 + pos: -96.5,13.5 + parent: 2 + - uid: 16281 components: - type: Transform - pos: 420.5,377.5 - parent: 1 - - uid: 2407 + pos: -100.5,-48.5 + parent: 2 + - uid: 16297 components: - type: Transform - pos: 420.5,376.5 - parent: 1 - - uid: 2408 + pos: -64.5,-17.5 + parent: 2 + - uid: 16300 components: - type: Transform - pos: 420.5,374.5 - parent: 1 - - uid: 2409 + pos: -92.5,13.5 + parent: 2 + - uid: 16301 components: - type: Transform - pos: 420.5,373.5 - parent: 1 - - uid: 2410 + rot: -1.5707963267948966 rad + pos: -74.5,-39.5 + parent: 2 + - uid: 16306 components: - type: Transform - pos: 420.5,372.5 - parent: 1 - - uid: 2411 + pos: -91.5,13.5 + parent: 2 + - uid: 16307 components: - type: Transform - pos: 420.5,371.5 - parent: 1 - - uid: 2412 + pos: -111.5,-28.5 + parent: 2 + - uid: 16317 components: - type: Transform - pos: 420.5,370.5 - parent: 1 - - uid: 2413 + pos: -114.5,-28.5 + parent: 2 + - uid: 16319 components: - type: Transform - pos: 420.5,369.5 - parent: 1 - - uid: 2414 + pos: -115.5,-28.5 + parent: 2 + - uid: 16321 components: - type: Transform - pos: 420.5,368.5 - parent: 1 - - uid: 2415 + pos: -112.5,26.5 + parent: 2 + - uid: 16322 components: - type: Transform - pos: 420.5,367.5 - parent: 1 - - uid: 2416 + pos: -116.5,26.5 + parent: 2 + - uid: 16323 components: - type: Transform - pos: 420.5,366.5 - parent: 1 - - uid: 2417 + pos: -117.5,26.5 + parent: 2 + - uid: 16325 components: - type: Transform - pos: 420.5,364.5 - parent: 1 - - uid: 2418 + pos: -117.5,29.5 + parent: 2 + - uid: 16326 components: - type: Transform - pos: 420.5,363.5 - parent: 1 - - uid: 2419 + pos: -117.5,28.5 + parent: 2 + - uid: 16327 components: - type: Transform - pos: 420.5,361.5 - parent: 1 - - uid: 2420 + pos: -119.5,28.5 + parent: 2 + - uid: 16328 components: - type: Transform - pos: 420.5,360.5 - parent: 1 - - uid: 2421 + pos: -118.5,28.5 + parent: 2 + - uid: 16329 components: - type: Transform - pos: 420.5,359.5 - parent: 1 - - uid: 2422 + pos: -73.5,-62.5 + parent: 2 + - uid: 16336 components: - type: Transform - pos: 420.5,358.5 - parent: 1 - - uid: 2458 + pos: -73.5,-61.5 + parent: 2 + - uid: 16341 components: - type: Transform - pos: 421.5,368.5 - parent: 1 - - uid: 2459 + pos: -73.5,-63.5 + parent: 2 + - uid: 16344 components: - type: Transform - pos: 421.5,364.5 - parent: 1 - - uid: 2460 + pos: -73.5,-64.5 + parent: 2 + - uid: 16349 components: - type: Transform - pos: 421.5,358.5 - parent: 1 - - uid: 2463 + pos: -56.5,-57.5 + parent: 2 + - uid: 16350 components: - type: Transform - pos: 421.5,355.5 - parent: 1 - - uid: 2478 + pos: -56.5,-55.5 + parent: 2 + - uid: 16351 components: - type: Transform - pos: 422.5,368.5 - parent: 1 - - uid: 2479 + pos: -57.5,-58.5 + parent: 2 + - uid: 16352 components: - type: Transform - pos: 422.5,366.5 - parent: 1 - - uid: 2480 + pos: -58.5,-51.5 + parent: 2 + - uid: 16353 components: - type: Transform - pos: 422.5,361.5 - parent: 1 - - uid: 2481 + pos: -99.5,6.5 + parent: 2 + - uid: 16354 components: - type: Transform - pos: 422.5,360.5 - parent: 1 - - uid: 2483 + pos: -110.5,-34.5 + parent: 2 + - uid: 16355 components: - type: Transform - pos: 422.5,358.5 - parent: 1 - - uid: 2484 + pos: -99.5,-48.5 + parent: 2 + - uid: 16356 components: - type: Transform - pos: 422.5,357.5 - parent: 1 - - uid: 2485 + pos: -16.5,-9.5 + parent: 2 + - uid: 16359 components: - type: Transform - pos: 422.5,356.5 - parent: 1 - - uid: 2486 + pos: -16.5,-6.5 + parent: 2 + - uid: 16398 components: - type: Transform - pos: 422.5,355.5 - parent: 1 - - uid: 2489 + pos: -97.5,-48.5 + parent: 2 + - uid: 16469 components: - type: Transform - pos: 373.5,389.5 - parent: 1 - - uid: 2510 + pos: -16.5,-0.5 + parent: 2 + - uid: 16481 components: - type: Transform - pos: 423.5,375.5 - parent: 1 - - uid: 2513 + pos: -13.5,-21.5 + parent: 2 + - uid: 16482 components: - type: Transform - pos: 423.5,371.5 - parent: 1 - - uid: 2514 + pos: -16.5,0.5 + parent: 2 + - uid: 16492 components: - type: Transform - pos: 423.5,364.5 - parent: 1 - - uid: 2515 + pos: -86.5,13.5 + parent: 2 + - uid: 16493 components: - type: Transform - pos: 423.5,358.5 - parent: 1 - - uid: 2516 + pos: -90.5,13.5 + parent: 2 + - uid: 16523 components: - type: Transform - pos: 423.5,355.5 - parent: 1 - - uid: 2528 + pos: -58.5,-17.5 + parent: 2 + - uid: 16531 components: - type: Transform - pos: 424.5,382.5 - parent: 1 - - uid: 2540 + pos: -101.5,-47.5 + parent: 2 + - uid: 16534 components: - type: Transform - pos: 424.5,361.5 - parent: 1 - - uid: 2543 + pos: -101.5,-48.5 + parent: 2 + - uid: 16535 components: - type: Transform - pos: 424.5,358.5 - parent: 1 - - uid: 2544 + pos: -108.5,-34.5 + parent: 2 + - uid: 16536 components: - type: Transform - pos: 424.5,355.5 - parent: 1 - - uid: 2564 + pos: -58.5,-61.5 + parent: 2 + - uid: 16537 components: - type: Transform - pos: 425.5,395.5 - parent: 1 - - uid: 2578 + pos: -59.5,-61.5 + parent: 2 + - uid: 16538 components: - type: Transform - pos: 425.5,358.5 - parent: 1 - - uid: 2588 + pos: -56.5,-59.5 + parent: 2 + - uid: 16539 components: - type: Transform - pos: 426.5,383.5 - parent: 1 - - uid: 2629 + pos: -69.5,-63.5 + parent: 2 + - uid: 16540 components: - type: Transform - pos: 428.5,385.5 - parent: 1 - - uid: 2700 + pos: -62.5,-63.5 + parent: 2 + - uid: 16541 components: - type: Transform - pos: 431.5,388.5 - parent: 1 - - uid: 2723 + pos: -68.5,-63.5 + parent: 2 + - uid: 16542 components: - type: Transform - pos: 432.5,388.5 - parent: 1 - - uid: 2726 + pos: -57.5,-54.5 + parent: 2 + - uid: 16543 components: - type: Transform - pos: 433.5,417.5 - parent: 1 - - uid: 2764 + pos: -56.5,-53.5 + parent: 2 + - uid: 16544 components: - type: Transform - pos: 435.5,390.5 - parent: 1 - - uid: 2780 + pos: -56.5,-61.5 + parent: 2 + - uid: 16545 components: - type: Transform - pos: 436.5,375.5 - parent: 1 - - uid: 2796 + pos: -56.5,-60.5 + parent: 2 + - uid: 16546 components: - type: Transform - pos: 438.5,413.5 - parent: 1 - - uid: 2797 + pos: -62.5,-58.5 + parent: 2 + - uid: 16547 components: - type: Transform - pos: 438.5,412.5 - parent: 1 - - uid: 2798 + pos: -66.5,-58.5 + parent: 2 + - uid: 16549 components: - type: Transform - pos: 438.5,410.5 - parent: 1 - - uid: 2799 + pos: -67.5,-59.5 + parent: 2 + - uid: 16554 components: - type: Transform - pos: 438.5,409.5 - parent: 1 - - uid: 2804 + pos: -13.5,-20.5 + parent: 2 + - uid: 16558 components: - type: Transform - pos: 439.5,379.5 - parent: 1 - - uid: 2807 + pos: -13.5,-17.5 + parent: 2 + - uid: 16560 components: - type: Transform - pos: 439.5,372.5 - parent: 1 - - uid: 2827 + pos: -13.5,-16.5 + parent: 2 + - uid: 16562 components: - type: Transform - pos: 441.5,409.5 - parent: 1 - - uid: 2830 + pos: -13.5,-19.5 + parent: 2 + - uid: 16569 components: - type: Transform - pos: 441.5,400.5 - parent: 1 - - uid: 2831 + pos: -20.5,-37.5 + parent: 2 + - uid: 16570 components: - type: Transform - pos: 441.5,397.5 - parent: 1 - - uid: 2849 + rot: -1.5707963267948966 rad + pos: -114.5,22.5 + parent: 2 + - uid: 16571 components: - type: Transform - pos: 443.5,400.5 - parent: 1 - - uid: 2850 + pos: -21.5,-28.5 + parent: 2 + - uid: 16572 components: - type: Transform - pos: 443.5,397.5 - parent: 1 - - uid: 2877 + pos: -19.5,-28.5 + parent: 2 + - uid: 16573 components: - type: Transform - pos: 446.5,419.5 - parent: 1 - - uid: 2878 + pos: -17.5,-28.5 + parent: 2 + - uid: 16576 components: - type: Transform - pos: 446.5,417.5 - parent: 1 - - uid: 2899 + pos: -37.5,-69.5 + parent: 2 + - uid: 16578 components: - type: Transform - pos: 448.5,404.5 - parent: 1 - - uid: 2907 + pos: -2.5,-17.5 + parent: 2 + - uid: 16579 components: - type: Transform - pos: 450.5,409.5 - parent: 1 - - uid: 2908 + pos: -7.5,-18.5 + parent: 2 + - uid: 16580 components: - type: Transform - pos: 450.5,404.5 - parent: 1 - - uid: 2912 + pos: -7.5,-17.5 + parent: 2 + - uid: 16581 components: - type: Transform - pos: 451.5,417.5 - parent: 1 - - uid: 2913 + pos: -7.5,-19.5 + parent: 2 + - uid: 16582 components: - type: Transform - pos: 451.5,416.5 - parent: 1 - - uid: 2914 + pos: -8.5,-17.5 + parent: 2 + - uid: 16584 components: - type: Transform - pos: 451.5,415.5 - parent: 1 - - uid: 2915 + pos: -12.5,-17.5 + parent: 2 + - uid: 16586 components: - type: Transform - pos: 451.5,414.5 - parent: 1 - - uid: 2916 + pos: -9.5,-34.5 + parent: 2 + - uid: 16587 components: - type: Transform - pos: 451.5,413.5 - parent: 1 - - uid: 2917 + pos: -17.5,7.5 + parent: 2 + - uid: 16590 components: - type: Transform - pos: 451.5,409.5 - parent: 1 - - uid: 2918 + pos: -17.5,6.5 + parent: 2 + - uid: 16592 components: - type: Transform - pos: 451.5,408.5 - parent: 1 - - uid: 2919 + pos: -17.5,5.5 + parent: 2 + - uid: 16593 components: - type: Transform - pos: 451.5,405.5 - parent: 1 - - uid: 2920 + pos: -16.5,3.5 + parent: 2 + - uid: 16597 components: - type: Transform - pos: 451.5,404.5 - parent: 1 - - uid: 2921 + pos: -17.5,3.5 + parent: 2 + - uid: 16598 components: - type: Transform - pos: 451.5,403.5 - parent: 1 - - uid: 2922 + pos: -13.5,-26.5 + parent: 2 + - uid: 16599 components: - type: Transform - pos: 451.5,401.5 - parent: 1 - - uid: 2925 + pos: -10.5,-34.5 + parent: 2 + - uid: 16601 components: - type: Transform - pos: 452.5,417.5 - parent: 1 - - uid: 2939 + pos: -11.5,-34.5 + parent: 2 + - uid: 16626 components: - type: Transform - pos: 453.5,374.5 - parent: 1 - - uid: 2940 + pos: -13.5,-34.5 + parent: 2 + - uid: 16628 components: - type: Transform - pos: 453.5,373.5 - parent: 1 - - uid: 2941 + pos: -66.5,-59.5 + parent: 2 + - uid: 16718 components: - type: Transform - pos: 453.5,370.5 - parent: 1 - - uid: 2943 + pos: -13.5,-27.5 + parent: 2 + - uid: 16728 components: - type: Transform - pos: 454.5,416.5 - parent: 1 - - uid: 2946 + pos: -68.5,-61.5 + parent: 2 + - uid: 16733 components: - type: Transform - pos: 454.5,413.5 - parent: 1 - - uid: 2949 + pos: -65.5,-17.5 + parent: 2 + - uid: 16794 components: - type: Transform - pos: 455.5,409.5 - parent: 1 - - uid: 2950 + rot: -1.5707963267948966 rad + pos: -73.5,-36.5 + parent: 2 + - uid: 16799 components: - type: Transform - pos: 455.5,408.5 - parent: 1 - - uid: 2951 + pos: -13.5,-28.5 + parent: 2 + - uid: 16832 components: - type: Transform - pos: 455.5,405.5 - parent: 1 - - uid: 2952 + pos: -69.5,-61.5 + parent: 2 + - uid: 16833 components: - type: Transform - pos: 455.5,404.5 - parent: 1 - - uid: 2953 + pos: -69.5,-58.5 + parent: 2 + - uid: 16838 components: - type: Transform - pos: 455.5,403.5 - parent: 1 - - uid: 2954 + pos: -13.5,-31.5 + parent: 2 + - uid: 16839 components: - type: Transform - pos: 455.5,401.5 - parent: 1 - - uid: 2959 + pos: -13.5,-33.5 + parent: 2 + - uid: 16854 components: - type: Transform - pos: 456.5,404.5 - parent: 1 - - uid: 3028 + pos: -12.5,-37.5 + parent: 2 + - uid: 16855 components: - type: Transform - pos: 478.5,378.5 - parent: 1 - - uid: 3029 + rot: -1.5707963267948966 rad + pos: -107.5,26.5 + parent: 2 + - uid: 16865 components: - type: Transform - pos: 478.5,376.5 - parent: 1 - - uid: 3033 + pos: -31.5,-54.5 + parent: 2 + - uid: 16871 components: - type: Transform - pos: 479.5,378.5 - parent: 1 - - uid: 3034 + pos: -69.5,-59.5 + parent: 2 + - uid: 16873 components: - type: Transform - pos: 479.5,377.5 - parent: 1 - - uid: 3035 + rot: -1.5707963267948966 rad + pos: -108.5,26.5 + parent: 2 + - uid: 16874 components: - type: Transform - pos: 479.5,376.5 - parent: 1 - - uid: 3039 + pos: -31.5,-55.5 + parent: 2 + - uid: 16876 components: - type: Transform - pos: 480.5,377.5 - parent: 1 - - uid: 3040 + pos: -69.5,-60.5 + parent: 2 + - uid: 16879 components: - type: Transform - pos: 480.5,373.5 - parent: 1 - - uid: 3059 + pos: -67.5,-63.5 + parent: 2 + - uid: 16883 components: - type: Transform - pos: 498.5,383.5 - parent: 1 - - uid: 3068 + pos: -32.5,-55.5 + parent: 2 + - uid: 16941 components: - type: Transform - pos: 501.5,387.5 - parent: 1 - - uid: 3070 + pos: -63.5,-58.5 + parent: 2 + - uid: 16944 components: - type: Transform - pos: 501.5,384.5 - parent: 1 - - uid: 3080 + pos: -40.5,-52.5 + parent: 2 + - uid: 16946 components: - type: Transform - pos: 503.5,387.5 - parent: 1 - - uid: 3087 + pos: -39.5,-61.5 + parent: 2 + - uid: 16954 components: - type: Transform - pos: 506.5,391.5 - parent: 1 - - uid: 3094 + pos: -23.5,-63.5 + parent: 2 + - uid: 16990 components: - type: Transform - pos: 507.5,387.5 - parent: 1 - - uid: 3109 + pos: -39.5,-55.5 + parent: 2 + - uid: 16993 components: - type: Transform - pos: 511.5,390.5 - parent: 1 - - uid: 3110 + pos: -40.5,-55.5 + parent: 2 + - uid: 17001 components: - type: Transform - pos: 511.5,388.5 - parent: 1 - - uid: 3114 + pos: -23.5,-65.5 + parent: 2 + - uid: 17011 components: - type: Transform - pos: 511.5,383.5 - parent: 1 - - uid: 3174 + pos: -91.5,31.5 + parent: 2 + - uid: 17012 components: - type: Transform - pos: 424.5,395.5 - parent: 1 - - uid: 3176 + pos: -38.5,-55.5 + parent: 2 + - uid: 17013 components: - type: Transform - pos: 447.5,420.5 - parent: 1 - - uid: 3177 + rot: 1.5707963267948966 rad + pos: -74.5,-36.5 + parent: 2 + - uid: 17014 components: - type: Transform - pos: 449.5,420.5 - parent: 1 - - uid: 3178 + pos: -40.5,-56.5 + parent: 2 + - uid: 17018 components: - type: Transform - pos: 448.5,420.5 - parent: 1 - - uid: 3179 + pos: -40.5,-58.5 + parent: 2 + - uid: 17020 components: - type: Transform - pos: 452.5,420.5 - parent: 1 - - uid: 3181 + pos: -35.5,-58.5 + parent: 2 + - uid: 17039 components: - type: Transform - pos: 449.5,421.5 - parent: 1 - - uid: 3455 + pos: -23.5,-62.5 + parent: 2 + - uid: 17040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,425.5 - parent: 1 - - uid: 3456 + pos: -23.5,-61.5 + parent: 2 + - uid: 17048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 337.5,425.5 - parent: 1 - - uid: 3457 + pos: -24.5,-61.5 + parent: 2 + - uid: 17067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 340.5,425.5 - parent: 1 - - uid: 3458 + pos: -14.5,3.5 + parent: 2 + - uid: 17072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 343.5,425.5 - parent: 1 - - uid: 3776 + pos: -41.5,-65.5 + parent: 2 + - uid: 17074 components: - type: Transform - pos: 439.5,409.5 - parent: 1 - - uid: 3851 + pos: -39.5,-58.5 + parent: 2 + - uid: 17080 components: - type: Transform - rot: 3.141592653589793 rad - pos: 336.5,397.5 - parent: 1 - - uid: 4541 + pos: -36.5,-58.5 + parent: 2 + - uid: 17083 components: - type: Transform - pos: 409.5,364.5 - parent: 1 - - uid: 5561 + pos: -34.5,-58.5 + parent: 2 + - uid: 17097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 333.5,443.5 - parent: 1 - - uid: 5609 + pos: -40.5,-61.5 + parent: 2 + - uid: 17099 components: - type: Transform - pos: 410.5,364.5 - parent: 1 - - uid: 5632 + pos: -36.5,-57.5 + parent: 2 + - uid: 17103 components: - type: Transform - pos: 412.5,364.5 - parent: 1 - - uid: 5634 + pos: -62.5,-59.5 + parent: 2 + - uid: 17104 components: - type: Transform - pos: 413.5,364.5 - parent: 1 - - uid: 5637 + pos: -60.5,-59.5 + parent: 2 + - uid: 17106 components: - type: Transform - pos: 413.5,363.5 - parent: 1 - - uid: 5641 + pos: -108.5,-33.5 + parent: 2 + - uid: 17107 components: - type: Transform - pos: 413.5,361.5 - parent: 1 - - uid: 5648 + pos: -61.5,-63.5 + parent: 2 + - uid: 17111 components: - type: Transform - pos: 369.5,382.5 - parent: 1 - - uid: 5809 + pos: -74.5,-58.5 + parent: 2 + - uid: 17113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 336.5,443.5 - parent: 1 - - uid: 6059 + pos: -31.5,-69.5 + parent: 2 + - uid: 17116 components: - type: Transform - pos: 413.5,376.5 - parent: 1 - - uid: 6087 + pos: -25.5,-69.5 + parent: 2 + - uid: 17118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 341.5,443.5 - parent: 1 - - uid: 12926 + pos: -23.5,-68.5 + parent: 2 + - uid: 17139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 415.5,361.5 - parent: 1 - - uid: 13801 + pos: -23.5,-66.5 + parent: 2 + - uid: 17141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,360.5 - parent: 1 - - uid: 13804 + pos: -30.5,-69.5 + parent: 2 + - uid: 17142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 424.5,359.5 - parent: 1 - - uid: 13805 + pos: -23.5,-67.5 + parent: 2 + - uid: 17155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 422.5,359.5 - parent: 1 - - uid: 14408 + pos: -32.5,-61.5 + parent: 2 + - uid: 17167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 425.5,391.5 - parent: 1 - - uid: 14637 + pos: -27.5,-61.5 + parent: 2 + - uid: 17170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,390.5 - parent: 1 - - uid: 14638 + pos: -37.5,-61.5 + parent: 2 + - uid: 17172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,388.5 - parent: 1 - - uid: 14639 + pos: -31.5,-64.5 + parent: 2 + - uid: 17173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,386.5 - parent: 1 - - uid: 14934 + pos: -32.5,-58.5 + parent: 2 + - uid: 17174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,382.5 - parent: 1 - - uid: 14935 + pos: -31.5,-58.5 + parent: 2 + - uid: 17177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 391.5,380.5 - parent: 1 - - uid: 15298 + pos: -31.5,-57.5 + parent: 2 + - uid: 17202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 334.5,450.5 - parent: 1 - - uid: 15940 + pos: -31.5,-61.5 + parent: 2 + - uid: 17203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,390.5 - parent: 1 - - uid: 15941 + pos: -31.5,-62.5 + parent: 2 + - uid: 17210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,388.5 - parent: 1 - - uid: 16402 + pos: -40.5,-64.5 + parent: 2 + - uid: 17212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,386.5 - parent: 1 - - uid: 16483 + pos: -40.5,-65.5 + parent: 2 + - uid: 17219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,382.5 - parent: 1 - - uid: 17027 + pos: -39.5,-68.5 + parent: 2 + - uid: 17231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 403.5,380.5 - parent: 1 - - uid: 21400 + pos: -59.5,-64.5 + parent: 2 + - uid: 17232 components: - type: Transform - pos: 1.5,29.5 - parent: 5072 - - uid: 21484 + pos: -109.5,-34.5 + parent: 2 + - uid: 17233 components: - type: Transform - pos: 9.5,24.5 - parent: 5072 - - uid: 21541 + pos: -115.5,-33.5 + parent: 2 + - uid: 17235 components: - type: Transform - pos: 5.5,29.5 - parent: 5072 - - uid: 21599 + pos: -115.5,-32.5 + parent: 2 + - uid: 17256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,25.5 - parent: 5072 -- proto: WallSolidDiagonal - entities: - - uid: 3676 + pos: -59.5,-17.5 + parent: 2 + - uid: 17400 components: - type: Transform - pos: 382.5,408.5 - parent: 1 - - uid: 3678 + pos: -115.5,-30.5 + parent: 2 + - uid: 17402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 376.5,408.5 - parent: 1 - - uid: 18395 + pos: -115.5,-29.5 + parent: 2 + - uid: 17403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 359.5,423.5 - parent: 1 -- proto: WallSolidRust - entities: - - uid: 2546 + pos: -115.5,-31.5 + parent: 2 + - uid: 17407 components: - type: Transform - pos: 324.5,434.5 - parent: 1 - - uid: 2571 + pos: -74.5,-53.5 + parent: 2 + - uid: 17408 components: - type: Transform - pos: 331.5,435.5 - parent: 1 - - uid: 2572 + pos: -77.5,-59.5 + parent: 2 + - uid: 17409 components: - type: Transform - pos: 332.5,391.5 - parent: 1 - - uid: 2589 + pos: -77.5,-58.5 + parent: 2 + - uid: 17414 components: - type: Transform - pos: 333.5,389.5 - parent: 1 - - uid: 2590 + rot: -1.5707963267948966 rad + pos: -111.5,26.5 + parent: 2 + - uid: 17517 components: - type: Transform - pos: 334.5,389.5 - parent: 1 - - uid: 2615 + pos: -46.5,-65.5 + parent: 2 + - uid: 17518 components: - type: Transform - pos: 334.5,387.5 - parent: 1 - - uid: 2616 + pos: -74.5,-64.5 + parent: 2 + - uid: 18150 components: - type: Transform - pos: 335.5,434.5 - parent: 1 - - uid: 2619 + rot: -1.5707963267948966 rad + pos: -106.5,27.5 + parent: 2 + - uid: 18151 components: - type: Transform - pos: 336.5,390.5 - parent: 1 - - uid: 2620 + rot: -1.5707963267948966 rad + pos: -106.5,28.5 + parent: 2 + - uid: 18152 components: - type: Transform - pos: 336.5,389.5 - parent: 1 - - uid: 2635 + rot: -1.5707963267948966 rad + pos: -111.5,31.5 + parent: 2 + - uid: 18153 components: - type: Transform - pos: 336.5,384.5 - parent: 1 - - uid: 2663 + rot: -1.5707963267948966 rad + pos: -111.5,29.5 + parent: 2 + - uid: 18727 components: - type: Transform - pos: 337.5,437.5 - parent: 1 - - uid: 2665 + pos: -40.5,-68.5 + parent: 2 + - uid: 18748 components: - type: Transform - pos: 337.5,386.5 - parent: 1 - - uid: 2668 + pos: -36.5,-68.5 + parent: 2 + - uid: 18866 components: - type: Transform - pos: 337.5,385.5 - parent: 1 - - uid: 2685 + rot: -1.5707963267948966 rad + pos: -111.5,28.5 + parent: 2 + - uid: 18925 components: - type: Transform - pos: 337.5,384.5 - parent: 1 - - uid: 2727 + rot: -1.5707963267948966 rad + pos: -111.5,27.5 + parent: 2 + - uid: 19159 components: - type: Transform - pos: 337.5,383.5 - parent: 1 - - uid: 2731 + rot: 3.141592653589793 rad + pos: -90.5,31.5 + parent: 2 + - uid: 19313 components: - type: Transform - pos: 338.5,385.5 - parent: 1 - - uid: 2740 + rot: -1.5707963267948966 rad + pos: -105.5,28.5 + parent: 2 + - uid: 19315 components: - type: Transform - pos: 340.5,437.5 - parent: 1 - - uid: 2754 + rot: -1.5707963267948966 rad + pos: -105.5,29.5 + parent: 2 + - uid: 19328 components: - type: Transform - pos: 340.5,436.5 - parent: 1 - - uid: 2763 + pos: -84.5,13.5 + parent: 2 + - uid: 19469 components: - type: Transform - pos: 340.5,434.5 - parent: 1 - - uid: 2776 + pos: -50.5,-39.5 + parent: 2 + - uid: 19475 components: - type: Transform - pos: 342.5,434.5 - parent: 1 - - uid: 2785 + rot: -1.5707963267948966 rad + pos: -72.5,-59.5 + parent: 2 + - uid: 19628 components: - type: Transform - pos: 343.5,437.5 - parent: 1 - - uid: 2790 + pos: -103.5,28.5 + parent: 2 + - uid: 19631 components: - type: Transform - pos: 345.5,435.5 - parent: 1 - - uid: 2791 + pos: -103.5,30.5 + parent: 2 + - uid: 19754 components: - type: Transform - pos: 345.5,434.5 - parent: 1 - - uid: 2801 + pos: -76.5,-20.5 + parent: 2 + - uid: 19766 components: - type: Transform - pos: 346.5,436.5 - parent: 1 - - uid: 2810 + pos: -67.5,-22.5 + parent: 2 + - uid: 19794 components: - type: Transform - pos: 351.5,438.5 - parent: 1 - - uid: 2811 + pos: -67.5,-20.5 + parent: 2 + - uid: 19800 components: - type: Transform - pos: 355.5,410.5 - parent: 1 - - uid: 3072 + rot: -1.5707963267948966 rad + pos: -105.5,31.5 + parent: 2 + - uid: 20024 components: - type: Transform - pos: 355.5,407.5 - parent: 1 - - uid: 3105 + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 2 + - uid: 20025 components: - type: Transform - pos: 356.5,430.5 - parent: 1 - - uid: 3510 + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 20299 components: - type: Transform - pos: 356.5,429.5 - parent: 1 - - uid: 3724 + pos: -89.5,3.5 + parent: 2 + - uid: 21011 components: - type: Transform - pos: 356.5,425.5 - parent: 1 - - uid: 4328 + pos: -31.5,8.5 + parent: 2 + - uid: 21035 components: - type: Transform - pos: 356.5,411.5 - parent: 1 - - uid: 4329 + pos: -117.5,-13.5 + parent: 2 + - uid: 21038 components: - type: Transform - pos: 356.5,410.5 - parent: 1 - - uid: 4336 + pos: -22.5,10.5 + parent: 2 + - uid: 21039 components: - type: Transform - pos: 356.5,407.5 - parent: 1 - - uid: 4339 + pos: -22.5,14.5 + parent: 2 + - uid: 21040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 498.5,387.5 - parent: 1 - - uid: 4341 + pos: -22.5,19.5 + parent: 2 + - uid: 21041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 498.5,385.5 - parent: 1 - - uid: 4500 + pos: -21.5,15.5 + parent: 2 + - uid: 21042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 499.5,387.5 - parent: 1 - - uid: 4561 + pos: -20.5,15.5 + parent: 2 + - uid: 21044 components: - type: Transform - pos: 357.5,429.5 - parent: 1 - - uid: 4562 + pos: -22.5,15.5 + parent: 2 + - uid: 21060 components: - type: Transform - pos: 357.5,408.5 - parent: 1 - - uid: 4836 + pos: -31.5,-68.5 + parent: 2 + - uid: 21374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 501.5,391.5 - parent: 1 - - uid: 5150 + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 21376 components: - type: Transform - pos: 357.5,407.5 - parent: 1 - - uid: 5462 + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 2 + - uid: 21380 components: - type: Transform - pos: 358.5,410.5 - parent: 1 - - uid: 5557 + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + - uid: 21416 components: - type: Transform - pos: 340.5,443.5 - parent: 1 - - uid: 5647 + pos: -18.5,15.5 + parent: 2 + - uid: 21425 components: - type: Transform - pos: 373.5,383.5 - parent: 1 - - uid: 5650 + pos: -32.5,13.5 + parent: 2 + - uid: 21454 components: - type: Transform - pos: 369.5,385.5 - parent: 1 - - uid: 5683 + rot: -1.5707963267948966 rad + pos: -70.5,-27.5 + parent: 2 + - uid: 21518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 501.5,386.5 - parent: 1 - - uid: 5731 + pos: -63.5,-17.5 + parent: 2 + - uid: 21573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 502.5,391.5 - parent: 1 - - uid: 5732 + pos: -26.5,13.5 + parent: 2 + - uid: 21723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 502.5,387.5 - parent: 1 - - uid: 5807 + pos: -32.5,18.5 + parent: 2 + - uid: 22150 components: - type: Transform - pos: 337.5,443.5 - parent: 1 - - uid: 5823 + pos: -18.5,-0.5 + parent: 2 + - uid: 22179 components: - type: Transform - pos: 335.5,443.5 - parent: 1 - - uid: 5965 + rot: 3.141592653589793 rad + pos: -13.5,1.5 + parent: 2 + - uid: 22190 components: - type: Transform - pos: 399.5,423.5 - parent: 1 - - uid: 6088 + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - uid: 22260 components: - type: Transform - pos: 334.5,443.5 - parent: 1 - - uid: 6299 + pos: -26.5,18.5 + parent: 2 + - uid: 22350 components: - type: Transform - pos: 400.5,419.5 - parent: 1 - - uid: 6300 + pos: -38.5,-46.5 + parent: 2 + - uid: 22360 components: - type: Transform - pos: 402.5,412.5 - parent: 1 - - uid: 6301 + rot: 1.5707963267948966 rad + pos: -67.5,-28.5 + parent: 2 + - uid: 22364 components: - type: Transform - pos: 403.5,366.5 - parent: 1 - - uid: 6302 + pos: -31.5,-46.5 + parent: 2 + - uid: 22366 components: - type: Transform - pos: 406.5,425.5 - parent: 1 - - uid: 6303 + rot: 1.5707963267948966 rad + pos: -66.5,-26.5 + parent: 2 + - uid: 22577 components: - type: Transform - pos: 406.5,419.5 - parent: 1 - - uid: 6304 + rot: 1.5707963267948966 rad + pos: -105.5,-21.5 + parent: 2 + - uid: 22643 components: - type: Transform - pos: 412.5,426.5 - parent: 1 - - uid: 6305 + rot: -1.5707963267948966 rad + pos: -97.5,21.5 + parent: 2 + - uid: 22935 components: - type: Transform - pos: 414.5,426.5 - parent: 1 - - uid: 6306 + pos: -31.5,-67.5 + parent: 2 + - uid: 22958 components: - type: Transform - pos: 414.5,425.5 - parent: 1 - - uid: 6307 + rot: 1.5707963267948966 rad + pos: -97.5,19.5 + parent: 2 + - uid: 23160 components: - type: Transform - pos: 420.5,385.5 - parent: 1 - - uid: 6308 + pos: -74.5,-52.5 + parent: 2 + - uid: 23196 components: - type: Transform - pos: 420.5,380.5 - parent: 1 - - uid: 6699 + pos: -44.5,-23.5 + parent: 2 + - uid: 23291 components: - type: Transform - pos: 421.5,372.5 - parent: 1 - - uid: 6701 + rot: 3.141592653589793 rad + pos: -104.5,13.5 + parent: 2 + - uid: 23317 components: - type: Transform - pos: 423.5,373.5 - parent: 1 - - uid: 7589 + rot: 3.141592653589793 rad + pos: -104.5,17.5 + parent: 2 + - uid: 23356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 504.5,391.5 - parent: 1 - - uid: 8370 + rot: 1.5707963267948966 rad + pos: -73.5,-18.5 + parent: 2 + - uid: 23365 components: - type: Transform - pos: 423.5,372.5 - parent: 1 - - uid: 8371 + pos: -50.5,-36.5 + parent: 2 + - uid: 23369 components: - type: Transform - pos: 424.5,383.5 - parent: 1 - - uid: 8435 + rot: 1.5707963267948966 rad + pos: -73.5,-20.5 + parent: 2 + - uid: 23414 components: - type: Transform - pos: 425.5,384.5 - parent: 1 - - uid: 9090 + rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 23416 components: - type: Transform - pos: 425.5,383.5 - parent: 1 - - uid: 11891 + rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 23447 components: - type: Transform - pos: 426.5,382.5 - parent: 1 - - uid: 14028 + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 2 + - uid: 23502 components: - type: Transform - pos: 428.5,418.5 - parent: 1 - - uid: 15832 + rot: 3.141592653589793 rad + pos: -103.5,24.5 + parent: 2 + - uid: 23658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,390.5 - parent: 1 - - uid: 15833 + pos: -67.5,-21.5 + parent: 2 + - uid: 23742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,389.5 - parent: 1 - - uid: 15834 + pos: -20.5,-6.5 + parent: 2 + - uid: 23782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,388.5 - parent: 1 - - uid: 15835 + pos: -50.5,-38.5 + parent: 2 + - uid: 23868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 507.5,384.5 - parent: 1 - - uid: 15841 + pos: -76.5,-23.5 + parent: 2 + - uid: 23869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 510.5,391.5 - parent: 1 - - uid: 15843 + pos: -74.5,-23.5 + parent: 2 + - uid: 23879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 511.5,391.5 - parent: 1 - - uid: 15844 + rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 23880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 511.5,384.5 - parent: 1 - - uid: 15882 + rot: 3.141592653589793 rad + pos: -18.5,-7.5 + parent: 2 + - uid: 23892 components: - type: Transform - pos: 359.5,418.5 - parent: 1 - - uid: 17317 + rot: 1.5707963267948966 rad + pos: -73.5,-22.5 + parent: 2 + - uid: 23957 components: - type: Transform - pos: 406.5,378.5 - parent: 1 - - uid: 18216 + pos: -117.5,19.5 + parent: 2 + - uid: 23958 components: - type: Transform - pos: 431.5,419.5 - parent: 1 - - uid: 18233 + pos: -115.5,23.5 + parent: 2 + - uid: 23959 components: - type: Transform - pos: 433.5,416.5 - parent: 1 - - uid: 18293 + pos: -117.5,23.5 + parent: 2 + - uid: 23960 components: - type: Transform - pos: 433.5,398.5 - parent: 1 - - uid: 18294 + pos: -117.5,22.5 + parent: 2 + - uid: 23961 components: - type: Transform - pos: 434.5,394.5 - parent: 1 - - uid: 18295 + pos: -124.5,20.5 + parent: 2 + - uid: 23962 components: - type: Transform - pos: 435.5,394.5 - parent: 1 - - uid: 18356 + pos: -124.5,22.5 + parent: 2 + - uid: 23963 components: - type: Transform - pos: 371.5,382.5 - parent: 1 - - uid: 19198 + pos: -124.5,23.5 + parent: 2 + - uid: 23964 components: - type: Transform - pos: 372.5,386.5 - parent: 1 - - uid: 21447 + pos: -124.5,21.5 + parent: 2 + - uid: 23965 components: - type: Transform - pos: 9.5,23.5 - parent: 5072 - - uid: 21572 + pos: -122.5,23.5 + parent: 2 + - uid: 23974 components: - type: Transform - pos: 9.5,26.5 - parent: 5072 - - uid: 21620 + pos: -121.5,23.5 + parent: 2 + - uid: 24454 components: - type: Transform - pos: 11.5,26.5 - parent: 5072 -- proto: WallWeaponCapacitorRecharger + pos: -82.5,3.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: -81.5,3.5 + parent: 2 +- proto: WardrobeCargoFilled entities: - - uid: 5093 + - uid: 4638 components: - type: Transform - pos: 421.5,394.5 - parent: 1 - - uid: 5094 + pos: -92.5,10.5 + parent: 2 + - uid: 4646 components: - type: Transform - pos: 422.5,406.5 - parent: 1 -- proto: WardrobeAtmosphericsFilled - entities: - - uid: 6281 + pos: -92.5,8.5 + parent: 2 + - uid: 4647 components: - type: Transform - pos: 343.5,413.5 - parent: 1 -- proto: WardrobeBlackFilled - entities: - - uid: 6037 + pos: -92.5,9.5 + parent: 2 + - uid: 4700 components: - type: Transform - pos: 410.5,376.5 - parent: 1 -- proto: WardrobeBlueFilled + pos: -92.5,11.5 + parent: 2 +- proto: WardrobeChapelFilled entities: - - uid: 6061 + - uid: 3877 components: - type: Transform - pos: 408.5,376.5 - parent: 1 -- proto: WardrobeEngineeringFilled + pos: -44.5,-49.5 + parent: 2 +- proto: WardrobeGeneticsFilled entities: - - uid: 6691 + - uid: 4196 components: - type: Transform - pos: 329.5,410.5 - parent: 1 -- proto: WardrobeFormal + pos: -17.5,-27.5 + parent: 2 +- proto: WardrobeGreyFilled entities: - - uid: 6036 + - uid: 1792 components: - type: Transform - pos: 419.5,373.5 - parent: 1 -- proto: WardrobeGreenFilled - entities: - - uid: 6035 + pos: -68.5,-52.5 + parent: 2 + - uid: 2575 components: - type: Transform - pos: 418.5,373.5 - parent: 1 + pos: -68.5,-78.5 + parent: 2 + - uid: 22478 + components: + - type: Transform + pos: -66.5,-78.5 + parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 6038 + - uid: 3777 components: - type: Transform - pos: 409.5,376.5 - parent: 1 -- proto: WardrobePinkFilled - entities: - - uid: 6060 + pos: -67.5,-52.5 + parent: 2 + - uid: 24670 components: - type: Transform - pos: 407.5,376.5 - parent: 1 + pos: -68.5,-22.5 + parent: 2 - proto: WardrobePrisonFilled entities: - - uid: 5034 - components: - - type: Transform - pos: 426.5,405.5 - parent: 1 - - uid: 5035 + - uid: 6499 components: - type: Transform - pos: 426.5,404.5 - parent: 1 - - uid: 5228 + pos: -86.5,-41.5 + parent: 2 + - uid: 6725 components: - type: Transform - pos: 446.5,404.5 - parent: 1 - - uid: 5229 + pos: -90.5,-41.5 + parent: 2 + - uid: 6824 components: - type: Transform - pos: 446.5,406.5 - parent: 1 - - uid: 5230 + pos: -100.5,-26.5 + parent: 2 + - uid: 7036 components: - type: Transform - pos: 446.5,405.5 - parent: 1 - - uid: 6117 + pos: -100.5,-22.5 + parent: 2 + - uid: 7038 components: - type: Transform - pos: 426.5,402.5 - parent: 1 - - uid: 6118 + pos: -100.5,-30.5 + parent: 2 +- proto: WardrobeRoboticsFilled + entities: + - uid: 17330 components: - type: Transform - pos: 426.5,401.5 - parent: 1 + pos: -126.5,-51.5 + parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 5644 + - uid: 9825 components: - type: Transform - pos: 360.5,382.5 - parent: 1 + pos: -96.5,30.5 + parent: 2 - proto: WardrobeVirologyFilled entities: - - uid: 15326 + - uid: 4170 components: - type: Transform - pos: 417.5,420.5 - parent: 1 + pos: -25.5,-52.5 + parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 6032 + - uid: 3691 components: - type: Transform - pos: 412.5,373.5 - parent: 1 -- proto: WardrobeYellowFilled + pos: -66.5,-52.5 + parent: 2 +- proto: WarningAir entities: - - uid: 6034 + - uid: 5468 components: - type: Transform - pos: 417.5,373.5 - parent: 1 + pos: -126.5,14.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: -118.5,18.5 + parent: 2 - proto: WarningCO2 entities: - - uid: 6384 + - uid: 10443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 343.5,428.5 - parent: 1 + pos: -126.5,8.5 + parent: 2 - proto: WarningN2 entities: - - uid: 6375 + - uid: 5353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 334.5,428.5 - parent: 1 - - uid: 20523 + pos: -126.5,12.5 + parent: 2 +- proto: WarningN2O + entities: + - uid: 9938 components: - type: Transform - pos: 2.5,-0.5 - parent: 20181 + pos: -126.5,2.5 + parent: 2 - proto: WarningO2 entities: - - uid: 6374 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 331.5,428.5 - parent: 1 - - uid: 20524 + - uid: 9947 components: - type: Transform - pos: 0.5,-0.5 - parent: 20181 + pos: -126.5,10.5 + parent: 2 - proto: WarningPlasma entities: - - uid: 6377 + - uid: 5386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 337.5,428.5 - parent: 1 -- proto: WarningTritium - entities: - - uid: 6383 + rot: -1.5707963267948966 rad + pos: -114.5,4.5 + parent: 2 + - uid: 5650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 346.5,428.5 - parent: 1 -- proto: WarpPoint + rot: 3.141592653589793 rad + pos: -135.5,-11.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -118.5,-1.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -132.5,-11.5 + parent: 2 +- proto: WarningTritium entities: - - uid: 20036 + - uid: 9914 components: - - type: MetaData - name: Cute Installation - type: Transform - pos: 404.5,409.5 - parent: 1 -- proto: WarpPointBombing + pos: -126.5,4.5 + parent: 2 +- proto: WarningWaste entities: - - uid: 15537 + - uid: 5647 components: - - type: MetaData - name: Спальня ГВ - type: Transform - pos: 393.5,414.5 - parent: 1 - - type: WarpPoint - location: Спальня ГВ - - uid: 15538 + pos: -120.5,18.5 + parent: 2 + - uid: 5648 components: - - type: MetaData - name: Кабинет клоуна - type: Transform - pos: 390.5,411.5 - parent: 1 - - type: WarpPoint - location: Спальня клоуна - - uid: 15539 + rot: 3.141592653589793 rad + pos: -120.5,-1.5 + parent: 2 + - uid: 5649 components: - - type: MetaData - name: Кабинет ГП - type: Transform - pos: 366.5,396.5 - parent: 1 - - type: WarpPoint - location: Стойка ГП - - uid: 15541 + rot: 3.141592653589793 rad + pos: -135.5,-9.5 + parent: 2 + - uid: 5895 components: - - type: MetaData - name: Серверная - type: Transform - pos: 307.5,424.5 - parent: 1 - - type: WarpPoint - location: Серверная - - uid: 15542 + rot: 3.141592653589793 rad + pos: -132.5,-9.5 + parent: 2 + - uid: 9935 components: - type: MetaData - name: Мусорка + desc: WARNING! Water flow tube. Ensure flow is disengaged before working. + name: Water warning sign - type: Transform - pos: 328.5,440.5 - parent: 1 - - type: WarpPoint - location: Мусорка + pos: -126.5,6.5 + parent: 2 - proto: WaterCooler entities: - - uid: 5401 + - uid: 1329 components: - type: Transform - pos: 418.5,355.5 - parent: 1 - - uid: 21823 + pos: -113.5,-24.5 + parent: 2 + - uid: 4668 components: - type: Transform - pos: -2.5,31.5 - parent: 5072 -- proto: WatermelonSeeds - entities: - - uid: 4974 + pos: -96.5,8.5 + parent: 2 + - uid: 6036 components: - type: Transform - pos: 412.5,379.5 - parent: 1 - - uid: 20864 + pos: -34.5,-46.5 + parent: 2 + - uid: 6825 components: - type: Transform - pos: 453.5,401.5 - parent: 1 + pos: -90.5,-29.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -124.5,-47.5 + parent: 2 + - uid: 22384 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 - proto: WaterTankFull entities: - - uid: 18601 + - uid: 4389 components: - type: Transform - pos: 353.5,433.5 - parent: 1 - - uid: 18737 + pos: -21.5,-8.5 + parent: 2 + - uid: 6319 components: - type: Transform - pos: 421.5,367.5 - parent: 1 - - uid: 19004 + pos: -107.5,-16.5 + parent: 2 + - uid: 6322 components: - type: Transform - pos: 332.5,393.5 - parent: 1 - - uid: 22100 + pos: -116.5,-0.5 + parent: 2 + - uid: 9611 components: - type: Transform - pos: 338.5,434.5 - parent: 1 - - uid: 22101 + pos: -114.5,-12.5 + parent: 2 + - uid: 9672 components: - type: Transform - pos: 335.5,437.5 - parent: 1 - - uid: 22102 + pos: -18.5,0.5 + parent: 2 + - uid: 13667 components: - type: Transform - pos: 348.5,438.5 - parent: 1 - - uid: 22103 + pos: -136.5,-35.5 + parent: 2 + - uid: 14647 components: - type: Transform - pos: 355.5,434.5 - parent: 1 -- proto: WaterTankHighCapacity - entities: - - uid: 562 + pos: -14.5,-6.5 + parent: 2 + - uid: 15330 components: - type: Transform - pos: 414.5,381.5 - parent: 1 - - uid: 22146 + pos: -32.5,5.5 + parent: 2 + - uid: 20727 components: - type: Transform - pos: 411.5,363.5 - parent: 1 -- proto: WaterVaporCanister - entities: - - uid: 6380 + pos: -74.5,-62.5 + parent: 2 + - uid: 20730 components: - type: Transform - pos: 339.5,430.5 - parent: 1 - - uid: 7380 + pos: -67.5,-64.5 + parent: 2 + - uid: 22008 components: - type: Transform - pos: 323.5,416.5 - parent: 1 - - uid: 20525 + pos: -119.5,-32.5 + parent: 2 + - uid: 23406 components: - type: Transform - pos: 3.5,-1.5 - parent: 20181 -- proto: WeaponCapacitorRecharger - entities: - - uid: 5092 + pos: -95.5,4.5 + parent: 2 + - uid: 26121 components: - type: Transform - pos: 424.5,397.5 - parent: 1 - - uid: 5770 + pos: -123.5,24.5 + parent: 2 + - uid: 26160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,409.5 - parent: 1 - - uid: 6004 + pos: -80.5,-1.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 354.5,391.5 - parent: 1 - - uid: 6007 + pos: -47.5,-18.5 + parent: 2 + - uid: 20493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 329.5,402.5 - parent: 1 - - uid: 6114 + pos: -41.5,-17.5 + parent: 2 + - uid: 22641 components: - type: Transform - pos: 419.5,409.5 - parent: 1 - - uid: 10272 + pos: -17.5,-1.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 5274 components: - type: Transform - pos: 387.5,416.5 - parent: 1 - - uid: 15048 + pos: -107.5,14.5 + parent: 2 + - uid: 5804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 363.5,406.5 - parent: 1 - - uid: 17523 + pos: -107.5,15.5 + parent: 2 + - uid: 18806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,379.5 - parent: 1 - - uid: 21503 + pos: -129.5,5.5 + parent: 2 + - uid: 18945 components: - type: Transform - pos: 2.5,31.5 - parent: 5072 - - type: Physics - canCollide: False -- proto: WeaponDisabler + pos: -136.5,-3.5 + parent: 2 +- proto: WeaponCapacitorRecharger entities: - - uid: 5017 + - uid: 6673 components: - type: Transform - pos: 419.5,406.5 - parent: 1 - - uid: 16379 + rot: 3.141592653589793 rad + pos: -90.5,-24.5 + parent: 2 + - uid: 6717 components: - type: Transform - pos: 419.5,411.5 - parent: 1 - - uid: 16380 + rot: -1.5707963267948966 rad + pos: -93.5,-28.5 + parent: 2 + - uid: 6722 components: - type: Transform - pos: 419.5,411.5 - parent: 1 - - uid: 16381 + pos: -88.5,-26.5 + parent: 2 + - uid: 6786 components: - type: Transform - pos: 419.5,411.5 - parent: 1 -- proto: WeaponDisablerPractice - entities: - - uid: 5263 + pos: -67.5,7.5 + parent: 2 + - uid: 6874 components: - type: Transform - pos: 459.5,416.5 - parent: 1 -- proto: WeaponFlareGun - entities: - - uid: 18705 + pos: -88.5,-25.5 + parent: 2 + - uid: 22082 components: - type: Transform - pos: 425.5,382.5 - parent: 1 -- proto: WeaponLaserCannon - entities: - - uid: 5514 + pos: -89.5,-22.5 + parent: 2 + - uid: 22969 components: - type: Transform - pos: 1.5,3.5 - parent: 16114 -- proto: WeaponLaserCarbinePractice + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 +- proto: WeaponDisabler entities: - - uid: 7472 + - uid: 2372 components: - type: Transform - pos: 352.5,389.5 - parent: 1 - - uid: 7473 + pos: -80.39978,-25.538485 + parent: 2 + - uid: 20442 components: - type: Transform - pos: 352.5,389.5 - parent: 1 -- proto: WeaponMinigun + pos: -80.52478,-25.319735 + parent: 2 +- proto: WeaponSprayNozzle entities: - - uid: 21063 + - uid: 3376 components: - - type: MetaData - desc: Можно заметить надпись "Для детей 0+". - name: миниган - type: Transform - pos: 368.5,394.5 - parent: 1 - missingComponents: - - Gun - - BallisticAmmoProvider - - StaticPrice - - DamageOnHighSpeedImpact - - Contraband -- proto: WeaponPistolCobra + parent: 3368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunWt550 entities: - - uid: 18982 + - uid: 14639 components: - type: Transform - pos: 333.5,388.5 - parent: 1 -- proto: WeaponPistolMk58 + pos: -78.498375,-30.215405 + parent: 2 +- proto: WeaponTurretSyndicateBroken entities: - - uid: 16375 + - uid: 22789 components: - type: Transform - pos: 424.5,407.5 - parent: 1 - - uid: 16376 + pos: -123.5,-86.5 + parent: 2 + - uid: 23405 components: - type: Transform - pos: 422.5,409.5 - parent: 1 - - uid: 16377 + pos: -117.5,-86.5 + parent: 2 + - uid: 24957 components: - type: Transform - pos: 422.5,409.5 - parent: 1 - - uid: 16378 + pos: -118.5,-72.5 + parent: 2 + - uid: 24958 components: - type: Transform - pos: 422.5,409.5 - parent: 1 -- proto: WeaponRifleAk - entities: - - uid: 6104 + pos: -117.5,-79.5 + parent: 2 + - uid: 24959 components: - type: Transform - pos: 429.5,387.5 - parent: 1 -- proto: WeaponRifleFoam + pos: -123.5,-79.5 + parent: 2 +- proto: WelderIndustrial entities: - - uid: 10285 + - uid: 7350 components: - type: Transform - pos: 387.5,420.5 - parent: 1 -- proto: WeaponShotgunEnforcer - entities: - - uid: 16373 + pos: -143.47794,-7.761752 + parent: 2 + - uid: 9556 components: - type: Transform - pos: 428.5,414.5 - parent: 1 -- proto: WeaponSubMachineGunDrozd + pos: -121.629196,-3.4886127 + parent: 2 +- proto: WeldingFuelTankFull entities: - - uid: 16371 + - uid: 4390 components: - type: Transform - pos: 428.5,412.5 - parent: 1 - - uid: 16372 + pos: -21.5,-9.5 + parent: 2 + - uid: 6320 components: - type: Transform - pos: 428.5,412.5 - parent: 1 -- proto: WeaponTurretHostile - entities: - - uid: 6591 + pos: -107.5,-17.5 + parent: 2 + - uid: 8270 components: - type: Transform - pos: 306.5,405.5 - parent: 1 - - uid: 6592 + pos: -8.5,-20.5 + parent: 2 + - uid: 9610 components: - type: Transform - pos: 308.5,405.5 - parent: 1 - - uid: 6594 + pos: -115.5,-12.5 + parent: 2 + - uid: 20729 components: - type: Transform - pos: 309.5,410.5 - parent: 1 - - uid: 6639 + pos: -61.5,-64.5 + parent: 2 + - uid: 21005 components: - type: Transform - pos: 307.5,425.5 - parent: 1 - - uid: 16198 + pos: -47.5,-32.5 + parent: 2 + - uid: 23407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 502.5,389.5 - parent: 1 - - uid: 16199 + pos: -96.5,4.5 + parent: 2 + - uid: 23894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 505.5,384.5 - parent: 1 - - uid: 17919 + pos: -17.5,0.5 + parent: 2 + - uid: 24107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 504.5,380.5 - parent: 1 - - uid: 21037 + pos: -10.5,-42.5 + parent: 2 + - uid: 26122 components: - type: Transform - pos: 504.5,382.5 - parent: 1 -- proto: WeaponTurretSyndicateBroken + pos: -124.5,24.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + pos: -79.5,-9.5 + parent: 2 +- proto: WetFloorSign entities: - - uid: 6408 + - uid: 7863 components: - type: Transform - pos: 304.5,427.5 - parent: 1 - - uid: 6587 + parent: 7826 + - type: Physics + canCollide: False + - uid: 7901 components: - type: Transform - pos: 310.5,415.5 - parent: 1 - - uid: 6588 + parent: 7826 + - type: Physics + canCollide: False + - uid: 7902 components: - type: Transform - pos: 304.5,415.5 - parent: 1 - - uid: 6589 + parent: 7826 + - type: Physics + canCollide: False + - uid: 7947 components: - type: Transform - pos: 304.5,406.5 - parent: 1 - - uid: 6590 + parent: 7826 + - type: Physics + canCollide: False +- proto: Windoor + entities: + - uid: 2967 components: - type: Transform - pos: 310.5,406.5 - parent: 1 - - uid: 6593 + pos: -49.5,-8.5 + parent: 2 + - uid: 16005 components: - type: Transform - pos: 305.5,410.5 - parent: 1 - - uid: 6595 + rot: -1.5707963267948966 rad + pos: -111.5,-29.5 + parent: 2 + - uid: 18341 components: - type: Transform - pos: 308.5,414.5 - parent: 1 - - uid: 6644 + rot: -1.5707963267948966 rad + pos: -50.5,-60.5 + parent: 2 + - uid: 23113 components: - type: Transform - pos: 310.5,427.5 - parent: 1 - - uid: 18000 + rot: -1.5707963267948966 rad + pos: -56.5,-71.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 6138 components: - type: Transform - pos: 483.5,375.5 - parent: 1 - - uid: 18001 + rot: 3.141592653589793 rad + pos: -54.5,-25.5 + parent: 2 + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - type: Door + secondsUntilStateChange: -169098.02 + state: Opening + - type: Airlock + autoClose: False + - uid: 9345 components: - type: Transform - pos: 483.5,379.5 - parent: 1 -- proto: WeaponWaterPistol + rot: 1.5707963267948966 rad + pos: -56.5,-22.5 + parent: 2 +- proto: WindoorKitchenLocked entities: - - uid: 18572 + - uid: 6506 components: - type: Transform - pos: 355.5,416.5 - parent: 1 -- proto: WelderExperimental + pos: -54.5,-25.5 + parent: 2 +- proto: WindoorSecure entities: - - uid: 21105 + - uid: 16040 components: - type: Transform - pos: 332.5,431.5 - parent: 1 - missingComponents: - - Item - - ItemToggle - - ItemToggleMeleeWeapon - - ItemToggleSize - - ItemToggleHot - - UseDelay - - MeleeWeapon - - Tool - - Welder - - ItemTogglePointLight - - IgnitionSource - - Pullable -- proto: WelderMini + rot: -1.5707963267948966 rad + pos: -93.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4026: + - DoorStatus: Close +- proto: WindoorSecureArmoryLocked entities: - - uid: 7404 + - uid: 4026 components: - type: Transform - pos: 326.5,416.5 - parent: 1 -- proto: WeldingFuelTank + rot: 1.5707963267948966 rad + pos: -93.5,-18.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 16040: + - DoorStatus: Close + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-24.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked entities: - - uid: 18627 + - uid: 2090 components: - type: Transform - pos: 344.5,434.5 - parent: 1 -- proto: WeldingFuelTankFull + rot: 3.141592653589793 rad + pos: -110.5,-7.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,-7.5 + parent: 2 +- proto: WindoorSecureCargoLocked entities: - - uid: 5695 + - uid: 11109 components: - type: Transform - pos: 370.5,378.5 - parent: 1 - - uid: 6273 + rot: 3.141592653589793 rad + pos: -102.5,12.5 + parent: 2 + - uid: 25555 components: - type: Transform - pos: 334.5,413.5 - parent: 1 - - uid: 6274 + rot: -1.5707963267948966 rad + pos: -97.5,16.5 + parent: 2 + - uid: 25849 components: - type: Transform - pos: 335.5,413.5 - parent: 1 - - uid: 18586 + rot: 3.141592653589793 rad + pos: -100.5,12.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 3922 components: - type: Transform - pos: 360.5,417.5 - parent: 1 - - uid: 18588 + pos: -38.5,-16.5 + parent: 2 + - uid: 3923 components: - type: Transform - pos: 359.5,422.5 - parent: 1 - - uid: 18626 + rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 5724 components: - type: Transform - pos: 343.5,434.5 - parent: 1 - - uid: 18727 + pos: -110.5,-13.5 + parent: 2 + - uid: 5729 components: - type: Transform - pos: 423.5,379.5 - parent: 1 - - uid: 18728 + pos: -108.5,-13.5 + parent: 2 + - uid: 25601 components: - type: Transform - pos: 421.5,379.5 - parent: 1 - - uid: 18739 + rot: 3.141592653589793 rad + pos: -120.5,-25.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 2966 components: - type: Transform - pos: 419.5,364.5 - parent: 1 - - uid: 18985 + rot: 3.141592653589793 rad + pos: -49.5,-8.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 19615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-5.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 3975 components: - type: Transform - pos: 342.5,384.5 - parent: 1 - - uid: 19003 + rot: 1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 24545 components: - type: Transform - pos: 331.5,393.5 - parent: 1 -- proto: WetFloorSign + rot: 1.5707963267948966 rad + pos: -31.5,-19.5 + parent: 2 +- proto: WindoorSecurePlasma entities: - - uid: 20962 + - uid: 21052 components: - type: Transform - pos: 376.5,404.5 - parent: 1 -- proto: WetFloorSignMineExplosive + pos: -38.5,-72.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21056: + - DoorStatus: Toggle +- proto: WindoorSecureSalvageLocked entities: - - uid: 20963 + - uid: 9973 components: - type: Transform - pos: 338.5,390.5 - parent: 1 -- proto: WheatBushel + rot: 3.141592653589793 rad + pos: -95.5,26.5 + parent: 2 +- proto: WindoorSecureScienceLocked entities: - - uid: 4972 + - uid: 7302 components: - type: Transform - pos: 415.5,384.5 - parent: 1 - - uid: 4973 + pos: -120.5,-48.5 + parent: 2 + - uid: 7303 components: - type: Transform - pos: 414.5,385.5 - parent: 1 -- proto: WhoopieCushion + rot: 3.141592653589793 rad + pos: -120.5,-42.5 + parent: 2 +- proto: WindoorSecureSecurityLocked entities: - - uid: 5278 + - uid: 24033 components: - type: Transform - pos: 423.559,398.5434 - parent: 1 -- proto: Windoor + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 +- proto: WindoorSecureServiceLocked entities: - - uid: 4899 + - uid: 10029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 421.5,396.5 - parent: 1 - - uid: 6165 + rot: 1.5707963267948966 rad + pos: -19.5,10.5 + parent: 2 + - uid: 20026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 449.5,422.5 - parent: 1 - - uid: 6166 + rot: 3.141592653589793 rad + pos: -49.5,-54.5 + parent: 2 + - uid: 26077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 449.5,422.5 - parent: 1 - - uid: 10176 + rot: 3.141592653589793 rad + pos: -50.5,-56.5 + parent: 2 + - uid: 26078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-56.5 + parent: 2 +- proto: WindoorTheatreLocked + entities: + - uid: 3372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 390.5,371.5 - parent: 1 - - uid: 10296 + pos: -62.5,-35.5 + parent: 2 +- proto: Window + entities: + - uid: 162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 395.5,371.5 - parent: 1 - - uid: 18291 + pos: -34.5,-26.5 + parent: 2 + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,422.5 - parent: 1 - - uid: 18416 + pos: -33.5,-26.5 + parent: 2 + - uid: 170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,432.5 - parent: 1 - - uid: 18661 + pos: -32.5,-26.5 + parent: 2 + - uid: 292 components: - type: Transform - pos: 323.5,434.5 - parent: 1 - - uid: 18662 + pos: -31.5,-30.5 + parent: 2 + - uid: 497 components: - type: Transform - pos: 322.5,434.5 - parent: 1 - - uid: 21373 + pos: -31.5,-49.5 + parent: 2 + - uid: 1265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,20.5 - parent: 5072 -- proto: WindoorJanitorLocked - entities: - - uid: 5921 + pos: -24.5,-36.5 + parent: 2 + - uid: 1272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 410.5,361.5 - parent: 1 - - uid: 5922 + pos: -24.5,-38.5 + parent: 2 + - uid: 1273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,361.5 - parent: 1 - - uid: 5923 + pos: -24.5,-35.5 + parent: 2 + - uid: 1279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 412.5,361.5 - parent: 1 -- proto: WindoorSecureArmoryLocked - entities: - - uid: 3786 + pos: -24.5,-34.5 + parent: 2 + - uid: 1286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 419.5,406.5 - parent: 1 - - uid: 4853 + pos: -24.5,-39.5 + parent: 2 + - uid: 1288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 420.5,406.5 - parent: 1 - - uid: 6423 + pos: -24.5,-40.5 + parent: 2 + - uid: 1409 components: - type: Transform - pos: 307.5,425.5 - parent: 1 - - uid: 6596 + pos: -27.5,-42.5 + parent: 2 + - uid: 1425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 309.5,410.5 - parent: 1 - - uid: 6597 + pos: -27.5,-45.5 + parent: 2 + - uid: 1566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 309.5,410.5 - parent: 1 - - uid: 6598 + pos: -31.5,-47.5 + parent: 2 + - uid: 1568 components: - type: Transform - pos: 310.5,415.5 - parent: 1 - - uid: 6599 + pos: -27.5,-46.5 + parent: 2 + - uid: 1624 components: - type: Transform - pos: 304.5,415.5 - parent: 1 - - uid: 6600 + pos: -27.5,-7.5 + parent: 2 + - uid: 1631 components: - type: Transform - pos: 308.5,414.5 - parent: 1 - - uid: 6601 + pos: -27.5,-9.5 + parent: 2 + - uid: 1635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,414.5 - parent: 1 - - uid: 6602 + pos: -27.5,-3.5 + parent: 2 + - uid: 1636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 305.5,410.5 - parent: 1 - - uid: 6603 + pos: -27.5,-1.5 + parent: 2 + - uid: 4109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 305.5,410.5 - parent: 1 - - uid: 6604 + pos: -27.5,-43.5 + parent: 2 + - uid: 9225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 304.5,406.5 - parent: 1 - - uid: 6605 + pos: -31.5,18.5 + parent: 2 + - uid: 9297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 306.5,405.5 - parent: 1 - - uid: 6606 + pos: -30.5,18.5 + parent: 2 + - uid: 11011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 308.5,405.5 - parent: 1 - - uid: 6607 + pos: -28.5,18.5 + parent: 2 + - uid: 11017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,405.5 - parent: 1 - - uid: 6608 + pos: -27.5,18.5 + parent: 2 + - uid: 11018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 310.5,406.5 - parent: 1 - - uid: 9037 + pos: -29.5,13.5 + parent: 2 + - uid: 11024 components: - type: Transform - pos: 420.5,406.5 - parent: 1 -- proto: WindoorSecureBarLocked - entities: - - uid: 3748 + pos: -30.5,13.5 + parent: 2 + - uid: 11025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,388.5 - parent: 1 - - uid: 3749 + pos: -29.5,18.5 + parent: 2 + - uid: 11028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,389.5 - parent: 1 - - uid: 3753 + pos: -28.5,13.5 + parent: 2 + - uid: 11029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 417.5,392.5 - parent: 1 - - uid: 5058 + pos: -27.5,13.5 + parent: 2 + - uid: 11030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 413.5,390.5 - parent: 1 -- proto: WindoorSecureBrigLocked - entities: - - uid: 18347 + pos: -31.5,13.5 + parent: 2 + - uid: 14570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 435.5,396.5 - parent: 1 -- proto: WindoorSecureCargoLocked - entities: - - uid: 2152 + pos: -64.5,-50.5 + parent: 2 + - uid: 14595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 360.5,379.5 - parent: 1 - - uid: 2361 + pos: -64.5,-36.5 + parent: 2 + - uid: 16408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 373.5,387.5 - parent: 1 - - uid: 5613 + pos: -74.5,-56.5 + parent: 2 + - uid: 17183 components: - type: Transform - pos: 358.5,391.5 - parent: 1 - - uid: 5666 + rot: 3.141592653589793 rad + pos: -61.5,-17.5 + parent: 2 + - uid: 23418 components: - type: Transform rot: 3.141592653589793 rad - pos: 361.5,391.5 - parent: 1 - - uid: 5667 + pos: -101.5,-11.5 + parent: 2 + - uid: 23419 components: - type: Transform - pos: 361.5,391.5 - parent: 1 -- proto: WindoorSecureChapelLocked - entities: - - uid: 20047 + rot: 3.141592653589793 rad + pos: -99.5,-11.5 + parent: 2 + - uid: 23446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 335.5,439.5 - parent: 1 -- proto: WindoorSecureChemistryLocked - entities: - - uid: 12890 + rot: 3.141592653589793 rad + pos: -100.5,-11.5 + parent: 2 + - uid: 24342 components: - type: Transform rot: 3.141592653589793 rad - pos: 408.5,405.5 - parent: 1 -- proto: WindoorSecureCommandLocked - entities: - - uid: 5769 + pos: -25.5,-27.5 + parent: 2 + - uid: 24343 components: - type: Transform rot: 3.141592653589793 rad - pos: 367.5,409.5 - parent: 1 - - uid: 5778 + pos: -23.5,-27.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 2532 components: - type: Transform - pos: 365.5,408.5 - parent: 1 - - uid: 6632 + rot: 3.141592653589793 rad + pos: -57.5,-68.5 + parent: 2 + - uid: 2534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,408.5 - parent: 1 - - uid: 6640 + rot: -1.5707963267948966 rad + pos: -61.5,-70.5 + parent: 2 + - uid: 2581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 306.5,426.5 - parent: 1 - - uid: 6641 + rot: -1.5707963267948966 rad + pos: -61.5,-69.5 + parent: 2 + - uid: 2582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 308.5,426.5 - parent: 1 - - uid: 6642 + pos: -56.5,-70.5 + parent: 2 + - uid: 2615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 308.5,426.5 - parent: 1 - - uid: 6643 + rot: 1.5707963267948966 rad + pos: -56.5,-73.5 + parent: 2 + - uid: 2630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 306.5,426.5 - parent: 1 - - uid: 6650 + pos: -56.5,-70.5 + parent: 2 + - uid: 2640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,407.5 - parent: 1 -- proto: WindoorSecureDetectiveLocked - entities: - - uid: 5171 + pos: -56.5,-73.5 + parent: 2 + - uid: 2642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 411.5,409.5 - parent: 1 -- proto: WindoorSecureEngineeringLocked - entities: - - uid: 6395 + rot: -1.5707963267948966 rad + pos: -61.5,-71.5 + parent: 2 + - uid: 2651 components: - type: Transform rot: 3.141592653589793 rad - pos: 341.5,405.5 - parent: 1 - - uid: 6651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 302.5,414.5 - parent: 1 - - uid: 6652 + pos: -56.5,-72.5 + parent: 2 + - uid: 4095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 302.5,413.5 - parent: 1 - - uid: 7357 + pos: -56.5,-72.5 + parent: 2 + - uid: 4249 components: - type: Transform rot: 3.141592653589793 rad - pos: 309.5,382.5 - parent: 1 - - uid: 7358 + pos: -60.5,-68.5 + parent: 2 + - uid: 4256 components: - type: Transform rot: 3.141592653589793 rad - pos: 310.5,382.5 - parent: 1 - - uid: 7359 + pos: -56.5,-68.5 + parent: 2 + - uid: 4260 components: - type: Transform rot: 3.141592653589793 rad - pos: 311.5,382.5 - parent: 1 -- proto: WindoorSecureHeadOfPersonnelLocked - entities: - - uid: 3477 + pos: -58.5,-68.5 + parent: 2 + - uid: 4275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 366.5,394.5 - parent: 1 - - uid: 3630 + pos: -57.5,-73.5 + parent: 2 + - uid: 4280 components: - type: Transform - pos: 366.5,399.5 - parent: 1 -- proto: WindoorSecureKitchenLocked - entities: - - uid: 5891 + pos: -59.5,-73.5 + parent: 2 + - uid: 4283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 410.5,388.5 - parent: 1 -- proto: WindoorSecureMedicalLocked - entities: - - uid: 18540 + pos: -60.5,-73.5 + parent: 2 + - uid: 4621 components: - type: Transform - pos: 416.5,421.5 - parent: 1 -- proto: WindoorSecureSalvageLocked - entities: - - uid: 5652 + rot: 3.141592653589793 rad + pos: -59.5,-68.5 + parent: 2 + - uid: 5104 components: - type: Transform - pos: 360.5,379.5 - parent: 1 -- proto: WindoorSecureScienceLocked - entities: - - uid: 788 + rot: 1.5707963267948966 rad + pos: -56.5,-68.5 + parent: 2 + - uid: 5110 components: - type: Transform - pos: 355.5,401.5 - parent: 1 - - uid: 7416 + rot: -1.5707963267948966 rad + pos: -61.5,-72.5 + parent: 2 + - uid: 5426 components: - type: Transform - pos: 345.5,395.5 - parent: 1 - - uid: 7417 + rot: 1.5707963267948966 rad + pos: -56.5,-69.5 + parent: 2 + - uid: 5686 components: - type: Transform - pos: 344.5,395.5 - parent: 1 - - uid: 7549 + pos: -58.5,-73.5 + parent: 2 + - uid: 9113 components: - type: Transform rot: -1.5707963267948966 rad - pos: 360.5,399.5 - parent: 1 - - uid: 7586 + pos: -50.5,-58.5 + parent: 2 + - uid: 9114 components: - type: Transform - pos: 339.5,400.5 - parent: 1 -- proto: WindoorSecureSecurityLawyerLocked - entities: - - uid: 20805 + rot: -1.5707963267948966 rad + pos: -50.5,-59.5 + parent: 2 + - uid: 9115 components: - type: Transform - pos: 1.5,0.5 - parent: 20527 -- proto: WindoorSecureSecurityLocked + rot: -1.5707963267948966 rad + pos: -50.5,-61.5 + parent: 2 +- proto: WindowFrostedDirectional entities: - - uid: 3759 + - uid: 2847 components: - type: Transform rot: 1.5707963267948966 rad - pos: 429.5,400.5 - parent: 1 - - uid: 3761 + pos: -43.5,-1.5 + parent: 2 + - uid: 3893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 429.5,400.5 - parent: 1 - - uid: 3762 + pos: -41.5,-38.5 + parent: 2 + - uid: 3902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 429.5,404.5 - parent: 1 - - uid: 3763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,404.5 - parent: 1 - - uid: 3764 + pos: -41.5,-37.5 + parent: 2 + - uid: 9528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,396.5 - parent: 1 - - uid: 3765 + rot: -1.5707963267948966 rad + pos: -111.5,-32.5 + parent: 2 + - uid: 15988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 429.5,392.5 - parent: 1 - - uid: 3766 + rot: -1.5707963267948966 rad + pos: -111.5,-31.5 + parent: 2 + - uid: 15989 components: - type: Transform rot: -1.5707963267948966 rad - pos: 429.5,392.5 - parent: 1 - - uid: 3767 + pos: -111.5,-30.5 + parent: 2 + - uid: 22301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 429.5,396.5 - parent: 1 - - uid: 4898 + pos: -44.5,-50.5 + parent: 2 + - uid: 22302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 421.5,396.5 - parent: 1 - - uid: 4996 + pos: -46.5,-50.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 417.5,392.5 - parent: 1 - - uid: 16223 + rot: -1.5707963267948966 rad + pos: -119.5,-63.5 + parent: 2 + - uid: 2069 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 16114 - - uid: 16224 + pos: -109.5,-7.5 + parent: 2 + - uid: 2086 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 16114 - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - - type: Door - secondsUntilStateChange: -91392.336 - state: Opening - - type: Airlock - autoClose: False - - uid: 16225 + pos: -111.5,-7.5 + parent: 2 + - uid: 2161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 16114 -- proto: WindoorSyndicateLocked - entities: - - uid: 18989 + rot: 1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - uid: 2255 components: - type: Transform - pos: 338.5,384.5 - parent: 1 - - uid: 18990 + rot: 1.5707963267948966 rad + pos: -121.5,-56.5 + parent: 2 + - uid: 2258 components: - type: Transform - pos: 340.5,384.5 - parent: 1 - - uid: 18991 + rot: -1.5707963267948966 rad + pos: -119.5,-56.5 + parent: 2 + - uid: 2308 components: - type: Transform - pos: 339.5,384.5 - parent: 1 -- proto: Window - entities: - - uid: 196 + rot: -1.5707963267948966 rad + pos: -119.5,-55.5 + parent: 2 + - uid: 2480 components: - type: Transform - pos: 301.5,389.5 - parent: 1 - - uid: 197 + rot: 1.5707963267948966 rad + pos: -120.5,-56.5 + parent: 2 + - uid: 2830 components: - type: Transform - pos: 301.5,385.5 - parent: 1 - - uid: 249 + rot: 3.141592653589793 rad + pos: -64.5,-12.5 + parent: 2 + - uid: 2831 components: - type: Transform - pos: 305.5,414.5 - parent: 1 - - uid: 260 + rot: 3.141592653589793 rad + pos: -63.5,-12.5 + parent: 2 + - uid: 2832 components: - type: Transform - pos: 306.5,425.5 - parent: 1 - - uid: 261 + rot: -1.5707963267948966 rad + pos: -62.5,-12.5 + parent: 2 + - uid: 2833 components: - type: Transform - pos: 306.5,423.5 - parent: 1 - - uid: 278 + rot: 1.5707963267948966 rad + pos: -60.5,-9.5 + parent: 2 + - uid: 2834 components: - type: Transform - pos: 307.5,409.5 - parent: 1 - - uid: 283 + pos: -58.5,-9.5 + parent: 2 + - uid: 2835 components: - type: Transform - pos: 308.5,425.5 - parent: 1 - - uid: 284 + pos: -59.5,-9.5 + parent: 2 + - uid: 2836 components: - type: Transform - pos: 308.5,423.5 - parent: 1 - - uid: 297 + rot: 3.141592653589793 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 2837 components: - type: Transform - pos: 308.5,384.5 - parent: 1 - - uid: 298 + rot: 1.5707963267948966 rad + pos: -60.5,-12.5 + parent: 2 + - uid: 2838 components: - type: Transform - pos: 308.5,382.5 - parent: 1 - - uid: 310 + pos: -63.5,-9.5 + parent: 2 + - uid: 2839 components: - type: Transform - pos: 309.5,414.5 - parent: 1 - - uid: 326 + rot: 3.141592653589793 rad + pos: -59.5,-12.5 + parent: 2 + - uid: 2840 components: - type: Transform - pos: 310.5,385.5 - parent: 1 - - uid: 342 + pos: -64.5,-9.5 + parent: 2 + - uid: 2841 components: - type: Transform - pos: 311.5,385.5 - parent: 1 - - uid: 356 + rot: -1.5707963267948966 rad + pos: -62.5,-9.5 + parent: 2 + - uid: 3015 components: - type: Transform - pos: 312.5,385.5 - parent: 1 - - uid: 364 + pos: -63.5,5.5 + parent: 2 + - uid: 3026 components: - type: Transform - pos: 313.5,385.5 - parent: 1 - - uid: 447 + pos: -61.5,5.5 + parent: 2 + - uid: 3027 components: - type: Transform - pos: 322.5,419.5 - parent: 1 - - uid: 463 + pos: -60.5,5.5 + parent: 2 + - uid: 3028 components: - type: Transform - pos: 324.5,419.5 - parent: 1 - - uid: 474 + pos: -59.5,5.5 + parent: 2 + - uid: 3029 components: - type: Transform - pos: 325.5,418.5 - parent: 1 - - uid: 475 + pos: -62.5,5.5 + parent: 2 + - uid: 3176 components: - type: Transform - pos: 325.5,416.5 - parent: 1 - - uid: 511 + rot: 3.141592653589793 rad + pos: -92.5,-24.5 + parent: 2 + - uid: 3924 components: - type: Transform - pos: 327.5,423.5 - parent: 1 - - uid: 513 + rot: 3.141592653589793 rad + pos: -39.5,-26.5 + parent: 2 + - uid: 3925 components: - type: Transform - pos: 327.5,421.5 - parent: 1 - - uid: 514 + pos: -39.5,-16.5 + parent: 2 + - uid: 3926 components: - type: Transform - pos: 327.5,420.5 - parent: 1 - - uid: 516 + pos: -37.5,-16.5 + parent: 2 + - uid: 4005 components: - type: Transform - pos: 327.5,418.5 - parent: 1 - - uid: 517 + rot: 3.141592653589793 rad + pos: -90.5,-24.5 + parent: 2 + - uid: 5727 components: - type: Transform - pos: 327.5,416.5 - parent: 1 - - uid: 671 + pos: -109.5,-13.5 + parent: 2 + - uid: 5728 components: - type: Transform - pos: 335.5,409.5 - parent: 1 - - uid: 737 + pos: -111.5,-13.5 + parent: 2 + - uid: 6120 components: - type: Transform rot: 3.141592653589793 rad - pos: 340.5,418.5 - parent: 1 - - uid: 739 + pos: -83.5,-40.5 + parent: 2 + - uid: 6484 components: - type: Transform - pos: 338.5,409.5 - parent: 1 - - uid: 751 + rot: 3.141592653589793 rad + pos: -81.5,-40.5 + parent: 2 + - uid: 6726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 339.5,418.5 - parent: 1 - - uid: 754 + pos: -80.5,-39.5 + parent: 2 + - uid: 7298 components: - type: Transform - pos: 339.5,409.5 - parent: 1 - - uid: 780 + rot: 3.141592653589793 rad + pos: -121.5,-42.5 + parent: 2 + - uid: 7299 components: - type: Transform rot: 3.141592653589793 rad - pos: 338.5,418.5 - parent: 1 - - uid: 798 + pos: -119.5,-42.5 + parent: 2 + - uid: 7300 components: - type: Transform - pos: 341.5,409.5 - parent: 1 - - uid: 819 + pos: -119.5,-48.5 + parent: 2 + - uid: 7301 components: - type: Transform - pos: 342.5,409.5 - parent: 1 - - uid: 844 + pos: -121.5,-48.5 + parent: 2 + - uid: 7379 components: - type: Transform - pos: 343.5,394.5 - parent: 1 - - uid: 845 + pos: -111.5,-57.5 + parent: 2 + - uid: 7421 components: - type: Transform - pos: 343.5,392.5 - parent: 1 - - uid: 911 + rot: 1.5707963267948966 rad + pos: -121.5,-60.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -121.5,-62.5 + parent: 2 + - uid: 7530 components: - type: Transform - pos: 346.5,394.5 - parent: 1 - - uid: 912 + rot: 1.5707963267948966 rad + pos: -121.5,-55.5 + parent: 2 + - uid: 7534 components: - type: Transform - pos: 346.5,392.5 - parent: 1 - - uid: 950 + rot: 3.141592653589793 rad + pos: -117.5,-58.5 + parent: 2 + - uid: 7535 components: - type: Transform - pos: 348.5,390.5 - parent: 1 - - uid: 962 + rot: 3.141592653589793 rad + pos: -116.5,-58.5 + parent: 2 + - uid: 7545 components: - type: Transform - pos: 349.5,400.5 - parent: 1 - - uid: 1125 + rot: 3.141592653589793 rad + pos: -115.5,-58.5 + parent: 2 + - uid: 7547 components: - type: Transform - pos: 356.5,427.5 - parent: 1 - - uid: 1149 + rot: 3.141592653589793 rad + pos: -114.5,-58.5 + parent: 2 + - uid: 7571 components: - type: Transform - pos: 357.5,419.5 - parent: 1 - - uid: 1190 + pos: -114.5,-56.5 + parent: 2 + - uid: 7580 components: - type: Transform - pos: 358.5,379.5 - parent: 1 - - uid: 1205 + pos: -115.5,-56.5 + parent: 2 + - uid: 7581 components: - type: Transform - pos: 359.5,387.5 - parent: 1 - - uid: 1229 + rot: 3.141592653589793 rad + pos: -112.5,-58.5 + parent: 2 + - uid: 7585 components: - type: Transform - pos: 360.5,387.5 - parent: 1 - - uid: 1230 + rot: 3.141592653589793 rad + pos: -111.5,-58.5 + parent: 2 + - uid: 7587 components: - type: Transform - pos: 360.5,383.5 - parent: 1 - - uid: 1244 + pos: -116.5,-56.5 + parent: 2 + - uid: 7588 components: - type: Transform - pos: 361.5,394.5 - parent: 1 - - uid: 1245 + pos: -117.5,-56.5 + parent: 2 + - uid: 7589 components: - type: Transform - pos: 361.5,387.5 - parent: 1 - - uid: 1306 + pos: -111.5,-56.5 + parent: 2 + - uid: 7590 components: - type: Transform - pos: 364.5,390.5 - parent: 1 - - uid: 1307 + pos: -112.5,-56.5 + parent: 2 + - uid: 7591 components: - type: Transform - pos: 364.5,388.5 - parent: 1 - - uid: 1336 + pos: -118.5,-56.5 + parent: 2 + - uid: 7592 components: - type: Transform - pos: 366.5,401.5 - parent: 1 - - uid: 1343 + pos: -121.5,-56.5 + parent: 2 + - uid: 7593 components: - type: Transform - pos: 367.5,401.5 - parent: 1 - - uid: 1346 + pos: -113.5,-56.5 + parent: 2 + - uid: 7594 components: - type: Transform - pos: 367.5,382.5 - parent: 1 - - uid: 1357 + pos: -122.5,-56.5 + parent: 2 + - uid: 7616 components: - type: Transform - pos: 368.5,401.5 - parent: 1 - - uid: 1371 + rot: 3.141592653589793 rad + pos: -118.5,-58.5 + parent: 2 + - uid: 7617 components: - type: Transform - pos: 369.5,401.5 - parent: 1 - - uid: 1397 + pos: -118.5,-57.5 + parent: 2 + - uid: 7625 components: - type: Transform - pos: 370.5,401.5 - parent: 1 - - uid: 1412 + pos: -117.5,-57.5 + parent: 2 + - uid: 7634 components: - type: Transform - pos: 371.5,401.5 - parent: 1 - - uid: 1421 + pos: -116.5,-57.5 + parent: 2 + - uid: 7644 components: - type: Transform - pos: 372.5,401.5 - parent: 1 - - uid: 1482 + rot: 3.141592653589793 rad + pos: -122.5,-58.5 + parent: 2 + - uid: 7645 components: - type: Transform - pos: 376.5,419.5 - parent: 1 - - uid: 1492 + rot: 3.141592653589793 rad + pos: -113.5,-58.5 + parent: 2 + - uid: 7648 components: - type: Transform - pos: 377.5,420.5 - parent: 1 - - uid: 1520 + pos: -119.5,-56.5 + parent: 2 + - uid: 8065 components: - type: Transform - pos: 378.5,420.5 - parent: 1 - - uid: 1536 + pos: -115.5,-57.5 + parent: 2 + - uid: 8145 components: - type: Transform - pos: 379.5,420.5 - parent: 1 - - uid: 1549 + pos: -114.5,-57.5 + parent: 2 + - uid: 8153 components: - type: Transform - pos: 380.5,420.5 - parent: 1 - - uid: 1560 + rot: 3.141592653589793 rad + pos: -101.5,12.5 + parent: 2 + - uid: 8168 components: - type: Transform - pos: 381.5,420.5 - parent: 1 - - uid: 1572 + pos: -113.5,-57.5 + parent: 2 + - uid: 8553 components: - type: Transform - pos: 382.5,419.5 - parent: 1 - - uid: 1691 + rot: 1.5707963267948966 rad + pos: -95.5,26.5 + parent: 2 + - uid: 9515 components: - type: Transform - pos: 389.5,394.5 - parent: 1 - - uid: 1756 + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 9643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,370.5 - parent: 1 - - uid: 1757 + pos: -83.5,-39.5 + parent: 2 + - uid: 9645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,371.5 - parent: 1 - - uid: 1759 + pos: -84.5,-39.5 + parent: 2 + - uid: 10202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 413.5,367.5 - parent: 1 - - uid: 1811 + pos: -81.5,-39.5 + parent: 2 + - uid: 10205 components: - type: Transform - pos: 395.5,405.5 - parent: 1 - - uid: 1822 + rot: 3.141592653589793 rad + pos: -80.5,-40.5 + parent: 2 + - uid: 11097 components: - type: Transform - pos: 396.5,405.5 - parent: 1 - - uid: 1835 + rot: 1.5707963267948966 rad + pos: -56.5,-23.5 + parent: 2 + - uid: 11135 components: - type: Transform - pos: 397.5,405.5 - parent: 1 - - uid: 2013 + rot: 3.141592653589793 rad + pos: -99.5,12.5 + parent: 2 + - uid: 11171 components: - type: Transform - pos: 405.5,394.5 - parent: 1 - - uid: 2014 + rot: 1.5707963267948966 rad + pos: -120.5,-55.5 + parent: 2 + - uid: 13558 components: - type: Transform - pos: 405.5,377.5 - parent: 1 - - uid: 2052 + rot: 3.141592653589793 rad + pos: -84.5,-40.5 + parent: 2 + - uid: 13595 components: - type: Transform - pos: 406.5,376.5 - parent: 1 - - uid: 2053 + rot: -1.5707963267948966 rad + pos: -120.5,-55.5 + parent: 2 + - uid: 13616 components: - type: Transform - pos: 406.5,374.5 - parent: 1 - - uid: 2056 + rot: 1.5707963267948966 rad + pos: -120.5,-59.5 + parent: 2 + - uid: 13656 components: - type: Transform - pos: 406.5,370.5 - parent: 1 - - uid: 2076 + rot: -1.5707963267948966 rad + pos: -120.5,-59.5 + parent: 2 + - uid: 13709 components: - type: Transform - pos: 407.5,373.5 - parent: 1 - - uid: 2116 + rot: -1.5707963267948966 rad + pos: -119.5,-59.5 + parent: 2 + - uid: 13721 components: - type: Transform - pos: 410.5,416.5 - parent: 1 - - uid: 2158 + rot: 1.5707963267948966 rad + pos: -121.5,-59.5 + parent: 2 + - uid: 13882 components: - type: Transform - pos: 411.5,394.5 - parent: 1 - - uid: 2233 + pos: -112.5,-57.5 + parent: 2 + - uid: 13965 components: - type: Transform - pos: 414.5,421.5 - parent: 1 - - uid: 2235 + rot: 3.141592653589793 rad + pos: -111.5,-57.5 + parent: 2 + - uid: 13966 components: - type: Transform - pos: 414.5,417.5 - parent: 1 - - uid: 2259 + rot: 3.141592653589793 rad + pos: -112.5,-57.5 + parent: 2 + - uid: 13967 components: - type: Transform - pos: 414.5,373.5 - parent: 1 - - uid: 2288 + pos: -119.5,-57.5 + parent: 2 + - uid: 13968 components: - type: Transform - pos: 416.5,383.5 - parent: 1 - - uid: 2289 + rot: 3.141592653589793 rad + pos: -113.5,-57.5 + parent: 2 + - uid: 13990 components: - type: Transform - pos: 416.5,380.5 - parent: 1 - - uid: 2353 + rot: 3.141592653589793 rad + pos: -117.5,-57.5 + parent: 2 + - uid: 13992 components: - type: Transform - pos: 418.5,377.5 - parent: 1 - - uid: 2381 + pos: -121.5,-57.5 + parent: 2 + - uid: 13994 components: - type: Transform - pos: 419.5,377.5 - parent: 1 - - uid: 2456 + rot: 3.141592653589793 rad + pos: -115.5,-57.5 + parent: 2 + - uid: 13996 components: - type: Transform - pos: 421.5,377.5 - parent: 1 - - uid: 2741 + rot: 3.141592653589793 rad + pos: -119.5,-57.5 + parent: 2 + - uid: 13997 components: - type: Transform - pos: 434.5,390.5 - parent: 1 - - uid: 2771 + rot: 3.141592653589793 rad + pos: -122.5,-57.5 + parent: 2 + - uid: 13998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 370.5,397.5 - parent: 1 - - uid: 3012 + rot: 3.141592653589793 rad + pos: -121.5,-57.5 + parent: 2 + - uid: 14020 components: - type: Transform - pos: 472.5,378.5 - parent: 1 - - uid: 3013 + rot: 3.141592653589793 rad + pos: -114.5,-57.5 + parent: 2 + - uid: 14021 components: - type: Transform - pos: 472.5,375.5 - parent: 1 - - uid: 3015 + rot: 3.141592653589793 rad + pos: -116.5,-57.5 + parent: 2 + - uid: 14023 components: - type: Transform - pos: 474.5,379.5 - parent: 1 - - uid: 3018 + rot: 3.141592653589793 rad + pos: -118.5,-57.5 + parent: 2 + - uid: 14049 components: - type: Transform - pos: 474.5,375.5 - parent: 1 - - uid: 3023 + pos: -122.5,-57.5 + parent: 2 + - uid: 14092 components: - type: Transform - pos: 477.5,382.5 - parent: 1 - - uid: 3024 + rot: -1.5707963267948966 rad + pos: -119.5,-61.5 + parent: 2 + - uid: 14096 components: - type: Transform - pos: 477.5,372.5 - parent: 1 - - uid: 3042 + rot: -1.5707963267948966 rad + pos: -119.5,-62.5 + parent: 2 + - uid: 14110 components: - type: Transform - pos: 481.5,382.5 - parent: 1 - - uid: 3043 + rot: 1.5707963267948966 rad + pos: -121.5,-61.5 + parent: 2 + - uid: 16459 components: - type: Transform - pos: 481.5,372.5 - parent: 1 - - uid: 3050 + rot: -1.5707963267948966 rad + pos: -120.5,-56.5 + parent: 2 + - uid: 17345 components: - type: Transform - pos: 484.5,379.5 - parent: 1 - - uid: 3054 + rot: -1.5707963267948966 rad + pos: -119.5,-60.5 + parent: 2 + - uid: 20346 components: - type: Transform - pos: 484.5,375.5 - parent: 1 - - uid: 3065 + rot: -1.5707963267948966 rad + pos: -120.5,-60.5 + parent: 2 + - uid: 20413 components: - type: Transform - pos: 501.5,390.5 - parent: 1 - - uid: 3066 + rot: 1.5707963267948966 rad + pos: -120.5,-62.5 + parent: 2 + - uid: 20414 components: - type: Transform - pos: 501.5,389.5 - parent: 1 - - uid: 3083 + rot: 1.5707963267948966 rad + pos: -120.5,-61.5 + parent: 2 + - uid: 20417 components: - type: Transform - pos: 504.5,383.5 - parent: 1 - - uid: 3102 + rot: -1.5707963267948966 rad + pos: -120.5,-61.5 + parent: 2 + - uid: 20418 components: - type: Transform - pos: 508.5,391.5 - parent: 1 - - uid: 3104 + rot: -1.5707963267948966 rad + pos: -120.5,-62.5 + parent: 2 + - uid: 22521 components: - type: Transform - pos: 509.5,391.5 - parent: 1 - - uid: 3111 + rot: 1.5707963267948966 rad + pos: -120.5,-60.5 + parent: 2 + - uid: 24314 components: - type: Transform - pos: 511.5,386.5 - parent: 1 - - uid: 3112 + rot: 1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 24644 components: - type: Transform - pos: 511.5,385.5 - parent: 1 - - uid: 4528 + rot: 1.5707963267948966 rad + pos: -19.5,11.5 + parent: 2 + - uid: 24907 components: - type: Transform rot: 1.5707963267948966 rad - pos: 350.5,390.5 - parent: 1 - - uid: 5599 + pos: -121.5,-63.5 + parent: 2 + - uid: 24910 components: - type: Transform rot: 1.5707963267948966 rad - pos: 422.5,352.5 - parent: 1 - - uid: 12243 + pos: -120.5,-63.5 + parent: 2 + - uid: 24913 components: - type: Transform rot: -1.5707963267948966 rad - pos: 414.5,366.5 - parent: 1 - - uid: 12248 + pos: -120.5,-63.5 + parent: 2 + - uid: 26076 components: - type: Transform - pos: 352.5,390.5 - parent: 1 - - uid: 12251 + rot: -1.5707963267948966 rad + pos: -50.5,-56.5 + parent: 2 + - uid: 26084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 417.5,361.5 - parent: 1 - - uid: 13607 + pos: -49.5,-56.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 8868 components: - type: Transform - pos: 353.5,389.5 - parent: 1 - - uid: 13624 + pos: -36.475346,-53.37653 + parent: 2 +- proto: WoodenSupport + entities: + - uid: 4985 components: - type: Transform - pos: 413.5,381.5 - parent: 1 - - uid: 14017 + pos: -101.5,-7.5 + parent: 2 + - uid: 4986 components: - type: Transform - pos: 414.5,383.5 - parent: 1 - - uid: 14975 + rot: -1.5707963267948966 rad + pos: -106.5,-35.5 + parent: 2 + - uid: 4987 components: - type: Transform - pos: 413.5,368.5 - parent: 1 - - uid: 15848 + rot: 1.5707963267948966 rad + pos: -101.5,3.5 + parent: 2 + - uid: 4988 components: - type: Transform - pos: 510.5,383.5 - parent: 1 - - uid: 15886 + rot: 1.5707963267948966 rad + pos: -105.5,-2.5 + parent: 2 + - uid: 6546 components: - type: Transform - pos: 507.5,385.5 - parent: 1 - - uid: 21031 + pos: -75.5,-67.5 + parent: 2 + - uid: 6553 components: - type: Transform - pos: 359.5,431.5 - parent: 1 -- proto: WindowDirectional - entities: - - uid: 2774 + rot: 1.5707963267948966 rad + pos: -102.5,-58.5 + parent: 2 + - uid: 6596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,394.5 - parent: 1 - - uid: 3472 + rot: 1.5707963267948966 rad + pos: -85.5,-58.5 + parent: 2 + - uid: 8544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,394.5 - parent: 1 - - uid: 3473 + pos: -50.5,-64.5 + parent: 2 + - uid: 9240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 367.5,394.5 - parent: 1 - - uid: 3474 + pos: -95.5,-11.5 + parent: 2 + - uid: 9242 components: - type: Transform - pos: 371.5,397.5 - parent: 1 - - uid: 3478 + pos: -83.5,-73.5 + parent: 2 + - uid: 9287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 365.5,394.5 - parent: 1 - - uid: 3844 + rot: 1.5707963267948966 rad + pos: -105.5,-15.5 + parent: 2 + - uid: 9680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 332.5,397.5 - parent: 1 - - uid: 3845 + pos: -12.5,-48.5 + parent: 2 + - uid: 19793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 333.5,397.5 - parent: 1 - - uid: 3846 + pos: -41.5,-64.5 + parent: 2 + - uid: 19970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 334.5,397.5 - parent: 1 - - uid: 4935 + pos: -25.5,-11.5 + parent: 2 + - uid: 23717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 408.5,393.5 - parent: 1 - - uid: 4943 + pos: -53.5,-68.5 + parent: 2 + - uid: 24626 components: - type: Transform - pos: 409.5,390.5 - parent: 1 - - uid: 4948 + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 24663 components: - type: Transform - pos: 407.5,390.5 - parent: 1 - - uid: 4949 + rot: -1.5707963267948966 rad + pos: -107.5,-30.5 + parent: 2 + - uid: 25646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 407.5,391.5 - parent: 1 - - uid: 4950 + rot: -1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 2 + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 409.5,391.5 - parent: 1 - - uid: 4985 + pos: -13.5,-53.5 + parent: 2 + - uid: 25832 components: - type: Transform - rot: 3.141592653589793 rad - pos: 414.5,391.5 - parent: 1 - - uid: 4986 + pos: -16.5,-61.5 + parent: 2 + - uid: 26151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 416.5,391.5 - parent: 1 - - uid: 16226 + pos: -134.5,14.5 + parent: 2 +- proto: WoodenSupportBeam + entities: + - uid: 7127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 16114 - - uid: 18311 + pos: -15.5,-49.5 + parent: 2 + - uid: 9243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 433.5,418.5 - parent: 1 - - uid: 18312 + pos: -77.5,-69.5 + parent: 2 + - uid: 9442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 433.5,418.5 - parent: 1 - - uid: 18313 + pos: -71.5,-77.5 + parent: 2 + - uid: 15160 components: - type: Transform - pos: 434.5,417.5 - parent: 1 - - uid: 18314 + pos: -70.5,-66.5 + parent: 2 + - uid: 19561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 434.5,417.5 - parent: 1 - - uid: 18415 + pos: -18.5,-15.5 + parent: 2 + - uid: 19774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 356.5,431.5 - parent: 1 -- proto: WindowFrostedDirectional - entities: - - uid: 6067 + pos: -75.5,-72.5 + parent: 2 + - uid: 22358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 389.5,419.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 575 + pos: -73.5,-75.5 + parent: 2 + - uid: 24439 components: - type: Transform - pos: 420.5,419.5 - parent: 1 - - uid: 577 + rot: -1.5707963267948966 rad + pos: -102.5,-29.5 + parent: 2 + - uid: 24552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 420.5,419.5 - parent: 1 - - uid: 579 + pos: -39.5,-15.5 + parent: 2 + - uid: 24554 components: - type: Transform rot: -1.5707963267948966 rad - pos: 420.5,420.5 - parent: 1 - - uid: 4883 + pos: -102.5,-43.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 312.5,382.5 - parent: 1 - - uid: 5767 + rot: 1.5707963267948966 rad + pos: -106.5,-37.5 + parent: 2 + - uid: 942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 369.5,409.5 - parent: 1 - - uid: 5768 + rot: -1.5707963267948966 rad + pos: -71.5,-15.5 + parent: 2 + - uid: 968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 368.5,409.5 - parent: 1 - - uid: 5776 + rot: -1.5707963267948966 rad + pos: -50.5,-15.5 + parent: 2 + - uid: 1038 components: - type: Transform - pos: 363.5,408.5 - parent: 1 - - uid: 5777 + pos: -105.5,-18.5 + parent: 2 + - uid: 1179 components: - type: Transform - pos: 364.5,408.5 - parent: 1 - - uid: 6424 + rot: 1.5707963267948966 rad + pos: -98.5,-54.5 + parent: 2 + - uid: 1317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 307.5,425.5 - parent: 1 - - uid: 6665 + rot: 1.5707963267948966 rad + pos: -101.5,-6.5 + parent: 2 + - uid: 1790 components: - type: Transform - pos: 316.5,410.5 - parent: 1 - - uid: 6776 + pos: -91.5,-54.5 + parent: 2 + - uid: 1982 components: - type: Transform rot: 3.141592653589793 rad - pos: 317.5,412.5 - parent: 1 - - uid: 6777 + pos: -90.5,-15.5 + parent: 2 + - uid: 3310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 316.5,412.5 - parent: 1 - - uid: 9038 + pos: -64.5,-67.5 + parent: 2 + - uid: 3312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 420.5,406.5 - parent: 1 - - uid: 15550 + pos: -63.5,-67.5 + parent: 2 + - uid: 4669 components: - type: Transform rot: 1.5707963267948966 rad - pos: 337.5,450.5 - parent: 1 -- proto: WoodDoor - entities: - - uid: 20076 + pos: -134.5,-20.5 + parent: 2 + - uid: 4671 components: - type: Transform - pos: 341.5,438.5 - parent: 1 -- proto: WoodenBench - entities: - - uid: 606 + rot: 1.5707963267948966 rad + pos: -134.5,-16.5 + parent: 2 + - uid: 4764 components: - type: Transform rot: -1.5707963267948966 rad - pos: 340.5,442.5 - parent: 1 - - uid: 8052 + pos: -102.5,-33.5 + parent: 2 + - uid: 18196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,441.5 - parent: 1 - - uid: 8055 + pos: -53.5,-64.5 + parent: 2 + - uid: 19871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,442.5 - parent: 1 - - uid: 15862 + rot: 1.5707963267948966 rad + pos: -102.5,-48.5 + parent: 2 + - uid: 23297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,442.5 - parent: 1 - - uid: 15887 + pos: -53.5,-65.5 + parent: 2 + - uid: 25448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,441.5 - parent: 1 - - uid: 19674 + pos: -106.5,-23.5 + parent: 2 + - uid: 25449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 340.5,441.5 - parent: 1 - - uid: 19676 + rot: 1.5707963267948966 rad + pos: -106.5,-53.5 + parent: 2 + - uid: 25450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 342.5,439.5 - parent: 1 - - uid: 20077 + pos: -81.5,-58.5 + parent: 2 + - uid: 25954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 339.5,439.5 - parent: 1 -- proto: WoodenSupport - entities: - - uid: 17401 + pos: -80.5,-11.5 + parent: 2 + - uid: 26150 components: - type: Transform - pos: 494.5,397.5 - parent: 1 - - uid: 18405 + pos: -134.5,9.5 + parent: 2 + - uid: 26152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 358.5,428.5 - parent: 1 -- proto: WoodenSupportWall + pos: -125.5,21.5 + parent: 2 +- proto: Wrench entities: - - uid: 17407 + - uid: 2447 components: - type: Transform - pos: 493.5,398.5 - parent: 1 -- proto: WoodenSupportWallBroken - entities: - - uid: 17404 + pos: -60.465607,-2.6414313 + parent: 2 + - uid: 5846 components: + - type: MetaData + desc: Looks the same as a normal wrench. But apparently this one is medical? + name: Medical Wrench - type: Transform - pos: 492.5,397.5 - parent: 1 -- proto: Wrench - entities: - - uid: 5698 + pos: -22.520231,-32.448425 + parent: 2 + - uid: 5994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 369.5,391.5 - parent: 1 - - uid: 5900 + pos: -150.55457,-42.41135 + parent: 2 + - uid: 8170 components: - type: Transform - pos: 411.5,382.5 - parent: 1 - - uid: 7415 + pos: -59.578606,8.42198 + parent: 2 + - uid: 9599 components: - type: Transform - pos: 345.5,394.5 - parent: 1 - - uid: 15604 + pos: -23.560091,-5.793838 + parent: 2 + - uid: 18809 components: - type: Transform - pos: 309.5,426.5 - parent: 1 - - uid: 18993 + pos: -115.5,12.5 + parent: 2 + - uid: 18814 components: - type: Transform - pos: 336.5,383.5 - parent: 1 - - uid: 20526 + pos: -139.54565,-7.464158 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: -143.39981,-7.496127 + parent: 2 + - uid: 22976 components: - type: Transform - pos: 3.5,0.5 - parent: 20181 + pos: -120.40426,-34.49997 + parent: 2 ... diff --git a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml index 62d07b0beda..db01b7ab415 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/engineering.yml @@ -150,7 +150,7 @@ - type: entity id: CrateAirlockKit - parent: CrateGenericSteel + parent: CrateEngineering name: airlock kit description: A kit for building 6 airlocks, doesn't include tools. components: @@ -215,3 +215,31 @@ - type: StorageFill contents: - id: SpaceHeaterFlatpack + +- type: entityTable + id: RandomTechBoardTable + table: !type:GroupSelector + children: + - id: AirAlarmElectronics + - id: FireAlarmElectronics + - id: DoorElectronics + - id: FirelockElectronics + - id: APCElectronics + - id: SignalTimerElectronics + - id: SMESMachineCircuitboard + - id: SubstationMachineCircuitboard + - id: SpaceVillainArcadeComputerCircuitboard + - id: BlockGameArcadeComputerCircuitboard + +- type: entity + id: CrateTechBoardRandom + parent: CrateEngineering + name: surplus boards + description: Surplus boards from somewhere. + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: RandomTechBoardTable + rolls: !type:RangeNumberSelector + range: 3, 7 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index f425b48c07e..3934812ae4e 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -107,6 +107,52 @@ - id: SheetPaper amount: 3 +- type: entityTable + id: RandomMaterialCrateTable + table: !type:GroupSelector + children: + - !type:GroupSelector # regular materials, 10 + weight: 35 + children: + - id: SheetGlass10 + - id: SheetSteel10 + - id: SheetPlastic10 + - !type:GroupSelector # regular materials, stack + weight: 30 + children: + - id: SheetGlass + - id: SheetSteel + - id: SheetPlastic + - !type:GroupSelector # secondary materials, stack + weight: 30 + children: + - id: MaterialCloth + - id: SheetPlasteel + - id: MaterialWoodPlank + - id: PartRodMetal + - !type:GroupSelector # tertiary materials, singles + weight: 5 + children: + - id: SheetPlasma1 + - id: SheetUranium1 + - id: IngotGold1 + - id: IngotSilver1 + +- type: entity + id: CrateMaterialRandom + parent: CrateGenericSteel + name: surplus materials + description: Surplus materials from somewhere. + components: + - type: EntityTableContainerFill + containers: + entity_storage: !type:NestedSelector + tableId: RandomMaterialCrateTable + rolls: !type:RangeNumberSelector + range: 1, 3 + # for some reason, the selector here adds 1 to whatever value it generates, + # so this is actually 2-4 + #- type: entity # id: CrateMaterialHFuelTank # name: fueltank crate diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 4c0a9826de7..340083f4041 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -159,6 +159,9 @@ - !type:NestedSelector tableId: SyndieMaintLoot prob: 0.05 + # Recursive + - id: ClosetMaintenanceFilledRandom + prob: 0.01 - type: entity id: ClosetMaintenanceFilledRandom diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml new file mode 100644 index 00000000000..d4ffe6be33d --- /dev/null +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/pride.yml @@ -0,0 +1,35 @@ +- type: vendingMachineInventory + id: PrideDrobeInventory + startingInventory: + ClothingNeckLGBTPin: 3 + ClothingNeckAromanticPin: 3 + ClothingNeckAsexualPin: 3 + ClothingNeckBisexualPin: 3 + ClothingNeckGayPin: 3 + ClothingNeckIntersexPin: 3 + ClothingNeckLesbianPin: 3 + ClothingNeckNonBinaryPin: 3 + ClothingNeckPansexualPin: 3 + ClothingNeckOmnisexualPin: 3 + ClothingNeckTransPin: 3 + ClothingNeckAutismPin: 3 + ClothingNeckGoldAutismPin: 3 + PlushieSharkBlue: 2 + PlushieSharkPink: 2 + PlushieSharkGrey: 2 + ClothingNeckCloakAce: 2 + ClothingNeckCloakAro: 2 + ClothingNeckCloakBi: 2 + ClothingNeckCloakEnby: 2 + ClothingNeckCloakGay: 2 + ClothingNeckCloakIntersex: 2 + ClothingNeckCloakLesbian: 2 + ClothingNeckCloakPan: 2 + ClothingNeckCloakTrans: 2 + ClothingHeadHatXmasCrown: 2 + BedsheetRainbow: 2 + ClothingNeckHeadphones: 2 + ClothingHeadHatFlowerWreath: 2 + ClothingUniformColorRainbow: 2 + ClothingUnderSocksCoder: 2 + ClothingUnderSocksBee: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/smite.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/smite.yml new file mode 100644 index 00000000000..fc0b64b6ca8 --- /dev/null +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/smite.yml @@ -0,0 +1,13 @@ +- type: vendingMachineInventory + id: SmiteInventory + startingInventory: + DrinkLemonLimeCan: 4 + DrinkLemonLimeCranberryCan: 2 + DrinkColaCan: 2 + DrinkSolDryCan: 2 + contrabandInventory: + ToyHammer: 1 + DrinkStarkistCan: 2 + emaggedInventory: + DrinkNukieCan: 2 + DrinkChangelingStingCan: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml index 6dc004dd1bb..3422f564b01 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml @@ -88,6 +88,12 @@ prefix: advertisement-gibb- count: 8 +- type: localizedDataset + id: SmiteAds + values: + prefix: advertisement-smite- + count: 8 + - type: localizedDataset id: CondimentVendAds values: @@ -279,3 +285,9 @@ values: prefix: advertisement-medibot- count: 17 + +- type: localizedDataset + id: PrideDrobeAds + values: + prefix: advertisement-pride- + count: 4 diff --git a/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml b/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml index 47da3b3dc60..b63c22d06f0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml @@ -46,6 +46,12 @@ prefix: thankyou-gibb- count: 4 +- type: localizedDataset + id: SmiteGoodbyes + values: + prefix: thankyou-smite- + count: 4 + - type: localizedDataset id: DiscountDansGoodbyes values: @@ -111,3 +117,9 @@ values: prefix: thankyou-syndiedrobe- count: 5 + +- type: localizedDataset + id: PrideDrobeGoodbyes + values: + prefix: thankyou-pride- + count: 3 diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/astra.yml b/Resources/Prototypes/Corvax/Maps/Corvax/astra.yml index 1871de9e92f..66a9eed0512 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/astra.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/astra.yml @@ -37,7 +37,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 5, 6 ] @@ -49,7 +48,6 @@ SecurityCadet: [ 3, 4 ] Detective: [ 1, 1 ] Pilot: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/avrite.yml b/Resources/Prototypes/Corvax/Maps/Corvax/avrite.yml index b3087cd853c..660414db13c 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/avrite.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/avrite.yml @@ -10,8 +10,9 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Avrite {1}' - nameGenerator: !type:NanotrasenNameGenerator + mapNameTemplate: '{0} Аврит {1}' + nameGenerator: + !type:NanotrasenNameGenerator prefixCreator: 'SY' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Corvax/Shuttles/emergency_corvaxavrite.yml @@ -36,7 +37,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 3, 3 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 5, 6 ] @@ -47,8 +47,7 @@ SecurityOfficer: [ 8, 9 ] SecurityCadet: [ 3, 4 ] Detective: [ 1, 1 ] - Pilot: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic + Pilot: [ 1, 1] # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] @@ -56,6 +55,7 @@ Chaplain: [ 1, 1 ] Chef: [ 2, 2 ] Clown: [ 1, 1 ] + Boxer: [ 2, 2 ] Janitor: [ 3, 3 ] Librarian: [ 1, 1 ] Mime: [ 1, 1 ] diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/awesome.yml b/Resources/Prototypes/Corvax/Maps/Corvax/awesome.yml index 9108fbd6713..f3744f4fb02 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/awesome.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/awesome.yml @@ -9,7 +9,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Awesome {1}' + mapNameTemplate: '{0} Авесом {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'TBK' @@ -36,7 +36,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 3, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/cuteinstallation.yml b/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml similarity index 91% rename from Resources/Prototypes/Corvax/Maps/Corvax/cuteinstallation.yml rename to Resources/Prototypes/Corvax/Maps/Corvax/cute.yml index ee508dce0e2..1a08154a1d1 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/cuteinstallation.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/cute.yml @@ -1,17 +1,17 @@ - type: gameMap - id: CorvaxCuteInstallation - mapName: 'Cute Installation' - mapPath: /Maps/Corvax/corvax_cuteinstallation.yml + id: CorvaxCute + mapName: 'Cute' + mapPath: /Maps/Corvax/corvax_cute.yml maxRandomOffset: 0 randomRotation: false minPlayers: 25 maxPlayers: 55 stations: - CuteInstallation: + Cute: stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Cute Installation {1}' + mapNameTemplate: '{0} Кьют {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'ONYA' diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/delta.yml b/Resources/Prototypes/Corvax/Maps/Corvax/delta.yml index 099eb6cff6a..1bb757feff5 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/delta.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/delta.yml @@ -37,7 +37,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 6, 6 ] @@ -49,7 +48,6 @@ SecurityCadet: [ 3, 3 ] Detective: [ 1, 1 ] Pilot: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] @@ -90,4 +88,3 @@ - Bunker - XenobiologyRepair - VirusologyAmbusol - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/glacier.yml b/Resources/Prototypes/Corvax/Maps/Corvax/glacier.yml index 8abd79ecc29..e0ef1141b89 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/glacier.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/glacier.yml @@ -18,7 +18,7 @@ emergencyShuttlePath: /Maps/Corvax/Shuttles/emergency_corvaxglacier.yml - type: StationBiome biome: GlacierPlanet - mapLightColor: "#130D20FF" + mapLightColor: "#090917FF" - type: GridSpawn groups: trade: !type:GridSpawnGroup @@ -89,4 +89,3 @@ - SecurityTraining - Botany - Bunker - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/ishimura.yml b/Resources/Prototypes/Corvax/Maps/Corvax/ishimura.yml index f0a0cc6430d..00e713a6dc2 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/ishimura.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/ishimura.yml @@ -11,10 +11,10 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} USG Ishimura {1}' + mapNameTemplate: '{0} Ишимура {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'SY' + prefixCreator: 'SY USG' - type: StationEmergencyShuttle emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - type: StationJobs diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/maus.yml b/Resources/Prototypes/Corvax/Maps/Corvax/maus.yml index f8264011884..5f5d5b4dbdb 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/maus.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/maus.yml @@ -38,7 +38,6 @@ Psychologist: [ 1, 1 ] Paramedic: [1, 1] Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 3, 3 ] @@ -50,7 +49,6 @@ SecurityCadet: [ 2, 2 ] Detective: [ 1, 1 ] Pilot: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] @@ -69,3 +67,4 @@ # silicon StationAi: [ 1, 1 ] Borg: [ 1, 1 ] + \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/outpost.yml b/Resources/Prototypes/Corvax/Maps/Corvax/outpost.yml index edca7620574..db5fb2b493a 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/outpost.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/outpost.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Outpost {1}' + mapNameTemplate: '{0} Аутпост {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'ED' diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/paper.yml b/Resources/Prototypes/Corvax/Maps/Corvax/paper.yml index 58201577117..78f9235f250 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/paper.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/paper.yml @@ -10,60 +10,59 @@ CorvaxPaper: stationProto: StandardNanotrasenStation components: - - type: StationNameSetup - mapNameTemplate: '{0} Paper {1}' - nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'TG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - - type: StationJobs - availableJobs: - # command - Captain: [ 1, 1 ] - IAA: [ 1, 1 ] - Quartermaster: [ 1, 1 ] - ChiefEngineer: [ 1, 1 ] - ChiefMedicalOfficer: [ 1, 1 ] - ResearchDirector: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - # cargo - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] - # engineering - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] - # medical - MedicalDoctor: [ 4, 4 ] - MedicalIntern: [ 3, 3 ] - Psychologist: [ 1, 1 ] - Paramedic: [ 1, 1 ] - Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon - # science - Scientist: [ 4, 4 ] - ResearchAssistant: [ 3, 3 ] - # security - Warden: [ 1, 1 ] - SecurityOfficer: [ 3, 4 ] - SecurityCadet: [ 3, 3 ] - Detective: [ 1, 1 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic - # service - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Chef: [ 2, 2 ] - Clown: [ 1, 1 ] - Janitor: [ 2, 2 ] - Librarian: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Reporter: [ 1, 1 ] - ServiceWorker: [ 3, 3 ] - Zookeeper: [ 1, 1 ] - Passenger: [ -1, -1 ] - #silicon - StationAi: [ 1, 1 ] - Borg: [ 3, 3 ] + - type: StationNameSetup + mapNameTemplate: '{0} Пейпер {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml + - type: StationJobs + availableJobs: + # command + Captain: [ 1, 1 ] + IAA: [ 1, 1 ] + Quartermaster: [ 1, 1 ] + ChiefEngineer: [ 1, 1 ] + ChiefMedicalOfficer: [ 1, 1 ] + ResearchDirector: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + # cargo + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 3 ] + # engineering + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] + # medical + MedicalDoctor: [ 4, 4 ] + MedicalIntern: [ 3, 3 ] + Psychologist: [ 1, 1 ] + Paramedic: [ 1, 1 ] + Chemist: [ 2, 2 ] + # science + Scientist: [ 4, 4 ] + ResearchAssistant: [ 3, 3 ] + # security + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 4 ] + SecurityCadet: [ 3, 3 ] + Detective: [ 1, 1 ] + # service + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Chef: [ 2, 2 ] + Clown: [ 1, 1 ] + Janitor: [ 2, 2 ] + Librarian: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 1, 1 ] + ServiceWorker: [ 3, 3 ] + Zookeeper: [ 1, 1 ] + Passenger: [ -1, -1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 3, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/pearl.yml b/Resources/Prototypes/Corvax/Maps/Corvax/pearl.yml index ea2edb04f38..f5b844f9e9c 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/pearl.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/pearl.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Pearl island {1}' + mapNameTemplate: '{0} Пёрл {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'SR' @@ -48,8 +48,7 @@ SecurityOfficer: [ 3, 3 ] SecurityCadet: [ 2, 2 ] Detective: [ 1, 1 ] - Pilot: [ 2, 2 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic + Pilot: [ 1, 1 ] # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] @@ -87,5 +86,3 @@ - Botany - Bunker - Survive - - BluespaceHarvest # Corvax-Next-BluespaceHarvest - diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/pilgrim.yml b/Resources/Prototypes/Corvax/Maps/Corvax/pilgrim.yml index 0bdcd707b3e..b6c2e2dbbdc 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/pilgrim.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/pilgrim.yml @@ -37,7 +37,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 2, 2 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 5, 5 ] @@ -49,7 +48,6 @@ SecurityCadet: [ 3, 3 ] Detective: [ 1, 1 ] Pilot: [ 2, 2 ] - Brigmedic: [ 1, 1 ] # Corvax-Next-Brigmedic # service HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] @@ -86,4 +84,3 @@ - ShuttleEmergency - Theatre - Botany - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/silly.yml b/Resources/Prototypes/Corvax/Maps/Corvax/silly.yml index 49a232964ce..40fddbdab37 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/silly.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/silly.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Silly island {1}' + mapNameTemplate: '{0} Силли {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'ABK' @@ -79,4 +79,3 @@ - Theatre - Botany - Bunker - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/split.yml b/Resources/Prototypes/Corvax/Maps/Corvax/split.yml index 510fe84ef2a..b9d60874a5d 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/split.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/split.yml @@ -185,4 +185,3 @@ - Zoo - MiningOutpost - Tesla - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/terra.yml b/Resources/Prototypes/Corvax/Maps/Corvax/terra.yml index e3deb1e4cf9..a0c35d31f7a 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/terra.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/terra.yml @@ -85,4 +85,3 @@ - Zoo - MiningOutpost - Tesla - - BluespaceHarvest diff --git a/Resources/Prototypes/Corvax/Maps/Corvax/tushkan.yml b/Resources/Prototypes/Corvax/Maps/Corvax/tushkan.yml index fe14a390102..93907fa52e2 100644 --- a/Resources/Prototypes/Corvax/Maps/Corvax/tushkan.yml +++ b/Resources/Prototypes/Corvax/Maps/Corvax/tushkan.yml @@ -38,7 +38,6 @@ Psychologist: [ 1, 1 ] Paramedic: [ 1, 1 ] Chemist: [ 1, 1 ] - Surgeon: [ 1, 1 ] # Corvax-Next-Surgeon # science ResearchDirector: [ 1, 1 ] Scientist: [ 2, 2 ] diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index 100d34c3c67..3c702acf0ef 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -9,7 +9,7 @@ - Bagel - Box # Midpop - - CorvaxCuteInstallation + - CorvaxCute - CorvaxPaper - CorvaxOutpost - CorvaxAwesome diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 8317f8af897..5a742a20e7d 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -319,8 +319,7 @@ unequipDelay: 3 - type: IngestionBlocker - type: AddAccentClothing - accent: ReplacementAccent - replacement: mumble + accent: MumbleAccent - type: Construction graph: Muzzle node: muzzle diff --git a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml index a7dcf03f28c..155bb9a82f3 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/pins.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/pins.yml @@ -111,6 +111,17 @@ - type: Clothing equippedPrefix: pan +- type: entity + parent: ClothingNeckPinBase + id: ClothingNeckOmnisexualPin + name: omnisexual pin + description: Be omni do crime. + components: + - type: Sprite + state: omni + - type: Clothing + equippedPrefix: omni + - type: entity parent: ClothingNeckPinBase id: ClothingNeckTransPin @@ -121,7 +132,7 @@ state: trans - type: Clothing equippedPrefix: trans - + - type: entity parent: ClothingNeckPinBase id: ClothingNeckAutismPin diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml index ef89ed9a169..d1270934124 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/anomaly.yml @@ -22,7 +22,7 @@ - AnomalyFlora - AnomalyShadow - AnomalyTech - - AnomalySanta #Remove in 2025 + #- AnomalySanta rareChance: 0.3 rarePrototypes: - RandomAnomalyInjectorSpawner @@ -67,6 +67,6 @@ - AnomalyTrapGravity - AnomalyTrapTech - AnomalyTrapRock - - AnomalyTrapSanta # Remove in 2025 + #- AnomalyTrapSanta chance: 1 - \ No newline at end of file + diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml index 1986dfc29c5..14852de558b 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/crates.yml @@ -3,26 +3,26 @@ id: CrateEmptySpawner parent: MarkerBase components: - - type: Sprite - layers: - - state: red - - sprite: Structures/Storage/Crates/generic.rsi - state: icon - - type: RandomSpawner - prototypes: - - CrateGenericSteel - - CratePlastic - - CrateFreezer - - CrateHydroponics - - CrateMedical - - CrateRadiation - - CrateInternals - - CrateElectrical - - CrateEngineering - - CrateScience - - CrateSurgery - chance: 0.7 - offset: 0.0 + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/generic.rsi + state: icon + - type: RandomSpawner + prototypes: + - CrateGenericSteel + - CratePlastic + - CrateFreezer + - CrateHydroponics + - CrateMedical + - CrateRadiation + - CrateInternals + - CrateElectrical + - CrateEngineering + - CrateScience + - CrateSurgery + chance: 0.7 + offset: 0.0 - type: entity name: Filled Crate Spawner @@ -30,109 +30,112 @@ suffix: Low Value parent: MarkerBase components: - - type: Sprite - layers: - - state: red - - sprite: Structures/Storage/Crates/o2.rsi - state: icon - - type: RandomSpawner - prototypes: - - CrateServiceReplacementLights - - CrateServiceBureaucracy - - CrateChemistrySupplies - - CrateMaterialGlass - - CrateMaterialSteel - - CrateMaterialPlastic - - CrateMaterialWood - - CrateMaterialPlasteel - - CrateFunArtSupplies - - CrateEngineeringCableLV - - CrateEngineeringCableMV - - CrateEngineeringCableHV - - CrateEngineeringCableBulk - - CrateEmergencyFire - - CrateEmergencyInternals - - CrateEmergencyInflatablewall - - CrateHydroponicsTools - - CrateHydroponicsSeeds - chance: 0.7 - rarePrototypes: - - CrateMaterialPlasma - - CrateHydroponicsSeedsExotic - rareChance: 0.1 - offset: 0.0 + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/o2.rsi + state: icon + - type: RandomSpawner + prototypes: + - CrateServiceReplacementLights + - CrateServiceBureaucracy + - CrateChemistrySupplies + - CrateMaterialGlass + - CrateMaterialSteel + - CrateMaterialPlastic + - CrateMaterialWood + - CrateMaterialPlasteel + - CrateMaterialRandom + - CrateFunArtSupplies + - CrateEngineeringCableLV + - CrateEngineeringCableMV + - CrateEngineeringCableHV + - CrateEngineeringCableBulk + - CrateTechBoardRandom + - CrateEmergencyFire + - CrateEmergencyInternals + - CrateEmergencyInflatablewall + - CrateHydroponicsTools + - CrateHydroponicsSeeds + - PetCarrier + chance: 0.7 + rarePrototypes: + - CrateMaterialPlasma + - CrateHydroponicsSeedsExotic + rareChance: 0.1 + offset: 0.0 - type: entity name: random engineering crate spawner id: LootSpawnerRandomCrateEngineering parent: MarkerBase components: - - type: Sprite - layers: - - state: red - - sprite: Structures/Storage/Crates/engineering.rsi - state: icon - - type: RandomSpawner - rarePrototypes: - - CrateEngineeringSingularityGenerator - - CrateEngineeringTeslaGenerator - - CrateEngineeringTeslaGroundingRod - - CrateEngineeringParticleAccelerator - - CrateRCD - - CrateEngineeringGear - rareChance: 0.2 - prototypes: - - CrateEngineering - - CrateElectrical - - CrateEngineeringElectricalSupplies - - CrateRCDAmmo - - CrateEngineeringCableLV - - CrateEngineeringCableMV - - CrateEngineeringCableHV - - CrateEngineeringCableBulk - - CrateEngineeringSingularityContainment - - CrateEngineeringSingularityCollector - - CrateEngineeringTeslaCoil - - CrateEngineeringSingularityEmitter - - CrateEngineeringGyroscope - - CrateEngineeringThruster - - CrateEngineeringToolbox - - CrateEngineeringShuttle - - CrateEngineeringSolar - - CrateEngineeringJetpack - - CrateEmergencyRadiation - - CrateRadiation - chance: 0.9 - offset: 0.0 + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/engineering.rsi + state: icon + - type: RandomSpawner + rarePrototypes: + - CrateEngineeringSingularityGenerator + - CrateEngineeringTeslaGenerator + - CrateEngineeringTeslaGroundingRod + - CrateEngineeringParticleAccelerator + - CrateRCD + - CrateEngineeringGear + rareChance: 0.2 + prototypes: + - CrateEngineering + - CrateElectrical + - CrateEngineeringElectricalSupplies + - CrateRCDAmmo + - CrateEngineeringCableLV + - CrateEngineeringCableMV + - CrateEngineeringCableHV + - CrateEngineeringCableBulk + - CrateEngineeringSingularityContainment + - CrateEngineeringSingularityCollector + - CrateEngineeringTeslaCoil + - CrateEngineeringSingularityEmitter + - CrateEngineeringGyroscope + - CrateEngineeringThruster + - CrateEngineeringToolbox + - CrateEngineeringShuttle + - CrateEngineeringSolar + - CrateEngineeringJetpack + - CrateEmergencyRadiation + - CrateRadiation + chance: 0.9 + offset: 0.0 - type: entity name: random security crate spawner id: LootSpawnerRandomCrateSecurity parent: MarkerBase components: - - type: Sprite - layers: - - state: red - - sprite: Structures/Storage/Crates/sec_gear.rsi - state: icon - - type: RandomSpawner - rarePrototypes: #Very useful stuff we probably don't want random people getting on space ruins often, even if there are hurdles to open it - - CrateArmoryShotgun - - CrateArmorySMG - - CrateSecurityRiot - - CrateSecurityNonlethal - rareChance: 0.1 - prototypes: - - CrateWeaponSecure - - CrateArmoryLaser - - CrateArmoryPistols - - CrateTrainingBombs - - CrateTrackingImplants - - CrateSecurityTrackingMindshieldImplants - - CrateSecurityHelmet - - CrateSecurityArmor - - CrateRestraints - - CrateEmergencyExplosive - - CrateSecurityBiosuit - chance: 0.9 - offset: 0.0 \ No newline at end of file + - type: Sprite + layers: + - state: red + - sprite: Structures/Storage/Crates/sec_gear.rsi + state: icon + - type: RandomSpawner + rarePrototypes: #Very useful stuff we probably don't want random people getting on space ruins often, even if there are hurdles to open it + - CrateArmoryShotgun + - CrateArmorySMG + - CrateSecurityRiot + - CrateSecurityNonlethal + rareChance: 0.1 + prototypes: + - CrateWeaponSecure + - CrateArmoryLaser + - CrateArmoryPistols + - CrateTrainingBombs + - CrateTrackingImplants + - CrateSecurityTrackingMindshieldImplants + - CrateSecurityHelmet + - CrateSecurityArmor + - CrateRestraints + - CrateEmergencyExplosive + - CrateSecurityBiosuit + chance: 0.9 + offset: 0.0 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index eb802487ca0..c073f162818 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -149,6 +149,7 @@ - id: ClothingNeckLesbianPin - id: ClothingNeckNonBinaryPin - id: ClothingNeckPansexualPin + - id: ClothingNeckOmnisexualPin - id: ClothingNeckTransPin - id: ClothingNeckAutismPin - id: ClothingNeckGoldAutismPin @@ -393,3 +394,32 @@ - Spaceshroom chance: 0.6 offset: 0.0 + + +- type: entityTable + id: InsulsTable + table: !type:GroupSelector + children: + - id: ClothingHandsGlovesColorYellowBudget # budget insuls + weight: 85 + - id: ClothingHandsGlovesColorYellow # true insuls + weight: 10 + - id: ClothingHandsGlovesFingerlessInsulated # fingerless + weight: 4 + - id: ClothingHandsGlovesConducting # conducting + weight: 1 + +- type: entity + name: Maint Loot Spawner + id: MaintenanceInsulsSpawner + suffix: Insuls, safe + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Clothing/Hands/Gloves/Color/yellow.rsi + state: icon + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: InsulsTable diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml index d55a7916b46..0b530c68b19 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml @@ -6,29 +6,59 @@ components: - type: Sprite layers: - - state: red - - sprite: Structures/Machines/VendingMachines/random.rsi - state: any + - state: red + - sprite: Structures/Machines/VendingMachines/random.rsi + state: any - type: RandomSpawner prototypes: - - VendingMachineCigs - - VendingMachineCoffee - - VendingMachineCola - - VendingMachineColaRed - - VendingMachineColaBlack - - VendingMachineDiscount - - VendingMachineSnack - - VendingMachineSnackBlue - - VendingMachineSnackGreen - - VendingMachineSnackOrange - - VendingMachineSnackTeal - - VendingMachineSovietSoda - - VendingMachineChang - - VendingMachineDonut - - VendingMachineShamblersJuice - - VendingMachinePwrGame - - VendingMachineDrGibb - - VendingMachineSoda - - VendingMachineStarkist - - VendingMachineSpaceUp + - VendingMachineChang + - VendingMachineCigs + - VendingMachineCoffee + - VendingMachineCola #Robust Sofdrinks + - VendingMachineColaBlack #Robust Sofdrinks [Black] + - VendingMachineColaRed #Space Cola + - VendingMachineDiscount + - VendingMachineDonut + - VendingMachineDrGibb + - VendingMachinePwrGame + - VendingMachineShamblersJuice + - VendingMachineSmite + - VendingMachineSnack + - VendingMachineSnackBlue + - VendingMachineSnackGreen + - VendingMachineSnackOrange + - VendingMachineSnackTeal + - VendingMachineSoda #Robust Sofdrinks [Soda] + - VendingMachineSovietSoda #Boda + - VendingMachineSpaceUp + - VendingMachineStarkist chance: 1 + + +- type: entityTable + id: ClothingVendorTable + table: !type:GroupSelector + children: + - id: VendingMachineClothing + weight: 40 + - id: VendingMachineWinter + weight: 40 + - id: VendingMachinePride + weight: 10 + - id: VendingMachineTheater + weight: 10 + +- type: entity + id: RandomVendingClothing + name: random vending machine spawner + suffix: Clothing + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Structures/Machines/VendingMachines/random.rsi + state: clothing + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: ClothingVendorTable diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/vendingdrinks.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/vendingdrinks.yml index a911b7ebfc0..1c90664b3de 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/vendingdrinks.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/vendingdrinks.yml @@ -12,14 +12,15 @@ - type: RandomSpawner prototypes: - VendingMachineCoffee - - VendingMachineCola - - VendingMachineColaRed - - VendingMachineColaBlack - - VendingMachineSovietSoda - - VendingMachineShamblersJuice - - VendingMachinePwrGame + - VendingMachineCola #Robust Sofdrinks + - VendingMachineColaBlack #Robust Sofdrinks [Black] + - VendingMachineColaRed #Space Cola - VendingMachineDrGibb - - VendingMachineSoda - - VendingMachineStarkist + - VendingMachinePwrGame + - VendingMachineShamblersJuice + - VendingMachineSmite + - VendingMachineSoda #Robust Sofdrinks [Soda] + - VendingMachineSovietSoda #Boda - VendingMachineSpaceUp + - VendingMachineStarkist chance: 1 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 23d7f6bacae..f2470566211 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1587,7 +1587,7 @@ - type: MobThresholds thresholds: 0: Alive - 75: Critical + 100: Critical 200: Dead - type: NpcFactionMember factions: diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index e0a4c6fb2a6..d7dd014f696 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -368,11 +368,35 @@ components: - type: Pda id: MimeIDCard - idSlot: # rewrite without sound because mime - name: ID Card + paiSlot: + priority: -2 + ejectSound: null + insertSound: null + whitelist: + components: + - PAI + idSlot: + name: access-id-card-component-default + ejectSound: null # mime is silent + insertSound: null whitelist: components: - IdCard + penSlot: + startingItem: Pen + priority: -1 + whitelist: + tags: + - Write + ejectSound: null + insertSound: null + - type: CartridgeLoader + cartridgeSlot: + ejectSound: null + insertSound: null + whitelist: + components: + - Cartridge - type: Appearance appearanceDataInit: enum.PdaVisuals.PdaType: diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml index 3e2f02f8283..ed1520ff998 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_string.yml @@ -9,7 +9,7 @@ - type: SwappableInstrument instrumentList: "Clean": {27: 0} - "Jazz": {25: 0} + "Jazz": {26: 0} "Muted": {28: 0} - type: Sprite sprite: Objects/Fun/Instruments/eguitar.rsi diff --git a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml index 2d65f851d7d..725db6731f6 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/pet_carrier.yml @@ -63,4 +63,9 @@ - type: ItemSlots - type: Item size: Ginormous - sprite: Objects/Storage/petcarrier.rsi \ No newline at end of file + sprite: Objects/Storage/petcarrier.rsi + - type: Construction + graph: PetCarrier + node: petCarrier + containers: + - entity_storage diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 6c0fa5ddd97..48e2d02e7c1 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -77,6 +77,7 @@ - /Maps/Corvax/Ruins/corvax_ussp_debris.yml - /Maps/Corvax/Ruins/corvax_ussp_asteroid.yml # Corvax-Mapping-End + - /Maps/Ruins/wrecklaimer.yml vgroid: !type:DungeonSpawnGroup minimumDistance: 300 maximumDistance: 350 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 7438483ba1d..e8182f2ddaa 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -464,7 +464,6 @@ - SodaDispenserMachineCircuitboard - SpaceHeaterMachineCircuitBoard - CutterMachineCircuitboard - - StationAnchorCircuitboard - SalvageMagnetMachineCircuitboard dynamicRecipes: - ThermomachineFreezerMachineCircuitBoard @@ -1140,6 +1139,25 @@ - CarpetPurple - CarpetCyan - CarpetWhite + # Bedsheets + - BedsheetBlack + - BedsheetBlue + - BedsheetBrown + - BedsheetGreen + - BedsheetGrey + - BedsheetOrange + - BedsheetPurple + - BedsheetRed + - BedsheetWhite + - BedsheetYellow + - BedsheetClown + - BedsheetCosmos + - BedsheetIan + - BedsheetMedical + - BedsheetMime + - BedsheetNT + - BedsheetRainbow + - BedsheetBrigmedic # Corvax-Clothing-Start - ClothingHeadHatCapHoS - ClothingHeadHatBeretSecurityMedic @@ -1155,6 +1173,7 @@ # Corvax-Clothing-End - type: EmagLatheRecipes emagStaticRecipes: + # Clothing - ClothingHeadHatCentcomcap - ClothingHeadHatCentcom - ClothingUniformJumpsuitCentcomAgent @@ -1177,6 +1196,8 @@ - ClothingOuterWinterCentcom - ClothingOuterWinterSyndie - ClothingOuterWinterSyndieCap + # Bedsheets + - BedsheetSyndie - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 740d8921c2c..ac0a7127b3e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -137,7 +137,6 @@ pack: CondimentVendAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Transform noRot: false @@ -156,7 +155,6 @@ pack: AmmoVendAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Corvax/Structures/Machines/VendingMachines/ammo.rsi layers: @@ -185,7 +183,6 @@ pack: BoozeOMatAds - type: SpeakOnUIClosed pack: BoozeOMatGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/boozeomat.rsi layers: @@ -220,7 +217,6 @@ pack: BruiseOMatAds - type: SpeakOnUIClosed pack: BruiseOMatGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/bruiseomat.rsi layers: @@ -320,7 +316,6 @@ pack: CigaretteMachineAds - type: SpeakOnUIClosed pack: CigaretteMachineGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/cigs.rsi layers: @@ -348,7 +343,6 @@ pack: ClothesMateAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/clothing.rsi layers: @@ -380,7 +374,6 @@ pack: ClothesMateAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/winterdrobe.rsi layers: @@ -419,7 +412,6 @@ pack: HotDrinksMachineAds - type: SpeakOnUIClosed pack: HotDrinksMachineGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/coffee.rsi layers: @@ -459,7 +451,6 @@ pack: RobustSoftdrinksAds - type: SpeakOnUIClosed pack: RobustSoftdrinksGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/cola.rsi layers: @@ -603,7 +594,6 @@ initialStockQuality: 0.33 - type: Advertise pack: RobustSoftdrinksAds - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/shamblersjuice.rsi layers: @@ -640,7 +630,6 @@ pack: RobustSoftdrinksAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/pwrgame.rsi layers: @@ -677,7 +666,6 @@ pack: DrGibbAds - type: SpeakOnUIClosed pack: DrGibbGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/gib.rsi layers: @@ -693,6 +681,42 @@ energy: 1.6 color: "#D82929" +- type: entity + parent: VendingMachine + id: VendingMachineSmite + name: Smite Vendor + description: Popular with the administration. + components: + - type: Sprite + sprite: Structures/Machines/VendingMachines/smite.rsi + layers: + - state: "off" + map: [ "enum.VendingMachineVisualLayers.Base" ] + - state: "off" + map: [ "enum.VendingMachineVisualLayers.BaseUnshaded" ] + shader: unshaded + - state: panel + map: [ "enum.WiresVisualLayers.MaintenancePanel" ] + - type: VendingMachine + pack: SmiteInventory + dispenseOnHitChance: 0.25 + dispenseOnHitThreshold: 2 + offState: off + brokenState: broken + normalState: normal-unshaded + ejectState: eject-unshaded + denyState: deny-unshaded + ejectDelay: 1.9 + initialStockQuality: 0.33 + - type: Advertise + pack: SmiteAds + - type: SpeakOnUIClosed + pack: SmiteGoodbyes + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#00E645" + - type: entity parent: VendingMachine id: VendingMachineDinnerware @@ -774,7 +798,6 @@ pack: DiscountDansAds - type: SpeakOnUIClosed pack: DiscountDansGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/discount.rsi layers: @@ -991,7 +1014,6 @@ pack: GetmoreChocolateCorpAds - type: SpeakOnUIClosed pack: GetmoreChocolateCorpGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/snack.rsi layers: @@ -1137,7 +1159,6 @@ pack: BodaAds - type: SpeakOnUIClosed pack: BodaGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/sovietsoda.rsi layers: @@ -1171,7 +1192,6 @@ pack: AutoDrobeAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/theater.rsi layers: @@ -1207,7 +1227,6 @@ pack: VendomatAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/vendomat.rsi layers: @@ -1240,7 +1259,6 @@ pack: VendomatAds - type: SpeakOnUIClosed pack: GenericVendGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/robotics.rsi layers: @@ -1339,7 +1357,6 @@ pack: ChangAds - type: SpeakOnUIClosed pack: ChangGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/changs.rsi layers: @@ -1405,7 +1422,6 @@ pack: DonutAds - type: SpeakOnUIClosed pack: DonutGoodbyes - - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/donut.rsi layers: @@ -2102,6 +2118,39 @@ - type: AccessReader access: [["Kitchen"], ["Theatre"]] +# Pride Vending Machine + +- type: entity + parent: VendingMachine + id: VendingMachinePride + name: Pride-O-Mat + description: A vending machine containing pride. + components: + - type: VendingMachine + pack: PrideDrobeInventory + offState: off + brokenState: broken + normalState: normal-unshaded + - type: Advertise + pack: PrideDrobeAds + - type: SpeakOnUIClosed + pack: PrideDrobeGoodbyes + - type: Speech + - type: PointLight + radius: 1.5 + energy: 1.3 # reduced energy since the color is pure white + color: "#FFFFFF" + - type: Sprite + sprite: Structures/Machines/VendingMachines/pride.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + # Gas Tank Dispenser - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml index 62025f668ee..60980cb6fcf 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Anomaly/anomalies.yml @@ -28,9 +28,9 @@ radius: 0.35 density: 50 mask: - - MobMask + - FlyingMobMask layer: - - MobLayer + - FlyingMobLayer - type: Sprite noRot: true drawdepth: Effects #it needs to draw over stuff. diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml index 6e5d35a3ab7..071a9febcf3 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -154,6 +154,12 @@ back: - ClothingNeckPansexualPin +- type: loadout + id: ClothingNeckOmnisexualPin + storage: + back: + - ClothingNeckOmnisexualPin + - type: loadout id: ClothingNeckTransPin storage: diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 7c57afa4ec6..ac17cbe5321 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -28,6 +28,7 @@ - ClothingNeckLesbianPin - ClothingNeckNonBinaryPin - ClothingNeckPansexualPin + - ClothingNeckOmnisexualPin - ClothingNeckTransPin - ClothingNeckAutismPin - ClothingNeckGoldAutismPin diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 7952a0ecbdc..a5a61c7d23e 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -15,5 +15,6 @@ - Oasis - Omega - Packed + - Plasma - Reach #- Train diff --git a/Resources/Prototypes/Maps/amber.yml b/Resources/Prototypes/Maps/amber.yml index 91b92aa558c..5eba39fe8be 100644 --- a/Resources/Prototypes/Maps/amber.yml +++ b/Resources/Prototypes/Maps/amber.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Amber Station {1}' + mapNameTemplate: '{0} Амбер {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: '14-SB' diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml index d283b20dce2..639cbf265e9 100644 --- a/Resources/Prototypes/Maps/bagel.yml +++ b/Resources/Prototypes/Maps/bagel.yml @@ -8,7 +8,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Bagel Station {1}' + mapNameTemplate: '{0} Багель {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: '14' diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 35e31a8ed40..4cc44a491c0 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -8,7 +8,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Box Station {1}' + mapNameTemplate: '{0} Бокс {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'TG' diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index 28b298cc227..8aa611bf4ca 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -29,6 +29,7 @@ Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] ServiceWorker: [ 2, 2 ] + Reporter: [ 1, 1 ] #engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index 7f65325cd8e..03955ff82ad 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Marathon Station {1}' + mapNameTemplate: '{0} Марафон {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: '14' diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index 021f8581080..a8b36d5412e 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Omega Station {1}' + mapNameTemplate: '{0} Омега {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'TG' diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 2767a98dfc2..d514cf9f564 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -11,7 +11,7 @@ stationProto: StandardNanotrasenStation components: - type: StationNameSetup - mapNameTemplate: '{0} Packed {1}' + mapNameTemplate: '{0} Пакет {1}' # Corvax nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'VG' diff --git a/Resources/Prototypes/Maps/plasma.yml b/Resources/Prototypes/Maps/plasma.yml new file mode 100644 index 00000000000..a74b91dcccf --- /dev/null +++ b/Resources/Prototypes/Maps/plasma.yml @@ -0,0 +1,67 @@ +- type: gameMap + id: Plasma + mapName: 'Plasma' + mapPath: /Maps/plasma.yml + minPlayers: 20 + maxPlayers: 60 + stations: + Plasma: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Plasma {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_plasma.yml + - type: StationCargoShuttle + path: /Maps/Shuttles/cargo_plasma.yml + - type: StationJobs + availableJobs: + #service + Captain: [ 1, 1 ] + IAA: [ 1, 1 ] # Corvax-IAA + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 2, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + Reporter: [ 2, 3 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 4, 4 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 4, 4 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 4, 4 ] + StationAi: [ 1, 1 ] + Borg: [ 2, 4 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 6, 8 ] + Detective: [ 1, 2 ] + SecurityCadet: [ 4, 4 ] + #Lawyer: [ 1, 2 ] # Corvax-IAA + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 4, 4 ] + CargoTechnician: [ 4, 6 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/storage/pet_carrier.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/pet_carrier.yml new file mode 100644 index 00000000000..670930fca9d --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/storage/pet_carrier.yml @@ -0,0 +1,16 @@ +- type: constructionGraph + id: PetCarrier + start: start + graph: + - node: start + edges: + - to: petCarrier + steps: + - material: Plastic + amount: 5 + doAfter: 7 + - material: MetalRod + amount: 4 + doAfter: 3 + - node: petCarrier + entity: PetCarrier diff --git a/Resources/Prototypes/Recipes/Crafting/improvised.yml b/Resources/Prototypes/Recipes/Crafting/improvised.yml index c87f4eb3d20..55ffdf5176f 100644 --- a/Resources/Prototypes/Recipes/Crafting/improvised.yml +++ b/Resources/Prototypes/Recipes/Crafting/improvised.yml @@ -227,3 +227,16 @@ icon: sprite: Objects/Tools/rolling_pin.rsi state: icon + +- type: construction + name: pet carrier + id: PetCarrier + graph: PetCarrier + startNode: start + targetNode: petCarrier + category: construction-category-misc + objectType: Item + description: Allows large animals to be carried comfortably. + icon: + sprite: Objects/Storage/petcarrier.rsi + state: icon diff --git a/Resources/Prototypes/Recipes/Lathes/bedsheets.yml b/Resources/Prototypes/Recipes/Lathes/bedsheets.yml new file mode 100644 index 00000000000..1ff143e4914 --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/bedsheets.yml @@ -0,0 +1,113 @@ +- type: latheRecipe + abstract: true + id: BaseBedsheetRecipe + completetime: 2 + materials: + Cloth: 150 + +- type: latheRecipe + abstract: true + parent: BaseBedsheetRecipe + id: BaseSpecifiedBedsheetRecipe + materials: + Cloth: 150 + Durathread: 50 + + #Base bedsheets + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetBlack + result: BedsheetBlack + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetBlue + result: BedsheetBlue + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetBrown + result: BedsheetBrown + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetGreen + result: BedsheetGreen + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetGrey + result: BedsheetGrey + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetOrange + result: BedsheetOrange + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetPurple + result: BedsheetPurple + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetRed + result: BedsheetRed + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetWhite + result: BedsheetWhite + +- type: latheRecipe + parent: BaseBedsheetRecipe + id: BedsheetYellow + result: BedsheetYellow + + #Specified bedsheets + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetClown + result: BedsheetClown + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetCosmos + result: BedsheetCosmos + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetIan #I'm not sure that that should be here + result: BedsheetIan + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetMedical + result: BedsheetMedical + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetMime + result: BedsheetMime + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetNT + result: BedsheetNT + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetRainbow + result: BedsheetRainbow + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetBrigmedic + result: BedsheetBrigmedic + +- type: latheRecipe + parent: BaseSpecifiedBedsheetRecipe + id: BedsheetSyndie + result: BedsheetSyndie diff --git a/Resources/Prototypes/Recipes/Lathes/carpets.yml b/Resources/Prototypes/Recipes/Lathes/carpets.yml new file mode 100644 index 00000000000..fdf9705c23c --- /dev/null +++ b/Resources/Prototypes/Recipes/Lathes/carpets.yml @@ -0,0 +1,51 @@ +- type: latheRecipe + abstract: true + id: BaseCarpetRecipe + completetime: 1 + materials: + Cloth: 100 + +- type: latheRecipe + parent: BaseCarpetRecipe + id: Carpet + result: FloorCarpetItemRed + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetBlack + result: FloorCarpetItemBlack + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetPink + result: FloorCarpetItemPink + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetBlue + result: FloorCarpetItemBlue + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetGreen + result: FloorCarpetItemGreen + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetOrange + result: FloorCarpetItemOrange + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetPurple + result: FloorCarpetItemPurple + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetCyan + result: FloorCarpetItemCyan + +- type: latheRecipe + parent: BaseCarpetRecipe + id: CarpetWhite + result: FloorCarpetItemWhite diff --git a/Resources/Prototypes/Recipes/Lathes/clothing.yml b/Resources/Prototypes/Recipes/Lathes/clothing.yml index 0db72f36636..62e2982e5cf 100644 --- a/Resources/Prototypes/Recipes/Lathes/clothing.yml +++ b/Resources/Prototypes/Recipes/Lathes/clothing.yml @@ -38,13 +38,6 @@ materials: Cloth: 100 -- type: latheRecipe - abstract: true - id: BaseCarpetRecipe - completetime: 1 - materials: - Cloth: 100 - - type: latheRecipe abstract: true parent: BaseHatRecipe @@ -916,49 +909,3 @@ parent: BaseNeckClothingRecipe id: ClothingNeckScarfStripedPurple result: ClothingNeckScarfStripedPurple - -# Carpets -- type: latheRecipe - parent: BaseCarpetRecipe - id: Carpet - result: FloorCarpetItemRed - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetBlack - result: FloorCarpetItemBlack - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetPink - result: FloorCarpetItemPink - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetBlue - result: FloorCarpetItemBlue - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetGreen - result: FloorCarpetItemGreen - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetOrange - result: FloorCarpetItemOrange - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetPurple - result: FloorCarpetItemPurple - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetCyan - result: FloorCarpetItemCyan - -- type: latheRecipe - parent: BaseCarpetRecipe - id: CarpetWhite - result: FloorCarpetItemWhite diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index db6f80fa3dc..5e51dec195a 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -584,12 +584,6 @@ result: ShuttleGunDusterCircuitboard completetime: 12 -- type: latheRecipe - parent: BaseGoldCircuitboardRecipe - id: StationAnchorCircuitboard - result: StationAnchorCircuitboard - completetime: 8 - - type: latheRecipe parent: BaseGoldCircuitboardRecipe id: ReagentGrinderIndustrialMachineCircuitboard diff --git a/Resources/Prototypes/Roles/Antags/thief.yml b/Resources/Prototypes/Roles/Antags/thief.yml index 7a00ac3d2b8..f001457c9f5 100644 --- a/Resources/Prototypes/Roles/Antags/thief.yml +++ b/Resources/Prototypes/Roles/Antags/thief.yml @@ -13,6 +13,6 @@ id: ThiefGear storage: back: + - ThiefBeacon - ToolboxThief - ClothingHandsChameleonThief - - ThiefBeacon diff --git a/Resources/Prototypes/Roles/Jobs/CentComm/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/CentComm/emergencyresponseteam.yml index 47c7e468e2d..265b4a4f103 100644 --- a/Resources/Prototypes/Roles/Jobs/CentComm/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/CentComm/emergencyresponseteam.yml @@ -368,7 +368,8 @@ storage: back: - Hypospray - - MedkitAdvancedFilled + - MedkitCombatFilled + - MedkitCombatFilled - CrowbarRed - OmnizineChemistryBottle - EpinephrineChemistryBottle @@ -391,7 +392,8 @@ storage: back: - Hypospray - - MedkitAdvancedFilled + - MedkitCombatFilled + - MedkitCombatFilled - CrowbarRed - OmnizineChemistryBottle - EpinephrineChemistryBottle diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json index 0619f962df3..bb1013b21a0 100644 --- a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark", + "copyright": "PixelTK leaves his mark on upstream, BackeTako made the gay, autism pins by Terraspark, omnisexual pin by juliangiebel", "size": { "x": 32, "y": 32 @@ -90,6 +90,13 @@ { "name": "trans-equipped-NECK", "directions": 4 + }, + { + "name": "omni" + }, + { + "name": "omni-equipped-NECK", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni-equipped-NECK.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni-equipped-NECK.png new file mode 100644 index 00000000000..af88fc50ae0 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni-equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni.png b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni.png new file mode 100644 index 00000000000..fea90751448 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Misc/pins.rsi/omni.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Bartender.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Bartender.png index d6e59ad74b8..b422c6599ad 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Bartender.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Bartender.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Botanist.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Botanist.png index 49e17f9b446..76860323e1e 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Botanist.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Botanist.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Chef.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Chef.png index 82eb9514e77..b8d7370845d 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Chef.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Chef.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Reporter.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Reporter.png index 679f8d4490e..d46574c0331 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Reporter.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Reporter.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/ServiceWorker.png b/Resources/Textures/Interface/Misc/job_icons.rsi/ServiceWorker.png index 205002b98f6..4647c6c994c 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/ServiceWorker.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/ServiceWorker.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png b/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png index 6b7e3cd5da8..ee60f9f7368 100644 Binary files a/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png and b/Resources/Textures/Interface/Misc/job_icons.rsi/Zookeeper.png differ diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json index 74d81db8e75..9bfaf9663b8 100644 --- a/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | Pilot icon made by poemota (Discord) | StationAi resprite to 8x8 size by lunarcomets", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/huds/hud.dmi | Admin recolored from MedicalIntern by TsjipTsjip | Pilot icon made by poemota (Discord) | StationAi resprite to 8x8 size by lunarcomets | service icons darkened by frobnic8 (Discord and Github)", "size": { "x": 8, diff --git a/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json b/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json index cdc51860cd8..e56bed5206f 100644 --- a/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json +++ b/Resources/Textures/Mobs/Demons/honkmother.rsi/meta.json @@ -6,6 +6,7 @@ }, "license": "CC-BY-SA-3.0", "copyright": "Created by Alekshhh for SS14.", + "metaAtlas": false, "states": [ { "name": "honkmother", diff --git a/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json b/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json index 61fcea8ab55..7fa472d05a9 100644 --- a/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json +++ b/Resources/Textures/Mobs/Demons/narsie.rsi/meta.json @@ -6,6 +6,7 @@ }, "license": "CC-BY-SA-3.0", "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/b44fcdedfb7c7d8425bd75b9caf71644a86375d1/icons/obj/antags/cult/narsie.dmi", + "metaAtlas": false, "states": [ { "name": "narsie", diff --git a/Resources/Textures/Mobs/Demons/ratvar.rsi/meta.json b/Resources/Textures/Mobs/Demons/ratvar.rsi/meta.json index 3d85e4a650c..cd399160754 100644 --- a/Resources/Textures/Mobs/Demons/ratvar.rsi/meta.json +++ b/Resources/Textures/Mobs/Demons/ratvar.rsi/meta.json @@ -6,6 +6,7 @@ "x": 512, "y": 512 }, + "metaAtlas": false, "states": [ { "name": "ratvar", @@ -39,19 +40,19 @@ 0.25, 0.25, 1, - + 0.3, 0.3, 0.2, 0.1, 0.05, - + 0.05, 0.05, 0.05, 0.05, 0.05, - + 0.05, 0.05, 0.05, @@ -60,4 +61,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi/meta.json index 59fd1c8ba0a..c65f0db3243 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/grassbm_tabletop.rsi/meta.json @@ -7,6 +7,7 @@ "x": 288, "y": 288 }, + "metaAtlas": false, "states": [ { "name": "tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi/meta.json index 4bd2d29ac12..b1b3151e714 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/moonbm_tabletop.rsi/meta.json @@ -7,6 +7,7 @@ "x": 288, "y": 288 }, + "metaAtlas": false, "states": [ { "name": "tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi/meta.json index 5f3f5ea29eb..ad851cfb0db 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/sandbm_tabletop.rsi/meta.json @@ -7,6 +7,7 @@ "x": 288, "y": 288 }, + "metaAtlas": false, "states": [ { "name": "tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi/meta.json index cfde17c5dde..f9fc6f47454 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/shipbm_tabletop.rsi/meta.json @@ -7,6 +7,7 @@ "x": 543, "y": 543 }, + "metaAtlas": false, "states": [ { "name": "tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi/meta.json index ca554164865..0b50ef920ec 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/Battlemaps/snowbm_tabletop.rsi/meta.json @@ -7,6 +7,7 @@ "x": 288, "y": 288 }, + "metaAtlas": false, "states": [ { "name": "tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/backgammon_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/backgammon_tabletop.rsi/meta.json index 1ada42708a3..8df97809df7 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/backgammon_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/backgammon_tabletop.rsi/meta.json @@ -6,6 +6,7 @@ "x": 550, "y": 410 }, + "metaAtlas": false, "states": [ { "name": "backgammonBoard" diff --git a/Resources/Textures/Objects/Fun/Tabletop/chessboard_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/chessboard_tabletop.rsi/meta.json index f20e4c86f3e..9b40a61dcb1 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/chessboard_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/chessboard_tabletop.rsi/meta.json @@ -6,6 +6,7 @@ "x": 274, "y": 274 }, + "metaAtlas": false, "states": [ { "name": "chessboard_tabletop" diff --git a/Resources/Textures/Objects/Fun/Tabletop/parchis_tabletop.rsi/meta.json b/Resources/Textures/Objects/Fun/Tabletop/parchis_tabletop.rsi/meta.json index 64f2d96581f..42d089e944d 100644 --- a/Resources/Textures/Objects/Fun/Tabletop/parchis_tabletop.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/Tabletop/parchis_tabletop.rsi/meta.json @@ -6,6 +6,7 @@ "x": 548, "y": 548 }, + "metaAtlas": false, "states": [ { "name": "board" diff --git a/Resources/Textures/Objects/Misc/bedsheets.rsi/meta.json b/Resources/Textures/Objects/Misc/bedsheets.rsi/meta.json index f91263ff9a3..63a2e353361 100644 --- a/Resources/Textures/Objects/Misc/bedsheets.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/bedsheets.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/0ec86b44b11f5e2f45137d9f6c851b8942a26aa3, sheetbrigmedic sprited by RudeyCoolLeet#3875", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/0ec86b44b11f5e2f45137d9f6c851b8942a26aa3, sheetbrigmedic sprited by RudeyCoolLeet#3875, sheetce sheethop sheethos sheetrd are adaptations of the original sprites and were created by Alpaccalypse", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetce.png b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetce.png index 54133c26e5d..fbe33872272 100644 Binary files a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetce.png and b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetce.png differ diff --git a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethop.png b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethop.png index 7bf9fbaf921..0c8d5d07d8e 100644 Binary files a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethop.png and b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethop.png differ diff --git a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethos.png b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethos.png index 4a252390c42..c407897ebaa 100644 Binary files a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethos.png and b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheethos.png differ diff --git a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetrd.png b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetrd.png index 6cb200ae6d7..cd5ff83308e 100644 Binary files a/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetrd.png and b/Resources/Textures/Objects/Misc/bedsheets.rsi/sheetrd.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idbartender.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idbartender.png index 435ea39ad6a..04fa5203026 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idbartender.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idbartender.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idbotanist.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idbotanist.png index f5dfdb86629..87b74619ebe 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idbotanist.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idbotanist.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idchaplain.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idchaplain.png index e10e3c82a6e..d833be57f9a 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idchaplain.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idchaplain.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idcook.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idcook.png index 09527688a46..56dfc53b292 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idcook.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idcook.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idcurator.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idcurator.png index cd01dc77702..3e638f8bab0 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idcurator.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idcurator.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idheadofpersonnel.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idheadofpersonnel.png index be72e37e574..797133b885b 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idheadofpersonnel.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idheadofpersonnel.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-service.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-service.png index 72d4cd44d38..3cabb6f3f47 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-service.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-service.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idjanitor.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idjanitor.png index 320c3885e7e..003657a1387 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idjanitor.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idjanitor.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png index b86f437aee1..353138cd9e4 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idlawyer.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idreporter.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idreporter.png index e4ea4f95882..9dbff4a6df6 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idreporter.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idreporter.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idzookeeper.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idzookeeper.png index aa82cb3cb63..3dd174503b4 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idzookeeper.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idzookeeper.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index f79fb2f7dbe..defd6dd22ad 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/broken.png new file mode 100644 index 00000000000..b506b41a543 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json new file mode 100644 index 00000000000..cef421923bf --- /dev/null +++ b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "The art belongs to Woods#1999 on discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "normal-unshaded", + "delays": [ + [ + 1.5, + 0.1, + 1.5, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/normal-unshaded.png new file mode 100644 index 00000000000..4bea61c2abb Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/off.png new file mode 100644 index 00000000000..4e1dc9af28d Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/panel.png b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/panel.png new file mode 100644 index 00000000000..0032751ff4f Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/clothing.png b/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/clothing.png new file mode 100644 index 00000000000..207d79da348 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/clothing.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/meta.json index 64adf522b93..2c0b0b72d1e 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/random.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/random.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/a879151ef04192ae2a791278ee882c1bce7c5062, cola and any sprite modified by potato1234x (github) for ss14", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/a879151ef04192ae2a791278ee882c1bce7c5062, cola and any sprite modified by potato1234x (github) for ss14, clothing by Southbridge_fur (github) for SS14", "size": { "x": 32, "y": 32 @@ -15,6 +15,9 @@ }, { "name": "any" + }, + { + "name": "clothing" } ] } diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/broken.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/broken.png new file mode 100644 index 00000000000..941a4688d45 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/broken.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/deny-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/deny-unshaded.png new file mode 100644 index 00000000000..0e184b422b4 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/eject-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/eject-unshaded.png new file mode 100644 index 00000000000..57ae39a2e91 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/meta.json new file mode 100644 index 00000000000..a294fc116f1 --- /dev/null +++ b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/meta.json @@ -0,0 +1,56 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Alpaccalypse for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 2.5, + 0.1, + 3.4, + 0.1 + ] + ] + }, + { + "name": "broken" + }, + { + "name": "normal" + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.5, + 0.1, + 1.0, + 0.1, + 0.1 + ] + ] + }, + { + "name": "off" + }, + { + "name": "panel" + } + ] +} diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal-unshaded.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal-unshaded.png new file mode 100644 index 00000000000..919e308cb73 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal.png new file mode 100644 index 00000000000..8b0b3d49193 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/normal.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/off.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/off.png new file mode 100644 index 00000000000..069a7435120 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/off.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/panel.png b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/panel.png new file mode 100644 index 00000000000..9ef52cc2cb1 Binary files /dev/null and b/Resources/Textures/Structures/Machines/VendingMachines/smite.rsi/panel.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/meta.json b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/meta.json index 14a5a244bf6..632c7bcf5be 100644 --- a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/meta.json @@ -5,7 +5,7 @@ "y":32 }, "license":"CC-BY-SA-3.0", - "copyright":"Taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da. Signal valve is a digital valve modified by deltanedas.", + "copyright":"Taken from https://github.com/tgstation/tgstation at commit 57cd1d59ca019dd0e7811ac451f295f818e573da. Signal valve is a digital valve modified by deltanedas. Manual valve modified by Deerstop at https://github.com/space-wizards/space-station-14/pull/34378", "states":[ { "name":"pumpDigitalValve", diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValve.png b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValve.png index 7b26302cc5c..055c6176abd 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValve.png and b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValve.png differ diff --git a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValveOn.png b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValveOn.png index 54ec7249c76..71e9811ad0f 100644 Binary files a/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValveOn.png and b/Resources/Textures/Structures/Piping/Atmospherics/pump.rsi/pumpManualValveOn.png differ diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_1.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_1.rsi/meta.json index 30995cf9a87..28f0fea8fff 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_1.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_1.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Taken from TauCetiStation at https://github.com/TauCetiStation/TauCetiClassic/commit/ed880fc5f1c41623906f39bf8b74e3db9911cc56", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_2.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_2.rsi/meta.json index e3e92d7946e..b6d49492433 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_2.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_2.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Taken from TauCetiStation at https://github.com/TauCetiStation/TauCetiClassic/commit/39bf2edc0b9aab3db8f4b088cab38e492e439f61", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 96, "y": 96 diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_3.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_3.rsi/meta.json index a03ca5e2d34..7036874755a 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_3.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_3.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Taken from TauCetiStation at https://github.com/TauCetiStation/TauCetiClassic/commit/39bf2edc0b9aab3db8f4b088cab38e492e439f61", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 160, "y": 160 diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_4.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_4.rsi/meta.json index e7a35adad60..6a25934c948 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_4.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_4.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Taken from TauCetiStation at https://github.com/TauCetiStation/TauCetiClassic/commit/39bf2edc0b9aab3db8f4b088cab38e492e439f61", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 224, "y": 224 diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_5.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_5.rsi/meta.json index 2b9fe4f46ec..de8e7968045 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_5.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_5.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Taken from TauCetiStation at https://github.com/TauCetiStation/TauCetiClassic/commit/39bf2edc0b9aab3db8f4b088cab38e492e439f61", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 288, "y": 288 diff --git a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_6.rsi/meta.json b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_6.rsi/meta.json index fdd8b3e41e3..a8a7fa3a2fe 100644 --- a/Resources/Textures/Structures/Power/Generation/Singularity/singularity_6.rsi/meta.json +++ b/Resources/Textures/Structures/Power/Generation/Singularity/singularity_6.rsi/meta.json @@ -2,6 +2,7 @@ "version": 1, "copyright": "Created by github:UDaV73rus", "license": "CC-BY-SA-3.0", + "metaAtlas": false, "size": { "x": 352, "y": 352 diff --git a/RobustToolbox b/RobustToolbox index e4190f4f290..bcc4cd77cf1 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit e4190f4f2900634e332208a77cd6df9cef75c29a +Subproject commit bcc4cd77cf16deb9b05f29b090d865f836a733ab